初始化项目,由ModelHub XC社区提供模型

Model: aryagxr/wordle-grpo-Qwen3-1.7B
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-07-10 16:24:10 +08:00
commit 891033d547
142 changed files with 749 additions and 0 deletions

36
.gitattributes vendored Normal file
View File

@@ -0,0 +1,36 @@
*.7z filter=lfs diff=lfs merge=lfs -text
*.arrow filter=lfs diff=lfs merge=lfs -text
*.bin filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.ckpt filter=lfs diff=lfs merge=lfs -text
*.ftz filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.h5 filter=lfs diff=lfs merge=lfs -text
*.joblib filter=lfs diff=lfs merge=lfs -text
*.lfs.* filter=lfs diff=lfs merge=lfs -text
*.mlmodel filter=lfs diff=lfs merge=lfs -text
*.model filter=lfs diff=lfs merge=lfs -text
*.msgpack filter=lfs diff=lfs merge=lfs -text
*.npy filter=lfs diff=lfs merge=lfs -text
*.npz filter=lfs diff=lfs merge=lfs -text
*.onnx filter=lfs diff=lfs merge=lfs -text
*.ot filter=lfs diff=lfs merge=lfs -text
*.parquet filter=lfs diff=lfs merge=lfs -text
*.pb filter=lfs diff=lfs merge=lfs -text
*.pickle filter=lfs diff=lfs merge=lfs -text
*.pkl filter=lfs diff=lfs merge=lfs -text
*.pt filter=lfs diff=lfs merge=lfs -text
*.pth filter=lfs diff=lfs merge=lfs -text
*.rar filter=lfs diff=lfs merge=lfs -text
*.safetensors filter=lfs diff=lfs merge=lfs -text
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
*.tar.* filter=lfs diff=lfs merge=lfs -text
*.tar filter=lfs diff=lfs merge=lfs -text
*.tflite filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.wasm filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text
*tfevents* filter=lfs diff=lfs merge=lfs -text
tokenizer.json filter=lfs diff=lfs merge=lfs -text

67
README.md Normal file
View File

@@ -0,0 +1,67 @@
---
base_model: Qwen/Qwen3-1.7B
library_name: transformers
model_name: wordle-grpo-Qwen3-1.7B
tags:
- generated_from_trainer
- trl
- grpo
licence: license
---
# Model Card for wordle-grpo-Qwen3-1.7B
This model is a fine-tuned version of [Qwen/Qwen3-1.7B](https://huggingface.co/Qwen/Qwen3-1.7B).
It has been trained using [TRL](https://github.com/huggingface/trl).
## Quick start
```python
from transformers import pipeline
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?"
generator = pipeline("text-generation", model="aryagxr/wordle-grpo-Qwen3-1.7B", device="cuda")
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
print(output["generated_text"])
```
## Training procedure
[<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/aryagxr-drexel-university/wordle-grpo/runs/ws32e7cv)
This model was trained with GRPO, a method introduced in [DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models](https://huggingface.co/papers/2402.03300).
### Framework versions
- TRL: 1.0.0
- Transformers: 5.6.0.dev0
- Pytorch: 2.8.0
- Datasets: 4.8.4
- Tokenizers: 0.22.2
## Citations
Cite GRPO as:
```bibtex
@article{shao2024deepseekmath,
title = {{DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models}},
author = {Zhihong Shao and Peiyi Wang and Qihao Zhu and Runxin Xu and Junxiao Song and Mingchuan Zhang and Y. K. Li and Y. Wu and Daya Guo},
year = 2024,
eprint = {arXiv:2402.03300},
}
```
Cite TRL as:
```bibtex
@software{vonwerra2020trl,
title = {{TRL: Transformers Reinforcement Learning}},
author = {von Werra, Leandro and Belkada, Younes and Tunstall, Lewis and Beeching, Edward and Thrush, Tristan and Lambert, Nathan and Huang, Shengyi and Rasul, Kashif and Gallouédec, Quentin},
license = {Apache-2.0},
url = {https://github.com/huggingface/trl},
year = {2020}
}
```

89
chat_template.jinja Normal file
View File

@@ -0,0 +1,89 @@
{%- if tools %}
{{- '<|im_start|>system\n' }}
{%- if messages[0].role == 'system' %}
{{- messages[0].content + '\n\n' }}
{%- endif %}
{{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
{%- for tool in tools %}
{{- "\n" }}
{{- tool | tojson }}
{%- endfor %}
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
{%- else %}
{%- if messages[0].role == 'system' %}
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
{%- endif %}
{%- endif %}
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
{%- for message in messages[::-1] %}
{%- set index = (messages|length - 1) - loop.index0 %}
{%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
{%- set ns.multi_step_tool = false %}
{%- set ns.last_query_index = index %}
{%- endif %}
{%- endfor %}
{%- for message in messages %}
{%- if message.content is string %}
{%- set content = message.content %}
{%- else %}
{%- set content = '' %}
{%- endif %}
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
{%- elif message.role == "assistant" %}
{%- set reasoning_content = '' %}
{%- if message.reasoning_content is string %}
{%- set reasoning_content = message.reasoning_content %}
{%- else %}
{%- if '</think>' in content %}
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
{%- endif %}
{%- endif %}
{%- if loop.index0 > ns.last_query_index %}
{%- if loop.last or (not loop.last and reasoning_content) %}
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
{%- else %}
{{- '<|im_start|>' + message.role + '\n' + content }}
{%- endif %}
{%- else %}
{{- '<|im_start|>' + message.role + '\n' + content }}
{%- endif %}
{%- if message.tool_calls %}
{%- for tool_call in message.tool_calls %}
{%- if (loop.first and content) or (not loop.first) %}
{{- '\n' }}
{%- endif %}
{%- if tool_call.function %}
{%- set tool_call = tool_call.function %}
{%- endif %}
{{- '<tool_call>\n{"name": "' }}
{{- tool_call.name }}
{{- '", "arguments": ' }}
{%- if tool_call.arguments is string %}
{{- tool_call.arguments }}
{%- else %}
{{- tool_call.arguments | tojson }}
{%- endif %}
{{- '}\n</tool_call>' }}
{%- endfor %}
{%- endif %}
{{- '<|im_end|>\n' }}
{%- elif message.role == "tool" %}
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
{{- '<|im_start|>user' }}
{%- endif %}
{{- '\n<tool_response>\n' }}
{{- content }}
{{- '\n</tool_response>' }}
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
{{- '<|im_end|>\n' }}
{%- endif %}
{%- endif %}
{%- endfor %}
{%- if add_generation_prompt %}
{{- '<|im_start|>assistant\n' }}
{%- if enable_thinking is defined and enable_thinking is false %}
{{- '<think>\n\n</think>\n\n' }}
{%- endif %}
{%- endif %}

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c005dc23a3df94d1381c43bce6db972a1481b2e808721bd1b0d418bf209aa2f3
size 22097

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:770d84149119f3a37d2d501c2c6f83b4cd38dceffb7ffbab51f96362f1493967
size 23683

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7325a4e3c5291ba863c070e6ed11a27264bd0eb9dc29389813bbd95d408f7d4d
size 27660

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3cef3f226d9b9fe6c8173eed47b3c80619e46cd0cac81a780a5ed83dc25435a3
size 23465

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7464184a9d60493987e42e88f84687f5ff89c7ec50906a5cb29dda332f482ac7
size 23343

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8945f2cc9e0caaf648f9de44703c3432d7fc28fbf51c00d402890f1ad3fd7c16
size 27299

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:99070569bc9d1e299235557a75ec79ef62357a23ab7608e32cdea2c0b6274030
size 24948

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9e75f420bf7df31ca82ad95c8b571cfd7a2e8d28e1df2b193149ade11f3ab2f8
size 25374

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d9843615d682d7493e0916a6be36c8c9bf9f3a9b9ec43f4cd7e9215fc75a449e
size 29586

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7ab393f8eb49a6dd638587d1c8708f64cabc06e6050e4d39299950ea5db88932
size 32054

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5840cc1993e050caf603c9c4377801ca70f80f16a4dfad6cc5bbc32bb398e03b
size 32269

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1817a479ecd014090b0d71b006fa9c877dfd19d28577fc8f9a3e30f5a6e1f034
size 32263

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4e098d36fb8b1a02f0273c04bf8ae201d05fec89d800a7ca4d77524a1e7dd9f9
size 31987

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fa440e8269e5af1195eae237f8077d33770bc598970c1f9c2c97b30ee65e438c
size 32665

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8ac788098a5c961b6dbbe2c01552f50c47ca995926f2ef89ec2c79f064c601f9
size 33796

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5e3fbd165c7a59d63524d95fde926e82849c776e3b1a2249bfa8323de7b00e70
size 33048

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:692a5b20b2e6ae2caa235bcaeb191ab9ea24770f8e518596d60f5b69e0707aca
size 35218

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9583807bd907571334ed0fe02fd1f5badae80c8491b996688d41959016ec3037
size 32442

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3087d2fde713b391354dd7e59eb0ec1986c4b300678abfc6d213029c24c2b1ab
size 32006

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9d32b6427fa6c90130a89664569083001dd7f17c1d48c080751afac8e6ee32c2
size 33876

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f446c89a11e480d4046ee7940fec8d7cf7ada8af24bab76f97ca624e27de4afd
size 33309

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:529ff5630ce47bb4b8a92234ffed55f939288189608d8f9bf6071f2ba93df830
size 34142

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:baa56bfe7b5b543d239e9798302d6995e92725d6c6c185d5a7ed97ce6f2feb2a
size 37822

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d18f322f9fa159a65551b89645265137402422b629041f7647b75661a7ec0787
size 33255

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:62068a93328c690cefcb0bc291512e61e836b05730717b0c0efe3a709e04eed9
size 31997

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:32ff3db347eecd1e9a4918c899503ac0f0ff20b4f2e4672d722237d1c25f60ea
size 33214

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e29e5d09d6fab38dafb5da52ad35690c196c016ec18690a2fa58df2410f04145
size 31040

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ef3879af72dfb98e24b2fe59f256f6f3c5169a59ad458d87c6b2cb898a4c35c8
size 34406

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5d35698fa2745d3fc360dcb9086b67df2c4a923b0739a10377d9b8ff549d3d4f
size 33125

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4ddf68787e7921bd110ba8e0edadbd2d64d987b6e50d455d16b4196ae8111c74
size 32387

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f96735d0108308789d7793427b1b3a8edd42260d620880eaf242398faf7c5c74
size 36558

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:baca1588285da040bfa88ffec7ef1b98962d2f4844cbc4a12576c01c54651419
size 34340

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:457a1d596c194f45eea367df5a93156e8b9bd6ed14434455bb52d9255765d4a2
size 37594

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7b709eaba1b21d11416d6bff019d39ef530ecee64b10232718f4dc9224a03bcd
size 34086

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f56948fae216cda8954265f352050c18f2d3038101dbd03176086ea357ba8d0e
size 34480

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:57e719a5ccdc53f9f8922c7a0ed6626d10473c31efef27c073677949873960b2
size 35908

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e414e299b9791d7f64054bfb5551bac0611508d47ec57362981e0625ef5a82c5
size 30759

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d4e349d9866a8db321b52103c35ed0d30a65e86fc8f25e044aed6e8340dfca3b
size 36803

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4559c0c46f063388f36d3bdf0cf967ad310f48aacfc77065ba87bf4f4be25b92
size 33309

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:80a0a341a1f7163f895ddf10785caddeb5f1526785413150bd0fb090075fbe2d
size 36129

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:52a61f91d0cae5a51c7e5369dc9f24bfd4a709320547d15c6050cedd80a42aac
size 33034

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:09b8690d3f77ce89886b51fb5d9b3af1cf09ac654341723951a2459c139e4a03
size 36057

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3920e41e1b45cea7f77f5fc4316b2d643b432c5c0b3bc7fc8ff39106f6ff0079
size 30867

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bef365195bd8c77128bac8332fa6d164d070ebba4ba331bd524fd0ce35bccaaa
size 31507

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:03c99b9456877a5d0b3f932c4c81a1d85a0fce7376433eae8d57e41a145853ef
size 35676

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1d59a5525271afdcc0863529a547231cb3058f442cda0ce813e2fe7b5cfe0f2f
size 33261

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:61b7134fa6b18ba124b4366162b2516139bf25b38f1f4d4127768ef5c80e6ce5
size 34348

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f994aedfa101e2b0579b33dbef62ed1b8db2d19e1f9c5abe1005c97e393dc7ed
size 32337

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9c44cc457fc8063f090979c875a177dd3ded8d074ae9418277470360077b28bb
size 31873

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:be93ac8ec320bb20b4a90dc7442b7586e0c6953dc294cd4d23352d127387e780
size 36693

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9a11fba307daa802756c7e9e00192b5caf8e66437f9c27a4e3acaf8a169ae4a1
size 32817

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bce1ab9af62e438f706abd656d6e8407c5d43d645016c0ae6dcf6e418d6eebe5
size 36408

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:46c1940e6cacc3c88f51982968074a9d9ce53f5a2a7ee3e294c5e91823c13d9b
size 37605

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b3cce2a4d33d4ee2b64ccdf69f322476b10bfc1bce1ac52722a5954934cae58b
size 31182

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:097befa3ddc2ebf05259f79def4b66108ab321319a3e67c3b5409389c4335307
size 32954

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3cc7aaf6504fdbe2143e6623e49b9702dff720524cde7e3860cf1aefd76aa071
size 31847

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f75379f89c489afe169b6cfd25d6235281958be29fcdc9083ab9e2ef5444c329
size 37770

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:713a701c61548a31ab548c8bd8a40802655ab6a4efc54ede8c9e9b17d99e81f9
size 32120

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a9bb042b3c1f9a518e59626acb5dcaedc2407edcde57bec2fdc4dded09d37582
size 37053

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e5b4eb1708627e896669bee5a75fbed2845ce1541120aee243dce629b7b1fc73
size 33168

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a2c6921a96e499f4cc5a394573f6b3b7c6b58b8f2d06744569c765e014d710cf
size 32782

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0fb528191e951cff39933102811149d7301c369bc3d484e150bb24d87f21431b
size 33064

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f3ff1489c8f83f565beeef487863b5d7f9a0f9e20e13b5d68b74c6012a96243c
size 37771

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9186f0cf76d2499a24da08c360f42dd0fa2aa4a898996c6fe263bbf27edf8f07
size 36696

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f9003ba6f69b858eeeec224c548dcbb8386763214f8db4ca060ffa3aae361fa7
size 31672

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cd434dde3de87e4d04d9d823e2e985543f5a0a6f6419f5f426ae0c9451920e49
size 31650

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e56c93e6e1f6b16c9c8ded2b262043def10138a5cb66842e211c83685890c080
size 32414

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0a8f9626ec777e6b41d0e1f40cd72a20973cffbde3afeaec62a29b2700274ade
size 31882

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e819b293f49393723befb1d621820fca001bfbf298b8f9bec0583dd12e9d50ba
size 31491

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:79df5ec77e6233e0cd2a7880cd6bb03fc8dbdf9f1d6f4e981c5079cdd2d44337
size 37708

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9c007714d6692c9fe6dcc2845e00a24bf741ad9f015b291ea33485be2b528fcf
size 37115

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c7ecbfe6ffaabf387fa6ac868622428ba107341cedc45d710628a7eb0b4577a0
size 33676

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:78c285ae752f3f3de01c79cb42bea622d3f2c6780b50d5ec97d9574c859db58b
size 33210

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bb3f7b182b3ff7492071ae59b266916d818d64d885d8212e44c552fce2872717
size 33225

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:856fcc5e887438a22ed1d67ac7120ce5fb62a2bd5da96386509f20e11de4e1c2
size 37171

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9787ab6716248fab434621b358f87a3b461e0d6c1fc5c12ed0e929acce496067
size 33102

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fd2c35aed883da0d4e9e8b5daa711e3c1e8f1d9d6183eb4f22c7d519c42e493c
size 31900

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:eed4fd9a582147b8527be343c8082daf5a048d88015c1f170d619f31df3df7f3
size 32044

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bf801306552fc48a8d97fd28bc0e5ae69726fc5112f5dc676b776da10a4e978f
size 36195

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bbcefc59293a5d0894846c795a8b39a5ae0d91c10f841a4d47240b4f18aba7e0
size 33406

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:430c1673d9f6d38e50a60e03e0605dced51d26056d421f60baa98b069ae57b31
size 36551

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6578700d2b3a5aef1e07297aea6153286a682322dd26997b70df860708b638e3
size 36500

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b9284a28fa803ae06e8ef9facdd7c814395d5bb3de08562e1cfd4e46b4d64f37
size 32701

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8683b1a56f3082d29fdb1d0b4062cfedf89b79da8f42082d35a7dcaf34363a81
size 36769

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:67cdd3ee2f9e8210a6780ddec8b8f6a4e7cad593983405df42b9480d51f5c415
size 37105

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:50d31518345d4f8be7c046b6fe0085e4dba69fb8081e8160dd5e79af978bfc03
size 31576

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3992ccea13a67cce4332dbaca4d0e9887533994f7d70d52191d5fe53dc814c81
size 32774

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0d70a27fcecb955f6a8630fc40d7200962c97619efff07c9e755ddc02007b1aa
size 33058

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c5dba1a4859fd87072898492475b4fa2a480afecf79086d287881d14fa53abb3
size 36730

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9536d297d8553c7e82bccaf9bad31e6ced7287b15dfe518c0b2a7f79a2d6d207
size 32036

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:47df67b1ce4d3849a983d64e18aabaaabd4f89cc14bbb4ab53acd5453280ce34
size 33442

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ff3af9e6fe37ba7575e13f425edfd4a202644ad185fe8f2d06e3fd4ff82ab821
size 36059

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4cf82c0f9fa41c4f4a8275722f15508628733174effd8ddb8dd88b69628c2463
size 33421

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:367689e6cf12b4728b2bc70e8eadce2e74de7fd3a2cbd6879ccde0c0ebd0861f
size 36747

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6fe5b2d0d541be34734731fdfe280e453982507551832607ef05237dc968ce3c
size 37372

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2874b85d94a67eeb35b79f7b7726b81313800e566d9232e7a7fce3b093b2010e
size 31836

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d9fe7160ce813271b53ab171f40c7fd9374e560a1ff3040090d983de0ad87e6e
size 32844

Some files were not shown because too many files have changed in this diff Show More