🐛 [BUG] Error during training with training set of different cell size #305
-
Environment I used is
During the training, I tried to use the train set of multiple cell size. (for example some training set of 120 atoms and some training set of 60 atoms) Then the training ended with the errors below.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This particular error indicates that the number of See other discussions, for example: |
Beta Was this translation helpful? Give feedback.
NpzDataset
, and indeed thenpz
format from numpy itself, requires all arrays to be rectangular (i.e. all frames must have the same number of atoms). For variable number of atoms, and indeed most cases, we recommend usingdataset: ase
with the extxyz format.This particular error indicates that the number of
atomic_numbers
you provide is inconsistent with the number of atoms, which is taken from the number of positions you provide.See other discussions, for example: