Godseye1311 commited on
Commit
3033139
·
verified ·
1 Parent(s): 477bcbd

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +54 -0
README.md ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ pretty_name: CHILI-3K (CHILI nanomaterials, unofficial mirror)
4
+ tags:
5
+ - chemistry
6
+ - materials-science
7
+ - nanomaterials
8
+ - graph-machine-learning
9
+ size_categories:
10
+ - 1K<n<10K
11
+ ---
12
+
13
+ # CHILI-3K — unofficial Hugging Face mirror
14
+
15
+ Raw archive of **CHILI-3K** from the CHILI dataset, mirrored to HF for convenient
16
+ cloud access. This repo contains the original `.h5` files packaged as `CHILI-3K.zip`
17
+ (one HDF5 file per crystal-type / composition; each holds all 5 nanoparticle sizes).
18
+
19
+ ## Attribution (please cite the original authors)
20
+
21
+ > Friis-Jensen, U., Selvan, R., et al. *CHILI: Chemically-Informed Large-scale
22
+ > Inorganic Nanomaterials Dataset for Advancing Graph Machine Learning.* KDD '24.
23
+
24
+ - Paper: https://arxiv.org/abs/2402.13221
25
+ - Code: https://github.com/UlrikFriisJensen/CHILI (Apache-2.0)
26
+ - Data DOI: https://doi.org/10.17894/ucph.e37b6615-8635-49cf-819d-eae60e781a96
27
+
28
+ ## Licensing
29
+
30
+ - **Data** (the `.h5` archive in this repo): **CC BY 4.0** — the license of the
31
+ original CHILI dataset/paper. You may share and adapt it *with attribution* to
32
+ the authors above. This is the repo's primary `license:` tag.
33
+ - **Original CHILI code** (dataset class, generation scripts): **Apache-2.0**,
34
+ see https://github.com/UlrikFriisJensen/CHILI.
35
+ - **Any loader/wrapper code added to this mirror**: **MIT** (covers only the
36
+ helper code, not the data).
37
+
38
+ This mirror is **unofficial**; all credit to the original authors. Attribution is
39
+ preserved as required by CC BY 4.0.
40
+
41
+ ## Contents
42
+
43
+ - `CHILI-3K.zip` — original raw HDF5 archive from the DTU/ERDA repository.
44
+
45
+ ## Graph-level schema (`y` dict, per the paper's Table 2)
46
+
47
+ Node `x = [atomic_number, atomic_radius, atomic_weight, electron_affinity]`;
48
+ `edge_attr = [distance (Å)]`; `pos_abs` / `pos_frac` atomic coordinates.
49
+ `y` holds crystal_type, space_group_*, crystal_system(_number), cell_params[6],
50
+ the full unit-cell subgraph, and simulated scattering signals
51
+ (nd, xrd, nPDF, xPDF, sans, saxs) — usable as targets **or** conditioning inputs.
52
+
53
+ Load the original way with the authors' `CHILI` PyG dataset class, or unzip and
54
+ read the `.h5` files directly with `h5py`.