SummerMC Developer commited on
Commit
cb07e6d
·
1 Parent(s): 3796021

Restructure: move JSONL to root, fix README metadata

Browse files

- Moved data/train-00000-of-00001.jsonl → v_fable.jsonl (root)
- Fixed README YAML metadata: use configs with data_files
- Updated stats to reflect 100k records
- Fixed dataset references

README.md CHANGED
@@ -8,14 +8,14 @@ license:
8
  multilinguality:
9
  - monolingual
10
  size_categories:
11
- - 10K<n<100K
12
  source_datasets:
13
  - Glint-Research/Fable-5-traces
14
- task_categories:
15
- - text-generation
16
- task_ids:
17
- - language-modeling
18
- - dialogue-generation
19
  ---
20
 
21
  # v-Fable: Synthetic Fable-5 Traces Dataset
@@ -27,10 +27,11 @@ AIエージェント(claude-fable-5)のコード生成・ツール使用の
27
 
28
  | 項目 | 値 |
29
  |------|------|
30
- | レコード数 | 4,665 |
 
31
  | セッション数 | 60 |
32
  | モデル | claude-fable-5 |
33
- | フォーマット | JSONL |
34
  | ライセンス | AGPL-3.0 |
35
 
36
  ## 📋 カラム構成
@@ -52,7 +53,7 @@ AIエージェント(claude-fable-5)のコード生成・ツール使用の
52
 
53
  | 指標 | 元データ | 合成データ |
54
  |------|---------|-----------|
55
- | レコード数 | 4,665 | 4,665 |
56
  | % text | 18.6% | 18.7% |
57
  | % tool_use | 81.4% | 81.3% |
58
  | CoT 平均長 | 2,669文字 | 2,634文字 |
@@ -89,7 +90,7 @@ for r in ds:
89
 
90
  ```bash
91
  pip install numpy
92
- python3 fable5_generator.py --sessions 60 --records 4665 --output train.jsonl --seed 42
93
  ```
94
 
95
  ## 📝 ライセンス
 
8
  multilinguality:
9
  - monolingual
10
  size_categories:
11
+ - 100K<n<1M
12
  source_datasets:
13
  - Glint-Research/Fable-5-traces
14
+ configs:
15
+ - config_name: default
16
+ data_files:
17
+ - split: train
18
+ path: v_fable.jsonl
19
  ---
20
 
21
  # v-Fable: Synthetic Fable-5 Traces Dataset
 
27
 
28
  | 項目 | 値 |
29
  |------|------|
30
+ | レコード数 | **100,000** |
31
+ | ファイル | `v_fable.jsonl` |
32
  | セッション数 | 60 |
33
  | モデル | claude-fable-5 |
34
+ | フォーマット | JSONL (10カラム) |
35
  | ライセンス | AGPL-3.0 |
36
 
37
  ## 📋 カラム構成
 
53
 
54
  | 指標 | 元データ | 合成データ |
55
  |------|---------|-----------|
56
+ | レコード数 | 4,665 | **100,000** |
57
  | % text | 18.6% | 18.7% |
58
  | % tool_use | 81.4% | 81.3% |
59
  | CoT 平均長 | 2,669文字 | 2,634文字 |
 
90
 
91
  ```bash
92
  pip install numpy
93
+ python3 fable5_generator.py --sessions 60 --records 4665 --output v_fable.jsonl --seed 42
94
  ```
95
 
96
  ## 📝 ライセンス
data/train-00000-of-00001.jsonl → v_fable.jsonl RENAMED
File without changes