Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#806: Move data.db to s3 and download via download_large_files #807

Merged
merged 1 commit into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/core/inference.md
Original file line number Diff line number Diff line change
Expand Up @@ -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')
```


Expand Down
1 change: 1 addition & 0 deletions src/fairchem/core/scripts/download_large_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
],
}

Expand Down
Loading