Question about fine-tune the pre-trained model. #115
-
Hi devs, I have a general question about fine-tune of SevenNet's Materials Project pretrained model.
Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hello @turbosonics
If you have any other questions, feel free to ask us. Thank you! |
Beta Was this translation helpful? Give feedback.
-
For more about 2. It is correct. Old |
Beta Was this translation helpful? Give feedback.
Hello @turbosonics
fine_tune.yaml file is an example preset of fine-tuning, so you can change the parameters that you want. At sevenn/presets/base.yaml file, there are some annotations for each tags.
For training, file formats such as xyz or OUTCAR should be converted into sevennet graph data format (.pt). If ase.pt file is generated in sevenn_data folder after data preprocessing, I think it is the sevennet graph format of the dataset you want to train. So, if you delete .pt file, sevennet trainer will do data preprocessing to make .pt file again.
We don't have the graph about GPU number vs training speed/efficiency, but it'll ideally be faster as the number of GPUs increases.
If …