after saving some arrays into a .npz archive like so ```c# Dictionary<string, NDarray> arrays = new Dictionary<string, NDarray>(); arrays["valueOne"] = valueOne; arrays["valueTwo"] = valueTwo; np.savez_compressed(filename, null, arrays); ``` its impossible to get the values back out ```c# var archive = np.load(filename); var valueOne = archive["valueOne"]; var valueTwo = archive["valueTwo"]; ``` it just results in a `System.ArgumentException: 'Invalid slice notation' `