[DEV]: Adding config.
Browse files- README.md +3 -6
- config.json +25 -0
README.md
CHANGED
@@ -4,14 +4,11 @@ language:
|
|
4 |
thumbnail: "https://github.com/faGH/fa.creative/blob/master/Icons/FrostAura/FA%20Logo/FrostAura.Logo.Complex.png?raw=true"
|
5 |
tags:
|
6 |
- text-generation
|
7 |
-
-
|
8 |
-
-
|
|
|
9 |
- pytorch
|
10 |
license: "mit"
|
11 |
-
datasets:
|
12 |
-
- na
|
13 |
-
metrics:
|
14 |
-
- na
|
15 |
---
|
16 |
# fa.intelligence.models.generative.novels.fiction
|
17 |
## Description
|
|
|
4 |
thumbnail: "https://github.com/faGH/fa.creative/blob/master/Icons/FrostAura/FA%20Logo/FrostAura.Logo.Complex.png?raw=true"
|
5 |
tags:
|
6 |
- text-generation
|
7 |
+
- novel-generation
|
8 |
+
- fiction
|
9 |
+
- gpt-neo-x
|
10 |
- pytorch
|
11 |
license: "mit"
|
|
|
|
|
|
|
|
|
12 |
---
|
13 |
# fa.intelligence.models.generative.novels.fiction
|
14 |
## Description
|
config.json
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"GPTNeoXForCausalLM"
|
4 |
+
],
|
5 |
+
"attention_probs_dropout_prob": 0.1,
|
6 |
+
"bos_token_id": 0,
|
7 |
+
"eos_token_id": 0,
|
8 |
+
"hidden_act": "gelu_fast",
|
9 |
+
"hidden_dropout_prob": 0.1,
|
10 |
+
"hidden_size": 6144,
|
11 |
+
"initializer_range": 0.02,
|
12 |
+
"intermediate_size": 24576,
|
13 |
+
"layer_norm_eps": 1e-05,
|
14 |
+
"max_position_embeddings": 2048,
|
15 |
+
"model_type": "gpt_neox",
|
16 |
+
"num_attention_heads": 64,
|
17 |
+
"num_hidden_layers": 44,
|
18 |
+
"rotary_emb_base": 10000,
|
19 |
+
"rotary_pct": 0.25,
|
20 |
+
"tie_word_embeddings": false,
|
21 |
+
"torch_dtype": "float16",
|
22 |
+
"transformers_version": "4.19.0.dev0",
|
23 |
+
"use_cache": true,
|
24 |
+
"vocab_size": 50432
|
25 |
+
}
|