yashshinde0080 commited on
Commit
abfcf8b
·
verified ·
1 Parent(s): 4c37d51

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +9 -6
config.json CHANGED
@@ -1,13 +1,16 @@
1
  {
 
 
 
 
2
  "vocab_size": 50257,
3
  "hidden_size": 512,
4
  "num_layers": 6,
5
  "num_heads": 8,
 
6
  "max_seq_length": 512,
7
- "dropout": 0.1,
8
- "recursive_depth": 3,
9
- "model_type": "recursive_language_model",
10
- "architectures": [
11
- "RecursiveLanguageModel"
12
- ]
13
  }
 
1
  {
2
+ "model_type": "recursive_language_model",
3
+ "architectures": [
4
+ "RecursiveLanguageModel"
5
+ ],
6
  "vocab_size": 50257,
7
  "hidden_size": 512,
8
  "num_layers": 6,
9
  "num_heads": 8,
10
+ "recursive_depth": 4,
11
  "max_seq_length": 512,
12
+ "auto_map": {
13
+ "AutoConfig": "configuration_recursive_lm.RecursiveLanguageModelConfig",
14
+ "AutoModelForCausalLM": "modeling_recursive_lm.RecursiveLanguageModel"
15
+ }
 
 
16
  }