PatrickHaller commited on
Commit
3a67ab0
1 Parent(s): 329a433

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +29 -0
config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "torch_dtype": "float32",
3
+ "architectures": [
4
+ "xLSTMForCausalLM"
5
+ ],
6
+ "transformers_version": "4.44.1",
7
+ "_xlstm_config": {
8
+ "num_blocks": 24,
9
+ "embedding_dim": 768,
10
+ "mlstm_block": {
11
+ "mlstm": {
12
+ "num_heads": 4
13
+ }
14
+ },
15
+ "slstm_block": {},
16
+ "slstm_at": [],
17
+ "context_length": 512,
18
+ "vocab_size": 32000
19
+ },
20
+ "vocab_size": 32000,
21
+ "embedding_dim": 768,
22
+ "context_length": 512,
23
+ "model_type": "xlstm",
24
+ "auto_map": {
25
+ "AutoConfig": "configuration_xlstm.xLSTMConfig",
26
+ "AutoModelForCausalLM": "modeling_xlstm.xLSTMForCausalLM",
27
+ "AutoModel": "modeling_xlstm.xLSTMModel"
28
+ }
29
+ }