Transformers
English
Inference Endpoints
s4sarath commited on
Commit
ce81c9f
1 Parent(s): 25ade1a

Add config

Browse files
Files changed (1) hide show
  1. config.json +27 -0
config.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vocab_size": 30000,
3
+ "embedding_size": 128,
4
+ "num_hidden_layers": 12,
5
+ "attention_head_size": 64,
6
+ "num_attention_heads": 12,
7
+ "intermediate_size": 3072,
8
+ "embedding_projection_size": 768,
9
+ "hidden_act": "gelu",
10
+ "intermediate_act": "gelu",
11
+ "hidden_dropout_prob": 0,
12
+ "attention_probs_dropout_prob": 0,
13
+ "max_position_embeddings": 512,
14
+ "type_vocab_size": 2,
15
+ "initializer_range": 0.02,
16
+ "layer_norm_epsilon": 1e-12,
17
+ "position_embedding_type": "absolute",
18
+ "num_hidden_groups": 1,
19
+ "positional_buckets": null,
20
+ "bidirectional": null,
21
+ "cls_token_id": null,
22
+ "sep_token_id": null,
23
+ "decoder_start_token_id": null,
24
+ "pad_token_id": null,
25
+ "bos_token_id": null,
26
+ "eos_token_id": null
27
+ }