I am doing a SMILES Embedding on one of my files. After the embedding, it gives me a .npz file. When I was trying to view the content inside the .npz file, I uses the code
import numpy as np
np_data=np.load('covid_cure_pure_conanical.npz')
for k in np_data:
print(k)
print(np_data[k])
Then, it gives me the data that got simplified as ... inside the array. Are there any ways to see the complete set? If not, are there anyways for me to change the npz file into files like .csv or .txt?
Thank you for your time.