BleachNick commited on
Commit
24cb2d0
·
verified ·
1 Parent(s): 8661623

Model save

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen2-VL-2B-Instruct
3
+ library_name: transformers
4
+ model_name: Qwen2-VL-2B-Instruct-SFT_v2
5
+ tags:
6
+ - generated_from_trainer
7
+ - trl
8
+ - sft
9
+ licence: license
10
+ ---
11
+
12
+ # Model Card for Qwen2-VL-2B-Instruct-SFT_v2
13
+
14
+ This model is a fine-tuned version of [Qwen/Qwen2-VL-2B-Instruct](https://huggingface.co/Qwen/Qwen2-VL-2B-Instruct).
15
+ It has been trained using [TRL](https://github.com/huggingface/trl).
16
+
17
+ ## Quick start
18
+
19
+ ```python
20
+ from transformers import pipeline
21
+
22
+ question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
23
+ generator = pipeline("text-generation", model="BleachNick/Qwen2-VL-2B-Instruct-SFT_v2", device="cuda")
24
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
25
+ print(output["generated_text"])
26
+ ```
27
+
28
+ ## Training procedure
29
+
30
+ [<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/haozhezhao/huggingface/runs/pc94incy)
31
+
32
+
33
+ This model was trained with SFT.
34
+
35
+ ### Framework versions
36
+
37
+ - TRL: 0.15.0.dev0
38
+ - Transformers: 4.49.0.dev0
39
+ - Pytorch: 2.5.1+cu124
40
+ - Datasets: 3.2.0
41
+ - Tokenizers: 0.21.0
42
+
43
+ ## Citations
44
+
45
+
46
+
47
+ Cite TRL as:
48
+
49
+ ```bibtex
50
+ @misc{vonwerra2022trl,
51
+ title = {{TRL: Transformer Reinforcement Learning}},
52
+ author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallouédec},
53
+ year = 2020,
54
+ journal = {GitHub repository},
55
+ publisher = {GitHub},
56
+ howpublished = {\url{https://github.com/huggingface/trl}}
57
+ }
58
+ ```
added_tokens.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "<|box_end|>": 151649,
3
+ "<|box_start|>": 151648,
4
+ "<|endoftext|>": 151643,
5
+ "<|im_end|>": 151645,
6
+ "<|im_start|>": 151644,
7
+ "<|image_pad|>": 151655,
8
+ "<|object_ref_end|>": 151647,
9
+ "<|object_ref_start|>": 151646,
10
+ "<|quad_end|>": 151651,
11
+ "<|quad_start|>": 151650,
12
+ "<|video_pad|>": 151656,
13
+ "<|vision_end|>": 151653,
14
+ "<|vision_pad|>": 151654,
15
+ "<|vision_start|>": 151652
16
+ }
all_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 0.9938398357289527,
3
+ "total_flos": 2.6292398538830643e+17,
4
+ "train_loss": 0.28410920734740486,
5
+ "train_runtime": 8398.4302,
6
+ "train_samples": 70000,
7
+ "train_samples_per_second": 8.335,
8
+ "train_steps_per_second": 0.014
9
+ }
config.json ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "Qwen/Qwen2-VL-2B-Instruct",
3
+ "architectures": [
4
+ "Qwen2VLForConditionalGeneration"
5
+ ],
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 151643,
8
+ "eos_token_id": 151645,
9
+ "hidden_act": "silu",
10
+ "hidden_size": 1536,
11
+ "image_token_id": 151655,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 8960,
14
+ "max_position_embeddings": 32768,
15
+ "max_window_layers": 28,
16
+ "model_type": "qwen2_vl",
17
+ "num_attention_heads": 12,
18
+ "num_hidden_layers": 28,
19
+ "num_key_value_heads": 2,
20
+ "rms_norm_eps": 1e-06,
21
+ "rope_scaling": {
22
+ "mrope_section": [
23
+ 16,
24
+ 24,
25
+ 24
26
+ ],
27
+ "rope_type": "default",
28
+ "type": "default"
29
+ },
30
+ "rope_theta": 1000000.0,
31
+ "sliding_window": 32768,
32
+ "tie_word_embeddings": true,
33
+ "torch_dtype": "bfloat16",
34
+ "transformers_version": "4.49.0.dev0",
35
+ "use_cache": false,
36
+ "use_sliding_window": false,
37
+ "video_token_id": 151656,
38
+ "vision_config": {
39
+ "hidden_size": 1536,
40
+ "in_chans": 3,
41
+ "model_type": "qwen2_vl",
42
+ "spatial_patch_size": 14,
43
+ "torch_dtype": "bfloat16"
44
+ },
45
+ "vision_end_token_id": 151653,
46
+ "vision_start_token_id": 151652,
47
+ "vision_token_id": 151654,
48
+ "vocab_size": 151936
49
+ }
generation_config.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "attn_implementation": null,
3
+ "bos_token_id": 151643,
4
+ "do_sample": true,
5
+ "eos_token_id": [
6
+ 151645,
7
+ 151643
8
+ ],
9
+ "pad_token_id": 151643,
10
+ "temperature": 0.01,
11
+ "top_k": 1,
12
+ "top_p": 0.001,
13
+ "transformers_version": "4.49.0.dev0",
14
+ "use_cache": false
15
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19c4308bdadc91e9f6dcf661911ce98052900d85033c9b3747959e90a046a190
3
+ size 4884798456
special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": {
25
+ "content": "<|endoftext|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88a3a6fcb80132f76da8aa40cdc3fccd7e5d8468ef15421f5b0c2715e85217d2
3
+ size 11420538
tokenizer_config.json ADDED
@@ -0,0 +1,144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "added_tokens_decoder": {
4
+ "151643": {
5
+ "content": "<|endoftext|>",
6
+ "lstrip": false,
7
+ "normalized": false,
8
+ "rstrip": false,
9
+ "single_word": false,
10
+ "special": true
11
+ },
12
+ "151644": {
13
+ "content": "<|im_start|>",
14
+ "lstrip": false,
15
+ "normalized": false,
16
+ "rstrip": false,
17
+ "single_word": false,
18
+ "special": true
19
+ },
20
+ "151645": {
21
+ "content": "<|im_end|>",
22
+ "lstrip": false,
23
+ "normalized": false,
24
+ "rstrip": false,
25
+ "single_word": false,
26
+ "special": true
27
+ },
28
+ "151646": {
29
+ "content": "<|object_ref_start|>",
30
+ "lstrip": false,
31
+ "normalized": false,
32
+ "rstrip": false,
33
+ "single_word": false,
34
+ "special": true
35
+ },
36
+ "151647": {
37
+ "content": "<|object_ref_end|>",
38
+ "lstrip": false,
39
+ "normalized": false,
40
+ "rstrip": false,
41
+ "single_word": false,
42
+ "special": true
43
+ },
44
+ "151648": {
45
+ "content": "<|box_start|>",
46
+ "lstrip": false,
47
+ "normalized": false,
48
+ "rstrip": false,
49
+ "single_word": false,
50
+ "special": true
51
+ },
52
+ "151649": {
53
+ "content": "<|box_end|>",
54
+ "lstrip": false,
55
+ "normalized": false,
56
+ "rstrip": false,
57
+ "single_word": false,
58
+ "special": true
59
+ },
60
+ "151650": {
61
+ "content": "<|quad_start|>",
62
+ "lstrip": false,
63
+ "normalized": false,
64
+ "rstrip": false,
65
+ "single_word": false,
66
+ "special": true
67
+ },
68
+ "151651": {
69
+ "content": "<|quad_end|>",
70
+ "lstrip": false,
71
+ "normalized": false,
72
+ "rstrip": false,
73
+ "single_word": false,
74
+ "special": true
75
+ },
76
+ "151652": {
77
+ "content": "<|vision_start|>",
78
+ "lstrip": false,
79
+ "normalized": false,
80
+ "rstrip": false,
81
+ "single_word": false,
82
+ "special": true
83
+ },
84
+ "151653": {
85
+ "content": "<|vision_end|>",
86
+ "lstrip": false,
87
+ "normalized": false,
88
+ "rstrip": false,
89
+ "single_word": false,
90
+ "special": true
91
+ },
92
+ "151654": {
93
+ "content": "<|vision_pad|>",
94
+ "lstrip": false,
95
+ "normalized": false,
96
+ "rstrip": false,
97
+ "single_word": false,
98
+ "special": true
99
+ },
100
+ "151655": {
101
+ "content": "<|image_pad|>",
102
+ "lstrip": false,
103
+ "normalized": false,
104
+ "rstrip": false,
105
+ "single_word": false,
106
+ "special": true
107
+ },
108
+ "151656": {
109
+ "content": "<|video_pad|>",
110
+ "lstrip": false,
111
+ "normalized": false,
112
+ "rstrip": false,
113
+ "single_word": false,
114
+ "special": true
115
+ }
116
+ },
117
+ "additional_special_tokens": [
118
+ "<|im_start|>",
119
+ "<|im_end|>",
120
+ "<|object_ref_start|>",
121
+ "<|object_ref_end|>",
122
+ "<|box_start|>",
123
+ "<|box_end|>",
124
+ "<|quad_start|>",
125
+ "<|quad_end|>",
126
+ "<|vision_start|>",
127
+ "<|vision_end|>",
128
+ "<|vision_pad|>",
129
+ "<|image_pad|>",
130
+ "<|video_pad|>"
131
+ ],
132
+ "bos_token": null,
133
+ "chat_template": "{% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{% for message in messages %}{% if loop.first and message['role'] != 'system' %}<|im_start|>system\nYou are a helpful assistant.<|im_end|>\n{% endif %}<|im_start|>{{ message['role'] }}\n{% if message['content'] is string %}{{ message['content'] }}<|im_end|>\n{% else %}{% for content in message['content'] %}{% if content['type'] == 'image' or 'image' in content or 'image_url' in content %}{% set image_count.value = image_count.value + 1 %}{% if add_vision_id %}Picture {{ image_count.value }}: {% endif %}<|vision_start|><|image_pad|><|vision_end|>{% elif content['type'] == 'video' or 'video' in content %}{% set video_count.value = video_count.value + 1 %}{% if add_vision_id %}Video {{ video_count.value }}: {% endif %}<|vision_start|><|video_pad|><|vision_end|>{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}<|im_end|>\n{% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant\n{% endif %}",
134
+ "clean_up_tokenization_spaces": false,
135
+ "eos_token": "<|im_end|>",
136
+ "errors": "replace",
137
+ "extra_special_tokens": {},
138
+ "model_max_length": 32768,
139
+ "pad_token": "<|endoftext|>",
140
+ "padding_side": "left",
141
+ "split_special_tokens": false,
142
+ "tokenizer_class": "Qwen2Tokenizer",
143
+ "unk_token": null
144
+ }
train_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 0.9938398357289527,
3
+ "total_flos": 2.6292398538830643e+17,
4
+ "train_loss": 0.28410920734740486,
5
+ "train_runtime": 8398.4302,
6
+ "train_samples": 70000,
7
+ "train_samples_per_second": 8.335,
8
+ "train_steps_per_second": 0.014
9
+ }
trainer_state.json ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 0.9938398357289527,
5
+ "eval_steps": 500,
6
+ "global_step": 121,
7
+ "is_hyper_param_search": false,
8
+ "is_local_process_zero": true,
9
+ "is_world_process_zero": true,
10
+ "log_history": [
11
+ {
12
+ "epoch": 0.04106776180698152,
13
+ "grad_norm": 30.744543075561523,
14
+ "learning_rate": 7.692307692307694e-06,
15
+ "loss": 2.5793,
16
+ "step": 5
17
+ },
18
+ {
19
+ "epoch": 0.08213552361396304,
20
+ "grad_norm": 9.884822845458984,
21
+ "learning_rate": 1.5384615384615387e-05,
22
+ "loss": 0.9277,
23
+ "step": 10
24
+ },
25
+ {
26
+ "epoch": 0.12320328542094455,
27
+ "grad_norm": 3.679464101791382,
28
+ "learning_rate": 1.9983081582712684e-05,
29
+ "loss": 0.4308,
30
+ "step": 15
31
+ },
32
+ {
33
+ "epoch": 0.16427104722792607,
34
+ "grad_norm": 3.9533257484436035,
35
+ "learning_rate": 1.9793406217655516e-05,
36
+ "loss": 0.2932,
37
+ "step": 20
38
+ },
39
+ {
40
+ "epoch": 0.2053388090349076,
41
+ "grad_norm": 3.831698179244995,
42
+ "learning_rate": 1.9396926207859085e-05,
43
+ "loss": 0.2669,
44
+ "step": 25
45
+ },
46
+ {
47
+ "epoch": 0.2464065708418891,
48
+ "grad_norm": 3.2703301906585693,
49
+ "learning_rate": 1.880201391180111e-05,
50
+ "loss": 0.2244,
51
+ "step": 30
52
+ },
53
+ {
54
+ "epoch": 0.2874743326488706,
55
+ "grad_norm": 2.6521003246307373,
56
+ "learning_rate": 1.802123192755044e-05,
57
+ "loss": 0.1853,
58
+ "step": 35
59
+ },
60
+ {
61
+ "epoch": 0.32854209445585214,
62
+ "grad_norm": 3.0814249515533447,
63
+ "learning_rate": 1.7071067811865477e-05,
64
+ "loss": 0.1587,
65
+ "step": 40
66
+ },
67
+ {
68
+ "epoch": 0.36960985626283366,
69
+ "grad_norm": 1.3627839088439941,
70
+ "learning_rate": 1.5971585917027864e-05,
71
+ "loss": 0.1369,
72
+ "step": 45
73
+ },
74
+ {
75
+ "epoch": 0.4106776180698152,
76
+ "grad_norm": 1.0753473043441772,
77
+ "learning_rate": 1.4746003697476406e-05,
78
+ "loss": 0.1231,
79
+ "step": 50
80
+ },
81
+ {
82
+ "epoch": 0.4517453798767967,
83
+ "grad_norm": 0.8766598701477051,
84
+ "learning_rate": 1.342020143325669e-05,
85
+ "loss": 0.1167,
86
+ "step": 55
87
+ },
88
+ {
89
+ "epoch": 0.4928131416837782,
90
+ "grad_norm": 0.8106464743614197,
91
+ "learning_rate": 1.2022175723320382e-05,
92
+ "loss": 0.1141,
93
+ "step": 60
94
+ },
95
+ {
96
+ "epoch": 0.5338809034907598,
97
+ "grad_norm": 0.6666741967201233,
98
+ "learning_rate": 1.0581448289104759e-05,
99
+ "loss": 0.1119,
100
+ "step": 65
101
+ },
102
+ {
103
+ "epoch": 0.5749486652977412,
104
+ "grad_norm": 0.6863110065460205,
105
+ "learning_rate": 9.128442572523418e-06,
106
+ "loss": 0.11,
107
+ "step": 70
108
+ },
109
+ {
110
+ "epoch": 0.6160164271047228,
111
+ "grad_norm": 0.4802115261554718,
112
+ "learning_rate": 7.6938412925756e-06,
113
+ "loss": 0.1093,
114
+ "step": 75
115
+ },
116
+ {
117
+ "epoch": 0.6570841889117043,
118
+ "grad_norm": 0.40680229663848877,
119
+ "learning_rate": 6.3079385268731575e-06,
120
+ "loss": 0.1086,
121
+ "step": 80
122
+ },
123
+ {
124
+ "epoch": 0.6981519507186859,
125
+ "grad_norm": 0.3752386271953583,
126
+ "learning_rate": 5.000000000000003e-06,
127
+ "loss": 0.1073,
128
+ "step": 85
129
+ },
130
+ {
131
+ "epoch": 0.7392197125256673,
132
+ "grad_norm": 0.3691989481449127,
133
+ "learning_rate": 3.797645087317401e-06,
134
+ "loss": 0.1072,
135
+ "step": 90
136
+ },
137
+ {
138
+ "epoch": 0.7802874743326489,
139
+ "grad_norm": 0.4962676763534546,
140
+ "learning_rate": 2.726263584269513e-06,
141
+ "loss": 0.1075,
142
+ "step": 95
143
+ },
144
+ {
145
+ "epoch": 0.8213552361396304,
146
+ "grad_norm": 0.5959629416465759,
147
+ "learning_rate": 1.808479557110081e-06,
148
+ "loss": 0.1077,
149
+ "step": 100
150
+ },
151
+ {
152
+ "epoch": 0.8624229979466119,
153
+ "grad_norm": 0.29346510767936707,
154
+ "learning_rate": 1.0636735967658785e-06,
155
+ "loss": 0.1065,
156
+ "step": 105
157
+ },
158
+ {
159
+ "epoch": 0.9034907597535934,
160
+ "grad_norm": 0.29161593317985535,
161
+ "learning_rate": 5.075735642696611e-07,
162
+ "loss": 0.1069,
163
+ "step": 110
164
+ },
165
+ {
166
+ "epoch": 0.944558521560575,
167
+ "grad_norm": 0.32137367129325867,
168
+ "learning_rate": 1.519224698779198e-07,
169
+ "loss": 0.1066,
170
+ "step": 115
171
+ },
172
+ {
173
+ "epoch": 0.9856262833675564,
174
+ "grad_norm": 0.23854857683181763,
175
+ "learning_rate": 4.230499177994007e-09,
176
+ "loss": 0.1071,
177
+ "step": 120
178
+ },
179
+ {
180
+ "epoch": 0.9938398357289527,
181
+ "step": 121,
182
+ "total_flos": 2.6292398538830643e+17,
183
+ "train_loss": 0.28410920734740486,
184
+ "train_runtime": 8398.4302,
185
+ "train_samples_per_second": 8.335,
186
+ "train_steps_per_second": 0.014
187
+ }
188
+ ],
189
+ "logging_steps": 5,
190
+ "max_steps": 121,
191
+ "num_input_tokens_seen": 0,
192
+ "num_train_epochs": 1,
193
+ "save_steps": 500,
194
+ "stateful_callbacks": {
195
+ "TrainerControl": {
196
+ "args": {
197
+ "should_epoch_stop": false,
198
+ "should_evaluate": false,
199
+ "should_log": false,
200
+ "should_save": false,
201
+ "should_training_stop": false
202
+ },
203
+ "attributes": {}
204
+ }
205
+ },
206
+ "total_flos": 2.6292398538830643e+17,
207
+ "train_batch_size": 18,
208
+ "trial_name": null,
209
+ "trial_params": null
210
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a54e1422894f243b4b2f1dfc9a61806b6890ab99a863bdc07e1c457767195db5
3
+ size 7160
vocab.json ADDED
The diff for this file is too large to render. See raw diff