wenhui0206/NeuroGPT

Tensor input files

comp-well opened this issue · 2 comments

Hello, thanks for sharing the code.
Could you tell us more about how to prepare the input tensor files?

After you have your preprocessed data ready, you can load the data and save the data as tensors using PyTorch.
E.g.
tensor_data = torch.tensor(data)
torch.save(tensor_data, tensor_path + file_name + '.pt')

@comp-well
Is #5 relevant to your question?