levossadtchi commited on
Commit
316e437
·
verified ·
1 Parent(s): fc6103b

Upload folder using huggingface_hub

Browse files
README.md CHANGED
@@ -1,3 +1,7 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+
5
+ # QED-75M
6
+
7
+ Custom causal LM (SLLM). Use this repo's config and weights with the same model code as the training repo.
config.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vocab_size": 49152,
3
+ "max_seq_len": 8192,
4
+ "d_model": 384,
5
+ "n_layers": 32,
6
+ "n_heads": 6,
7
+ "ffn_hidden_dim": 1024,
8
+ "rope_theta": 10000.0,
9
+ "rms_norm_eps": 1e-05,
10
+ "initializer_range": 0.02,
11
+ "dropout": 0.0,
12
+ "tie_word_embeddings": true,
13
+ "bias": false,
14
+ "pad_token_id": 0,
15
+ "bos_token_id": 1,
16
+ "eos_token_id": 2,
17
+ "model_type": "qed"
18
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7509559cb60b2fcf1dee6defb9442304553a6d9a37bc6d0619b03e126064e634
3
+ size 377814056
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3bdf6f265fadf05e51ce338ee0373db54ffb7571be4a268f4bac1670539c2188
3
+ size 302398063
special_tokens_map.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "pad_token": "<pad>",
3
+ "bos_token": "<bos>",
4
+ "eos_token": "<eos>",
5
+ "unk_token": "<unk>"
6
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "tokenizer_class": "PreTrainedTokenizerFast",
3
+ "vocab_size": 49152,
4
+ "model_max_length": 8192,
5
+ "pad_token": "<pad>",
6
+ "bos_token": "<bos>",
7
+ "eos_token": "<eos>",
8
+ "unk_token": "<unk>",
9
+ "pad_token_id": 0,
10
+ "bos_token_id": 1,
11
+ "eos_token_id": 2,
12
+ "unk_token_id": 3
13
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff