htwaijry / npy4th

Numpy format for Torch

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

array type unsupported while using npy4th.loadnpy()

Aditi138 opened this issue · comments

commented

a = [('a','b','c'),('c','d','e')]
b = [('a','b','c'),('c','d','e'),('w',e','r')]
array=[]
array.append(a)
array.append(b)
c= np.array(array)

When I save this as an .npy file and try to load in Torch using npy4th, I get the following issue:
array type unsupported[string "lbles = npy4th.loadnpy('/mnt/c/CodeMixed/CNN/..."]:1: unsupported data type at /mnt/c/CodeMixed/CNN/TorchCNN/npy4th/npy4th.cpp:94

torch does not have string tensors