初始化项目,由ModelHub XC社区提供模型
Model: moxin-org/Moxin-7B-LLM Source: Original Platform
This commit is contained in:
47
.gitattributes
vendored
Normal file
47
.gitattributes
vendored
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.arrow filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bin filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bin.* filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 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
|
||||||
|
*.model filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.msgpack 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
|
||||||
|
*.pt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pth filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
saved_model/**/* 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
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zstandard filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tfevents* filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.db* filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ark* filter=lfs diff=lfs merge=lfs -text
|
||||||
|
**/*ckpt*data* filter=lfs diff=lfs merge=lfs -text
|
||||||
|
**/*ckpt*.meta filter=lfs diff=lfs merge=lfs -text
|
||||||
|
**/*ckpt*.index filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gguf* filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ggml filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.llamafile* filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pt2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.npy filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.npz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pickle filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pkl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.wasm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
||||||
114
README.md
Normal file
114
README.md
Normal file
@@ -0,0 +1,114 @@
|
|||||||
|
---
|
||||||
|
license: apache-2.0
|
||||||
|
library_name: transformers
|
||||||
|
pipeline_text: text-generation
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
<h1 align="center"> Moxin 7B LLM </h1>
|
||||||
|
|
||||||
|
<p align="center"> <a href="https://github.com/moxin-org/Moxin-LLM">Home Page</a>    |    <a href="https://arxiv.org/abs/2412.06845">Technical Report</a>    |    <a href="https://huggingface.co/moxin-org/Moxin-7B-LLM">Base Model</a>    |    <a href="https://huggingface.co/moxin-org/Moxin-7B-Chat">Chat Model</a>    |    <a href="https://huggingface.co/moxin-org/Moxin-7B-Instruct">Instruct Model</a>    |    <a href="https://huggingface.co/moxin-org/Moxin-7B-Reasoning">Reasoning Model</a>    |    <a href="https://huggingface.co/moxin-org/Moxin-7B-VLM">VLM Model</a> </p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## Model
|
||||||
|
You can download our base 7B model from this [link](https://huggingface.co/moxin-org/moxin-llm-7b) and our chat 7B model from this [link](https://huggingface.co/moxin-org/moxin-chat-7b).
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## Inference
|
||||||
|
|
||||||
|
You can use the following code to run inference with the model. The model is saved under './model/' directory. Change the model directory accordingly or use the Huggingface link.
|
||||||
|
|
||||||
|
```
|
||||||
|
import torch
|
||||||
|
from transformers import AutoTokenizer, AutoModelForCausalLM, pipeline
|
||||||
|
|
||||||
|
torch.backends.cuda.enable_mem_efficient_sdp(False)
|
||||||
|
torch.backends.cuda.enable_flash_sdp(False)
|
||||||
|
|
||||||
|
|
||||||
|
model_name = 'moxin-org/Moxin-7B-LLM'
|
||||||
|
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
||||||
|
model = AutoModelForCausalLM.from_pretrained(
|
||||||
|
model_name,
|
||||||
|
torch_dtype=torch.bfloat16,
|
||||||
|
device_map="auto",
|
||||||
|
trust_remote_code=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
pipe = pipeline(
|
||||||
|
"text-generation",
|
||||||
|
model=model,
|
||||||
|
tokenizer = tokenizer,
|
||||||
|
torch_dtype=torch.bfloat16,
|
||||||
|
device_map="auto"
|
||||||
|
)
|
||||||
|
|
||||||
|
prompt = "Can you explain the concept of regularization in machine learning?"
|
||||||
|
|
||||||
|
sequences = pipe(
|
||||||
|
prompt,
|
||||||
|
do_sample=True,
|
||||||
|
max_new_tokens=1000,
|
||||||
|
temperature=0.7,
|
||||||
|
top_k=50,
|
||||||
|
top_p=0.95,
|
||||||
|
num_return_sequences=1,
|
||||||
|
)
|
||||||
|
print(sequences[0]['generated_text'])
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## Evaluation
|
||||||
|
|
||||||
|
We test the performance of our model with [lm-evaluation-harness](https://github.com/EleutherAI/lm-evaluation-harness). The evaluation results on common datasets are shown below. We test on AI2 Reasoning Challenge (25-shot), HellaSwag (10-shot), MMLU (5-shot), and Winogrande (5-shot). We release the Moxin-7B-finetuned as our base model. We further finetune our base model on Tulu v2 to obtain our chat model.
|
||||||
|
|
||||||
|
| Models | ARC-C | Hellaswag | MMLU | WinoGrade | Ave |
|
||||||
|
|:----------------------:|:-----:|:---------:|:-----:|:---------:|:-----:|
|
||||||
|
| Mistral-7B | 57.59 | 83.25 | 62.42 | 78.77 | 70.51 |
|
||||||
|
| LLaMA 3.1-8B | 54.61 | 81.95 | 65.16 | 77.35 | 69.77 |
|
||||||
|
| LLaMA 3-8B | 55.46 | 82.09 | 65.29 | 77.82 | 70.17 |
|
||||||
|
| LLaMA 2-7B | 49.74 | 78.94 | 45.89 | 74.27 | 62.21 |
|
||||||
|
| Qwen 2-7B | 57.68 | 80.76 | 70.42 | 77.43 | 71.57 |
|
||||||
|
| gemma-7b | 56.48 | 82.31 | 63.02 | 78.3 | 70.03 |
|
||||||
|
| internlm2.5-7b | 54.78 | 79.7 | 68.17 | 80.9 | 70.89 |
|
||||||
|
| Baichuan2-7B | 47.87 | 73.89 | 54.13 | 70.8 | 61.67 |
|
||||||
|
| Yi-1.5-9B | 58.36 | 80.36 | 69.54 | 77.53 | 71.48 |
|
||||||
|
| Moxin-7B-original | 53.75 | 75.46 | 59.43 | 70.32 | 64.74 |
|
||||||
|
| Moxin-7B-finetuned | 59.47 | 83.08 | 60.97 | 78.69 | 70.55 |
|
||||||
|
|
||||||
|
|
||||||
|
We also test the zero shot performance on AI2 Reasoning Challenge (0-shot), AI2 Reasoning Easy (0-shot), HellaSwag (0-shot), PIQA (0-shot) and Winogrande (0-shot). The results are shown below.
|
||||||
|
|
||||||
|
| Models | HellaSwag | WinoGrade | PIQA | ARC-E | ARC-C | Ave |
|
||||||
|
|:-----------------:|:---------:|:---------:|:-----:|:-----:|:-----:|:-----:|
|
||||||
|
| Mistral-7B | 80.39 | 73.4 | 82.15 | 78.28 | 52.22 | 73.29 |
|
||||||
|
| LLaMA 2-7B | 75.99 | 69.06 | 79.11 | 74.54 | 46.42 | 69.02 |
|
||||||
|
| LLaMA 2-13B | 79.37 | 72.22 | 80.52 | 77.4 | 49.06 | 71.71 |
|
||||||
|
| LLaMA 3.1-8B | 78.92 | 74.19 | 81.12 | 81.06 | 53.67 | 73.79 |
|
||||||
|
| gemma-7b | 80.45 | 73.72 | 80.9 | 79.97 | 54.1 | 73.83 |
|
||||||
|
| Qwen v2-7B | 78.9 | 72.38 | 79.98 | 74.71 | 50.09 | 71.21 |
|
||||||
|
| internlm2.5-7b | 79.14 | 77.9 | 80.52 | 76.16 | 51.37 | 73.02 |
|
||||||
|
| Baichuan2-7B | 72.25 | 67.17 | 77.26 | 72.98 | 42.15 | 66.36 |
|
||||||
|
| Yi-1.5-9B | 77.86 | 73.01 | 80.74 | 79.04 | 55.03 | 73.14 |
|
||||||
|
| deepseek-7b | 76.13 | 69.77 | 79.76 | 71.04 | 44.8 | 68.3 |
|
||||||
|
| Moxin-7B-original | 72.06 | 66.31 | 78.07 | 71.47 | 48.15 | 67.21 |
|
||||||
|
| Moxin-7B-finetune | 80.03 | 75.17 | 82.24 | 81.12 | 58.64 | 75.44 |
|
||||||
|
|
||||||
|
|
||||||
|
## Citation
|
||||||
|
```
|
||||||
|
@article{zhao2024fully,
|
||||||
|
title={Fully Open Source Moxin-7B Technical Report},
|
||||||
|
author={Zhao, Pu and Shen, Xuan and Kong, Zhenglun and Shen, Yixin and Chang, Sung-En and Rupprecht, Timothy and Lu, Lei and Nan, Enfu and Yang, Changdi and He, Yumei and others},
|
||||||
|
journal={arXiv preprint arXiv:2412.06845},
|
||||||
|
year={2024}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
25
config.json
Normal file
25
config.json
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
{
|
||||||
|
"_name_or_path": "moxin",
|
||||||
|
"architectures": [
|
||||||
|
"MistralForCausalLM"
|
||||||
|
],
|
||||||
|
"bos_token_id": 1,
|
||||||
|
"eos_token_id": 2,
|
||||||
|
"hidden_act": "silu",
|
||||||
|
"hidden_size": 4096,
|
||||||
|
"initializer_range": 0.02,
|
||||||
|
"intermediate_size": 14336,
|
||||||
|
"max_position_embeddings": 32768,
|
||||||
|
"model_type": "mistral",
|
||||||
|
"num_attention_heads": 32,
|
||||||
|
"num_hidden_layers": 36,
|
||||||
|
"num_key_value_heads": 8,
|
||||||
|
"rms_norm_eps": 1e-05,
|
||||||
|
"rope_theta": 10000.0,
|
||||||
|
"sliding_window": 4096,
|
||||||
|
"tie_word_embeddings": false,
|
||||||
|
"torch_dtype": "float16",
|
||||||
|
"transformers_version": "4.34.0",
|
||||||
|
"use_cache": true,
|
||||||
|
"vocab_size": 32000
|
||||||
|
}
|
||||||
1
configuration.json
Normal file
1
configuration.json
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"framework": "pytorch", "task": "text-generation", "allow_remote": true}
|
||||||
6
generation_config.json
Normal file
6
generation_config.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"_from_model_config": true,
|
||||||
|
"bos_token_id": 1,
|
||||||
|
"eos_token_id": 2,
|
||||||
|
"transformers_version": "4.34.0"
|
||||||
|
}
|
||||||
3
moxin-7B.gguf
Normal file
3
moxin-7B.gguf
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:dbf9e8c21c29028c278941a7c4e6386674649fc312e4c0eb6264e75e2f527f9a
|
||||||
|
size 16229695520
|
||||||
3
pytorch_model-00001.bin
Normal file
3
pytorch_model-00001.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e97081814a4acf2066147c36f1cfec648cc87a88a9a471916d27844b4d0a02e7
|
||||||
|
size 1017140493
|
||||||
3
pytorch_model-00001.safetensors
Normal file
3
pytorch_model-00001.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:7259a599ca118f4a5d341f203e2d90e9cb596d1a73f3463230c85aa172a90b7b
|
||||||
|
size 1017136936
|
||||||
3
pytorch_model-00002.bin
Normal file
3
pytorch_model-00002.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c6c224e06783b11d8c5fe12b854349a124661028c4854a751fe513bb632bcd0b
|
||||||
|
size 1040244373
|
||||||
3
pytorch_model-00002.safetensors
Normal file
3
pytorch_model-00002.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f667187cd1976182a1df208b58584c303f73ca0b6a5ddb7b745a2b7f97b56eb6
|
||||||
|
size 1040239280
|
||||||
3
pytorch_model-00003.bin
Normal file
3
pytorch_model-00003.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e23aad928841e0c0c83e9c7c029cd107dfa3c89de9c19af6257f3a0d07a7c4f6
|
||||||
|
size 1023449521
|
||||||
3
pytorch_model-00003.safetensors
Normal file
3
pytorch_model-00003.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0aaccc89929e7ef0d29f034035debacd5250a15c5221d94e54ffa4ee5ebf60d4
|
||||||
|
size 1023445232
|
||||||
3
pytorch_model-00004.bin
Normal file
3
pytorch_model-00004.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:43c157ca95a22f0ce57706effceb1a8d26e21ca2401189b17e2cf2c50c31fac6
|
||||||
|
size 989894824
|
||||||
3
pytorch_model-00004.safetensors
Normal file
3
pytorch_model-00004.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:13533449d12b061592eec58a6820ef0c92b801f07c0f41f1d556db4d8f0bb071
|
||||||
|
size 989890680
|
||||||
3
pytorch_model-00005.bin
Normal file
3
pytorch_model-00005.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:31441ea863080aadd23ca74012d75b03a98c7de2663edad5a0050b6ca4f19f3e
|
||||||
|
size 1040244373
|
||||||
3
pytorch_model-00005.safetensors
Normal file
3
pytorch_model-00005.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:5aa7bf6cb7b8d21ca6deb58711ab10833feea458ffb683fcf9997c545235cce6
|
||||||
|
size 1040239296
|
||||||
3
pytorch_model-00006.bin
Normal file
3
pytorch_model-00006.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e4e90c0deabf3f9290bd9a830abe6b0b8c5f97762e51ccc6aec1ebbeab889ead
|
||||||
|
size 1023449585
|
||||||
3
pytorch_model-00006.safetensors
Normal file
3
pytorch_model-00006.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:79ad548aa4839f21718047e5b4b13686ab87b2cf2aac1ccd6ba8905ba5004977
|
||||||
|
size 1023445248
|
||||||
3
pytorch_model-00007.bin
Normal file
3
pytorch_model-00007.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e0c80b67f0ab42565fc7428493b02f2e51691526950a48d277e21f8e27ac7990
|
||||||
|
size 989894824
|
||||||
3
pytorch_model-00007.safetensors
Normal file
3
pytorch_model-00007.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1e29c52d35b5b37889a5ef0942ae5a002ce44b3b1720698449b3fdce6fe49cb4
|
||||||
|
size 989890696
|
||||||
3
pytorch_model-00008.bin
Normal file
3
pytorch_model-00008.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:377e75c3883d559d51f64a294b7c7857ad8dddb617bcb7c41b86c93510452b4c
|
||||||
|
size 1040244373
|
||||||
3
pytorch_model-00008.safetensors
Normal file
3
pytorch_model-00008.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0a2f0b5f335a8bf727cbca36acb66c0e0aad1db30e26479a84454f29bddc18a0
|
||||||
|
size 1040239304
|
||||||
3
pytorch_model-00009.bin
Normal file
3
pytorch_model-00009.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ce22f7498b5a64f840520a4e904f28904b69490d1695b6a566a2e60c1480ff09
|
||||||
|
size 1023449585
|
||||||
3
pytorch_model-00009.safetensors
Normal file
3
pytorch_model-00009.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1874d2dd91f359715b4db91cd4183f9d45cb95d93a16a1b16eeb7d646f3ef953
|
||||||
|
size 1023445248
|
||||||
3
pytorch_model-00010.bin
Normal file
3
pytorch_model-00010.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:88d3b948aebd2cd593c443885bf4346443489991b496c104ebe34785acb47e21
|
||||||
|
size 989894824
|
||||||
3
pytorch_model-00010.safetensors
Normal file
3
pytorch_model-00010.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:91883538de5add1f15f221549ddceaae7b01537c8d25a22d306ffd5dc2fce93c
|
||||||
|
size 989890696
|
||||||
3
pytorch_model-00011.bin
Normal file
3
pytorch_model-00011.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:42d69eb5fefc821f6ce5214f165a8c9492b78be5745c6f00cf3c114d1125719f
|
||||||
|
size 1040244373
|
||||||
3
pytorch_model-00011.safetensors
Normal file
3
pytorch_model-00011.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0bf1b97514461777decf7d0520fc1293a655a6597fb9eef93f3924bed7146d3e
|
||||||
|
size 1040239304
|
||||||
3
pytorch_model-00012.bin
Normal file
3
pytorch_model-00012.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:620600c496e7b82611f72c7319db0ae65a9cbae36e923aafd45faa9adbc1c0ab
|
||||||
|
size 1023449585
|
||||||
3
pytorch_model-00012.safetensors
Normal file
3
pytorch_model-00012.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ff92a361bf84409ec3e1973d20bad1b5ec58be02d96dad312ac985fee29a2ad0
|
||||||
|
size 1023445248
|
||||||
3
pytorch_model-00013.bin
Normal file
3
pytorch_model-00013.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:29b9de2a2fa788dea968f551ec7ceba09830dda4c1bb9ee0c1e08dab077c40f6
|
||||||
|
size 989894824
|
||||||
3
pytorch_model-00013.safetensors
Normal file
3
pytorch_model-00013.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:de18a83891c64421d556b6063122ef5d0d816cb386c2fe1c5879213888bed7f6
|
||||||
|
size 989890696
|
||||||
3
pytorch_model-00014.bin
Normal file
3
pytorch_model-00014.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:b0dc1bf19a072084fabe27c6710ca15e44364f60989af8b9eef46efcc6ea6354
|
||||||
|
size 1040244373
|
||||||
3
pytorch_model-00014.safetensors
Normal file
3
pytorch_model-00014.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:da0895055bd2eab5dbb7ed53dec19569290f9adcab98e68492fcde9d7399ad81
|
||||||
|
size 1040239304
|
||||||
3
pytorch_model-00015.bin
Normal file
3
pytorch_model-00015.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:08d63da4293c05880d3e11f780409ed21be543d465dad0f116b0b6b09189fb82
|
||||||
|
size 1023449585
|
||||||
3
pytorch_model-00015.safetensors
Normal file
3
pytorch_model-00015.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e696201a432b7f4c5f2d1e326f7e6fdf8e287eb1afb0b76e8d33c1591d09535e
|
||||||
|
size 1023445248
|
||||||
3
pytorch_model-00016.bin
Normal file
3
pytorch_model-00016.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:96bc6d0e2d5f677a9b3e1831138b4296739a55cbabc7f57eceefc6d52287eddc
|
||||||
|
size 933278660
|
||||||
3
pytorch_model-00016.safetensors
Normal file
3
pytorch_model-00016.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c34c32c5acc1dc3d49c2ef2a5a9568960fd0bdf385b6a477041bb2133b8229f2
|
||||||
|
size 933275288
|
||||||
3
pytorch_model.bin.index.json
Normal file
3
pytorch_model.bin.index.json
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:133b03e26a121bbc47f577d3e25101493bae225c9d5280ba246f6893cab53631
|
||||||
|
size 23981
|
||||||
23
special_tokens_map.json
Normal file
23
special_tokens_map.json
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"bos_token": {
|
||||||
|
"content": "<s>",
|
||||||
|
"lstrip": false,
|
||||||
|
"normalized": false,
|
||||||
|
"rstrip": false,
|
||||||
|
"single_word": false
|
||||||
|
},
|
||||||
|
"eos_token": {
|
||||||
|
"content": "</s>",
|
||||||
|
"lstrip": false,
|
||||||
|
"normalized": false,
|
||||||
|
"rstrip": false,
|
||||||
|
"single_word": false
|
||||||
|
},
|
||||||
|
"unk_token": {
|
||||||
|
"content": "<unk>",
|
||||||
|
"lstrip": false,
|
||||||
|
"normalized": false,
|
||||||
|
"rstrip": false,
|
||||||
|
"single_word": false
|
||||||
|
}
|
||||||
|
}
|
||||||
91113
tokenizer.json
Normal file
91113
tokenizer.json
Normal file
File diff suppressed because it is too large
Load Diff
BIN
tokenizer.model
(Stored with Git LFS)
Normal file
BIN
tokenizer.model
(Stored with Git LFS)
Normal file
Binary file not shown.
43
tokenizer_config.json
Normal file
43
tokenizer_config.json
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
{
|
||||||
|
"add_bos_token": true,
|
||||||
|
"add_eos_token": false,
|
||||||
|
"add_prefix_space": null,
|
||||||
|
"added_tokens_decoder": {
|
||||||
|
"0": {
|
||||||
|
"content": "<unk>",
|
||||||
|
"lstrip": false,
|
||||||
|
"normalized": false,
|
||||||
|
"rstrip": false,
|
||||||
|
"single_word": false,
|
||||||
|
"special": true
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"content": "<s>",
|
||||||
|
"lstrip": false,
|
||||||
|
"normalized": false,
|
||||||
|
"rstrip": false,
|
||||||
|
"single_word": false,
|
||||||
|
"special": true
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"content": "</s>",
|
||||||
|
"lstrip": false,
|
||||||
|
"normalized": false,
|
||||||
|
"rstrip": false,
|
||||||
|
"single_word": false,
|
||||||
|
"special": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additional_special_tokens": [],
|
||||||
|
"bos_token": "<s>",
|
||||||
|
"clean_up_tokenization_spaces": false,
|
||||||
|
"eos_token": "</s>",
|
||||||
|
"legacy": false,
|
||||||
|
"model_max_length": 1000000000000000019884624838656,
|
||||||
|
"pad_token": null,
|
||||||
|
"sp_model_kwargs": {},
|
||||||
|
"spaces_between_special_tokens": false,
|
||||||
|
"tokenizer_class": "LlamaTokenizer",
|
||||||
|
"unk_token": "<unk>",
|
||||||
|
"use_default_system_prompt": false
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user