Update README.md
Browse files
README.md
CHANGED
@@ -1,38 +1,47 @@
|
|
1 |
---
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
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 ๐๐ค
|