| license: mit | |
| # Optical Network Dataset | |
| This dataset contains ITU-T and IEEE 802.3 standards, along with their embeddings. The dataset is organized as follows: | |
| - **/documents/Standards/IEEE Standards/**: Contains IEEE standards. | |
| - **/documents/Standards/ITU-T Recommendations/**: Contains ITU-T Recommendations. | |
| - **/embeddings/**: Contains embeddings as .npy files. | |
| - **Documents.db**: Database for indexing chunks and metadata. | |
| - **metadata.json**: Describes dataset categories, structure, and metadata. | |
| ## How to use this dataset | |
| To load this dataset, you can use the Hugging Face datasets library: | |
| ```python | |
| from datasets import load_dataset | |
| dataset = load_dataset("Anishanks/optical-network-data", split="train") | |