Datasets:
Upload 2 files
Browse files- .gitattributes +1 -0
- README.md +90 -0
- all_known_species_index_25k_train.jsonl +3 -0
.gitattributes
CHANGED
|
@@ -57,3 +57,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 57 |
# Video files - compressed
|
| 58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 57 |
# Video files - compressed
|
| 58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
all_known_species_index_25k_train.jsonl filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: en
|
| 3 |
+
license: cc-by-4.0
|
| 4 |
+
task_categories:
|
| 5 |
+
- text-generation
|
| 6 |
+
tags:
|
| 7 |
+
- taxonomy
|
| 8 |
+
- species
|
| 9 |
+
- ncbi
|
| 10 |
+
- biodiversity
|
| 11 |
+
- withinusai
|
| 12 |
+
size_categories:
|
| 13 |
+
- 10K<n<100K
|
| 14 |
+
pretty_name: WithinUsAI All Known Species Index 25k (NCBI Taxonomy Sample)
|
| 15 |
+
dataset_info:
|
| 16 |
+
features:
|
| 17 |
+
- name: prompt
|
| 18 |
+
dtype: dict
|
| 19 |
+
- name: response
|
| 20 |
+
dtype: string
|
| 21 |
+
- name: meta
|
| 22 |
+
dtype: dict
|
| 23 |
+
- name: fact_sources
|
| 24 |
+
dtype: list
|
| 25 |
+
- name: artifacts
|
| 26 |
+
dtype: dict
|
| 27 |
+
---
|
| 28 |
+
|
| 29 |
+
# WithinUsAI/All_Known_Species_Index_25k — Master Scholars Academics (25k)
|
| 30 |
+
|
| 31 |
+
A **real-species** index dataset sampled from **NCBI Taxonomy** (taxdump) at the **species rank**, formatted for Tiny-Recursive-Model-friendly fine-tuning.
|
| 32 |
+
|
| 33 |
+
## What this is (and is not)
|
| 34 |
+
|
| 35 |
+
- This dataset contains **25,000 real species records** sampled from the NCBI taxonomy graph (rank=species).
|
| 36 |
+
- It **does not enumerate every described species name** (the full list is far larger and updated continuously).
|
| 37 |
+
If you want “all known species” as a full index, generate it from the same official NCBI taxdump or other backbones (Catalogue of Life, GBIF, WoRMS). This repo provides the schema and can be scaled.
|
| 38 |
+
|
| 39 |
+
## Task
|
| 40 |
+
|
| 41 |
+
Each row asks the model to return a **taxonomy classification JSON** for the given **taxid + scientific name**, with keys among:
|
| 42 |
+
|
| 43 |
+
`superkingdom, kingdom, phylum, class, order, family, genus, species`
|
| 44 |
+
|
| 45 |
+
**Output contract:** JSON only.
|
| 46 |
+
|
| 47 |
+
## Source
|
| 48 |
+
|
| 49 |
+
Official data backbone:
|
| 50 |
+
- NCBI Taxonomy FTP: `taxdump.tar.gz`
|
| 51 |
+
https://ftp.ncbi.nlm.nih.gov/pub/taxonomy/taxdump.tar.gz
|
| 52 |
+
|
| 53 |
+
Accessed: `2026-01-04T03:02:03Z`
|
| 54 |
+
|
| 55 |
+
## Schema
|
| 56 |
+
|
| 57 |
+
- `prompt.messages[]`: system + user
|
| 58 |
+
- `response`: JSON string containing `taxid`, `scientific_name`, and `classification`
|
| 59 |
+
- `meta`: ids, task, ranks, tags
|
| 60 |
+
- `fact_sources`: official anchor
|
| 61 |
+
- `artifacts`: output contract and token hints
|
| 62 |
+
|
| 63 |
+
## Example
|
| 64 |
+
|
| 65 |
+
```json
|
| 66 |
+
{
|
| 67 |
+
"prompt": {
|
| 68 |
+
"messages": [
|
| 69 |
+
{"role": "system", "content": "You are WithinUsAI Master Scholars Taxonomy Indexer. Output must be valid JSON only, no extra text."},
|
| 70 |
+
{"role": "user", "content": "NCBI Taxonomy species indexing task..."}
|
| 71 |
+
]
|
| 72 |
+
},
|
| 73 |
+
"response": "{\"taxid\": 9606, \"scientific_name\": \"Homo sapiens\", \"classification\": {\"superkingdom\": \"Eukaryota\", \"kingdom\": \"Metazoa\", \"phylum\": \"Chordata\", \"class\": \"Mammalia\", \"order\": \"Primates\", \"family\": \"Hominidae\", \"genus\": \"Homo\", \"species\": \"Homo sapiens\"}}",
|
| 74 |
+
"meta": {
|
| 75 |
+
"id": "WUA_ALL_SPECIES_25K_000001",
|
| 76 |
+
"domain": "all_known_species_index",
|
| 77 |
+
"subdomain": "ncbi_taxonomy::species",
|
| 78 |
+
"task": "taxonomy_indexing",
|
| 79 |
+
"truth_mode": "verifiable_from_ncbi_taxdump",
|
| 80 |
+
"wrapper": "json_only",
|
| 81 |
+
"created_utc": "2026-01-04T03:02:03Z",
|
| 82 |
+
"license": "cc-by-4.0"
|
| 83 |
+
}
|
| 84 |
+
}
|
| 85 |
+
```
|
| 86 |
+
|
| 87 |
+
## Citation
|
| 88 |
+
|
| 89 |
+
If you use this dataset in research or releases, cite it as:
|
| 90 |
+
**Within Us AI — WithinUsAI/All_Known_Species_Index_25k (NCBI Taxonomy Sample).**
|
all_known_species_index_25k_train.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:08abad1998c23318f02895e72eb3fdcc565ceefc85c0c38dbf447beb43516cdd
|
| 3 |
+
size 37169348
|