cgeorgiaw HF Staff commited on
Commit
9b4b159
·
verified ·
1 Parent(s): 4dcda30

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +0 -48
README.md CHANGED
@@ -25,14 +25,6 @@ The data and loader scripts reproduce the behavior of the original PyTorch `Data
25
 
26
  ## Repository Structure
27
 
28
- ```
29
- sibcl-dataset/
30
- ├── phc2d.h5
31
- ├── tise.h5
32
- ├── dataset_loader.py
33
- └── README.md
34
- ```
35
-
36
  * `phc2d.h5`: HDF5 with groups:
37
 
38
  * `unitcell/mpbepsimage/<index>`: 32×32 permittivity images
@@ -46,46 +38,6 @@ sibcl-dataset/
46
  * `eigval_fil/<index>`: eigenvalues
47
  * `eigvec_fil/<index>`: eigenvectors
48
 
49
- * `dataset_loader.py`: Hugging Face `datasets` script implementing both PhC2D and TISE loaders, with full config options.
50
-
51
- ## Metadata
52
-
53
- ```yaml
54
- dataset_name: sibcl-dataset
55
- builder_name: SIBCLDataset
56
- configs:
57
- - name: phc2d
58
- description: "2D photonic crystal DOS & bandstructure"
59
- - name: tise
60
- description: "3D TISE eigenvalue & eigenvector solutions"
61
- license: apache-2.0
62
- features:
63
- phc2d:
64
- inputeps: Array3D(shape=(1,32,32), dtype=float32)
65
- y: Sequence(Value(float32))
66
- EL: Sequence(Value(float32))
67
- ELdiff: Sequence(Value(float32))
68
- epsavg: Value(float32)
69
- tise:
70
- input: Array3D(shape=(1,<downres>,<downres>), dtype=float32)
71
- y: Sequence(Value(float32))
72
- splits:
73
- train: 10000
74
- validation: 500
75
- test: 2000
76
- ```
77
-
78
- ## Usage
79
-
80
- ```python
81
- from datasets import load_dataset
82
-
83
- # Load PhC2D (DOS prediction)
84
- ds_phc = load_dataset("YOUR_USERNAME/sibcl-dataset", name="phc2d", split="train")
85
-
86
- # Load TISE (eigenvalue prediction)
87
- ds_tise = load_dataset("YOUR_USERNAME/sibcl-dataset", name="tise", split="test")
88
- ```
89
 
90
  ## Processing & Training
91
 
 
25
 
26
  ## Repository Structure
27
 
 
 
 
 
 
 
 
 
28
  * `phc2d.h5`: HDF5 with groups:
29
 
30
  * `unitcell/mpbepsimage/<index>`: 32×32 permittivity images
 
38
  * `eigval_fil/<index>`: eigenvalues
39
  * `eigvec_fil/<index>`: eigenvectors
40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
 
42
  ## Processing & Training
43