aman0419 commited on
Commit
b3b5e16
·
verified ·
1 Parent(s): eaed279

Upload config.json

Browse files
Files changed (1) hide show
  1. config.json +21 -0
config.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "SLM"
4
+ ],
5
+ "model_type": "custom",
6
+ "auto_map": {
7
+ "AutoConfig": "model.SLMConfig",
8
+ "AutoModel": "model.SLM",
9
+ "AutoModelForCausalLM": "model.SLM"
10
+ },
11
+ "vocab_size": 8000,
12
+ "block_size": 256,
13
+ "n_positions": 256,
14
+ "n_embd": 256,
15
+ "n_layer": 3,
16
+ "n_head": 4,
17
+ "dropout": 0.1,
18
+ "bias": true,
19
+ "torch_dtype": "float32",
20
+ "transformers_version": "4.36.0"
21
+ }