pdesj commited on
Commit
052a9fb
·
verified ·
1 Parent(s): 1ae3e90

Update README.md

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