Jiawei Zhong
Results
2
comments of
Jiawei Zhong
Hi, I had the same problem before. Maybe you can try [sceasy](https://github.com/cellgeni/sceasy).
I met same problem but in ``` X = geneExprDf.values.T X = torch.FloatTensor(X). ``` Change code to: ``` X = geneExprDf.values.T.astype(np.float32) X = torch.FloatTensor(X). ``` can solve the problem