About 50 results
Open links in new tab
  1. python - How do you open .NPY files? - Stack Overflow

    Oct 31, 2018 · How do I open .NPY files in python so that I can read them? I've been trying to run some code I've found but it outputs in .NPY files so I can't tell if its working.

  2. What is the way data is stored in *.npy? - Stack Overflow

    7 The format is described in numpy/lib/format.py, where you can also see the Python source code used to load npy files. np.load is defined here.

  3. python - Viewing .npy images - Stack Overflow

    Nov 2, 2015 · How can I view images stored with a .npy extension and save my own files in that format?

  4. Using Spyder / Python to Open .npy File - Stack Overflow

    Nov 24, 2015 · The .npy file is in a folder with the python file. So it could likely be due to the directory. I can see if i can do anything about it.

  5. What is the advantage of saving `.npz` files instead of `.npy` in ...

    Jan 17, 2019 · The python documentation for the numpy.savez which saves an .npz file is: The .npz file format is a zipped archive of files named after the variables they contain. The archive is not …

  6. Is there a GUI to see contents of .npy file? - Stack Overflow

    Sep 14, 2018 · The .npy format is a binary data format, so even if your arrays contained only numerical data it would still appear as garbage values to a text editor. If you want to save data in a human …

  7. How to open, load and plot a numpy file in python?

    Feb 1, 2017 · I need to open, load and plot a numpy file in python? This is my version: import matplotlib.pyplot as plt plt.plotfile('traces1.npy') plt.show() This is my trace that I need to plot it: [[-0.

  8. How to save and load numpy.array () data properly?

    I wonder, how to save and load numpy.array data properly. Currently I'm using the numpy.savetxt () method. For example, if I got an array markers, which looks like this: I try to save it by the use ...

  9. python - How to read .npy files in Matlab - Stack Overflow

    Feb 4, 2014 · I was wondering if there is way to read .npy files in Matlab? I know I can convert those to Matlab-style .mat files using scipy.io.savemat in Python; however I'm more interested in a native or …

  10. Feeding .npy (numpy files) into tensorflow data pipeline

    Feb 20, 2018 · It is actually possible to read directly NPY files with TensorFlow instead of TFRecords. The key pieces are tf.data.FixedLengthRecordDataset and tf.io.decode_raw, along with a look at the …