Views
No views yet
| Level | Accuracy |
|---|---|
| Domain | 92.6% |
| Field | 85.8% |
| Subfield | 73.6% |
| Topic (exact) | 62.6% |
| Model | Domain | Field | Subfield | Topic |
|---|---|---|---|---|
| Base (potion-32m) | 77.2% | 60.5% | 27.9% | 16.2% |
| Fine-tuned | 92.6% | 85.8% | 73.6% | 62.6% |
| Improvement | +15.4 | +25.3 | +45.7 | +46.4 |
1from model2vec import StaticModel
2import numpy as np
3
4# Load model
5model = StaticModel.from_pretrained("jimnoneill/dataset-to-field")
6
7# Prepare your text
8text = "Machine learning approaches for protein structure prediction using deep neural networks"
9
10# Get embedding
11embedding = model.encode([text])
12
13# For full classification pipeline, see:
14# https://github.com/data-S-index/dataset-to-field1@software{dataset-to-field,
2 author = {O'Neill, James, Patel, Bhavesh},
3 title = {Dataset Research Field Classifier},
4 year = {2026},
5 url = {https://github.com/data-S-index/dataset-to-field}
6}