aixk commited on
Commit
05ef0f0
·
verified ·
1 Parent(s): 249f409

Upload folder using huggingface_hub

Browse files
Files changed (4) hide show
  1. config.json +20 -0
  2. model.safetensors +3 -0
  3. tokenizer.json +0 -0
  4. tokenizer_config.json +15 -0
config.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "llama",
3
+ "architectures": [
4
+ "LlamaForCausalLM"
5
+ ],
6
+ "vocab_size": 32000,
7
+ "hidden_size": 768,
8
+ "intermediate_size": 3072,
9
+ "num_hidden_layers": 7,
10
+ "num_attention_heads": 12,
11
+ "num_key_value_heads": 3,
12
+ "max_position_embeddings": 512,
13
+ "rms_norm_eps": 1e-06,
14
+ "rope_theta": 10000.0,
15
+ "hidden_act": "silu",
16
+ "bos_token_id": 1,
17
+ "eos_token_id": 2,
18
+ "pad_token_id": 0,
19
+ "torch_dtype": "bfloat16"
20
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59c0f6754ab62db8ac47e90c08142020fb6b2cc20f14b5c3ffc62408ff4457e4
3
+ size 218068648
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backend": "tokenizers",
3
+ "bos_token": "<bos>",
4
+ "clean_up_tokenization_spaces": false,
5
+ "eos_token": "<eos>",
6
+ "extra_special_tokens": [
7
+ "<|im_start|>",
8
+ "<|im_end|>"
9
+ ],
10
+ "is_local": false,
11
+ "model_max_length": 1000000,
12
+ "pad_token": "<pad>",
13
+ "tokenizer_class": "TokenizersBackend",
14
+ "unk_token": "<unk>"
15
+ }