Upload README_CELL6.md with huggingface_hub
Browse files- README_CELL6.md +58 -0
README_CELL6.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- kluyveromyces-marxianus
|
| 4 |
+
- cell6
|
| 5 |
+
- literature-mining
|
| 6 |
+
- nlp
|
| 7 |
+
- v10.0.0
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# 🌌 Cell 6: Quantum Literature Mining
|
| 11 |
+
|
| 12 |
+
This README documents the data collected by **Cell 6**, which runs in the isolated `cell6_literature` config.
|
| 13 |
+
|
| 14 |
+
This dataset uses an **Extended Schema** (57 fields) for advanced NLP tasks, including full-text, section extraction, entities, and quality metrics.
|
| 15 |
+
|
| 16 |
+
## Statistics
|
| 17 |
+
- **Version**: v10.0.0
|
| 18 |
+
- **Total Records (All Runs)**: 230
|
| 19 |
+
- **Last Updated**: 2025-11-13
|
| 20 |
+
|
| 21 |
+
## Data Access
|
| 22 |
+
|
| 23 |
+
### 1. Load All Raw Data
|
| 24 |
+
```python
|
| 25 |
+
from datasets import load_dataset
|
| 26 |
+
dataset = load_dataset(
|
| 27 |
+
"Milad96/Kluyveromyces-marxianus",
|
| 28 |
+
name="cell6_literature",
|
| 29 |
+
data_dir="cell6_data",
|
| 30 |
+
split="train"
|
| 31 |
+
)
|
| 32 |
+
# (dataset contains 230 records)
|
| 33 |
+
```
|
| 34 |
+
|
| 35 |
+
### 2. Load Processed Splits
|
| 36 |
+
```python
|
| 37 |
+
from datasets import load_dataset
|
| 38 |
+
splits = load_dataset(
|
| 39 |
+
"Milad96/Kluyveromyces-marxianus",
|
| 40 |
+
name="cell6_literature",
|
| 41 |
+
data_dir="cell6_splits"
|
| 42 |
+
)
|
| 43 |
+
# splits['train'], splits['validation'], splits['test']
|
| 44 |
+
```
|
| 45 |
+
|
| 46 |
+
## Data Sources (All Runs)
|
| 47 |
+
| Collector Source | Records |
|
| 48 |
+
| :--- | ---: |
|
| 49 |
+
| europepmc_quantum | 142 |
|
| 50 |
+
| core_quantum | 87 |
|
| 51 |
+
| pubmed_quantum | 1 |
|
| 52 |
+
|
| 53 |
+
## Schema
|
| 54 |
+
This dataset uses an **Extended Schema** with 57 fields, including `full_text`, `section_hierarchy`, `introduction`, `methods`, `results`, `discussion`, `entities`, `quality_score`, etc.
|
| 55 |
+
|
| 56 |
+
**Status**: ✅ Production Ready
|
| 57 |
+
**Version**: v10.0.0
|
| 58 |
+
**Cell**: 6/6
|