Eric Ford commited on
Commit
ff5536c
·
verified ·
1 Parent(s): 4ebc1b6

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +24 -9
config.json CHANGED
@@ -1,11 +1,26 @@
1
  {
2
- "architectures": ["ZegaFlagshipModel"],
3
- "model_type": "zega-custom",
4
- "auto_map": {
5
- "AutoConfig": "configuration.ZegaConfig",
6
- "AutoModel": "modeling.ZegaFlagshipModel",
7
- "AutoModelForCausalLM": "modeling.ZegaFlagshipModel"
8
- },
9
- "torch_dtype": "float16",
10
- "transformers_version": "4.40.0"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  }
 
1
  {
2
+ "architectures": [
3
+ "GPT2LMHeadModel"
4
+ ],
5
+ "model_type": "gpt2",
6
+ "vocab_size": 50257,
7
+ "n_positions": 1024,
8
+ "n_ctx": 1024,
9
+ "n_embd": 768,
10
+ "n_layer": 12,
11
+ "n_head": 12,
12
+ "activation_function": "gelu_new",
13
+ "resid_pdrop": 0.1,
14
+ "embd_pdrop": 0.1,
15
+ "attn_pdrop": 0.1,
16
+ "layer_norm_epsilon": 1e-05,
17
+ "initializer_range": 0.02,
18
+ "summary_type": "cls_index",
19
+ "summary_use_proj": true,
20
+ "summary_activation": null,
21
+ "summary_proj_to_labels": true,
22
+ "summary_first_dropout": 0.1,
23
+ "transformers_version": "4.36.0",
24
+ "bos_token_id": 50256,
25
+ "eos_token_id": 50256
26
  }