Trouble using test data in separate file. #147
-
I would like to test my models with test data in a separate file. In another conversation (#133), @Linux-cpp-lisp pointed me to specifying the file in a separate .yaml file, and use the Based on the error messages, I have tried to adapt the .yaml file, but now I am stuck. It looks like this:
It looked like I had to use the name The input file is similar to the one used for training, same format, same elements (cut from the same master file). But now I get this error:
Maybe I am doing something silly, can anyone point me in the right direction? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Follow-up: Shouldn't That
Inspired by renaming other
to |
Beta Was this translation helpful? Give feedback.
-
Hi @schiotz ,
Can you elaborate on this? That doesn't sound right. For
In this case, the extra
This is correct: in the current stable version you do have to specify Thanks! |
Beta Was this translation helpful? Give feedback.
Hi @schiotz ,
Can you elaborate on this? That doesn't sound right.
For
--dataset-config
you must provide all options necessary to define a dataset, which includesroot
(where to put it),r_max
(how to process it), the chemistry (how to translate its types to match the model). While this can involve some copy pasting, we preferred that the user be explicit— silently taking values from the model config could lead to some unpleasant silent bugs, such as mapping the wrong species in the test dataset to the wrong types.