Where and how are the models being loaded? #86
-
|
When I do |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
Hi Aman, The model code is then installed alongside mlipx, e.g. if you do Lines 98 to 100 in b284dd2 How the actual model is handled, is different between the models. We do provide a download script here https://github.com/basf/mlipx-hub/blob/main/download.py but it would be difficult to provide all models and installations because of different dependencies and licenses. For the mkdir ex01
cd ex01
uv init
uv add "mlipx[mace]"
# build the workflow for the mace model
uv add "mlipx[sevenn]"
# extend with the svenn model
...where |
Beta Was this translation helpful? Give feedback.
Happy to hear, you like the project.
This is handled by the respective mlip package, not by mlipx itself. You can use the download script I mentioned above, which will download the models to a
modeldirectory that will be generated for you. MLIPX itself interfaces with the models through theiraseinterface which makes it very flexibel but leaves these parts of the model management to the mlip package developers.