Colby T. Ford

Results 6 comments of Colby T. Ford

If you're using Anaconda, open your Anaconda Prompt as administrator. Then, visit https://pytorch.org/get-started/locally/ to get the appropriate `conda install` command for your system. Run this command from the Anaconda Prompt...

Was the idea behind the `60:100` range to have more than 2000 points? Otherwise, line 18 in your `.onLoad()` can simply be changed to: `alternateColorSpace

The data can be found here: http://physionet.org/physiobank/database/challenge/2016/

If others have this issue that won't resolve by installing from the `requirements.txt` file, you can also install a newer version from GitHub with pip: ```bash pip install git+https://github.com/aqlaboratory/openfold ```...

@arjunsbalaji - When running from Python, you can run the following command to set the default Torch device: ```py import torch torch.set_default_device('cuda:0') ``` This fixed the cpu/cuda error for me...