smalinin commited on
Commit
e661c60
·
1 Parent(s): 9dad80b

Add model files

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Qwen2.5-14B-Instruct_q4f16_1-webgpu.wasm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:835d923234455f3b2aed597d3497d4d5f1e9ad26c733a426ae84574ba743baa5
3
+ size 4692257
README.md CHANGED
@@ -1,3 +1,135 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ license_link: https://huggingface.co/Qwen/Qwen2.5-14B-Instruct/blob/main/LICENSE
4
+ language:
5
+ - en
6
+ pipeline_tag: text-generation
7
+ base_model: Qwen/Qwen2.5-14B
8
+ tags:
9
+ - chat
10
+ - mlc-llm
11
+ - web-llm
12
+ - function calling
13
+ library_name: mlc-llm
14
+ ---
15
+
16
+ # Qwen2.5-14B-Instruct
17
+
18
+ ## Introduction
19
+
20
+ Qwen2.5 is the latest series of Qwen large language models. For Qwen2.5, we release a number of base language models and instruction-tuned language models ranging from 0.5 to 72 billion parameters. Qwen2.5 brings the following improvements upon Qwen2:
21
+
22
+ - Significantly **more knowledge** and has greatly improved capabilities in **coding** and **mathematics**, thanks to our specialized expert models in these domains.
23
+ - Significant improvements in **instruction following**, **generating long texts** (over 8K tokens), **understanding structured data** (e.g, tables), and **generating structured outputs** especially JSON. **More resilient to the diversity of system prompts**, enhancing role-play implementation and condition-setting for chatbots.
24
+ - **Long-context Support** up to 128K tokens and can generate up to 8K tokens.
25
+ - **Multilingual support** for over 29 languages, including Chinese, English, French, Spanish, Portuguese, German, Italian, Russian, Japanese, Korean, Vietnamese, Thai, Arabic, and more.
26
+
27
+ **This repo contains the instruction-tuned 14B Qwen2.5 model**, which has the following features:
28
+ - Type: Causal Language Models
29
+ - Training Stage: Pretraining & Post-training
30
+ - Architecture: transformers with RoPE, SwiGLU, RMSNorm, and Attention QKV bias
31
+ - Number of Parameters: 14.7B
32
+ - Number of Paramaters (Non-Embedding): 13.1B
33
+ - Number of Layers: 48
34
+ - Number of Attention Heads (GQA): 40 for Q and 8 for KV
35
+ - Context Length: Full 131,072 tokens and generation 8192 tokens
36
+ - Please refer to [this section](#processing-long-texts) for detailed instructions on how to deploy Qwen2.5 for handling long texts.
37
+
38
+ For more details, please refer to our [blog](https://qwenlm.github.io/blog/qwen2.5/), [GitHub](https://github.com/QwenLM/Qwen2.5), and [Documentation](https://qwen.readthedocs.io/en/latest/).
39
+
40
+ ## Requirements
41
+
42
+ The code of Qwen2.5 has been in the latest Hugging face `transformers` and we advise you to use the latest version of `transformers`.
43
+
44
+ With `transformers<4.37.0`, you will encounter the following error:
45
+ ```
46
+ KeyError: 'qwen2'
47
+ ```
48
+
49
+ ## Quickstart
50
+
51
+ Here provides a code snippet with `apply_chat_template` to show you how to load the tokenizer and model and how to generate contents.
52
+
53
+ ```python
54
+ from transformers import AutoModelForCausalLM, AutoTokenizer
55
+
56
+ model_name = "Qwen/Qwen2.5-14B-Instruct"
57
+
58
+ model = AutoModelForCausalLM.from_pretrained(
59
+ model_name,
60
+ torch_dtype="auto",
61
+ device_map="auto"
62
+ )
63
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
64
+
65
+ prompt = "Give me a short introduction to large language model."
66
+ messages = [
67
+ {"role": "system", "content": "You are Qwen, created by Alibaba Cloud. You are a helpful assistant."},
68
+ {"role": "user", "content": prompt}
69
+ ]
70
+ text = tokenizer.apply_chat_template(
71
+ messages,
72
+ tokenize=False,
73
+ add_generation_prompt=True
74
+ )
75
+ model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
76
+
77
+ generated_ids = model.generate(
78
+ **model_inputs,
79
+ max_new_tokens=512
80
+ )
81
+ generated_ids = [
82
+ output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
83
+ ]
84
+
85
+ response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
86
+ ```
87
+
88
+ ### Processing Long Texts
89
+
90
+ The current `config.json` is set for context length up to 32,768 tokens.
91
+ To handle extensive inputs exceeding 32,768 tokens, we utilize [YaRN](https://arxiv.org/abs/2309.00071), a technique for enhancing model length extrapolation, ensuring optimal performance on lengthy texts.
92
+
93
+ For supported frameworks, you could add the following to `config.json` to enable YaRN:
94
+ ```json
95
+ {
96
+ ...,
97
+ "rope_scaling": {
98
+ "factor": 4.0,
99
+ "original_max_position_embeddings": 32768,
100
+ "type": "yarn"
101
+ }
102
+ }
103
+ ```
104
+
105
+ For deployment, we recommend using vLLM.
106
+ Please refer to our [Documentation](https://qwen.readthedocs.io/en/latest/deployment/vllm.html) for usage if you are not familar with vLLM.
107
+ Presently, vLLM only supports static YARN, which means the scaling factor remains constant regardless of input length, **potentially impacting performance on shorter texts**.
108
+ We advise adding the `rope_scaling` configuration only when processing long contexts is required.
109
+
110
+ ## Evaluation & Performance
111
+
112
+ Detailed evaluation results are reported in this [📑 blog](https://qwenlm.github.io/blog/qwen2.5/).
113
+
114
+ For requirements on GPU memory and the respective throughput, see results [here](https://qwen.readthedocs.io/en/latest/benchmark/speed_benchmark.html).
115
+
116
+ ## Citation
117
+
118
+ If you find our work helpful, feel free to give us a cite.
119
+
120
+ ```
121
+ @misc{qwen2.5,
122
+ title = {Qwen2.5: A Party of Foundation Models},
123
+ url = {https://qwenlm.github.io/blog/qwen2.5/},
124
+ author = {Qwen Team},
125
+ month = {September},
126
+ year = {2024}
127
+ }
128
+
129
+ @article{qwen2,
130
+ title={Qwen2 Technical Report},
131
+ author={An Yang and Baosong Yang and Binyuan Hui and Bo Zheng and Bowen Yu and Chang Zhou and Chengpeng Li and Chengyuan Li and Dayiheng Liu and Fei Huang and Guanting Dong and Haoran Wei and Huan Lin and Jialong Tang and Jialin Wang and Jian Yang and Jianhong Tu and Jianwei Zhang and Jianxin Ma and Jin Xu and Jingren Zhou and Jinze Bai and Jinzheng He and Junyang Lin and Kai Dang and Keming Lu and Keqin Chen and Kexin Yang and Mei Li and Mingfeng Xue and Na Ni and Pei Zhang and Peng Wang and Ru Peng and Rui Men and Ruize Gao and Runji Lin and Shijie Wang and Shuai Bai and Sinan Tan and Tianhang Zhu and Tianhao Li and Tianyu Liu and Wenbin Ge and Xiaodong Deng and Xiaohuan Zhou and Xingzhang Ren and Xinyu Zhang and Xipin Wei and Xuancheng Ren and Yang Fan and Yang Yao and Yichang Zhang and Yu Wan and Yunfei Chu and Yuqiong Liu and Zeyu Cui and Zhenru Zhang and Zhihao Fan},
132
+ journal={arXiv preprint arXiv:2407.10671},
133
+ year={2024}
134
+ }
135
+ ```
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
mlc-chat-config.json ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "0.1.0",
3
+ "model_type": "qwen2",
4
+ "quantization": "q4f16_1",
5
+ "model_config": {
6
+ "hidden_act": "silu",
7
+ "hidden_size": 5120,
8
+ "intermediate_size": 13824,
9
+ "num_attention_heads": 40,
10
+ "num_hidden_layers": 48,
11
+ "num_key_value_heads": 8,
12
+ "rms_norm_eps": 1e-06,
13
+ "rope_theta": 1000000.0,
14
+ "vocab_size": 152064,
15
+ "tie_word_embeddings": false,
16
+ "context_window_size": 32768,
17
+ "prefill_chunk_size": 4096,
18
+ "tensor_parallel_shards": 1,
19
+ "head_dim": 128,
20
+ "dtype": "float32",
21
+ "max_batch_size": 128
22
+ },
23
+ "vocab_size": 152064,
24
+ "context_window_size": 32768,
25
+ "sliding_window_size": -1,
26
+ "prefill_chunk_size": 4096,
27
+ "attention_sink_size": -1,
28
+ "tensor_parallel_shards": 1,
29
+ "pipeline_parallel_stages": 1,
30
+ "temperature": 0.7,
31
+ "presence_penalty": 0.0,
32
+ "frequency_penalty": 0.0,
33
+ "repetition_penalty": 1.05,
34
+ "top_p": 0.8,
35
+ "tokenizer_files": [
36
+ "tokenizer.json",
37
+ "vocab.json",
38
+ "merges.txt",
39
+ "tokenizer_config.json"
40
+ ],
41
+ "tokenizer_info": {
42
+ "token_postproc_method": "byte_level",
43
+ "prepend_space_in_encode": false,
44
+ "strip_space_in_decode": false
45
+ },
46
+ "conv_template": {
47
+ "name": "qwen2",
48
+ "system_template": "<|im_start|>system\n{system_message}<|im_end|>\n",
49
+ "system_message": "You are a helpful assistant.",
50
+ "system_prefix_token_ids": null,
51
+ "add_role_after_system_message": true,
52
+ "roles": {
53
+ "user": "<|im_start|>user",
54
+ "assistant": "<|im_start|>assistant",
55
+ "tool": "<|im_start|>user"
56
+ },
57
+ "role_templates": {
58
+ "user": "{user_message}",
59
+ "assistant": "{assistant_message}",
60
+ "tool": "{tool_message}"
61
+ },
62
+ "messages": [],
63
+ "seps": [
64
+ "<|im_end|>\n"
65
+ ],
66
+ "role_content_sep": "\n",
67
+ "role_empty_sep": "\n",
68
+ "stop_str": [
69
+ "<|endoftext|>",
70
+ "<|im_end|>"
71
+ ],
72
+ "stop_token_ids": [
73
+ 151643,
74
+ 151645
75
+ ],
76
+ "function_string": "",
77
+ "use_function_calling": false
78
+ },
79
+ "pad_token_id": 151643,
80
+ "bos_token_id": 151643,
81
+ "eos_token_id": [
82
+ 151645,
83
+ 151643
84
+ ]
85
+ }
ndarray-cache.json ADDED
The diff for this file is too large to render. See raw diff
 
params_shard_0.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:78ec716f0962a2ab00f36880c441c517fdb059b480015391311c1af6102a6496
3
+ size 389283840
params_shard_1.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e674313c2430f8cdc2b677071dbb91aef4eb431e25339c0891f73bd845b9adcd
3
+ size 48660480
params_shard_10.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae28d8c252b57c9f80353de5d9b80f3b805972b5b0060d35ccf191bd7c82d0f9
3
+ size 70778880
params_shard_100.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f34f7de4689cff700182a9dadd00b9b602e391c6adb91636159518fb46d62223
3
+ size 70778880
params_shard_101.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:80d03f23ed493f73a8024255ced7d0c17bf0ae72eaa6dcfca9379db8ffedd1a8
3
+ size 18350080
params_shard_102.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a574f72edfa322cdf08daf97c94bd9ec3c39b842263d9bee9c9261f83a972653
3
+ size 30345216
params_shard_103.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b01223041f708fe283f79681d1d4805a2f53f42d8c42d11bcbd9bcd917498ec
3
+ size 35389440
params_shard_104.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:746e586e0a25e506c3910386e0fb5278abd87e521828546bfa4500bd377578f0
3
+ size 70778880
params_shard_105.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:697c8358ec838a3e1ab77f39b85494e5bf0a718500f8f3f36d8c1a52fb17a674
3
+ size 18350080
params_shard_106.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e2ada89f967df264b14cc5bea762ea05b4444567e6d5bb094a2adc4f49f3dc0e
3
+ size 30345216
params_shard_107.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d59edf590a12fc1888121df789e0121b16373a0686aebe52aba816eb519cb498
3
+ size 35389440
params_shard_108.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6abbfd53d3709e551e694a5d3a8a744f1c8b0416e92fd50cbe5eed2c4b697ac
3
+ size 70778880
params_shard_109.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d20c7fd3d63e43b2990dc525beee94a47d08a23c204fe11b987299ecddbda227
3
+ size 18350080
params_shard_11.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0fd2ce4b030d043a9bb46c40d6663e1a82a4fa4da499e383051c6640c1675254
3
+ size 33294336
params_shard_110.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5750cdec488d3ec07d704c1a4d25f65ecb9f335abfd53499902f6511784e4ad
3
+ size 30345216
params_shard_111.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa81359b9229c6cdb6d7e4486da7e01a1d0c859f233bb295a4c3d1dd16007830
3
+ size 35389440
params_shard_112.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6906fef884ce3d0fa7aae33b59bfcbaf055671990c9405f21c0ffda17895b78
3
+ size 70778880
params_shard_113.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:139d18b5c423dc4c4648e5d2d47328c2f30b76d63bc2c17ccb9a9ad1c1decc19
3
+ size 18350080
params_shard_114.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a041d9232b10a90b798aa1ad8f43b8fa5b9e2ea5d2c832dcb76084425d78252b
3
+ size 30345216
params_shard_115.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:579cdf5b7a5c722fdad32389a265f38e8977e66a5cc96eaf8092b57a3ac47882
3
+ size 35389440
params_shard_116.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:542b8c764014f0cb56d85e31da20ee1855c336062f8e85088dd61dbf004118b6
3
+ size 70778880
params_shard_117.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:623eefdb86dd5c98ce5d4056b21faa0d63543f6f1e1d1e78defcabd06e4331a1
3
+ size 18350080
params_shard_118.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0049ab1992c3d6613fca8efd1302b917decf0d5dc33d6504959a2d2fc12a1b7d
3
+ size 30345216
params_shard_119.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:78ccc1d7d6084a39fb03f84a68f36a808f4336bcf252561ee4c3ac584b8194fc
3
+ size 35389440
params_shard_12.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a8489678261114b96ce6913fe409808b068b0055921166d53d8c2e7ec380148d
3
+ size 35389440
params_shard_120.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:385755822fe72fa324f7580d44e90b1126b90ea5e13be0db3add051f540af55b
3
+ size 70778880
params_shard_121.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:51774e6dbe5571df21c1d426358ddaa373ed22eaa8855e94909c484f7c2579e7
3
+ size 18350080
params_shard_122.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:50e1c925be0e58fddf5d8275c3428bc993162cb97b6f891cbb5de5a0a2fd7c20
3
+ size 30345216
params_shard_123.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44ab05c93912c40aba7900fadc00799e7b31adac365856b30d6111320fd67b1c
3
+ size 35389440
params_shard_124.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d02fd9d86d73f7534b5dfc714e27deae33802c7b850a0004b1ff430612fd6846
3
+ size 70778880
params_shard_125.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7cae9114cfa07e2623b28e90e640fb039ad2930b8c220d67c3397da7b781aa1f
3
+ size 18350080
params_shard_126.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7cedee98ec3701249ede9f43235cc34e94b4b502d3850a52cc91516304c250da
3
+ size 30345216
params_shard_127.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f1ff20d6a7cde757102ee07da732f7199e2707ec6e0f3cd4242944138dbcb8a2
3
+ size 35389440
params_shard_128.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:135318b3636d33b0d937e4de869ed1ba34935d88a2964b1a08dec0520d65f2ec
3
+ size 70778880
params_shard_129.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a086a914470df29b75de52d1566c42bd436c8c1397252676af79e839e379969c
3
+ size 18350080
params_shard_13.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af4a03f09be255ddf76cfdb704078bb6b83614a5ec1089982a9d78c8407e824f
3
+ size 70778880
params_shard_130.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1cd8b4bd0ff2c988419119c5e93c6529db3b0207e40f2026eda2619c1c7c2276
3
+ size 30345216
params_shard_131.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df45c516589dc4542ea6964d4ec2014b48d87aaf9defb0329783e4faa86594f7
3
+ size 35389440
params_shard_132.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:891e908e812d2fb5dff156e151941cd30f876301f5102cf51857a3d92c5bb796
3
+ size 70778880
params_shard_133.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2e887f6a1b5f71d19646fd2f676a0b90ca40ef064b17f3037b54047a97fc5bb
3
+ size 18350080
params_shard_134.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:052e2d504ededfa38afb5ffcb7a1b80eb55f228d98f8fd12ee5148e5936c0c83
3
+ size 30345216
params_shard_135.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be5bc142b4ce1de2cf2d85eefc1d436cd9de5cce28fce945ae33e600272965bf
3
+ size 33130496
params_shard_136.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c65fd7877c60bc7e173883cfc8b66e22cb2676a2f8907b88de919d4fd41494fe
3
+ size 35389440
params_shard_137.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7aec2bcc03fdd5a9d2b1dec5772644dd805844ed374353f7fa84e92978f9e090
3
+ size 70778880
params_shard_138.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:354801f3ab0fa6a0372f5fd7aea2591bbd311738c15a5c99463a21b6e8959fdb
3
+ size 35389440