https://github.com/sparks-baird/mp-time-split
Use time-splits for Materials Project entries for generative modeling benchmarking.
Science Score: 33.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
✓Academic publication links
Links to: arxiv.org -
✓Committers with academic emails
1 of 3 committers (33.3%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (14.3%) to scientific vocabulary
Keywords
Repository
Use time-splits for Materials Project entries for generative modeling benchmarking.
Basic Info
- Host: GitHub
- Owner: sparks-baird
- License: mit
- Language: Jupyter Notebook
- Default Branch: main
- Homepage: https://mp-time-split.readthedocs.io/
- Size: 1.79 MB
Statistics
- Stars: 12
- Watchers: 0
- Forks: 0
- Open Issues: 0
- Releases: 0
Topics
Metadata Files
README.md
<!-- These are examples of badges you might also want to add to your README. Update the URLs accordingly.
-->
⚠️
mp-time-splithas been moved tomatbench-genmetrics.mp_time_splitas a namespace package⚠️
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
bash
conda env create -n mp-time-split -c conda-forge mp-time-split
conda activate mp-time-split
Example
```python from mptimesplit.core import MPTimeSplit
mpt = MPTimeSplit(target="energyabovehull") mpt.load(dummy=False)
for fold in mpt.folds: traininputs, valinputs, trainoutputs, valoutputs = mpt.gettrainandvaldata( fold )
finaltraininputs, testinputs, finaltrainoutputs, testoutputs = mpt.gettestdata() ```
Output
python
print(train_inputs.iloc[0], train_outputs)
| `train_inputs.iloc[0]` | `train_outputs` |
|---|---|
| ```python 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] ``` | ```python 146 0.000000 925 0.190105 1282 0.087952 1335 0.022710 12778 0.003738 2540 0.000000 316 0.000000 ``` |
{note}
Data (e.g. `train_inputs`, `train_outputs`) is sorted by earliest publication year.
The Materials Project ID number is used as the pandas `Series` index. The "mp-" and
"mvc" suffixes are dropped, except that "-" is retained in case of "mvc-" to make it
negative in the index and distinguish between "mp-" and "mvc-" type entries. This is
to make it easy to sort the entries based on the index. Ensure that you apply `abs` to
the index prior to sorting, otherwise the `mvc-` entries will be in the wrong order.
See [how-do-i-do-a-time-split-of-materials-project-entries-e-g-pre-2018-vs-post-2018](https://matsci.org/t/how-do-i-do-a-time-split-of-materials-project-entries-e-g-pre-2018-vs-post-2018/42584/2?u=sgbaird)
for more information. More detailed information (e.g. BibTeX references) can be accessed
via `mpt.data`.
For additional examples, see the notebooks directory.
Installation
Anaconda
Create an environment named (-n) mp-time-split with the Anaconda package mp-time-split intalled from the conda-forge channel (-c).
bash
conda env create -n mp-time-split -c conda-forge mp-time-split
PyPI
Optionally create and activate a conda environment (recommended to use an isolated environment of some kind):
bash
conda env create -n mp-time-split python==3.9.* # 3.7.* or 3.8.* also OK
conda activate mp-time-split
Install the mp-time-split package from PyPI.
bash
pip install mp-time-split
environment.yml
In order to set up the necessary environment:
- review and uncomment what you need in
environment.ymland create an environmentmp-time-splitwith the help of conda:conda env create -f environment.yml - activate the new environment with:
conda activate mp-time-split
Local Installation
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: ```bash pre-commit install
You might also want to run
pre-commit autoupdate``
and checkout the configuration under.pre-commit-config.yaml. The-n, --no-verifyflag ofgit commit` can be used to deactivate pre-commit hooks temporarily.install nbstripout git hooks to remove the output cells of committed notebooks with:
bash nbstripout --install --attributes notebooks/.gitattributesThis is useful to avoid large diffs due to plots in your notebooks. A simplenbstripout --uninstallwill revert these changes.
Then take a look into the scripts and notebooks folders.
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:
bash
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:
bash
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:
bash
putup --interactive xtal2png
Owner
- Name: Sparks/Baird Materials Informatics
- Login: sparks-baird
- Kind: organization
- Email: sterling.baird@utah.edu
- Location: United States of America
- Repositories: 63
- Profile: https://github.com/sparks-baird
Sterling Baird and Taylor Sparks Materials Informatics Projects
GitHub Events
Total
- Watch event: 1
Last Year
- Watch event: 1
Committers
Last synced: almost 3 years ago
Top Committers
| Name | Commits | |
|---|---|---|
| sgbaird | s****d@i****m | 117 |
| Sterling Baird | 4****d@u****m | 28 |
| sgbaird | s****d@u****u | 10 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 12
- Total pull requests: 47
- Average time to close issues: 3 months
- Average time to close pull requests: about 5 hours
- Total issue authors: 1
- Total pull request authors: 1
- Average comments per issue: 1.17
- Average comments per pull request: 0.81
- Merged pull requests: 47
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- sgbaird (9)
Pull Request Authors
- sgbaird (35)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 4
-
Total downloads:
- pypi 36 last-month
-
Total dependent packages: 2
(may contain duplicates) -
Total dependent repositories: 1
(may contain duplicates) - Total versions: 21
- Total maintainers: 1
proxy.golang.org: github.com/sparks-baird/mp-time-split
- Documentation: https://pkg.go.dev/github.com/sparks-baird/mp-time-split#section-documentation
-
Latest release: v0.2.1
published over 3 years ago
Rankings
pypi.org: mp-time-split
Use Materials Project time-splits for generative modeling benchmarking.
- Homepage: https://github.com/sparks-baird/mp-time-split
- Documentation: https://mp-time-split.readthedocs.io
- License: MIT
-
Latest release: 0.2.0
published over 3 years ago
Rankings
Maintainers (1)
conda-forge.org: mp_time_split
- Homepage: https://github.com/sparks-baird/mp-time-split
- License: MIT
-
Latest release: 0.2.0
published over 3 years ago
Rankings
conda-forge.org: mp-time-split
- Homepage: https://github.com/sparks-baird/mp-time-split
- License: MIT
-
Latest release: 0.2.0
published over 3 years ago
Rankings
Dependencies
- matminer *
- mp-api *
- myst-parser *
- pymatgen *
- pyxtal *
- scikit-learn *
- sphinx >=3.2.1
- sphinx_copybutton *
- sphinx_rtd_theme *
- actions/checkout v3 composite
- actions/download-artifact v3 composite
- actions/setup-python v3 composite
- actions/upload-artifact v3 composite
- coverallsapp/github-action master composite
- actions/checkout v2 composite
- actions/upload-artifact v1 composite
- openjournals/openjournals-draft-action master composite
- condaforge/mambaforge latest build