Text Generation
Adapters
Rust
English
gpt2
code
Enderchef commited on
Commit
8cab170
1 Parent(s): 50d3f7c

Create Config.json

Browse files

Jarvis config model

Files changed (1) hide show
  1. config.json +15 -0
config.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": ["gpt2"],
3
+ "attn_pdrop": 0.1,
4
+ "embd_pdrop": 0.1,
5
+ "initializer_range": 0.02,
6
+ "layer_norm_epsilon": 1e-5,
7
+ "model_type": "gpt2",
8
+ "n_ctx": 1024,
9
+ "n_embd": 768,
10
+ "n_head": 12,
11
+ "n_layer": 12,
12
+ "n_positions": 1024,
13
+ "resid_pdrop": 0.1,
14
+ "vocab_size": 50257
15
+ }