Tunanzzz commited on
Commit
58ee89d
·
verified ·
1 Parent(s): e57e751

Add files using upload-large-folder tool

Browse files
.gitattributes CHANGED
@@ -58,3 +58,8 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
61
+ synthetic/metadata/id_infer.json filter=lfs diff=lfs merge=lfs -text
62
+ synthetic/metadata/ood_infer.json filter=lfs diff=lfs merge=lfs -text
63
+ synthetic/metadata/train.jsonl filter=lfs diff=lfs merge=lfs -text
64
+ synthetic/metadata/id_need_infer.json filter=lfs diff=lfs merge=lfs -text
65
+ synthetic/metadata/train_sft.jsonl filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,235 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ - zh
6
+ task_categories:
7
+ - image-classification
8
+ - image-feature-extraction
9
+ tags:
10
+ - font-recognition
11
+ - visual-font-recognition
12
+ - VFR
13
+ - open-set
14
+ - vision-language
15
+ - multimodal
16
+ - typography
17
+ size_categories:
18
+ - 100K<n<1M
19
+ pretty_name: DesignVFR
20
+ ---
21
+
22
+ # DesignVFR
23
+
24
+ > **Towards Universal Open-Set Visual Font Recognition via Augmented Synthetic Similarity** &nbsp;·&nbsp; CVPR 2026 Findings
25
+
26
+ **DesignVFR** is the first large-scale benchmark for **universal open-set Visual Font Recognition (VFR)**. While prior VFR work is limited to closed-set classification on isolated character-level grayscale images, DesignVFR covers font recognition in real-world *universal* scenarios — sentences, complex backgrounds, and artistic effects across **posters, films, slides and vlogs** — and explicitly evaluates the **open-set** regime where unseen fonts keep being added.
27
+
28
+ - 📰 **Paper**: *Towards Universal Open-Set Visual Font Recognition via Augmented Synthetic Similarity* (CVPR 2026 Findings)
29
+ - 💻 **Code**: [github.com/your-org/FontVLM](https://github.com/your-org/FontVLM)
30
+ - 🐍 **Loader**: anchors all paths on `${DATASET_ROOT}`, see *Quick Start*
31
+
32
+ ## ✨ Highlights
33
+
34
+ | | |
35
+ |---|---|
36
+ | **Total fonts** | 1,242 multilingual fonts (Chinese + Latin + multi-script) |
37
+ | **Total images** | 668,400 augmented synthetic + 42,794 real-world universal-scenario |
38
+ | **Real-world splits** | 19,759 poster crops · 22,414 video frames |
39
+ | **Augmentation pipeline** | Sentence-level rendering with font-faithful augmentations (color, blur, perspective, background, …) |
40
+ | **Open-set protocol** | 1,068 in-domain (ID) fonts + 174 out-of-domain (OOD) fonts, never seen during training |
41
+
42
+ ## 📦 Subsets
43
+
44
+ DesignVFR is organised into three complementary subsets:
45
+
46
+ | Subset | Source | What's inside |
47
+ |---|---|---|
48
+ | **`synthetic/`** | Augmented synthetic pipeline | Training set (1,087 fonts) · ID gallery (1,069) · OOD gallery (197) · ID/OOD query splits |
49
+ | **`posterreal/`** | Real-world graphic-design posters | 221 fonts, sentence-level crops with rich layouts |
50
+ | **`videoreal/`** | Real-world video frames | 148 ID fonts + 170 OOD fonts; sentence-level frames from films / vlogs |
51
+
52
+ ## 🗂️ Layout (after `python unpack.py`)
53
+
54
+ ```
55
+ DesignVFR/
56
+ ├── synthetic/
57
+ │ ├── train/ 1,087 font dirs · 332,100 images
58
+ │ ├── id_infer/ 1,069 font dirs (synthetic ID gallery)
59
+ │ ├── id_need_infer/ 1,069 font dirs (synthetic ID query)
60
+ │ ├── ood_infer/ 197 font dirs (synthetic OOD gallery)
61
+ │ ├── ood_need_infer/ 197 font dirs (synthetic OOD query)
62
+ │ └── metadata/
63
+ │ ├── train.jsonl # ms-swift training data (next-token format)
64
+ │ ├── train_with_mask.jsonl # variant with text-region masks
65
+ │ ├── train_sft.jsonl # SFT-style variant (font name as response)
66
+ │ ├── id_infer.json / id_need_infer.json
67
+ │ ├── ood_infer.json / ood_need_infer.json
68
+ │ └── font_family_to_index.json # 1,068-class label map
69
+ ├── posterreal/
70
+ │ ├── images/ 221 font dirs (real poster crops)
71
+ │ └── metadata/
72
+ │ ├── id.json # ID protocol (fonts overlap with synthetic train)
73
+ │ └── ood.json # OOD protocol (unseen fonts)
74
+ └── videoreal/
75
+ ├── id/ 148 font dirs
76
+ ├── ood/ 170 font dirs
77
+ └── metadata/
78
+ ├── id.json
79
+ └── ood.json
80
+ ```
81
+
82
+ > **All paths inside the metadata files use the `${DATASET_ROOT}` placeholder**, e.g.
83
+ > `"${DATASET_ROOT}/synthetic/train/AaHouDiHei/AaHouDiHei_normal_400_0.png"`.
84
+ > Set `DATASET_ROOT` once and the metadata works no matter where you put the dataset on disk.
85
+
86
+ ## 🚀 Quick Start
87
+
88
+ ### 1. Download
89
+
90
+ ```bash
91
+ # requires huggingface_hub>=0.24
92
+ huggingface-cli download <user>/DesignVFR --repo-type dataset \
93
+ --local-dir ./DesignVFR
94
+ ```
95
+
96
+ ### 2. Unpack the tar shards
97
+
98
+ The dataset is shipped as ~1 GB tar shards (`synthetic/train.part-001.tar`, …) to stay friendly to git-LFS. Extract them in place with the bundled unpacker:
99
+
100
+ ```bash
101
+ cd DesignVFR
102
+ python unpack.py
103
+ ```
104
+
105
+ After this step the on-disk layout matches the diagram above. The original tar shards can be safely deleted.
106
+
107
+ ### 3. Point your training code at it
108
+
109
+ ```bash
110
+ export DATASET_ROOT=/abs/path/to/DesignVFR
111
+ ```
112
+
113
+ ### 4. Use it
114
+
115
+ #### a. As a `datasets.Dataset` (raw metadata)
116
+
117
+ Each metadata JSON is a list of records, each containing the image URL plus its label:
118
+
119
+ ```python
120
+ import json, os
121
+ from datasets import Dataset
122
+
123
+ records = json.load(open('DesignVFR/posterreal/metadata/id.json'))
124
+ # Expand ${DATASET_ROOT}
125
+ for r in records:
126
+ r['text_img_url'] = os.path.expandvars(r['text_img_url'])
127
+
128
+ ds = Dataset.from_list(records)
129
+ print(ds[0])
130
+ # {'font_family': 'Source Han Sans SC',
131
+ # 'text': '欢迎咨询',
132
+ # 'text_img_url': '/abs/path/.../posterreal/images/Source Han Sans SC Regular/...png',
133
+ # ...}
134
+ ```
135
+
136
+ #### b. With ms-swift (training out of the box)
137
+
138
+ The training jsonl follows ms-swift's *messages* format and uses a special `<|font|>` token as the assistant response:
139
+
140
+ ```jsonl
141
+ {"images": ["${DATASET_ROOT}/synthetic/train/AaHouDiHei/AaHouDiHei_normal_400_0.png"],
142
+ "messages": [
143
+ {"role": "user", "content": "<image> What is the font of the text in this image?"},
144
+ {"role": "assistant", "content": "<|font|>"}
145
+ ],
146
+ "label": 0}
147
+ ```
148
+
149
+ ms-swift's preprocessor automatically expands `${DATASET_ROOT}` at load time (see `swift/llm/dataset/preprocessor/core.py::_cast_mm_data`), so you only need:
150
+
151
+ ```bash
152
+ export DATASET_ROOT=/abs/path/to/DesignVFR
153
+ swift sft \
154
+ --model Qwen/Qwen2.5-VL-3B-Instruct \
155
+ --dataset $DATASET_ROOT/synthetic/metadata/train.jsonl \
156
+ ...
157
+ ```
158
+
159
+ ## 🔢 Statistics at a glance
160
+
161
+ | Split | # fonts | # images | Type |
162
+ |---|---:|---:|---|
163
+ | `synthetic/train` | 1,087 | 332,100 | Augmented synthetic, training |
164
+ | `synthetic/id_infer` | 1,069 | 55,350 | Augmented synthetic, ID gallery |
165
+ | `synthetic/id_need_infer` | 1,069 | 55,350 | Augmented synthetic, ID query |
166
+ | `synthetic/ood_infer` | 197 | 68,050 | Augmented synthetic, OOD gallery |
167
+ | `synthetic/ood_need_infer` | 197 | 12,700 | Augmented synthetic, OOD query |
168
+ | `posterreal/id` | ~70 | 9,875 | Real posters, ID protocol |
169
+ | `posterreal/ood` | ~150 | 10,505 | Real posters, OOD protocol |
170
+ | `videoreal/id` | 148 | 10,045 | Real video frames, ID |
171
+ | `videoreal/ood` | 170 | 12,369 | Real video frames, OOD |
172
+
173
+ (Per-split counts are derived from the released metadata files; "# fonts" reflects unique font directories.)
174
+
175
+ ## 📑 Metadata schema
176
+
177
+ ### `synthetic/metadata/{train, train_with_mask, train_sft}.jsonl`
178
+
179
+ | Field | Type | Notes |
180
+ |---|---|---|
181
+ | `images` | `list[str]` | Single image URL with `${DATASET_ROOT}` prefix |
182
+ | `messages` | `list[{role, content}]` | ms-swift conversation format |
183
+ | `label` | `int` | Index into `font_family_to_index.json` (0 ≤ label < 1068) |
184
+
185
+ ### `synthetic/metadata/{id,ood}_{infer,need_infer}.json`, `posterreal/metadata/*.json`, `videoreal/metadata/*.json`
186
+
187
+ | Field | Type | Notes |
188
+ |---|---|---|
189
+ | `text_img_url` | `str` | Crop image, anchored on `${DATASET_ROOT}` |
190
+ | `mask_img_url` | `str` | (synthetic only) Binary mask of the text region |
191
+ | `font_family` | `str` | Logical font family (used as the **gold label**) |
192
+ | `font_file` | `str` | Concrete font file (multiple files may share one family) |
193
+ | `text` | `str` | Rendered text content |
194
+ | Other | — | Style fields (color, weight, …) only present on `posterreal` |
195
+
196
+ ### `synthetic/metadata/font_family_to_index.json`
197
+
198
+ `{"<font_family_name>": <int_index>}` — the canonical 1,068-class label map used during synthetic-set training.
199
+
200
+ ## 🧪 Open-set protocol
201
+
202
+ We split fonts into two disjoint pools:
203
+
204
+ - **In-Distribution (ID)** — 1,068 fonts seen during synthetic training. `*_id` query splits should report top-k accuracy against an ID gallery of size 1,068.
205
+ - **Out-of-Distribution (OOD)** — 174 fonts **never** seen during training. `*_ood` query splits target the open-set capability of the recogniser.
206
+
207
+ The accompanying paper recommends two evaluation modes:
208
+
209
+ 1. **Classification mode** — direct softmax over 1,068 ID classes (only meaningful on ID splits).
210
+ 2. **Similarity mode** — extract a query feature, match it via cosine similarity against a *synthetic reference gallery* built from `*_infer` splits. This naturally extends to OOD fonts at inference time, **without retraining**.
211
+
212
+ See the [FontVLM repository](https://github.com/your-org/FontVLM) for reference implementations of both.
213
+
214
+ ## ⚖️ License & responsible use
215
+
216
+ - The dataset is released under the **Apache 2.0** license, **for research purposes only**.
217
+ - The font files themselves are **not redistributed** — only rendered images are. Some fonts shipped in DesignVFR carry restrictive commercial licenses (e.g. fonts whose names contain *"Non-Commercial Use"*); please consult the original font foundries before any commercial application.
218
+ - Real-world poster / video frames were collected from public sources for academic study only. If you are a copyright holder and would like a sample removed, please open an issue on the GitHub repository.
219
+
220
+ ## 📚 Citation
221
+
222
+ ```bibtex
223
+ @InProceedings{Zhou_2026_CVPR,
224
+ author = {Zhou, Peicheng and Fang, Shancheng and Jin, Chenhui and Pu, Bowei and Xie, Hongtao},
225
+ title = {Towards Universal Open-Set Visual Font Recognition Via Augmented Synthetic Similarity},
226
+ booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) Findings},
227
+ month = {June},
228
+ year = {2026},
229
+ pages = {6799-6808}
230
+ }
231
+ ```
232
+
233
+ ## 🙏 Acknowledgement
234
+
235
+ We thank the open-source projects [ms-swift](https://github.com/modelscope/ms-swift), [Qwen2.5-VL](https://github.com/QwenLM/Qwen2.5-VL), [LLaVA-OneVision](https://github.com/LLaVA-VL/LLaVA-NeXT), and [PaddleOCR](https://github.com/PaddlePaddle/PaddleOCR) on top of which DesignVFR was built.
posterreal/images.part-001.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9ebaac372d6ab3d0e14048304e907f577b3095b7ca77d3e399497efebeeed8a5
3
+ size 1186856960
posterreal/images.part-002.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6b25a2b1f874ea8a2aaf57c8dd45f19432e66605f17cb074d902cd182c99197
3
+ size 351692800
posterreal/metadata/id.json ADDED
The diff for this file is too large to render. See raw diff
 
posterreal/metadata/ood.json ADDED
The diff for this file is too large to render. See raw diff
 
synthetic/id_infer.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad01395d9a51a608acfde00fc4a85b182b92772de2d1517c610f3c4a7e43c330
3
+ size 1112094720
synthetic/id_need_infer.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd7abd41baa44b3a527e4383954322edd9677da9642671f2cef532a2cda70dcf
3
+ size 1106012160
synthetic/metadata/font_family_to_index.json ADDED
@@ -0,0 +1,1070 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "TsangerYuMo": 0,
3
+ "sucaijishikufangti": 1,
4
+ "QIJIFALLBACK": 2,
5
+ "REEJI-PengPaiGB": 3,
6
+ "MuyaoPleased": 4,
7
+ "SJxingshu": 5,
8
+ "AlimamaShuHeiTiBold": 6,
9
+ "Nanum Pen": 7,
10
+ "SJhuaxin": 8,
11
+ "ReeJi-BigRuixainGBV1": 9,
12
+ "zcool-gdh": 10,
13
+ "slideyouran": 11,
14
+ "SJgusong": 12,
15
+ "DreamFont-XiaoyuGB": 13,
16
+ "SJliushu": 14,
17
+ "AaHouDiHei": 15,
18
+ "SJqinyunxiaozhuan": 16,
19
+ "SJzhengzhihei": 17,
20
+ "Source Han Sans SC": 18,
21
+ "ACGN-XinyouB-GB": 19,
22
+ "Reeji-CloudYuanCu-GB": 20,
23
+ "HappyZcool-2016": 21,
24
+ "Reeji-CloudKaiXing-GB": 22,
25
+ "SJzhuanli": 23,
26
+ "HelloFont WenYiHei": 24,
27
+ "PangMenZhengDao": 25,
28
+ "HuXiaoBo-YingLi-Jian": 26,
29
+ "SJchunlian": 27,
30
+ "HCSZT": 28,
31
+ "SJzhuzhi": 29,
32
+ "HuXiaoBo-MengNanTi": 30,
33
+ "HuXiaoBo_KuHei": 31,
34
+ "Reeji-CloudSongDa-GB": 32,
35
+ "TsangerYuYangT": 33,
36
+ "SJzhuokai": 34,
37
+ "WenCang": 35,
38
+ "Kaushan Script": 36,
39
+ "Roboto": 37,
40
+ "Nunito": 38,
41
+ "Abril Fatface": 39,
42
+ "Creepster": 40,
43
+ "Staatliches": 41,
44
+ "Ultra": 42,
45
+ "PPT kongxin": 43,
46
+ "Open Sans": 44,
47
+ "Sacramento": 45,
48
+ "Just Another Hand": 46,
49
+ "Fondamento": 47,
50
+ "Monsieur La Doulaise": 48,
51
+ "Gamja Flower": 49,
52
+ "Cabin Sketch": 50,
53
+ "Trade Winds": 51,
54
+ "Permanent Marker": 52,
55
+ "Monoton": 53,
56
+ "Saira Stencil One": 54,
57
+ "Rock Salt": 55,
58
+ "Oleo Script": 56,
59
+ "Libre Baskerville": 57,
60
+ "Amatic SC": 58,
61
+ "Molle": 59,
62
+ "Caveat": 60,
63
+ "Titan One": 61,
64
+ "Playfair Display": 62,
65
+ "Damion": 63,
66
+ "Marcellus": 64,
67
+ "Tangerine": 65,
68
+ "Anton": 66,
69
+ "Megrim": 67,
70
+ "329-CAI978": 68,
71
+ "缘缘体行书": 69,
72
+ "SYSGRCT": 70,
73
+ "Quattrocento-": 71,
74
+ "112-SS Yi Fang Ti": 72,
75
+ "SJshishangyunhei": 73,
76
+ "FasterOne-": 74,
77
+ "SourceSerifPro-It": 75,
78
+ "Helvetica CE 55 Roman": 76,
79
+ "SYSYLLXY": 77,
80
+ "SYSJZYM": 78,
81
+ "蝉羽安好晴天": 79,
82
+ "948-CAI978": 80,
83
+ "流星公举体": 81,
84
+ "QZRBS": 82,
85
+ "AaFuWaTi": 83,
86
+ "锐字潮牌真言简": 84,
87
+ "华康少女文字Std W5": 85,
88
+ "ZYXCQSN": 86,
89
+ "Sjyouxiansong C": 87,
90
+ "702-CAI978": 88,
91
+ "XuandongKaishu": 89,
92
+ "迷你简铁筋隶书": 90,
93
+ "SYBWCXCS": 91,
94
+ "HYSunWanMinCaoShu": 92,
95
+ "YEFONTGuoJiangTi": 93,
96
+ "884-CAI978": 94,
97
+ "658-CAI978": 95,
98
+ "TsangerAMXingKai": 96,
99
+ "neucha-1": 97,
100
+ "江西拙楷": 98,
101
+ "Grumbling Effect": 99,
102
+ "Dream-CuHeiGBT": 100,
103
+ "演示春风楷": 101,
104
+ "江城斜黑体 200W": 102,
105
+ "YQYBW": 103,
106
+ "汉仪珍珠隶简": 104,
107
+ "钟齐志莽行书": 105,
108
+ "HCBBlyt-2019": 106,
109
+ "霞鹜漫黑": 107,
110
+ "荆南波波黑 Black": 108,
111
+ "Allise": 109,
112
+ "907-CAI978": 110,
113
+ "台湾全字库正宋体(TW-Sung)": 111,
114
+ "REEJI-Xiaodou-MofeiyuanGB": 112,
115
+ "Underdog-1": 113,
116
+ "VastShadow-": 114,
117
+ "华康隶书体Std W7": 115,
118
+ "造字工房书见体": 116,
119
+ "HYMackintoshH1": 117,
120
+ "华康勘亭流Std W9": 118,
121
+ "郑庆科建黑体": 119,
122
+ "Russo-One-1": 120,
123
+ "Oxygen": 121,
124
+ "AaZhishiroubushipangdudu (Non-Commercial Use)": 122,
125
+ "HBJianTouPiaoDaiTi": 123,
126
+ "SJ-qianxiahuakai": 124,
127
+ "Gruppo-": 125,
128
+ "fusion-pixel-12px-monospaced-zh_hans": 126,
129
+ "AllertaStencil-": 127,
130
+ "breathe-press": 128,
131
+ "Monox": 129,
132
+ "Hanyi Senty Silk Road": 130,
133
+ "AaXiaoyixingkai (Non-Commercial Use)": 131,
134
+ "759-CAI978": 132,
135
+ "HCSuixinxing-2019": 133,
136
+ "SYTFKYT": 134,
137
+ "SJzhengdianhei": 135,
138
+ "Zeyada": 136,
139
+ "510-CAI978": 137,
140
+ "Diavlo": 138,
141
+ "SJzhenglanghei": 139,
142
+ "642-CAI978": 140,
143
+ "Reflex": 141,
144
+ "La-Belle-Aurore-1": 142,
145
+ "FingerPaint-": 143,
146
+ "499-CAI978": 144,
147
+ "MMJ": 145,
148
+ "arapey-": 146,
149
+ "Politica XT ": 147,
150
+ "华康宋体Std W3": 148,
151
+ "HYZhuZiQingTongTi": 149,
152
+ "Kavivanar--2": 150,
153
+ "敏锐青春修炼体": 151,
154
+ "LHF Seranoa": 152,
155
+ "sijiyuni": 153,
156
+ "Inconsolata": 154,
157
+ "LowerEastSide": 155,
158
+ "CormorantUnicase-Semi": 156,
159
+ "italiana-": 157,
160
+ "于洪亮钢笔楷书": 158,
161
+ "思源黑体SourceHanSansCN-": 159,
162
+ "LeagueScript": 160,
163
+ "Corrupter": 161,
164
+ "GiveYouGlory-1": 162,
165
+ "LiuJian-Mao-Cao": 163,
166
+ "华康布丁体 W12": 164,
167
+ "SJwenhaokaishu": 165,
168
+ "HuanLeXiaoLu": 166,
169
+ "HYYongZiSongHei": 167,
170
+ "Typewriter Oldstyle": 168,
171
+ "Selima": 169,
172
+ "MYWRZWN": 170,
173
+ "AaZuihaodeliwu (Non-Commercial Use)": 171,
174
+ "SYAQCZT": 172,
175
+ "578-CAI978": 173,
176
+ "Decaying Kuntry": 174,
177
+ "NLXJT": 175,
178
+ "YYT": 176,
179
+ "SYXLFFT": 177,
180
+ "SourceSerifPro-Extra": 178,
181
+ "Gaegu-": 179,
182
+ "SG10": 180,
183
+ "MobleySans": 181,
184
+ "HBDingXiangHongMaoBiKaiShu": 182,
185
+ "SSQianQianTi": 183,
186
+ "Pea Nguyen": 184,
187
+ "MingHei": 185,
188
+ "SJZDWZYN": 186,
189
+ "GrandHotel-": 187,
190
+ "SJxinpiantixx": 188,
191
+ "703-CAI978": 189,
192
+ "520-CAI978": 190,
193
+ "Neurochrome": 191,
194
+ "千图马克手写体": 192,
195
+ "308-CAI978": 193,
196
+ "仓耳非白 W01": 194,
197
+ "HYYaKuHei": 195,
198
+ "KautivaUni": 196,
199
+ "JGWPYS": 197,
200
+ "Swis721 Ex BT": 198,
201
+ "联盟起艺卢帅正锐黑体": 199,
202
+ "XXYYXS": 200,
203
+ "SYYRDJG": 201,
204
+ "Frutiger CE 55 Roman": 202,
205
+ "HYFuManTang": 203,
206
+ "HYXinXiuTi": 204,
207
+ "Moonstar": 205,
208
+ "HYTiaoTiaoTi": 206,
209
+ "造字工房舒宋体": 207,
210
+ "PatrickHand-": 208,
211
+ "HYXuanSong": 209,
212
+ "898-CAI978": 210,
213
+ "TsangerXYSJ": 211,
214
+ "SYJSLST": 212,
215
+ "REEJI-CHAO-ShiguangT": 213,
216
+ "ReemKufi-": 214,
217
+ "Futura LT Condensed": 215,
218
+ "Christopherhand": 216,
219
+ "米开街角的小浪漫": 217,
220
+ "Monofett": 218,
221
+ "xiongdifont_yy": 219,
222
+ "SuezOne-": 220,
223
+ "Pangmenzhengdaoqingsongti": 221,
224
+ "WRDF": 222,
225
+ "Kreon-": 223,
226
+ "Aa梦幻星球巡游日落": 224,
227
+ "演示悠然小楷": 225,
228
+ "HYWenHei": 226,
229
+ "Alice-": 227,
230
+ "437-CAI978": 228,
231
+ "BadScript-": 229,
232
+ "Lamper Script": 230,
233
+ "米开一生只爱你一人": 231,
234
+ "小可奶酪体": 232,
235
+ "ZnikomitSC-2": 233,
236
+ "YesevaOne-_v2": 234,
237
+ "华康龙门石碑Std W9": 235,
238
+ "SJhuazhaoxianxi": 236,
239
+ "HYErMaTuYa": 237,
240
+ "段宁软笔行书": 238,
241
+ "FandolSong-": 239,
242
+ "Superclarendon-": 240,
243
+ "HYZhuZiLieYanTi": 241,
244
+ "HYTianHQBYJ": 242,
245
+ "千图纤墨体": 243,
246
+ "ZHZHMMT": 244,
247
+ "华康新综艺Std W7": 245,
248
+ "CrowBeak": 246,
249
+ "EuphoriaScript-": 247,
250
+ "883-CAI978": 248,
251
+ "529-CAI978": 249,
252
+ "TitilliumText14L": 250,
253
+ "汉仪楷体简": 251,
254
+ "TradeGothic LT": 252,
255
+ "SYDRQFT": 253,
256
+ "HYMiTangTi": 254,
257
+ "新愚公迷茫体": 255,
258
+ "HYHeiYXDJ": 256,
259
+ "华康正颜楷体Std W7": 257,
260
+ "SJwdlydyg": 258,
261
+ "175-SS Chao Wan Ti": 259,
262
+ "包图小白体": 260,
263
+ "DreamHanSerifCN-W6": 261,
264
+ "DingTalk JinBuTi": 262,
265
+ "Heliotype Std": 263,
266
+ "Comic Sans": 264,
267
+ "HYYankaiW": 265,
268
+ "FrankRuhlLibre-Black": 266,
269
+ "Prompt-Black": 267,
270
+ "Fluoxetine": 268,
271
+ "SirinStencil-": 269,
272
+ "ZauriSans": 270,
273
+ "Juice": 271,
274
+ "GZNSS": 272,
275
+ "逐浪萌芽字": 273,
276
+ "新愚公沧桑体": 274,
277
+ "庞门正道细线体": 275,
278
+ "National First Font": 276,
279
+ "米开倩女幽魂体": 277,
280
+ "Cedarville-Cursive": 278,
281
+ "HGGTZH": 279,
282
+ "Equinox Std": 280,
283
+ "432-CAI978": 281,
284
+ "段宁硬笔镂空隶书": 282,
285
+ "萌萌": 283,
286
+ "SYQRCJ": 284,
287
+ "Old Republic": 285,
288
+ "468-CAI978": 286,
289
+ "汇文明朝体": 287,
290
+ "NRCFWHWY": 288,
291
+ "HanWangWCL05": 289,
292
+ "FrankRuhlLibre-": 290,
293
+ "江城尖刃黑": 291,
294
+ "造字工房自在体": 292,
295
+ "SJluorixiadeyeqiangwei": 293,
296
+ "HBBanYuanHuaTi": 294,
297
+ "YCWuLiTouAiTi": 295,
298
+ "922-CAI978": 296,
299
+ "HYBeiWeiXieJing": 297,
300
+ "521-CAI978": 298,
301
+ "Speedline": 299,
302
+ "Quark": 300,
303
+ "Neogrey": 301,
304
+ "Dyers Eve": 302,
305
+ "Oxygen-": 303,
306
+ "HYBenMoNaHan": 304,
307
+ "taoziqishui": 305,
308
+ "RuslanDisplay": 306,
309
+ "溺亡深海": 307,
310
+ "ArkanaScript": 308,
311
+ "SYQHNYXHW": 309,
312
+ "Minster No 2": 310,
313
+ "FeENrm28C": 311,
314
+ "Segoe UI": 312,
315
+ "新愚公装甲宋A": 313,
316
+ "SJ-Chaiyuan": 314,
317
+ "千图厚黑体": 315,
318
+ "SJkebenyasong": 316,
319
+ "Monda-": 317,
320
+ "SYQCDYG": 318,
321
+ "Non Blocking Socket": 319,
322
+ "823-CAI978": 320,
323
+ "HYZhuZiWanJuPaiDui": 321,
324
+ "SJzhuyuan": 322,
325
+ "Barrio": 323,
326
+ "Head-injuries": 324,
327
+ "PTN57F": 325,
328
+ "Junge-": 326,
329
+ "AaMissLemon": 327,
330
+ "Playlist-Caps-2": 328,
331
+ "GEETYPE-C4PineGBT-Flash": 329,
332
+ "回眸一眼就心动": 330,
333
+ "YCX": 331,
334
+ "造字工房致尚体": 332,
335
+ "930-CAI978": 333,
336
+ "Paperback 9": 334,
337
+ "HYZhuZiXiaoJingLing": 335,
338
+ "Courgette": 336,
339
+ "FandolKai-": 337,
340
+ "Vinque": 338,
341
+ "Kinggs Hand": 339,
342
+ "302-CAI978": 340,
343
+ "点点像素体-方形": 341,
344
+ "Mekanik Std": 342,
345
+ "HelveticaNeue LT 75 BdOutline": 343,
346
+ "HYLanMeiMei": 344,
347
+ "怀良行书空心体": 345,
348
+ "SourceSerifPro-Black": 346,
349
+ "CYQCTTT": 347,
350
+ "AaBubu (Non-Commercial Use)": 348,
351
+ "Bentham": 349,
352
+ "841-CAI978": 350,
353
+ "华康钢笔体 W2": 351,
354
+ "ElsieSwashCaps-": 352,
355
+ "ZiZhiQuXiMaiTi": 353,
356
+ "ContrailOne-": 354,
357
+ "LondrinaSketch-": 355,
358
+ "造字工房妙淘体": 356,
359
+ "Redstar": 357,
360
+ "江城斜宋体 100W": 358,
361
+ "华康黑体 W5": 359,
362
+ "Myriad Pro": 360,
363
+ "JiangChengYuanTi": 361,
364
+ "Aldrich-": 362,
365
+ "马善政毛笔楷体": 363,
366
+ "738-CAI978": 364,
367
+ "设计师爱心体1号字": 365,
368
+ "Honey Script": 366,
369
+ "Vollkorn-": 367,
370
+ "千图笔锋手写体": 368,
371
+ "Aa落月楷书": 369,
372
+ "江城解星体": 370,
373
+ "Eliza Facia": 371,
374
+ "HBSunYunHeKuKai": 372,
375
+ "ZQKLKT": 373,
376
+ "LHF Michelle ": 374,
377
+ "造字工房彩圆体": 375,
378
+ "AndNow Hand": 376,
379
+ "KellySlab-": 377,
380
+ "相思入骨": 378,
381
+ "华康娃娃体Std W5": 379,
382
+ "HYShuiFXSJ": 380,
383
+ "荆南麦圆体": 381,
384
+ "Joyfont-GhostsGB-free": 382,
385
+ "江城知音体 400W": 383,
386
+ "Teen": 384,
387
+ "Axininca Ft SILDoulos": 385,
388
+ "FeENit27C": 386,
389
+ "HBXiongAnFeiMoTi": 387,
390
+ "中文像素字体(IPix)": 388,
391
+ "HanyiSentySuciTablet": 389,
392
+ "SHCLNSXG": 390,
393
+ "LLT": 391,
394
+ "Paganini": 392,
395
+ "HBZhaoDuTi": 393,
396
+ "560-CAI978": 394,
397
+ "VT323-": 395,
398
+ "179-SSPengKe": 396,
399
+ "650-CAI978": 397,
400
+ "174-SS Pu Ke Ti": 398,
401
+ "207-SSXiYouTi": 399,
402
+ "HYZhongHei": 400,
403
+ "汉仪细简黑简": 401,
404
+ "FandolHei-": 402,
405
+ "514-CAI978": 403,
406
+ "云峰静龙行书": 404,
407
+ "SJybsyybq": 405,
408
+ "SYJYXK": 406,
409
+ "Brusher": 407,
410
+ "JYKT": 408,
411
+ "Interstate": 409,
412
+ "Parry Hotter": 410,
413
+ "SYLLFCT": 411,
414
+ "SYZJHLT": 412,
415
+ "Cupid de Locke": 413,
416
+ "阿里汉仪智能黑体": 414,
417
+ "QFPJXYBC": 415,
418
+ "造字工房妙妙体": 416,
419
+ "RacingSansOne-": 417,
420
+ "AaWaterMelonSang": 418,
421
+ "Dream-DaHeiGBT": 419,
422
+ "SJtiheizhong": 420,
423
+ "MiriamLibre-": 421,
424
+ "085-SS Yuan Qi Ti": 422,
425
+ "MontserratAlternates-": 423,
426
+ "HelveticaRounded LT Cn": 424,
427
+ "SYYRWTS": 425,
428
+ "可爱不打烊": 426,
429
+ "蝉羽丘陵颖宝": 427,
430
+ "DonatoraDisplayOSF": 428,
431
+ "Walkway Oblique": 429,
432
+ "瑞美加张清平硬笔行书": 430,
433
+ "CormorantGaramond-": 431,
434
+ "米开静心禅楷": 432,
435
+ "Lato": 433,
436
+ "AXSHY": 434,
437
+ "TXNNJ": 435,
438
+ "Pado": 436,
439
+ "280-SSYingXiongTi": 437,
440
+ "Arizonia": 438,
441
+ "HYZhuZiZaHuoPu": 439,
442
+ "YEFONTRunYuanTi": 440,
443
+ "JosefinSlab--3": 441,
444
+ "kurale-": 442,
445
+ "Candy Script": 443,
446
+ "HYZiYanGuoDongTi": 444,
447
+ "Allura": 445,
448
+ "Dream-ShuSongGBT": 446,
449
+ "League Gothic": 447,
450
+ "GEETYPE-KarutaGB": 448,
451
+ "SeymourOne-": 449,
452
+ "SSKuanZaiTi": 450,
453
+ "Podkova-": 451,
454
+ "764-CAI978": 452,
455
+ "The_Breathe": 453,
456
+ "YEFONTHuaJuanTi": 454,
457
+ "Interstate Mono - Lgt": 455,
458
+ "586-CAI978": 456,
459
+ "米开红颜醉": 457,
460
+ "AaShuangYuzuo": 458,
461
+ "字体圈欣意吉祥宋": 459,
462
+ "WireOne-2": 460,
463
+ "Elsie-": 461,
464
+ "RJJJ": 462,
465
+ "SororityHack": 463,
466
+ "站酷庆科黄油体": 464,
467
+ "Resource Han Rounded CN": 465,
468
+ "482-CAI978": 466,
469
+ "文道潮黑": 467,
470
+ "Lemon-Tuesday-1": 468,
471
+ "sjyuanjianjianti c": 469,
472
+ "千图雪花体": 470,
473
+ "Pirou-": 471,
474
+ "SYHDT": 472,
475
+ "331-CAI978": 473,
476
+ "ZXF YunYan Trial": 474,
477
+ "华康俪金黑Std W8": 475,
478
+ "SJ-gaodianyexiao778": 476,
479
+ "ZXF MagicNight Gothic": 477,
480
+ "Geo": 478,
481
+ "标小智龙珠体": 479,
482
+ "TulpenOne-": 480,
483
+ "815-CAI978": 481,
484
+ "HYYongZiQiQiaoBan": 482,
485
+ "华康海报体 W12": 483,
486
+ "一品创享体": 484,
487
+ "Fragma": 485,
488
+ "Swis721 LtCn BT": 486,
489
+ "784-CAI978": 487,
490
+ "886-CAI978": 488,
491
+ "HYDiShengLangLangTi": 489,
492
+ "米开光阴荏苒体": 490,
493
+ "MonoxSerifExtra": 491,
494
+ "Mithril": 492,
495
+ "HCSxxdm-2019": 493,
496
+ "PoiretOne-": 494,
497
+ "华康楷体Std W5": 495,
498
+ "时光伴雨": 496,
499
+ "906-CAI978": 497,
500
+ "造字工房溢彩体": 498,
501
+ "547-CAI978": 499,
502
+ "杨任东竹石体": 500,
503
+ "华康彩带体 W7": 501,
504
+ "华康POP3体Std W12": 502,
505
+ "SJlingfeiti": 503,
506
+ "山茶线谱": 504,
507
+ "快去写作业-CJK Mono": 505,
508
+ "PTC75F": 506,
509
+ "733-CAI978": 507,
510
+ "汉仪粗仿宋简": 508,
511
+ "Cheap Pizza": 509,
512
+ "176-SS Lu Ban Song Ti": 510,
513
+ "Unifont点阵黑": 511,
514
+ "Assistant-Extra-3": 512,
515
+ "LoversQuarrel-": 513,
516
+ "SYXCTY": 514,
517
+ "Fontdinerdotcom Sparkly": 515,
518
+ "Kristi": 516,
519
+ "字体传奇特战体": 517,
520
+ "SYQRHTT": 518,
521
+ "Koziupack": 519,
522
+ "Miso": 520,
523
+ "汉标硬笔新楷体": 521,
524
+ "汉仪水滴体简": 522,
525
+ "FFF Tusj": 523,
526
+ "胡晓波骚包体2": 524,
527
+ "JosefinSlab--4": 525,
528
+ "771-CAI978": 526,
529
+ "JustMeAgainDownHere-1": 527,
530
+ "Interstate Cond Mono": 528,
531
+ "knewave": 529,
532
+ "SSShuiDiTi": 530,
533
+ "IMFePIsc28P": 531,
534
+ "WDTTQ": 532,
535
+ "猫啃网烟波宋-B": 533,
536
+ "CormorantUnicase-": 534,
537
+ "ElNino": 535,
538
+ "Corbel": 536,
539
+ "SJluxixingkai": 537,
540
+ "472-CAI978": 538,
541
+ "华康翩翩体 W3": 539,
542
+ "Assistant-Extra-4": 540,
543
+ "标小智无界黑": 541,
544
+ "HYYuanLongHei": 542,
545
+ "Minim": 543,
546
+ "SYCLJYT": 544,
547
+ "HYHuaGuan": 545,
548
+ "龚帆免费体": 546,
549
+ "SYQMZXCXF": 547,
550
+ "ClickerScript-": 548,
551
+ "LANMI_liujingyi_cu": 549,
552
+ "米开致青春": 550,
553
+ "Univers LT 53 Extended": 551,
554
+ "Gill Sans ExtraCondensed": 552,
555
+ "华康雅艺体Std W6": 553,
556
+ "361-CAI978": 554,
557
+ "822-CAI978": 555,
558
+ "SF Scribbled Sans": 556,
559
+ "JMExpositionRounded": 557,
560
+ "TTCQDSN": 558,
561
+ "XXDYMRDY": 559,
562
+ "Bld": 560,
563
+ "千图小兔体": 561,
564
+ "LHF Tuscan Full Block | ATK": 562,
565
+ "129-SS MoYaoTi": 563,
566
+ "SJxiingfudeyuandan": 564,
567
+ "JetLink MauKai": 565,
568
+ "Downtempo": 566,
569
+ "Farsan": 567,
570
+ "AaBoheweidemao (Non-Commercial Use)": 568,
571
+ "AaYinXiang (Non-Commercial Use)": 569,
572
+ "Bungee-Shade": 570,
573
+ "米开青春梦": 571,
574
+ "NovaSquare": 572,
575
+ "Bellefair-": 573,
576
+ "ArimaMadurai-": 574,
577
+ "FandolFang-": 575,
578
+ "Paddington": 576,
579
+ "DNZSMX": 577,
580
+ "迷你简彩云": 578,
581
+ "GravitasOne": 579,
582
+ "庞门正道真贵楷体": 580,
583
+ "Goffik-Outline": 581,
584
+ "胡晓波男神体2": 582,
585
+ "梧桐林的猫女巫": 583,
586
+ "Imperator": 584,
587
+ "ZnikomitNo25": 585,
588
+ "Rosario-": 586,
589
+ "HYTangMeiRen": 587,
590
+ "华康手札体 W5": 588,
591
+ "542-CAI978": 589,
592
+ "华康饰艺体Std W7": 590,
593
+ "LANMI_huhong": 591,
594
+ "443-CAI978": 592,
595
+ "SJchunzhen-CX": 593,
596
+ "造字工房梵宋体": 594,
597
+ "HBQingXinSaTuoTi": 595,
598
+ "飞花宋体": 596,
599
+ "段宁硬笔隶书": 597,
600
+ "造字工房春赋体": 598,
601
+ "HanyiSentyCrayon": 599,
602
+ "Glametrix-1": 600,
603
+ "Wolves, Lower": 601,
604
+ "818-CAI978": 602,
605
+ "simfang": 603,
606
+ "YEFONTTianPinCaiDanTi": 604,
607
+ "WCHAFXXF": 605,
608
+ "汉仪中黑简": 606,
609
+ "Ransom": 607,
610
+ "HBPaiHeiTi": 608,
611
+ "HYFengBoBianLiDian": 609,
612
+ "Play-": 610,
613
+ "SYSYSXXK": 611,
614
+ "SYSYXCT": 612,
615
+ "353-CAI978": 613,
616
+ "JetLink PeakJang": 614,
617
+ "米开浪漫情书体": 615,
618
+ "华康POP1体Std W5": 616,
619
+ "【微博:暖色君】陪你看的剧": 617,
620
+ "107-SSSongYu Ti": 618,
621
+ "HomemadeApple": 619,
622
+ "今年也要加油鸭": 620,
623
+ "ACGN-SetoPopGB": 621,
624
+ "迷你简北魏楷书": 622,
625
+ "AaFangSong": 623,
626
+ "348-CAI978": 624,
627
+ "Latino Elongated Std": 625,
628
+ "226-SSJiJiaTi": 626,
629
+ "思源宋体SC-": 627,
630
+ "Cousine--4": 628,
631
+ "813-CAI978": 629,
632
+ "Mandingo": 630,
633
+ "新愚公拼搏体": 631,
634
+ "Danube": 632,
635
+ "834-CAI978": 633,
636
+ "【暖色君】趣圆体": 634,
637
+ "MMDNM": 635,
638
+ "Brusher-Free-Font-": 636,
639
+ "拾陆字濑户2": 637,
640
+ "645-CAI978": 638,
641
+ "SJxijingqianhua": 639,
642
+ "SJyurunc": 640,
643
+ "XingShiXin-yinbixingshu": 641,
644
+ "DeliusSwashCaps-": 642,
645
+ "SJpaopaobing": 643,
646
+ "HBQiaoJiaoNianHuaTi": 644,
647
+ "HYPengPengChe": 645,
648
+ "956-CAI978": 646,
649
+ "Oz焦糖下午茶": 647,
650
+ "Glametrix-2": 648,
651
+ "935-CAI978": 649,
652
+ "宅在家自动笔": 650,
653
+ "REEJI-ZhenyanGB2": 651,
654
+ "HappyMonkey--1": 652,
655
+ "SixCaps": 653,
656
+ "RHSMXK": 654,
657
+ "221-SSBiaoTiTi": 655,
658
+ "NLNLYKCD": 656,
659
+ "AaLXL": 657,
660
+ "BENMO Fengyue Extra": 658,
661
+ "方正楷体简体": 659,
662
+ "Beacon-1": 660,
663
+ "dearJoe four": 661,
664
+ "Real Bttsoief": 662,
665
+ "Bungee-Outline": 663,
666
+ "chathura-": 664,
667
+ "Demon": 665,
668
+ "PortLligatSlab-": 666,
669
+ "王强手写体": 667,
670
+ "Inkburrow": 668,
671
+ "Rise_": 669,
672
+ "蝉羽喜山堂硬笔行书": 670,
673
+ "HYYongZiXiaoXiongMao": 671,
674
+ "治愈孤独手账体": 672,
675
+ "Helvetica LT Black": 673,
676
+ "graduate-": 674,
677
+ "488-CAI978": 675,
678
+ "BungeeLayers-Inline": 676,
679
+ "华康新综艺体Std W9": 677,
680
+ "WLDQCSG": 678,
681
+ "FZMM": 679,
682
+ "TradeGothic LT CondEighteen": 680,
683
+ "华康圆体Std W3": 681,
684
+ "SecularOne-": 682,
685
+ "HCWangtianxi-2019": 683,
686
+ "Alimama DongFangDaKai": 684,
687
+ "Tempest": 685,
688
+ "Satisfy-": 686,
689
+ "DottedSongtiCircle": 687,
690
+ "江城律动圆": 688,
691
+ "Caterpillar": 689,
692
+ "米开我们的梦想": 690,
693
+ "SYBEQN": 691,
694
+ "SJyunlv": 692,
695
+ "DavidLibre-": 693,
696
+ "Adobe Hebrew": 694,
697
+ "359-CAI978": 695,
698
+ "【阿菁提取】世界那么大": 696,
699
+ "Docteur Atomic": 697,
700
+ "955-CAI978": 698,
701
+ "Politica": 699,
702
+ "MrsEaves": 700,
703
+ "PTN77F": 701,
704
+ "HYFengBoLongXing": 702,
705
+ "AvantGarde LT Book": 703,
706
+ "SJxiangxing": 704,
707
+ "ZhuoJianGanLanJianTi": 705,
708
+ "HuXiaoBo-xianglati": 706,
709
+ "SJfangsong": 707,
710
+ "ShanghaiFace-SenGBT-open": 708,
711
+ "Hellofont ID Pinocchio": 709,
712
+ "REEJI-Sharp-BlodGB1": 710,
713
+ "zcoolwenyiti": 711,
714
+ "1": 712,
715
+ "Hellofont ID MeiLingTi": 713,
716
+ "Reeji-CloudYuanZhun-GB": 714,
717
+ "Reeji-CloudKaiTi-GB": 715,
718
+ "SJliujin": 716,
719
+ "Dream-XiaYiGBT": 717,
720
+ "AZPPT_1_1436212_19": 718,
721
+ "Slideqiuhong": 719,
722
+ "HuXiaoBo-XingGuangTi": 720,
723
+ "SJbosong": 721,
724
+ "Reeji-CloudHuPo-GB": 722,
725
+ "YRDZST-Semibold": 723,
726
+ "SJhym": 724,
727
+ "Slidefu": 725,
728
+ "Reeji-CloudWeiTi-GB": 726,
729
+ "LogoSC Unbounded Sans": 727,
730
+ "HelloFont ID ZongYiTi": 728,
731
+ "SJhulian": 729,
732
+ "HelloFont BangBangTi": 730,
733
+ "HongLei": 731,
734
+ "Reeji-CloudPangTouYu-GB": 732,
735
+ "SJxinhei": 733,
736
+ "SJdiansong": 734,
737
+ "Reeji-CloudSongHei-GB": 735,
738
+ "ADZongYi-A001": 736,
739
+ "Democratika": 737,
740
+ "三极典黑描边简体": 738,
741
+ "OFL Sorts Mill Goudy": 739,
742
+ "821-CAI978": 740,
743
+ "berkshireswash-": 741,
744
+ "HanWangKanTan": 742,
745
+ "华康金文体Std W3": 743,
746
+ "HanWangGB06": 744,
747
+ "我爱万伟伟手写体": 745,
748
+ "AaRishibiaotizi (Non-Commercial Use)": 746,
749
+ "字体传奇南安体": 747,
750
+ "Znikomit-1": 748,
751
+ "MarckScript-": 749,
752
+ "www": 750,
753
+ "造字工房劲黑体": 751,
754
+ "480-CAI978": 752,
755
+ "Ciao jFont": 753,
756
+ "JetLink Black-SolidShadow": 754,
757
+ "站酷快乐体": 755,
758
+ "Cuisine": 756,
759
+ "404-CAI978": 757,
760
+ "黄彦文行书字体": 758,
761
+ "SSXingYanTi": 759,
762
+ "Yesteryear": 760,
763
+ "SJxiaosongzhong": 761,
764
+ "LovedbytheKing-1": 762,
765
+ "恬夕 恋夕": 763,
766
+ "段宁硬笔楷书": 764,
767
+ "FaunaOne-": 765,
768
+ "342-CAI978": 766,
769
+ "Sixties": 767,
770
+ "ZXF XiaoLing Trial ": 768,
771
+ "Rechtman": 769,
772
+ "The Great Escape": 770,
773
+ "540-CAI978": 771,
774
+ "TianZhen": 772,
775
+ "HYLeMiaoTiW": 773,
776
+ "OverlockSC-": 774,
777
+ "bubblerone-": 775,
778
+ "台北黑体TaipeiSansTCBeta-": 776,
779
+ "HBBaiJiaXingTuTengTi": 777,
780
+ "Dream-XingCaoGBT": 778,
781
+ "SYSYASDS": 779,
782
+ "Rokkitt": 780,
783
+ "750-CAI978": 781,
784
+ "MikodacsPCS-fMac": 782,
785
+ "Heebo": 783,
786
+ "HYJinBang": 784,
787
+ "OpenSans-Cond": 785,
788
+ "SJDONGTIANDEKEKE": 786,
789
+ "695-CAI978": 787,
790
+ "216-SSZhaoCaiMaoTi": 788,
791
+ "HBNeiYuanCuHeiTi": 789,
792
+ "Mr Leopolde": 790,
793
+ "ChunkoBlockoOutlineXtra": 791,
794
+ "LANMI_Cusongti": 792,
795
+ "Constantine-lq0q": 793,
796
+ "白无常可可体常规": 794,
797
+ "SGWWT": 795,
798
+ "XHSSYDWR": 796,
799
+ "Adobe Arabic": 797,
800
+ "I Am": 798,
801
+ "华康雅宋体Std W9": 799,
802
+ "三极泼墨体": 800,
803
+ "HBZhongHeiTi": 801,
804
+ "SSXiuYuanTi": 802,
805
+ "SJruisong": 803,
806
+ "Ewert-": 804,
807
+ "Pattaya--2": 805,
808
+ "三极光耀简体-H2": 806,
809
+ "HYZhuZiMiaoMiaoWu": 807,
810
+ "米开偷偷爱着你": 808,
811
+ "YEFONTGangFengSongTi": 809,
812
+ "700-CAI978": 810,
813
+ "Euclid": 811,
814
+ "HYHengYiXingHuiTi": 812,
815
+ "delius-": 813,
816
+ "TsangerYayueTi": 814,
817
+ "BlackBeard": 815,
818
+ "363-CAI978": 816,
819
+ "NixieOne-": 817,
820
+ "鸿雷板书简体-正式版": 818,
821
+ "ZLYZCSXNN": 819,
822
+ "SJcaomeipaofujuan": 820,
823
+ "SGJYT": 821,
824
+ "SSFHT": 822,
825
+ "GNWDDD": 823,
826
+ "Playlist-Script-2": 824,
827
+ "458-CAI978": 825,
828
+ "字心坊袁茵体": 826,
829
+ "米开酒醉的蝴蝶": 827,
830
+ "HarmonyOS_Sans_SC_": 828,
831
+ "宅在家粉条甜": 829,
832
+ "SJqxsnfmj": 830,
833
+ "604-CAI978": 831,
834
+ "406-CAI978": 832,
835
+ "Yellowtail-": 833,
836
+ "TingMing": 834,
837
+ "AlfaSlabOne-": 835,
838
+ "PerryGothic": 836,
839
+ "WHXYZZDN": 837,
840
+ "FengyiShabi": 838,
841
+ "BungeeLayers-Shade": 839,
842
+ "ANJXSCYS": 840,
843
+ "293-SSYiChenTi": 841,
844
+ "MPlus中文像素": 842,
845
+ "Kalam-": 843,
846
+ "星汉等宽": 844,
847
+ "Katibeh--2": 845,
848
+ "Buda": 846,
849
+ "三极力量体简-粗": 847,
850
+ "Sly Hollow": 848,
851
+ "ShareTechMono-": 849,
852
+ "MarcellusSC--2": 850,
853
+ "XXYLT ": 851,
854
+ "PTS75F": 852,
855
+ "LHF Full Block": 853,
856
+ "handlee-": 854,
857
+ "Univers CE 55 ": 855,
858
+ "造字工房哲黑体": 856,
859
+ "WYWYWHT": 857,
860
+ "309-CAI978": 858,
861
+ "SYXYCZL": 859,
862
+ "Orbitron-Black": 860,
863
+ "黄引齐招牌体": 861,
864
+ "BoLeHuaiShuti": 862,
865
+ "有字库龙藏体": 863,
866
+ "Tiza Negra": 864,
867
+ "045-SSHeiYanTi": 865,
868
+ "Context Reprise SSi": 866,
869
+ "MLFXCHT": 867,
870
+ "572-CAI978": 868,
871
+ "Mikodacs-fMac": 869,
872
+ "339-CAI978": 870,
873
+ "华康唐风隶Std W5": 871,
874
+ "华康魏碑Std W7": 872,
875
+ "044-SS Ge Te Ti": 873,
876
+ "death friends µ*": 874,
877
+ "Craig": 875,
878
+ "XXNBXYAQ": 876,
879
+ "华康翩翩体 W5": 877,
880
+ "段宁毛笔小楷": 878,
881
+ "PetitFormalScript-": 879,
882
+ "MingLan": 880,
883
+ "LondrinaShadow-": 881,
884
+ "HYShouJinLi": 882,
885
+ "okolaks": 883,
886
+ "212-SS Xuan Wu Ti": 884,
887
+ "造字工房伊茶体": 885,
888
+ "WC ROUGHTRAD Bta": 886,
889
+ "[ank]*": 887,
890
+ "斗鱼追光体": 888,
891
+ "Eklektic": 889,
892
+ "华康标题宋Std W9": 890,
893
+ "HYZengRuiLingMo": 891,
894
+ "HYZiKuTangYiShanKaiW": 892,
895
+ "zktcsxs": 893,
896
+ "HCWang-2018": 894,
897
+ "SansitaOne": 895,
898
+ "Latinaires": 896,
899
+ "218-SS ZhengZhouTi": 897,
900
+ "Scrawny Kids": 898,
901
+ "Grover Caps": 899,
902
+ "蝉羽胡杨体": 900,
903
+ "Felipe": 901,
904
+ "仓耳周珂正大榜书": 902,
905
+ "Bungee-Inline": 903,
906
+ "851手写杂书": 904,
907
+ "XGKQDQH": 905,
908
+ "云峰飞云体": 906,
909
+ "QKNYNLT": 907,
910
+ "421-CAI978": 908,
911
+ "196-SSYouLongTi": 909,
912
+ "Offside-": 910,
913
+ "SSWeiHeiTi": 911,
914
+ "Cantarell-": 912,
915
+ "Esta": 913,
916
+ "NXXMQQS": 914,
917
+ "猫啃网臻雅宋": 915,
918
+ "Gabriela-": 916,
919
+ "SJxinpianticc": 917,
920
+ "Dorsa-": 918,
921
+ "jiaotoulanezhengzaiganlai": 919,
922
+ "Pangolin": 920,
923
+ "米开第一封情书": 921,
924
+ "台湾全字库正楷体": 922,
925
+ "Diffraction": 923,
926
+ "YQXSBHJ": 924,
927
+ "Baloo-": 925,
928
+ "摄图摩登小方体": 926,
929
+ "447-CAI978": 927,
930
+ "Swis721 BlkEx BT": 928,
931
+ "寒蝉手拙体": 929,
932
+ "HelveticaRounded LT ": 930,
933
+ "iSlide云犹体": 931,
934
+ "AaXiaoliwo (Non-Commercial Use)": 932,
935
+ "RammettoOne-": 933,
936
+ "Shelley Script LT Std": 934,
937
+ "158-SS Lang RunTi": 935,
938
+ "PTS55F": 936,
939
+ "QYSGXYSS": 937,
940
+ "方圆锐线体": 938,
941
+ "Deng": 939,
942
+ "WDYQHNYG": 940,
943
+ "CormorantUpright-": 941,
944
+ "JetLink SemiBlack": 942,
945
+ "StintUltraExpanded": 943,
946
+ "LANMI_Fangsongjianti": 944,
947
+ "REEJI-PierceGB-free": 945,
948
+ "HYGuQuW": 946,
949
+ "HBSunYunHeXuanLiTi": 947,
950
+ "Rissa-Typeface-Demo": 948,
951
+ "米开温暖如你": 949,
952
+ "LHF Milkman": 950,
953
+ "Patches": 951,
954
+ "CODON": 952,
955
+ "Stalemate": 953,
956
+ "江城月湖体 400W": 954,
957
+ "宅在家麦克笔": 955,
958
+ "JacquesFrancoisShadow-": 956,
959
+ "Electric Hermes AOE": 957,
960
+ "116-SS Ru Yi Ti": 958,
961
+ "SYZJYJX": 959,
962
+ "华康方圆体": 960,
963
+ "资源圆体 ": 961,
964
+ "550-CAI978": 962,
965
+ "JFSnowbiz": 963,
966
+ "GreatVibes-": 964,
967
+ "SJkongdie": 965,
968
+ "米开爱与时光体": 966,
969
+ "AaSMS": 967,
970
+ "SJ yuantijian-C": 968,
971
+ "YHNLALT": 969,
972
+ "Aa莫奈小玛丽": 970,
973
+ "字体传奇雪家黑": 971,
974
+ "奇思圣诞节": 972,
975
+ "Radley": 973,
976
+ "仓耳舒圆体 W01": 974,
977
+ "HYXingQiuTi": 975,
978
+ "Dr Sugiyama": 976,
979
+ "SYLXZRT": 977,
980
+ "OldStandard-": 978,
981
+ "Rationale-": 979,
982
+ "ArmataHL-1": 980,
983
+ "HLWMDSL": 981,
984
+ "ZSHPSQN": 982,
985
+ "华光俊秀体": 983,
986
+ "Lalezar-": 984,
987
+ "华康墨字Std W9": 985,
988
+ "新叶念体": 986,
989
+ "478-CAI978": 987,
990
+ "刘欢卡通手书": 988,
991
+ "润植家康熙字典美化体": 989,
992
+ "木头-清庭体": 990,
993
+ "HYSongYangTi": 991,
994
+ "ZXF Small Pudding Trial": 992,
995
+ "【暖色君】香自苦寒来": 993,
996
+ "857-CAI978": 994,
997
+ "583-CAI978": 995,
998
+ "BlackOpsOne-": 996,
999
+ "MousseScript": 997,
1000
+ "Meddon": 998,
1001
+ "HYZhuZiXiuZhengDai": 999,
1002
+ "Helvetica LT ": 1000,
1003
+ "CormorantSC-Semi": 1001,
1004
+ "Prompt-": 1002,
1005
+ "霞鹜文楷 ": 1003,
1006
+ "字体圈欣意冠黑体": 1004,
1007
+ "HYZhuZiShanDian": 1005,
1008
+ "Two Turtle Doves": 1006,
1009
+ "YYNJYYQSJ": 1007,
1010
+ "Sketch Rockwell": 1008,
1011
+ "天涯浪客唯君与吾": 1009,
1012
+ "HYYingSong": 1010,
1013
+ "WYXHKX": 1011,
1014
+ "Consolas": 1012,
1015
+ "Oranienbaum-": 1013,
1016
+ "04b_25": 1014,
1017
+ "三极叠加黑": 1015,
1018
+ "ScopeOne-": 1016,
1019
+ "SYXNYSYR": 1017,
1020
+ "GJJShuiZhu-M08S": 1018,
1021
+ "优设标题黑": 1019,
1022
+ "894-CAI978": 1020,
1023
+ "极影毁片荧圆": 1021,
1024
+ "文泉驿等宽正黑": 1022,
1025
+ "Iceberg-": 1023,
1026
+ "HYChunRanShouShuW": 1024,
1027
+ "684-CAI978": 1025,
1028
+ "HYBaoManTi": 1026,
1029
+ "SYSYXSWP": 1027,
1030
+ "华康儿风体 W4": 1028,
1031
+ "SeUtum": 1029,
1032
+ "素材集市康康体": 1030,
1033
+ "米开琳琅硬笔行书": 1031,
1034
+ "TZMTFJ": 1032,
1035
+ "FHXY": 1033,
1036
+ "967-CAI978": 1034,
1037
+ "蝉羽灯火阑珊": 1035,
1038
+ "SYQCLNT": 1036,
1039
+ "University Roman Std": 1037,
1040
+ "Ahnberg": 1038,
1041
+ "BaGuoBuYi": 1039,
1042
+ "Pea Weenie": 1040,
1043
+ "清松手写体": 1041,
1044
+ "HabanoST": 1042,
1045
+ "米开相思体": 1043,
1046
+ "HongLeiZhuoShu": 1044,
1047
+ "Alef-": 1045,
1048
+ "GrilledCheese BTN Out Wide": 1046,
1049
+ "瑞美加张清平硬笔楷书": 1047,
1050
+ "胡晓波真帅体2": 1048,
1051
+ "SJlikeyou": 1049,
1052
+ "ChanYuBingTangHuLu": 1050,
1053
+ "Cocktail Script": 1051,
1054
+ "荆南缘默体": 1052,
1055
+ "Overlock-": 1053,
1056
+ "米开初恋的季节": 1054,
1057
+ "AaLiaodaoxihuanderen": 1055,
1058
+ "铁蒺藜体": 1056,
1059
+ "文鼎PL简中楷": 1057,
1060
+ "121-SSKeSongTi": 1058,
1061
+ "Denne Shuffle": 1059,
1062
+ "仓迹高德国妙黑": 1060,
1063
+ "Shquiboo": 1061,
1064
+ "Calibri": 1062,
1065
+ "【兔兔自补】胖嘟嘟": 1063,
1066
+ "字体视界法棍体": 1064,
1067
+ "SYSYYSZX": 1065,
1068
+ "AaPrincessPeach": 1066,
1069
+ "maomaochongzhenkeai": 1067
1070
+ }
synthetic/metadata/id_infer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a27a2354840df1448140888315bdcf115aba8d93eec2f6c510294b20d85fbb89
3
+ size 17070093
synthetic/metadata/id_need_infer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:455813682ab7000c91b4fd3599d813ec0690bc4a9991489f385e26d8aab818bf
3
+ size 17622611
synthetic/metadata/ood_infer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f8d390215d59f7663447b07a7799e5bc1586d8ef9237e81e166eff6b447889c
3
+ size 21062200
synthetic/metadata/ood_need_infer.json ADDED
The diff for this file is too large to render. See raw diff
 
synthetic/metadata/train.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:baccb6137ff4f3317e0c5c6ba2db6d94008ff92eca7103fbad7527e6779ddc9e
3
+ size 161953830
synthetic/metadata/train_sft.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f5d9c0de061d4dbc12f6696f81e1b7d35a667b0d06d885b213361427a6845f7b
3
+ size 165510030
synthetic/ood_infer.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fac2417538fcb74b67479dc0145173a1d30e72a02a44732c03b6432fbbe1a94a
3
+ size 274483200
synthetic/ood_need_infer.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3fc73912b8e3763feba0dc68674127f7591cfc36dc33b212d4c6f1c749d91bf
3
+ size 274759680
synthetic/train.part-001.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f91c556ad1d87785d4bb98f4f77332774dba0175205634f8e0fda403e44ca32f
3
+ size 1175040000
synthetic/train.part-002.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:70fc7337143d6683c9709b06e2707fe97900f391f35c8c2e75c7606038f1d89a
3
+ size 1173514240
synthetic/train.part-003.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:26aeb9aba837dd6b153ef2ad7360f2549836e1d7b8e99f67e4fa725f25aedeee
3
+ size 1167595520
synthetic/train.part-004.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71a1e93ccc948d61b13b7a1cbf3bcc1e6a0a90acc34dd73802971362b8adc175
3
+ size 1186631680
synthetic/train.part-005.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e7c71815d777bb9b7837126dabc09609f0d2ab06a7ef9505458f6cd29eb4f1e
3
+ size 1173237760
synthetic/train.part-006.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6eb03a0477071b6202b009619ddaaa7240845b43764fd863c3f8a3779e78b467
3
+ size 1163079680
synthetic/train.part-007.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c17a7db04d590e17c573528d6f5852238fbf8e7b2f8a8fff4cdf5903010e1b8
3
+ size 1175367680
synthetic/train.part-008.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3422b0d97d88b6ef9ad91aadf8701ab60a170775f40f56b3615faaec5682c861
3
+ size 1185597440
synthetic/train.part-009.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e51ca9cc37d643e6688810638411bd99c35b9d3176ab685f5b0d33c492112c5
3
+ size 1179975680
synthetic/train.part-010.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b22cb5a581960130102461ba12e16d62deb118f7d81e18789ff383ad696b3f07
3
+ size 968038400
synthetic/train.part-011.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c3f3437bd05b4228968fcaf2eaa76b36ae207af5b95755ed99293bcbd0cc1257
3
+ size 1062983680
synthetic/train.part-012.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9070090780dea5995d68949df9f89384c7a82e43d8cb732f69de43273ee7a059
3
+ size 1064550400
synthetic/train.part-013.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:219a114494e951c460f7c10546fa78e3980c0787832979ae6286c2396a0571bc
3
+ size 1074370560
synthetic/train.part-014.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:385bb07a012f30500400617f27d7fc69a50f0016b342216a559d20743f10f067
3
+ size 1154734080
synthetic/train.part-015.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c38a43f147aef6f30bda40f91997ff33dec1e67b184fa0836d46cda205e2102
3
+ size 1194219520
synthetic/train.part-016.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:31ba9468441a33ac5f0788571ec05119504f0881fae5bcbf10ecbf6b5607c2be
3
+ size 425799680
unpack.py ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Auto-generated by pack_for_huggingface.py
2
+ """One-line unpacker for the DesignVFR HuggingFace release.
3
+
4
+ After ``huggingface-cli download <user>/DesignVFR --repo-type dataset``,
5
+ run::
6
+
7
+ python unpack.py
8
+
9
+ It will extract every ``*.tar`` / ``*.part-XXX.tar`` next to itself in-place
10
+ so that the directory layout matches the paths inside the metadata
11
+ jsonl/json (which are anchored on ``${DATASET_ROOT}``).
12
+ """
13
+ from __future__ import annotations
14
+
15
+ import sys
16
+ import tarfile
17
+ from pathlib import Path
18
+
19
+
20
+ def main():
21
+ root = Path(__file__).resolve().parent
22
+ tars = sorted(root.rglob('*.tar'))
23
+ if not tars:
24
+ print('No .tar files found under', root)
25
+ return
26
+ print(f'Found {len(tars)} tar shard(s) under {root}')
27
+ for t in tars:
28
+ # Each tar is anchored on its parent directory's "image root" -- e.g.
29
+ # synthetic/train.part-001.tar -> extract into synthetic/train/
30
+ # synthetic/ood_infer.tar -> extract into synthetic/ood_infer/
31
+ stem = t.name.split('.', 1)[0] # "train.part-001.tar" -> "train"
32
+ dest = t.parent / stem
33
+ dest.mkdir(parents=True, exist_ok=True)
34
+ print(f' extracting {t.relative_to(root)} -> {dest.relative_to(root)}/')
35
+ with tarfile.open(t, 'r') as f:
36
+ f.extractall(dest)
37
+ print('Done. You can now `export DATASET_ROOT=' + str(root) + '`.')
38
+
39
+
40
+ if __name__ == '__main__':
41
+ main()
videoreal/id.part-001.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e8f03001914c2731f97fabc12e9db7efce5bc63897cc8e46a4151b5efcc456e
3
+ size 1140981760
videoreal/id.part-002.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1aed33e47b8dcf54251f294dfca7b77a8b7e47a9cac134f6458f5155b45306cd
3
+ size 110909440
videoreal/metadata/id.json ADDED
The diff for this file is too large to render. See raw diff
 
videoreal/metadata/ood.json ADDED
The diff for this file is too large to render. See raw diff
 
videoreal/ood.part-001.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6c3383e34b451b8a5ec5630c0a1363cc104edb283dc23a44f1fce71dc680a8a
3
+ size 1149736960
videoreal/ood.part-002.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5322d28f1c840640bf4c79e8cbaca3ecf63df781f54acadcfd826f6e25fe22fd
3
+ size 473640960