You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now mace_run_train by defaults saves gpu-format models, unless --save_cpu is explicitly passed. However, those cannot be converted to cpu format without a gpu machine, and going the other way is always possible. I think it would be more helpful to by default save to cpu format.
One option would be to default to saving a cpu model, and replacing the flag with --save_gpu. Another, more versatile option might be to do something like
Somehow I never merged it because I was scared it would crash everyone's training.
I think Noam's way is better. I will leave the save_cpu for now and just depricate it and add Noam's way as default.
Right now
mace_run_train
by defaults saves gpu-format models, unless--save_cpu
is explicitly passed. However, those cannot be converted to cpu format without a gpu machine, and going the other way is always possible. I think it would be more helpful to by default save to cpu format.One option would be to default to saving a cpu model, and replacing the flag with
--save_gpu
. Another, more versatile option might be to do something likeThe text was updated successfully, but these errors were encountered: