From 61f86a4f8f9b65d82057ed07800e3b8a175fadb2 Mon Sep 17 00:00:00 2001 From: Luis Barroso-Luque Date: Mon, 11 Nov 2024 11:43:58 -0800 Subject: [PATCH 1/2] Omat24 doc fix (#908) * update citation * fix typo --- docs/core/datasets/omat24.md | 24 ++++++++++++++++++------ docs/core/model_checkpoints.md | 2 +- 2 files changed, 19 insertions(+), 7 deletions(-) diff --git a/docs/core/datasets/omat24.md b/docs/core/datasets/omat24.md index 53217adc7..194a10db1 100644 --- a/docs/core/datasets/omat24.md +++ b/docs/core/datasets/omat24.md @@ -112,10 +112,22 @@ The OMat24 dataset is licensed under a [Creative Commons Attribution 4.0 License Please consider citing the following paper in any publications that uses this dataset: -```bibtex - -``` - -```bibtex - +```bib +@article{barroso_omat24, + title={Open Materials 2024 (OMat24) Inorganic Materials Dataset and Models}, + author={Barroso-Luque, Luis and Muhammed, Shuaibi and Fu, Xiang and Wood, Brandon, Dzamba, Misko, and Gao, Meng and Rizvi, Ammar and Zitnick, C. Lawrence and Ulissi, Zachary W.}, + journal={arXiv preprint arXiv:2410.12771}, + year={2024} +} +@article{schmidt_2023_machine, + title={Machine-Learning-Assisted Determination of the Global Zero-Temperature Phase Diagram of Materials}, + author={Schmidt, Jonathan and Hoffmann, Noah and Wang, Hai-Chen and Borlido, Pedro and Carri{\c{c}}o, Pedro JMA and Cerqueira, Tiago FT and Botti, Silvana and Marques, Miguel AL}, + journal={Advanced Materials}, + volume={35}, + number={22}, + pages={2210788}, + year={2023}, + url={https://onlinelibrary.wiley.com/doi/full/10.1002/adma.202210788}, + publisher={Wiley Online Library} +} ``` diff --git a/docs/core/model_checkpoints.md b/docs/core/model_checkpoints.md index dc18172ed..6cfba7055 100644 --- a/docs/core/model_checkpoints.md +++ b/docs/core/model_checkpoints.md @@ -181,7 +181,7 @@ Please consider citing the following paper in any research manuscript using the ## Open Materials 2024 (OMat24) -* All config files for the OMat24 models are available in the [`configs/odac`](https://github.com/FAIR-Chem/fairchem/tree/main/configs/omat24) directory. +* All config files for the OMat24 models are available in the [`configs/omat24`](https://github.com/FAIR-Chem/fairchem/tree/main/configs/omat24) directory. * All models are equiformerV2 S2EFS models **Note** in order to download any of the model checkpoints from the links below, you will need to first request access From 13014274282ded9c3cbbba3fb156ad5f11fb3edd Mon Sep 17 00:00:00 2001 From: Luis Barroso-Luque Date: Mon, 11 Nov 2024 11:44:04 -0800 Subject: [PATCH 2/2] sort file paths (#904) --- src/fairchem/core/datasets/base_dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fairchem/core/datasets/base_dataset.py b/src/fairchem/core/datasets/base_dataset.py index fd0aca5a1..13e07749d 100644 --- a/src/fairchem/core/datasets/base_dataset.py +++ b/src/fairchem/core/datasets/base_dataset.py @@ -58,7 +58,7 @@ def __init__(self, config: dict): if isinstance(config["src"], str): self.paths = [Path(self.config["src"])] else: - self.paths = tuple(Path(path) for path in config["src"]) + self.paths = tuple(Path(path) for path in sorted(config["src"])) self.lin_ref = None if self.config.get("lin_ref", False):