Files changed (1) hide show
  1. README.md +209 -3
README.md CHANGED
@@ -1,3 +1,209 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ```yaml
3
+ ---
4
+ language:
5
+ - en
6
+ size_categories:
7
+ - 50K<n<100K
8
+ license: mit
9
+ task_categories:
10
+ - tabular-regression
11
+ tags:
12
+ - photonics
13
+ - optical-dispersion
14
+ - waveguide
15
+ - optical
16
+ - dataset
17
+ - synthetic
18
+ - broadband
19
+ dataset_info:
20
+ features:
21
+ - name: wavelength_min
22
+ dtype: float
23
+ - name: wavelength_max
24
+ dtype: float
25
+ - name: group_index_min
26
+ dtype: float
27
+ - name: group_index_max
28
+ dtype: float
29
+ - name: chromatic_dispersion
30
+ dtype: float
31
+ - name: mode_group_delay_min
32
+ dtype: float
33
+ - name: mode_group_delay_max
34
+ dtype: float
35
+ - name: effective_index_at_min
36
+ dtype: float
37
+ - name: effective_index_at_max
38
+ dtype: float
39
+ - name: effective_index_change
40
+ dtype: float
41
+ - name: waveguide_material
42
+ dtype: string
43
+ - name: cladding_material
44
+ dtype: string
45
+ - name: propagation_loss_min
46
+ dtype: float
47
+ - name: propagation_loss_max
48
+ dtype: float
49
+ - name: measurement_method
50
+ dtype: string
51
+ - name: measurement_uncertainty
52
+ dtype: float
53
+ - name: temperature
54
+ dtype: float
55
+ - name: signal_bandwidth
56
+ dtype: float
57
+ - name: device_length
58
+ dtype: float
59
+ - name: material_dispersion
60
+ dtype: float
61
+ - name: waveguide_dispersion
62
+ dtype: float
63
+ dataset_size: 100000
64
+ dataset_version: "1.0.0"
65
+ ---
66
+ ```
67
+
68
+ # Frequency Dispersion Dataset 📡
69
+
70
+ > **Description**
71
+ > This dataset provides **100,000 synthetic rows** to model **frequency dispersion** in photonic waveguides. It includes essential parameters such as **group index**, **chromatic dispersion**, and **mode group delay** across varying wavelength ranges, enabling simulation and optimization of waveguide designs for optical chips.
72
+
73
+ ## Key Highlights ✨
74
+ - **Focus**: Frequency-dependent behavior of waveguides, specifically for **optical chips**.
75
+ - **Columns**: 21 structured columns capturing wavelength ranges, material properties, dispersion metrics, and loss measurements.
76
+ - **Size**: 100,000 rows, suitable for training machine learning models, validating designs, and simulating performance.
77
+ - **Use Cases**:
78
+ - **Modeling dispersion effects** in optical communication systems.
79
+ - **Broadband photonic device design** for minimal dispersion.
80
+ - **Waveguide optimization** for real-world environmental conditions.
81
+
82
+ ## Dataset Structure 🏗️
83
+ Each row corresponds to a **single configuration or simulation result** for a waveguide, including:
84
+
85
+ 1. **Wavelength Range**
86
+ - `wavelength_min` (nm): Minimum operating wavelength.
87
+ - `wavelength_max` (nm): Maximum operating wavelength.
88
+
89
+ 2. **Dispersion Metrics**
90
+ - `group_index_min` and `group_index_max`: Group index values at the wavelength limits.
91
+ - `chromatic_dispersion` (ps/nm·km): Quantifies dispersion over the wavelength range.
92
+ - `mode_group_delay_min` and `mode_group_delay_max` (ps/m): Signal delay per meter.
93
+ - `material_dispersion` and `waveguide_dispersion`: Separate contributions to total dispersion.
94
+
95
+ 3. **Effective Index**
96
+ - `effective_index_at_min`: Effective refractive index at minimum wavelength.
97
+ - `effective_index_at_max`: Effective refractive index at maximum wavelength.
98
+ - `effective_index_change`: Change in refractive index across the range.
99
+
100
+ 4. **Material Properties**
101
+ - `waveguide_material`: Core material (e.g., Silicon Nitride).
102
+ - `cladding_material`: Cladding material (e.g., Silicon Dioxide).
103
+
104
+ 5. **Loss and Environmental Parameters**
105
+ - `propagation_loss_min` and `propagation_loss_max` (dB/cm): Losses at wavelength limits.
106
+ - `temperature` (°C): Operating temperature.
107
+ - `signal_bandwidth` (GHz): Signal bandwidth.
108
+ - `device_length` (mm): Waveguide length.
109
+
110
+ 6. **Metadata**
111
+ - `measurement_method`: Method used for data collection (e.g., Optical Time Domain Reflectometry).
112
+ - `measurement_uncertainty` (%): Error margin in data.
113
+
114
+ ---
115
+
116
+ ## Example Row
117
+ ```text
118
+ wavelength_min = 1260.0
119
+ wavelength_max = 1625.0
120
+ group_index_min = 1.50500
121
+ group_index_max = 1.52500
122
+ chromatic_dispersion = 10.25
123
+ mode_group_delay_min = 0.12
124
+ mode_group_delay_max = 0.18
125
+ effective_index_at_min = 1.45200
126
+ effective_index_at_max = 1.45900
127
+ effective_index_change = 0.00700
128
+ waveguide_material = Silicon Nitride (Si₃N₄)
129
+ cladding_material = Silicon Dioxide (SiO₂)
130
+ propagation_loss_min = 0.2
131
+ propagation_loss_max = 0.4
132
+ measurement_method = Optical Time Domain Reflectometry
133
+ measurement_uncertainty = 1.5
134
+ temperature = 25.0
135
+ signal_bandwidth = 50.0
136
+ device_length = 10.0
137
+ material_dispersion = 3.20
138
+ waveguide_dispersion = 7.05
139
+ ```
140
+
141
+ ---
142
+
143
+ ## How to Use 💡
144
+ 1. **Download/Clone**
145
+ - Download the dataset manually or use Hugging Face’s `datasets` library:
146
+ ```python
147
+ from datasets import load_dataset
148
+
149
+ dataset = load_dataset("username/frequency-dispersion")
150
+ ```
151
+
152
+ 2. **Loading and Exploration**
153
+ - Load into Python using `pandas` for quick exploration:
154
+ ```python
155
+ import pandas as pd
156
+
157
+ df = pd.read_csv("frequency-dispersion.csv")
158
+ print(df.head())
159
+ ```
160
+
161
+ 3. **Machine Learning**
162
+ - Use the dataset for **regression tasks** like predicting chromatic dispersion or group delay:
163
+ ```python
164
+ features = df[[
165
+ "wavelength_min", "wavelength_max", "temperature",
166
+ "signal_bandwidth", "device_length"
167
+ ]]
168
+ target = df["chromatic_dispersion"]
169
+
170
+ # Train a regression model, e.g., scikit-learn, XGBoost, etc.
171
+ ```
172
+
173
+ 4. **Performance Simulation**
174
+ - Model frequency dispersion effects and validate designs against target specifications.
175
+
176
+ ---
177
+
178
+ ## Caveats & Limitations ⚠️
179
+ - **Synthetic Data**: Generated based on typical photonic designs and may not represent all real-world scenarios.
180
+ - **Simplifications**: Assumes ideal waveguides with no fabrication-induced imperfections.
181
+ - **Measurement Noise**: `measurement_uncertainty` is a simulated value, not derived from real measurements.
182
+
183
+ ---
184
+
185
+ ## License 📄
186
+ This dataset is available under the **MIT License**. You are free to modify, distribute, and use it for commercial or non-commercial purposes—just provide attribution.
187
+
188
+ ---
189
+
190
+ ## Citation & Acknowledgments 🙌
191
+ If you use this dataset in your research or applications, please cite it as follows:
192
+
193
+ ```bibtex
194
+ @misc{frequency_dispersion_dataset_2025,
195
+ title = {Frequency Dispersion Dataset (Synthetic)},
196
+ author = {https://huggingface.co/Taylor658},
197
+ year = {2025},
198
+ how published = {\url{https://huggingface.co/datasets/username/frequency-dispersion}}
199
+ }
200
+ ```
201
+
202
+ ---
203
+
204
+ ## Contributing 🧑‍💻
205
+ We welcome contributions!
206
+
207
+
208
+
209
+