-
Hello,
Having seen complaints on CUDA GPU, I submitted evaluation job with the same configuration as in training with GPU and it succeeded. Best regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey @jungsdao, thank you very much for using MACE. Due to a (probable) torchscript bug, a model needs to be saved on the CPU to be loaded to the CPU.
Then you can use the model_cpu for your CPU evals. Best, Ilyes |
Beta Was this translation helpful? Give feedback.
Hey @jungsdao, thank you very much for using MACE.
Due to a (probable) torchscript bug, a model needs to be saved on the CPU to be loaded to the CPU.
If you want to do this, you can add a
--save_cpu
flag to your input script, and it should work fine.You can restart the train for like 0 epoch for your already trained model, just adding this flag. It will create a suitable model.
Or you can do the following trick on a machine with a GPU:
Then you can use the model_cpu for your CPU evals.
Best,
Ilyes