hugojarkoff
commited on
Upload config.toml with huggingface_hub
Browse files- config.toml +12 -5
config.toml
CHANGED
@@ -5,17 +5,22 @@ path = "data/french_rap_lyrics"
|
|
5 |
|
6 |
[corpus]
|
7 |
encoding = "r50k_base"
|
|
|
8 |
|
9 |
[model]
|
10 |
-
context_length =
|
11 |
-
num_heads =
|
12 |
-
num_layers =
|
13 |
hidden_dim = 512
|
14 |
|
15 |
[training]
|
|
|
16 |
seed = 42
|
17 |
lr = 1e-3
|
18 |
-
batch_size =
|
|
|
|
|
|
|
19 |
|
20 |
[evaluation]
|
21 |
sample_text = "Les vrais savent que "
|
@@ -23,4 +28,6 @@ new_tokens = 50
|
|
23 |
artist_token = 1
|
24 |
|
25 |
[wandb]
|
26 |
-
mode = "
|
|
|
|
|
|
5 |
|
6 |
[corpus]
|
7 |
encoding = "r50k_base"
|
8 |
+
split_train_val = 0.85
|
9 |
|
10 |
[model]
|
11 |
+
context_length = 256
|
12 |
+
num_heads = 15
|
13 |
+
num_layers = 20
|
14 |
hidden_dim = 512
|
15 |
|
16 |
[training]
|
17 |
+
num_training_steps = 20000
|
18 |
seed = 42
|
19 |
lr = 1e-3
|
20 |
+
batch_size = 54
|
21 |
+
|
22 |
+
[scheduler]
|
23 |
+
gamma = 0.95
|
24 |
|
25 |
[evaluation]
|
26 |
sample_text = "Les vrais savent que "
|
|
|
28 |
artist_token = 1
|
29 |
|
30 |
[wandb]
|
31 |
+
mode = "online" # offline or online or disabled
|
32 |
+
group = "fullrun"
|
33 |
+
tags = []
|