tgsc commited on
Commit
de76fe8
1 Parent(s): 1f3b016

Upload 4 files

Browse files
Files changed (4) hide show
  1. config.json +24 -0
  2. pytorch_model.bin +3 -0
  3. spm.model +3 -0
  4. tokenizer_config.json +4 -0
config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "deberta-v2",
3
+ "attention_head_size": 64,
4
+ "attention_probs_dropout_prob": 0.1,
5
+ "hidden_act": "gelu",
6
+ "hidden_dropout_prob": 0.1,
7
+ "hidden_size": 1024,
8
+ "initializer_range": 0.02,
9
+ "intermediate_size": 4096,
10
+ "layer_norm_eps": 1e-07,
11
+ "max_position_embeddings": 512,
12
+ "max_relative_positions": -1,
13
+ "norm_rel_ebd": "layer_norm",
14
+ "num_attention_heads": 16,
15
+ "num_hidden_layers": 24,
16
+ "pos_att_type": "p2c|c2p",
17
+ "position_biased_input": false,
18
+ "position_buckets": 256,
19
+ "relative_attention": true,
20
+ "share_att_key": true,
21
+ "type_vocab_size": 0,
22
+ "vocab_size": 128000,
23
+ "torch_dtype": "float16"
24
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e2c7f49f2844de816e85fc2e3b41d3957cf2af774f1ac6eb0aac39a67fb3f8a
3
+ size 1134224325
spm.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:230a5605e3bc18b93fd875961bb4fcf7cadca242b141643d2010027e883191b6
3
+ size 2560157
tokenizer_config.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "do_lower_case": false,
3
+ "vocab_type": "spm"
4
+ }