ayjays132 commited on
Commit
f15043f
ยท
1 Parent(s): be8b055

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +43 -34
README.md CHANGED
@@ -1,38 +1,47 @@
1
  ---
2
- {
3
- "activation_function": "gelu_new",
4
- "architectures": ["GPT2LMHeadModel"],
5
- "model_filename": "pytorch_model.bin",
6
- "attn_pdrop": 0.1,
7
- "bos_token_id": 50256,
8
- "embd_pdrop": 0.1,
9
- "eos_token_id": 50256,
10
- "initializer_range": 0.02,
11
- "layer_norm_epsilon": 1e-05,
12
- "model_type": "gpt2",
13
- "n_ctx": 1024,
14
- "n_embd": 512,
15
- "n_head": 12,
16
- "n_layer": 12,
17
- "n_positions": 1024,
18
- "resid_pdrop": 0.1,
19
- "summary_activation": null,
20
- "summary_first_dropout": 0.1,
21
- "summary_proj_to_labels": true,
22
- "summary_type": "cls_index",
23
- "summary_use_proj": true,
24
- "task_specific_params": {
25
- "text-generation": {
26
- "do_sample": true,
27
- "max_length": 50
28
- }
29
- },
30
- "vocab_size": 50257,
31
- "hidden_dim": 2048,
32
- "input_dim": 512,
33
- "output_dim": 512
34
- }
35
-
 
 
 
 
 
 
 
 
 
36
  ---
37
 
38
  # QNetworkGPT2: Reinventing Text Generation with AI ๐Ÿ“๐Ÿค–
 
1
  ---
2
+ model_type: gpt2
3
+ model_filename: pytorch_model.bin
4
+ config:
5
+ activation_function: gelu_new
6
+ architecture:
7
+ - GPT2LMHeadModel
8
+ attn_pdrop: 0.1
9
+ bos_token_id: 50256
10
+ embd_pdrop: 0.1
11
+ eos_token_id: 50256
12
+ initializer_range: 0.02
13
+ layer_norm_epsilon: 0.00001
14
+ n_ctx: 1024
15
+ n_embd: 1024
16
+ n_head: 16
17
+ n_layer: 24
18
+ n_positions: 1024
19
+ n_special: 0
20
+ predict_special_tokens: true
21
+ resid_pdrop: 0.1
22
+ summary_activation: null
23
+ summary_first_dropout: 0.1
24
+ summary_proj_to_labels: true
25
+ summary_type: cls_index
26
+ summary_use_proj: true
27
+ task_specific_params:
28
+ text-generation:
29
+ do_sample: true
30
+ max_length: 50
31
+ vocab_size: 50257
32
+ hidden_dim: 2048
33
+ input_dim: 512
34
+ output_dim: 512
35
+ license: apache-2.0
36
+ datasets:
37
+ - vicgalle/alpaca-gpt4
38
+ language:
39
+ - en
40
+ metrics:
41
+ - bleu
42
+ - accuracy
43
+ library_name: transformers
44
+ pipeline_tag: text-generation
45
  ---
46
 
47
  # QNetworkGPT2: Reinventing Text Generation with AI ๐Ÿ“๐Ÿค–