-
Hello guys, could someone kindly tell me how to load the model after fine-tunning?
After tunning, the accuracy seems great.
However, when I try to load the fine-tuned model for some validation, something went wrong. Firstly, I load the original model and fine-tuned model by:
Then when I applied these two model as ASE calculator to calculate the force in the snapshots strcuture, I found that the output of both model is actually the same. Does this means that the fine-tuned model is not loaded correctly, or the size of my dataset is to small to have a positive effect in fine-tuning? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Problem solved now, I found I make a mistake in using CHGNetCalculator.
It should be |
Beta Was this translation helpful? Give feedback.
Problem solved now, I found I make a mistake in using CHGNetCalculator.
It should be
MLFF = CHGNetCalculator(
model=chgnet_ft,
properties = ['energy', 'forces'],
use_device='cuda')