Hi, our group is trying to train the SenticGCN model and this is the error that our group has faced.
AssertionError: Torch not compiled with CUDA enabled
May I know if there are any workarounds for this issue? Currently, our group members are not using any NVIDIA GPU so does that mean we are not able to train the model? Thanks!
Hi,
To train the SenticGCN model with CPU, please ensure that your PyTorch version supports CPU.
Next, in your SenticGCN training config file, change the `device` value to `cpu`, line 36 here,
Next, run the training script again to start training.
Please note that training with CPU is generally not recommended as it is usually 10x~20x slower than training with GPU, depending on the size of the training data, the training could take hours or days to complete.
Hope this helps.
All things NLP
Thank you for your prompt response!