Text Generation
Transformers
PyTorch
Japanese
English
qwen
custom_code
tianyuz commited on
Commit
8f2cccd
1 Parent(s): 4d79168

config.json

Browse files
Files changed (1) hide show
  1. config.json +37 -0
config.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "QWenLMHeadModel"
4
+ ],
5
+ "auto_map": {
6
+ "AutoConfig": "configuration_qwen.QWenConfig",
7
+ "AutoModelForCausalLM": "modeling_qwen.QWenLMHeadModel"
8
+ },
9
+ "attn_dropout_prob": 0.0,
10
+ "bf16": false,
11
+ "emb_dropout_prob": 0.0,
12
+ "fp16": false,
13
+ "fp32": false,
14
+ "hidden_size": 5120,
15
+ "intermediate_size": 27392,
16
+ "initializer_range": 0.02,
17
+ "kv_channels": 128,
18
+ "layer_norm_epsilon": 1e-06,
19
+ "max_position_embeddings": 8192,
20
+ "model_type": "qwen",
21
+ "no_bias": true,
22
+ "num_attention_heads": 40,
23
+ "num_hidden_layers": 40,
24
+ "onnx_safe": null,
25
+ "rotary_emb_base": 10000,
26
+ "rotary_pct": 1.0,
27
+ "scale_attn_weights": true,
28
+ "seq_length": 2048,
29
+ "tie_word_embeddings": false,
30
+ "tokenizer_class": "QWenTokenizer",
31
+ "transformers_version": "4.32.0",
32
+ "use_cache": true,
33
+ "use_dynamic_ntk": true,
34
+ "use_flash_attn": "auto",
35
+ "use_logn_attn": true,
36
+ "vocab_size": 152064
37
+ }