Use Materials Project time-splits for generative modeling benchmarking.
Project description
mp-time-split
Use Materials Project time-splits for generative modeling benchmarking.
While methods for cross-validating accuracy of materials informatics models is well
estabilished (see for example Matbench),
evaluating the performance of generative models such as
FTCP or
imatgen, and many
others is less
straightforward. Recently, Xie et al. introduced new
benchmark datasets and metrics in CDVAE for several
state-of-the-art algorithms. This repository acts as a supplement to CDVAE benchmarks,
delivering a new benchmark dataset (Materials_Project_Time_Split_52
or MPTS-52) with time-based (5$\times$train/val)
+train/test splits suitable for cross-validated hyperparameter optimization and
subsequent benchmarking via the test split. MPTS-52 is most comparable to MP-20
from Xie et al., with the difference that up to 52
atoms are allowed and possibly a difference in the unique elements, as no elemental
filtering was applied (e.g. removal of radioactive elements).
Quick Start
Installation
conda env create -n mp-time-split -c conda-forge mp-time-split
conda activate mp-time-split
Example
from mp_time_split.core import MPTimeSplit
mpt = MPTimeSplit(target="energy_above_hull")
mpt.load(dummy=False)
for fold in mpt.folds:
train_inputs, val_inputs, train_outputs, val_outputs = mpt.get_train_and_val_data(
fold
)
final_train_inputs, test_inputs, final_train_outputs, test_outputs = mpt.get_test_data()
Output
print(train_inputs.iloc[0], train_outputs)
Original | Decoded |
---|---|
Structure Summary
Lattice
abc : 2.591619125942699 2.591619125942699 2.591619125942699
angles : 109.47122063449069 109.47122063449069 109.47122063449069
volume : 13.399593956465264
A : -1.496272 1.496272 1.496272
B : 1.496272 -1.496272 1.496272
C : 1.496272 1.496272 -1.496272
PeriodicSite: V (0.0000, 0.0000, 0.0000) [0.0000, 0.0000, 0.0000]
|
146 0.000000
925 0.190105
1282 0.087952
1335 0.022710
12778 0.003738
2540 0.000000
316 0.000000
|
For additional examples, see the notebooks directory.
Installation
In order to set up the necessary environment:
- review and uncomment what you need in
environment.yml
and create an environmentmp-time-split
with the help of conda:conda env create -f environment.yml
- activate the new environment with:
conda activate mp-time-split
NOTE: The conda environment will have mp-time-split installed in editable mode. Some changes, e.g. in
setup.cfg
, might require you to runpip install -e .
again.
Optional and needed only once after git clone
:
-
install several pre-commit git hooks with:
pre-commit install # You might also want to run `pre-commit autoupdate`
and checkout the configuration under
.pre-commit-config.yaml
. The-n, --no-verify
flag ofgit commit
can be used to deactivate pre-commit hooks temporarily. -
install nbstripout git hooks to remove the output cells of committed notebooks with:
nbstripout --install --attributes notebooks/.gitattributes
This is useful to avoid large diffs due to plots in your notebooks. A simple
nbstripout --uninstall
will revert these changes.
Then take a look into the scripts
and notebooks
folders.
Dependency Management & Reproducibility
- Always keep your abstract (unpinned) dependencies updated in
environment.yml
and eventually insetup.cfg
if you want to ship and install your package viapip
later on. - Create concrete dependencies as
environment.lock.yml
for the exact reproduction of your environment with:conda env export -n mp-time-split -f environment.lock.yml
For multi-OS development, consider using--no-builds
during the export. - Update your current environment with respect to a new
environment.lock.yml
using:conda env update -f environment.lock.yml --prune
Project Organization
├── AUTHORS.md <- List of developers and maintainers.
├── CHANGELOG.md <- Changelog to keep track of new features and fixes.
├── CONTRIBUTING.md <- Guidelines for contributing to this project.
├── Dockerfile <- Build a docker container with `docker build .`.
├── LICENSE.txt <- License as chosen on the command-line.
├── README.md <- The top-level README for developers.
├── configs <- Directory for configurations of model & application.
├── data
│ ├── external <- Data from third party sources.
│ ├── interim <- Intermediate data that has been transformed.
│ ├── processed <- The final, canonical data sets for modeling.
│ └── raw <- The original, immutable data dump.
├── docs <- Directory for Sphinx documentation in rst or md.
├── environment.yml <- The conda environment file for reproducibility.
├── models <- Trained and serialized models, model predictions,
│ or model summaries.
├── notebooks <- Jupyter notebooks. Naming convention is a number (for
│ ordering), the creator's initials and a description,
│ e.g. `1.0-fw-initial-data-exploration`.
├── pyproject.toml <- Build configuration. Don't change! Use `pip install -e .`
│ to install for development or to build `tox -e build`.
├── references <- Data dictionaries, manuals, and all other materials.
├── reports <- Generated analysis as HTML, PDF, LaTeX, etc.
│ └── figures <- Generated plots and figures for reports.
├── scripts <- Analysis and production scripts which import the
│ actual PYTHON_PKG, e.g. train_model.
├── setup.cfg <- Declarative configuration of your project.
├── setup.py <- [DEPRECATED] Use `python setup.py develop` to install for
│ development or `python setup.py bdist_wheel` to build.
├── src
│ └── mp_time_split <- Actual Python package where the main functionality goes.
├── tests <- Unit tests which can be run with `pytest`.
├── .coveragerc <- Configuration for coverage reports of unit tests.
├── .isort.cfg <- Configuration for git hook that sorts imports.
└── .pre-commit-config.yaml <- Configuration of pre-commit git hooks.
Note
This project has been set up using PyScaffold 4.2.2 and the dsproject extension 0.7.post1.dev8+g43a905e.
To create the same starting point for this repository, as of 2022-06-01 on Windows you will need the development versions of PyScaffold and extensions, however this will not be necessary once certain bugfixes have been introduced in the next stable releases:
pip install git+https://github.com/pyscaffold/pyscaffold.git git+https://github.com/pyscaffold/pyscaffoldext-dsproject.git git+https://github.com/pyscaffold/pyscaffoldext-markdown.git
The following pyscaffold
command creates a starting point for this repository:
putup xtal2png --github-actions --markdown --dsproj
Alternatively, you can edit a file interactively and update and uncomment relevant lines, which saves some of the additional setup:
putup --interactive xtal2png
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file mp-time-split-0.1.1.tar.gz
.
File metadata
- Download URL: mp-time-split-0.1.1.tar.gz
- Upload date:
- Size: 1.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eeadb34809ea1e703bb451447b979ae7c5de9c45f349dd70f4050e267a5041ef |
|
MD5 | 088eb37bd038dd4aa29bfb7ae9bf03f6 |
|
BLAKE2b-256 | 0184b9cf70ebcf1098d0d7e37bd06654c8d36905f528fa85e794e0fed3a21ed1 |
File details
Details for the file mp_time_split-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: mp_time_split-0.1.1-py3-none-any.whl
- Upload date:
- Size: 37.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1467391d3ca40785dd7bae9e076595369cc8ea0aa96a6aea46322b894193c0f9 |
|
MD5 | f9f8c1357655f507a924ceb3acb41cd0 |
|
BLAKE2b-256 | 4eeb9e8a02f3dd36f450cd19dbb28fcdf2f46d855cdf88b5b0f78c733f4287ad |