Tensor input files
comp-well opened this issue · 2 comments
comp-well commented
Hello, thanks for sharing the code.
Could you tell us more about how to prepare the input tensor files?
wenhui0206 commented
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')
HireTheHero commented
@comp-well
Is #5 relevant to your question?