From cb05238941fe9bc03532c39039c67aa3be174e9c Mon Sep 17 00:00:00 2001 From: Daniel Levine Date: Tue, 13 Aug 2024 11:39:24 -0700 Subject: [PATCH] #806: Move data.db to s3 and download via download_large_files (#807) --- docs/core/inference.md | 3 ++- src/fairchem/core/scripts/download_large_files.py | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/core/inference.md b/docs/core/inference.md index d10dc6fed..63ce48465 100644 --- a/docs/core/inference.md +++ b/docs/core/inference.md @@ -23,7 +23,8 @@ Boes, J. R., Groenenboom, M. C., Keith, J. A., & Kitchin, J. R. (2016). Neural n You can retrieve the dataset below. In this notebook we learn how to do "mass inference" without an ASE calculator. You do this by creating a config.yml file, and running the `main.py` command line utility. ```{code-cell} ipython3 -! wget https://figshare.com/ndownloader/files/11948267 -O data.db +from fairchem.core.scripts.download_large_files import download_file_group +download_file_group('docs') ``` diff --git a/src/fairchem/core/scripts/download_large_files.py b/src/fairchem/core/scripts/download_large_files.py index f79fa2156..5fba35643 100644 --- a/src/fairchem/core/scripts/download_large_files.py +++ b/src/fairchem/core/scripts/download_large_files.py @@ -36,6 +36,7 @@ "docs": [ Path("docs/tutorials/NRR/NRR_example_bulks.pkl"), Path("docs/core/fine-tuning/supporting-information.json"), + Path("docs/core/data.db"), ], }