Open QuantumMisaka opened 2 months ago
Another related issue: I have tried LabeledSystem.to_quip_gap_xyz(), which is showed with pressing the tab
key after "LabeledSystem.", but sadly it cannot be used at all with the error message like "QUIPXYZFORMAT do not support System.to". So why not try to ban it from being showed with pressing the tab
key after "LabeledSystem."?
We wanna transform a training set stored by
deepmd/raw
anddeepmd/npy
format to another format which can be parsed by ASE
Note that you can directly convert the dpdata.System
to ase.Atoms
, no need to have an intermediate format.
Note that you can directly convert the
dpdata.System
toase.Atoms
, no need to have an intermediate format.
Is there an simple method/function for dpdata to convert dpdata.System
to ase.Atoms
in a high-thoughput way? From users' side, there is much better to have a once-for-all function, instead of coding when needed
What do you mean by "high-throughput way"? The Labeledsystem.to_ase_structures()
should return a list of ase Atoms objects.
Labeledsystem.to_ase_structures()
It's LabeledSystem.to_ase_structure()
.
I think the more important issue is that the documentation lacks maintenance and organization, so it is not easy to find all features in the dpdata package. I don't have enough time to write documentation, though.
What do you mean by "high-throughput way"? The
Labeledsystem.to_ase_structures()
should return a list of ase Atoms objects.
Thank you!
Labeledsystem.to_ase_structures()
It's
LabeledSystem.to_ase_structure()
.I think the more important issue is that the documentation lacks maintenance and organization, so it is not easy to find all features in the dpdata package. I don't have enough time to write documentation, though.
Thank you! I have also fixed some small bugs(#717), and now it can work.
Beside Labeledsystem.to_ase_structures()
, is there a way read from ase Atoms to dpdata.LabeledSystems
?
Beside
Labeledsystem.to_ase_structures()
, is there a way read from ase Atoms todpdata.LabeledSystems
?
LS = dpdata.LabeledSystem().from_ase_structure(Atoms)
can work.
Labeledsystem.to_ase_structures()
It's
LabeledSystem.to_ase_structure()
.I think the more important issue is that the documentation lacks maintenance and organization, so it is not easy to find all features in the dpdata package. I don't have enough time to write documentation, though.
If possible, could you please add a column of "capabilities" to the table at https://docs.deepmodeling.com/projects/dpdata/en/master/formats.html, just like the table at https://wiki.fysik.dtu.dk/ase/ase/io/io.html?
If possible, could you please add a column of "capabilities" to the table at https://docs.deepmodeling.com/projects/dpdata/en/master/formats.html, just like the table at https://wiki.fysik.dtu.dk/ase/ase/io/io.html?
There has already been a Supported Conversions
column.
717
I met the same problem:I want to convert my .npy file to extxyz file(energy and force included) like this,how can I get it ? Can you give me some concrete procedures? I'm not familiar with dpdata and ase, thank you very much! .npy file and extxyz file attached.
717
I met the same problem:I want to convert my .npy file to extxyz file(energy and force included) like this,how can I get it ? Can you give me some concrete procedures? I'm not familiar with dpdata and ase, thank you very much! .npy file and extxyz file attached.
I have solved this problem, thank you !
Summary
We wanna transform a training set stored by
deepmd/raw
anddeepmd/npy
format to another format which can be parsed by ASE or Ovito. and we need Energy/Force label in the same time.We've tried all output in dpdata, but there're no another output for
LabeledSystem
valid but onlydeepmd/npy
anddeepmd/raw
, only system without label can be output in xyz format and another format which only include coordinates, but not label information.I do consider that dpdata need another io-format for
LabeledSystem
(not just read-in, but alos write-out),Extxyz format is a widely used
LabeledSystem
andMultiSystems
format, which I do think dpdata should includeDetailed Description
extxyz format information: https://wiki.fysik.dtu.dk/ase/ase/io/formatoptions.html#extxyz
Further Information, Files, and Links
ABACUS MD_dump file and another trajectory output will also transform to extxyz format, see https://github.com/deepmodeling/abacus-develop/issues/5022