Skip to content
This repository has been archived by the owner on Mar 23, 2022. It is now read-only.

Commit

Permalink
Add training data
Browse files Browse the repository at this point in the history
  • Loading branch information
ucsdlxg committed Aug 2, 2018
1 parent a5222f5 commit 5131436
Show file tree
Hide file tree
Showing 18 changed files with 89 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cu/training/AIMD.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Cu/training/Elastic.json

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions Cu/training/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Using the training data

The training data is provided in json files, which can be read by any standard json parser. Each json file contains contains one data group (e.g., AIMD, elastic, surfaces, etc.) used in the training of the SNAP model.

The data is provided as a list of dicts. Each dict contains one structure with data. The format of the json file is as follows:

```json
[
{
"_id": "a string",
"params": {"Dict of parameters used for DFT calculations, e.g. pseudopotential, energy cutoff, etc."},
"group": "Cu",
"tags": "Md",
"structure": {"Dict representation of Structure as output by pymatgen"},
"num_atoms": 108,
"outputs": {
"energy": -619.08666252,
"forces": [],
"stress": []
}
},
...
]
```

1 change: 1 addition & 0 deletions Cu/training/Surface.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Cu/training/Vacancy.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Ni-Mo/training/Mo_dopedwith_Ni.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Ni-Mo/training/Ni3Mo_AIMD.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Ni-Mo/training/Ni3Mo_Elastic.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Ni-Mo/training/Ni4Mo_AIMD.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Ni-Mo/training/Ni4Mo_Elastic.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Ni-Mo/training/Ni_dopedwith_Mo.json

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions Ni-Mo/training/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Using the training data

The training data is provided in json files, which can be read by any standard json parser. Each json file contains contains one data group (e.g., Ni3Mo_AIMD, Ni4Mo_elastic, Ni_dopedwith_Mo, etc.) used in the training of the SNAP model.

The data is provided as a list of dicts. Each dict contains one structure with data. The format of the json file is as follows:

```json
[
{
"_id": "a string",
"params": {"Dict of parameters used for DFT calculations, e.g. pseudopotential, energy cutoff, etc."},
"group": "Ni3Mo",
"tags": "Md",
"structure": {"Dict representation of Structure as output by pymatgen"},
"num_atoms": 108,
"outputs": {
"energy": -619.08666252,
"forces": [],
"stress": []
}
},
...
]
```

Binary file added Ni/training/.AIMD.json.swp
Binary file not shown.
1 change: 1 addition & 0 deletions Ni/training/AIMD.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Ni/training/Elastic.json

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions Ni/training/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Using the training data

The training data is provided in json files, which can be read by any standard json parser. Each json file contains contains one data group (e.g., AIMD, elastic, surfaces, etc.) used in the training of the SNAP model.

The data is provided as a list of dicts. Each dict contains one structure with data. The format of the json file is as follows:

```json
[
{
"_id": "a string",
"params": {"Dict of parameters used for DFT calculations, e.g. pseudopotential, energy cutoff, etc."},
"group": "Ni",
"tags": "Md",
"structure": {"Dict representation of Structure as output by pymatgen"},
"num_atoms": 108,
"outputs": {
"energy": -619.08666252,
"forces": [],
"stress": []
}
},
...
]
```

1 change: 1 addition & 0 deletions Ni/training/Surface.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Ni/training/Vacancy.json

Large diffs are not rendered by default.

0 comments on commit 5131436

Please sign in to comment.