Update README.md
Browse files
README.md
CHANGED
|
@@ -1,49 +1,57 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
-
|
| 43 |
-
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
- fr
|
| 6 |
+
tags:
|
| 7 |
+
- nba
|
| 8 |
+
- basketball
|
| 9 |
+
size_categories:
|
| 10 |
+
- 1K<n<10K
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Synthetic NBA Mentions Dataset
|
| 14 |
+
|
| 15 |
+
## Overview
|
| 16 |
+
This dataset consists of 1617 synthetically generated samples, divided into training and test sets. Each sample is annotated with relevant NBA team and player names, and the dataset is designed to support tasks such as named entity recognition (NER) in the context of NBA-related text.
|
| 17 |
+
|
| 18 |
+
## Dataset Structure
|
| 19 |
+
Each sample in the dataset follows the JSON format below:
|
| 20 |
+
|
| 21 |
+
```json
|
| 22 |
+
{
|
| 23 |
+
"sentence": "Les wizards ont perdu face aux Spurs, même si scott williams a fait un excellent match.",
|
| 24 |
+
"llm_model_id": "hf.co/unsloth/Qwen3-30B-A3B-Instruct-2507-GGUF:UD-Q4_K_XL",
|
| 25 |
+
"category": "General NBA Mentions",
|
| 26 |
+
"language": "French",
|
| 27 |
+
"annotation": {
|
| 28 |
+
"team_names": [
|
| 29 |
+
"wizards",
|
| 30 |
+
"Spurs"
|
| 31 |
+
],
|
| 32 |
+
"player_names": [
|
| 33 |
+
"scott williams"
|
| 34 |
+
]
|
| 35 |
+
}
|
| 36 |
+
}
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
### Fields
|
| 40 |
+
- **sentence**: A synthetically generated sentence mentioning NBA teams and/or players.
|
| 41 |
+
- **llm_model_id**: The identifier of the language model used to generate the sentence.
|
| 42 |
+
- **category**: The category of the mention (e.g., "General NBA Mentions").
|
| 43 |
+
- **language**: The language of the sentence (e.g., "French").
|
| 44 |
+
- **annotation**: Structured annotations containing:
|
| 45 |
+
- **team_names**: List of NBA team names mentioned in the sentence.
|
| 46 |
+
- **player_names**: List of NBA player names mentioned in the sentence.
|
| 47 |
+
|
| 48 |
+
## Generation Process
|
| 49 |
+
The sentences were generated using the following LLMs:
|
| 50 |
+
- `hf.co/unsloth/Qwen3-30B-A3B-Instruct-2507-GGUF:UD-Q4_K_XL`
|
| 51 |
+
- `mistral-small3.2:24b-instruct-2506-q4_K_M`
|
| 52 |
+
|
| 53 |
+
Annotations were performed using larger LLMs, followed by a human review to ensure accuracy and correct any errors.
|
| 54 |
+
|
| 55 |
+
## Repository
|
| 56 |
+
The code used to generate this dataset is available in the following repository:
|
| 57 |
+
[pdgarden/ner-llm-finetuning](https://github.com/pdgarden/ner-llm-finetuning)
|