Skip to content

Commit e41ca32

Browse files
committed
rename pages /about-test-test-set to /about-the-data and /how-to-contribute to /contribute
clean up gitignore
1 parent 228be00 commit e41ca32

19 files changed

+7
-14
lines changed

.gitignore

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
# package install
22
*.egg-info
33
dist
4-
build
54

65
# cache
76
__pycache__
8-
.coverage*
97

108
# datasets
11-
*.p
129
*.json.gz
1310
*.json.bz2
1411
*.csv.bz2
@@ -17,17 +14,13 @@ data/**/raw
1714
data/2022-*
1815
data/m3gnet-*
1916

20-
# Weights and Biases logs
17+
# slurm + Weights and Biases logs
2118
wandb/
22-
job-logs/
23-
24-
# slurm logs
2519
*slurm-*.log
2620

2721
# generated docs
2822
site/src/routes/api/*.md
2923

3024
# temporary ignore rules
3125
notes
32-
models/voronoi/*.zip
3326
2023-02-05-ens=10-perturb=5

data/wbm/analysis.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
module_dir = os.path.dirname(__file__)
2020
print(f"{pio.templates.default=}")
21-
about_data_page = f"{ROOT}/site/src/routes/about-the-test-set"
21+
about_data_page = f"{ROOT}/site/src/routes/about-the-data"
2222

2323

2424
# %%

matbench_discovery/data.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def load_train_test(
6060
Recognized data keys are mp-computed-structure-entries, mp-elemental-ref-energies,
6161
mp-energies, mp-patched-phase-diagram, wbm-computed-structure-entries,
6262
wbm-initial-structures, wbm-summary. See
63-
https://janosh.github.io/matbench-discovery/how-to-contribute for data descriptions.
63+
https://janosh.github.io/matbench-discovery/contribute for data descriptions.
6464
6565
Args:
6666
data_names (str | list[str], optional): Which parts of the MP/WBM data to load.

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ In version 1 of this benchmark, we explore 8 models covering multiple methodolog
2121

2222
<slot name="metrics-table" />
2323

24-
We welcome contributions that add new models to the leaderboard through [GitHub PRs](https://github.com/janosh/matbench-discovery/pulls). See the [usage and contributing guide](https://janosh.github.io/matbench-discovery/how-to-contribute) for details.
24+
We welcome contributions that add new models to the leaderboard through [GitHub PRs](https://github.com/janosh/matbench-discovery/pulls). See the [usage and contributing guide](https://janosh.github.io/matbench-discovery/contribute) for details.
2525

2626
For a version 2 release of this benchmark, we plan to merge the current training and test sets into the new training set and acquire a much larger test set compared to the v1 test set of 257k structures.

site/src/routes/how-to-contribute/+page.md site/src/routes/contribute/+page.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,4 +184,4 @@ This information can be very useful for someone looking to reproduce your result
184184

185185
## 😵‍💫 &thinsp; Troubleshooting
186186

187-
Having problems using or contributing to the project? Please [open an issue on GitHub]({repo}/issues). Happy to help! 😊
187+
Having problems using or contributing to the project? Please [open an issue on GitHub]({repo}/issues) or [start a discussion]({repo}/discussions) for open-ended conversations. Happy to help! 😊

site/src/routes/paper/+page.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ The choice of data for the train and test sets of this benchmark fell on the lat
9292

9393
## Results
9494

95-
Our benchmark is designed to make [adding future models easy](/how-to-contribute). The initial release compares the following [models](/models):
95+
Our benchmark is designed to make [adding future models easy](/contribute). The initial release compares the following [models](/models):
9696

9797
1. [CGCNN](https://arxiv.org/abs/1710.10324) @xie_crystal_2018
9898
1. [BOWSR](https://sciencedirect.com/science/article/pii/S1369702121002984) @zuo_accelerating_2021

tests/test_data.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def test_load_train_test_doc_str() -> None:
111111
for name in DATA_FILENAMES:
112112
assert name in doc_str, f"Missing data {name=} in load_train_test() docstring"
113113

114-
route = "/how-to-contribute"
114+
route = "/contribute"
115115
assert os.path.isdir(f"{ROOT}/site/src/routes/{route}")
116116

117117

0 commit comments

Comments
 (0)