cgeorgiaw HF Staff commited on
Commit
1e8914a
·
verified ·
1 Parent(s): e1b6747

Add files using upload-large-folder tool

Browse files
README.md ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - image-to-image
5
+ - unconditional-image-generation
6
+ tags:
7
+ - microscopy
8
+ - electron-microscopy
9
+ - HAADF-STEM
10
+ - nanoparticles
11
+ - simulation
12
+ - materials-science
13
+ - webdataset
14
+ size_categories:
15
+ - 100K<n<1M
16
+ configs:
17
+ - config_name: default
18
+ data_files:
19
+ - split: train
20
+ path: "train-*.tar"
21
+ ---
22
+
23
+ # Nanoparticle Size Estimation Dataset (WebDataset)
24
+
25
+ 100,000 simulated HAADF-STEM images of nanoparticles with three image variants per sample (raw simulation, normalized, and CycleGAN style-transferred), paired with per-structure metadata including atomic coordinates, morphology, and simulation parameters.
26
+
27
+ ## Dataset Description
28
+
29
+ Synthetic HAADF-STEM images of Pt nanoparticles on various support interfaces, generated for nanoparticle size and morphology prediction. Each sample includes the raw simulation output, a set-normalized version, and a CycleGAN-transferred version that emulates experimental noise characteristics. Associated with the paper [Nanoparticle size estimation](https://pubs.acs.org/doi/10.1021/acs.nanolett.4c06025).
30
+
31
+ Original data: [Zenodo record 14608502](https://zenodo.org/records/14608502)
32
+
33
+ ## Format
34
+
35
+ WebDataset format: 20 TAR shards (~1 GB each), 19 GB total.
36
+
37
+ Each sample in a shard contains:
38
+ - `{idx:06d}.sim_raw.npy` — raw simulated HAADF-STEM image (128x128, float32)
39
+ - `{idx:06d}.sim_norm.npy` — set-normalized simulation (128x128, float32)
40
+ - `{idx:06d}.cyclegan.npy` — CycleGAN style-transferred image (128x128, float32)
41
+ - `{idx:06d}.json` — metadata
42
+
43
+ ### Metadata Fields
44
+
45
+ | Field | Type | Description |
46
+ |-------|------|-------------|
47
+ | `sample_id` | int | Original sample index |
48
+ | `original_filename` | string | Original .npy filename |
49
+ | `width` | int | Image width (128) |
50
+ | `height` | int | Image height (128) |
51
+ | `pixel_size` | float | Pixel size in Angstroms |
52
+ | `beam_offset_x` | float | Beam offset in x |
53
+ | `beam_offset_y` | float | Beam offset in y |
54
+ | `particle_rotation` | float | Particle rotation angle (radians) |
55
+ | `structure_type` | string | Nanoparticle morphology (cluster, wulff, random, etc.) |
56
+ | `support_interface` | string | Support surface orientation (e.g., 111, 100, random) |
57
+ | `particle_interface` | string | Particle surface orientation |
58
+ | `element` | string | Atomic species (Pt) |
59
+ | `subset` | string | Dataset subset label (e.g., AC_111_111) |
60
+ | `n_atoms` | int | Number of atoms in the structure |
61
+ | `raw_min` | float | Minimum pixel intensity (raw image) |
62
+ | `raw_max` | float | Maximum pixel intensity (raw image) |
63
+ | `raw_mean` | float | Mean pixel intensity (raw image) |
64
+ | `raw_std` | float | Std dev of pixel intensity (raw image) |
65
+
66
+ ### Image Properties
67
+
68
+ - **Count:** 100,000 samples (300,000 images total across 3 variants)
69
+ - **Format:** NumPy arrays (.npy), float32
70
+ - **Resolution:** 128x128
71
+ - **Modality:** Synthetic HAADF-STEM
72
+ - **Element:** Pt nanoparticles
73
+ - **Morphologies:** cluster, wulff, random
74
+
75
+ ## Usage
76
+
77
+ ```python
78
+ import webdataset as wds
79
+ import numpy as np
80
+ from torch.utils.data import DataLoader
81
+
82
+ url = "path/to/nanoparticle_wds/train-{0000..0019}.tar"
83
+ dataset = wds.WebDataset(url).decode().shuffle(1000)
84
+ dataloader = DataLoader(dataset, batch_size=64, num_workers=4)
85
+
86
+ for sample in dataloader:
87
+ raw_image = sample[".sim_raw.npy"]
88
+ norm_image = sample[".sim_norm.npy"]
89
+ cyclegan_image = sample[".cyclegan.npy"]
90
+ metadata = sample[".json"]
91
+ ```
92
+
93
+ ## Source
94
+
95
+ Original data from [Zenodo record 14608502](https://zenodo.org/records/14608502). Associated paper: [Nano Letters (2024)](https://pubs.acs.org/doi/10.1021/acs.nanolett.4c06025).
96
+
97
+ ## License
98
+
99
+ CC-BY-4.0
train-0000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5cb9e0ab6c8f72aa305edbde93d076869b2026fa9c6571fb89ee0235c5ae78ac
3
+ size 1016576000
train-0001.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2b0fb3477a934baa42bc89b6a017e30109b5fd1b1b88254773a68b163d7e6b2
3
+ size 1016576000
train-0002.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9219b01c05d39696498fb8fdd711cb8894190f4e4c1f81443381d7f540f7f22f
3
+ size 1016371200
train-0003.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3dc85df24bec43def815edc3a537c2c3d505c2fe1e1a9be6499944d45bfd61c6
3
+ size 1016371200
train-0004.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:328ac8a7b4198a266574447567f3ed03ceaa8744af4a6085e90ea48573971dde
3
+ size 1016371200
train-0005.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:111561d1d6664188e3d01f0e3ab27064166e7085e6128881f2b443cfdf3819a1
3
+ size 1016371200
train-0006.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37b822bd91bfad724383ee1ea698c3ac9d07ea9045b9ba5fa0aa314cea280005
3
+ size 1016371200
train-0007.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:125ac8b0e4c9660b187d56f33b4fead6d9b2da306f749afa1187c4e9fa9f5e73
3
+ size 1016371200
train-0008.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96852ee4cf38d6e28a8a8de33aa7731b27e843235c7cf35d7d6d148cb2e2c55e
3
+ size 1016371200
train-0009.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e26863f41df552f937f8331d1776a3d1fdb73b59c047c2adc6895f84aaa9d3f1
3
+ size 1016576000
train-0010.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:69e80c16a58e5926592b739bd15c480781ca427d6856c7d81d42bf34af385bcd
3
+ size 1016371200
train-0011.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de62ac2f06ac781520756cd9027999a50cf66d9e325534d43f1f3c3c504d8952
3
+ size 1016371200
train-0012.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e5d8350d1a2eb99e53cbcb7eca0974dbdd2a84cdb678531c6f9eaa2b36ba0ba
3
+ size 1016371200
train-0013.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9808ed4759f0cefebfb11ac97dba47f0ed97e6633c30ba059e08cee8320cfa98
3
+ size 1016371200
train-0014.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6322e2612a6242e3bc8b97e435a506a41ac62a9deb651ba6f821329e92ad352
3
+ size 1016371200
train-0015.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d870af794bff437a4ac21f5da4b1e569e5633f6eb52b4eef462d0e636c77bc6
3
+ size 1016576000
train-0016.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:667324c7c20f95db4e1e8c8331561bac992fa48bd3c3b64e3fb3f1533f8227fe
3
+ size 1016371200
train-0017.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd8b3f89287884b5a325594fd4d29d961d697e2977bab0571a5b318e06569cd1
3
+ size 1016371200
train-0018.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35de9f3a9e6a90efe3410e31e08c4ac8becd7e79d242b4dc7c7d8bf9eecf0a21
3
+ size 1016371200
train-0019.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cfbcf21290241ce9921cce9b67c21c07672a33aadd34ca02423d31cea5706b7c
3
+ size 758671360