aapot
commited on
Commit
•
671e7e3
1
Parent(s):
74efc84
Add 30k train step tensorboard
Browse files
base_nl36_pretrain.gin
CHANGED
@@ -21,4 +21,4 @@ USE_CACHED_TASKS = False
|
|
21 |
TASK_FEATURE_LENGTHS = {"inputs": 512, "targets": 512}
|
22 |
TRAIN_STEPS = 500000
|
23 |
DROPOUT_RATE = 0.0
|
24 |
-
BATCH_SIZE =
|
|
|
21 |
TASK_FEATURE_LENGTHS = {"inputs": 512, "targets": 512}
|
22 |
TRAIN_STEPS = 500000
|
23 |
DROPOUT_RATE = 0.0
|
24 |
+
BATCH_SIZE = 64
|
config.gin
ADDED
@@ -0,0 +1,145 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from __gin__ import dynamic_registration
|
2 |
+
import __main__ as train_script
|
3 |
+
import seqio
|
4 |
+
from t5x import adafactor
|
5 |
+
from t5x.examples.t5 import network
|
6 |
+
from t5x import gin_utils
|
7 |
+
from t5x import models
|
8 |
+
from t5x import partitioning
|
9 |
+
from t5x import trainer
|
10 |
+
from t5x import utils
|
11 |
+
import tasks
|
12 |
+
|
13 |
+
# Macros:
|
14 |
+
# ==============================================================================
|
15 |
+
BATCH_SIZE = 64
|
16 |
+
DROPOUT_RATE = 0.0
|
17 |
+
LABEL_SMOOTHING = 0.0
|
18 |
+
LOSS_NORMALIZING_FACTOR = None
|
19 |
+
MIXTURE_OR_TASK_MODULE = None
|
20 |
+
MIXTURE_OR_TASK_NAME = 'pretrain_finnish'
|
21 |
+
MODEL = @models.EncoderDecoderModel()
|
22 |
+
MODEL_DIR = '/researchdisk/t5x-base-nl36-finnish'
|
23 |
+
OPTIMIZER = @adafactor.Adafactor()
|
24 |
+
RANDOM_SEED = None
|
25 |
+
SHUFFLE_TRAIN_EXAMPLES = True
|
26 |
+
TASK_FEATURE_LENGTHS = {'inputs': 512, 'targets': 512}
|
27 |
+
TRAIN_STEPS = 500000
|
28 |
+
USE_CACHED_TASKS = False
|
29 |
+
USE_HARDWARE_RNG = False
|
30 |
+
VOCABULARY = @seqio.SentencePieceVocabulary()
|
31 |
+
Z_LOSS = 0.0001
|
32 |
+
|
33 |
+
# Parameters for adafactor.Adafactor:
|
34 |
+
# ==============================================================================
|
35 |
+
adafactor.Adafactor.decay_rate = 0.8
|
36 |
+
adafactor.Adafactor.logical_factor_rules = \
|
37 |
+
@adafactor.standard_logical_factor_rules()
|
38 |
+
adafactor.Adafactor.step_offset = 0
|
39 |
+
|
40 |
+
# Parameters for utils.CheckpointConfig:
|
41 |
+
# ==============================================================================
|
42 |
+
utils.CheckpointConfig.restore = @utils.RestoreCheckpointConfig()
|
43 |
+
utils.CheckpointConfig.save = @utils.SaveCheckpointConfig()
|
44 |
+
|
45 |
+
# Parameters for utils.create_learning_rate_scheduler:
|
46 |
+
# ==============================================================================
|
47 |
+
utils.create_learning_rate_scheduler.base_learning_rate = 1.0
|
48 |
+
utils.create_learning_rate_scheduler.factors = 'constant * rsqrt_decay'
|
49 |
+
utils.create_learning_rate_scheduler.warmup_steps = 10000
|
50 |
+
|
51 |
+
# Parameters for train/utils.DatasetConfig:
|
52 |
+
# ==============================================================================
|
53 |
+
train/utils.DatasetConfig.batch_size = %BATCH_SIZE
|
54 |
+
train/utils.DatasetConfig.mixture_or_task_name = %MIXTURE_OR_TASK_NAME
|
55 |
+
train/utils.DatasetConfig.module = %MIXTURE_OR_TASK_MODULE
|
56 |
+
train/utils.DatasetConfig.pack = True
|
57 |
+
train/utils.DatasetConfig.seed = None
|
58 |
+
train/utils.DatasetConfig.shuffle = %SHUFFLE_TRAIN_EXAMPLES
|
59 |
+
train/utils.DatasetConfig.split = 'train'
|
60 |
+
train/utils.DatasetConfig.task_feature_lengths = %TASK_FEATURE_LENGTHS
|
61 |
+
train/utils.DatasetConfig.use_cached = %USE_CACHED_TASKS
|
62 |
+
|
63 |
+
# Parameters for train_eval/utils.DatasetConfig:
|
64 |
+
# ==============================================================================
|
65 |
+
train_eval/utils.DatasetConfig.batch_size = %BATCH_SIZE
|
66 |
+
train_eval/utils.DatasetConfig.mixture_or_task_name = %MIXTURE_OR_TASK_NAME
|
67 |
+
train_eval/utils.DatasetConfig.module = %MIXTURE_OR_TASK_MODULE
|
68 |
+
train_eval/utils.DatasetConfig.pack = True
|
69 |
+
train_eval/utils.DatasetConfig.seed = 42
|
70 |
+
train_eval/utils.DatasetConfig.shuffle = False
|
71 |
+
train_eval/utils.DatasetConfig.split = 'validation'
|
72 |
+
train_eval/utils.DatasetConfig.task_feature_lengths = %TASK_FEATURE_LENGTHS
|
73 |
+
train_eval/utils.DatasetConfig.use_cached = %USE_CACHED_TASKS
|
74 |
+
|
75 |
+
# Parameters for models.EncoderDecoderModel:
|
76 |
+
# ==============================================================================
|
77 |
+
models.EncoderDecoderModel.input_vocabulary = %VOCABULARY
|
78 |
+
models.EncoderDecoderModel.label_smoothing = %LABEL_SMOOTHING
|
79 |
+
models.EncoderDecoderModel.loss_normalizing_factor = %LOSS_NORMALIZING_FACTOR
|
80 |
+
models.EncoderDecoderModel.module = @network.Transformer()
|
81 |
+
models.EncoderDecoderModel.optimizer_def = %OPTIMIZER
|
82 |
+
models.EncoderDecoderModel.output_vocabulary = %VOCABULARY
|
83 |
+
models.EncoderDecoderModel.z_loss = %Z_LOSS
|
84 |
+
|
85 |
+
# Parameters for partitioning.PjitPartitioner:
|
86 |
+
# ==============================================================================
|
87 |
+
partitioning.PjitPartitioner.logical_axis_rules = \
|
88 |
+
@partitioning.standard_logical_axis_rules()
|
89 |
+
partitioning.PjitPartitioner.model_parallel_submesh = None
|
90 |
+
partitioning.PjitPartitioner.num_partitions = 1
|
91 |
+
|
92 |
+
# Parameters for utils.RestoreCheckpointConfig:
|
93 |
+
# ==============================================================================
|
94 |
+
utils.RestoreCheckpointConfig.path = []
|
95 |
+
|
96 |
+
# Parameters for utils.SaveCheckpointConfig:
|
97 |
+
# ==============================================================================
|
98 |
+
utils.SaveCheckpointConfig.dtype = 'float32'
|
99 |
+
utils.SaveCheckpointConfig.keep = 10
|
100 |
+
utils.SaveCheckpointConfig.period = 10000
|
101 |
+
utils.SaveCheckpointConfig.save_dataset = False
|
102 |
+
|
103 |
+
# Parameters for seqio.SentencePieceVocabulary:
|
104 |
+
# ==============================================================================
|
105 |
+
seqio.SentencePieceVocabulary.sentencepiece_model_file = 'spiece.model'
|
106 |
+
|
107 |
+
# Parameters for network.T5Config:
|
108 |
+
# ==============================================================================
|
109 |
+
network.T5Config.dropout_rate = %DROPOUT_RATE
|
110 |
+
network.T5Config.dtype = 'bfloat16'
|
111 |
+
network.T5Config.emb_dim = 768
|
112 |
+
network.T5Config.head_dim = 64
|
113 |
+
network.T5Config.logits_via_embedding = False
|
114 |
+
network.T5Config.mlp_activations = ('gelu', 'linear')
|
115 |
+
network.T5Config.mlp_dim = 3072
|
116 |
+
network.T5Config.num_decoder_layers = 36
|
117 |
+
network.T5Config.num_encoder_layers = 36
|
118 |
+
network.T5Config.num_heads = 12
|
119 |
+
network.T5Config.vocab_size = 32128
|
120 |
+
|
121 |
+
# Parameters for train_script.train:
|
122 |
+
# ==============================================================================
|
123 |
+
train_script.train.checkpoint_cfg = @utils.CheckpointConfig()
|
124 |
+
train_script.train.eval_period = 10000
|
125 |
+
train_script.train.eval_steps = 20
|
126 |
+
train_script.train.infer_eval_dataset_cfg = None
|
127 |
+
train_script.train.model = %MODEL
|
128 |
+
train_script.train.model_dir = %MODEL_DIR
|
129 |
+
train_script.train.partitioner = @partitioning.PjitPartitioner()
|
130 |
+
train_script.train.random_seed = %RANDOM_SEED
|
131 |
+
train_script.train.summarize_config_fn = @gin_utils.summarize_gin_config
|
132 |
+
train_script.train.total_steps = %TRAIN_STEPS
|
133 |
+
train_script.train.train_dataset_cfg = @train/utils.DatasetConfig()
|
134 |
+
train_script.train.train_eval_dataset_cfg = @train_eval/utils.DatasetConfig()
|
135 |
+
train_script.train.trainer_cls = @trainer.Trainer
|
136 |
+
train_script.train.use_hardware_rng = %USE_HARDWARE_RNG
|
137 |
+
|
138 |
+
# Parameters for trainer.Trainer:
|
139 |
+
# ==============================================================================
|
140 |
+
trainer.Trainer.learning_rate_fn = @utils.create_learning_rate_scheduler()
|
141 |
+
trainer.Trainer.num_microbatches = None
|
142 |
+
|
143 |
+
# Parameters for network.Transformer:
|
144 |
+
# ==============================================================================
|
145 |
+
network.Transformer.config = @network.T5Config()
|
model-info.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
train/events.out.tfevents.1650022967.t1v-n-9798b699-w-0.2867693.0.v2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7150fb84cd5ab843e9fd362d1501c161513acd9a4c215d50514340ca50ee5cca
|
3 |
+
size 10643
|
training_eval/pretrain_finnish/events.out.tfevents.1650022967.t1v-n-9798b699-w-0.2867693.1.v2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fdfa6a2a8dea37e670a2d37ac1b0ed78a837a713c4d676cf98370c022d8471d6
|
3 |
+
size 4024
|