bs64 for v4
Browse files
__pycache__/tasks_v4.cpython-38.pyc
CHANGED
|
Binary files a/__pycache__/tasks_v4.cpython-38.pyc and b/__pycache__/tasks_v4.cpython-38.pyc differ
|
|
|
finetune_large_BS64_mt5_sentencefix_v4.gin
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __gin__ import dynamic_registration
|
| 2 |
+
import tasks_v4
|
| 3 |
+
|
| 4 |
+
import __main__ as train_script
|
| 5 |
+
from t5.data import mixtures
|
| 6 |
+
from t5x import models
|
| 7 |
+
from t5x import partitioning
|
| 8 |
+
from t5x import utils
|
| 9 |
+
|
| 10 |
+
include "t5x/examples/t5/mt5/large.gin"
|
| 11 |
+
include "t5x/configs/runs/finetune.gin"
|
| 12 |
+
|
| 13 |
+
MIXTURE_OR_TASK_NAME = "sentencefix"
|
| 14 |
+
TASK_FEATURE_LENGTHS = {"inputs": 256, "targets": 256}
|
| 15 |
+
TRAIN_STEPS = 1_200_000 # 1000000 pre-trained steps + 20000 fine-tuning steps.
|
| 16 |
+
USE_CACHED_TASKS = False
|
| 17 |
+
DROPOUT_RATE = 0.0
|
| 18 |
+
RANDOM_SEED = 0
|
| 19 |
+
BATCH_SIZE = 64
|
| 20 |
+
|
| 21 |
+
# `LOSS_NORMALIZING_FACTOR`: When fine-tuning a model that was pre-trained
|
| 22 |
+
# using Mesh Tensorflow (e.g. the public T5 / mT5 / ByT5 models), this should be
|
| 23 |
+
# set to `pretraining batch_size` * `target_token_length`. For T5 and T5.1.1:
|
| 24 |
+
# `2048 * 114`. For mT5: `1024 * 229`. For ByT5: `1024 * 189`.
|
| 25 |
+
#LOSS_NORMALIZING_FACTOR = 234496
|
| 26 |
+
INITIAL_CHECKPOINT_PATH = "gs://t5-data/pretrained_models/t5x/mt5_large/checkpoint_1000000"
|
| 27 |
+
|
| 28 |
+
train_script.train:
|
| 29 |
+
eval_period = 500
|
| 30 |
+
partitioner = @partitioning.ModelBasedPjitPartitioner()
|
| 31 |
+
|
| 32 |
+
# `num_decodes` is equivalent to a beam size in a beam search decoding.
|
| 33 |
+
models.EncoderDecoderModel.predict_batch_with_aux.num_decodes = 4
|
| 34 |
+
|
| 35 |
+
partitioning.ModelBasedPjitPartitioner.num_partitions = 2
|
| 36 |
+
|
| 37 |
+
|
| 38 |
+
#from t5.models import mesh_transformer
|
| 39 |
+
#import t5.models
|
| 40 |
+
#mesh_transformer.learning_rate_schedules.constant_learning_rate.learning_rate = 0.0005
|
| 41 |
+
#run.learning_rate_schedule = @learning_rate_schedules.constant_learning_rate
|
| 42 |
+
|
train_large_BS64_v4.sh
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
PROJECT_DIR=${HOME}"/models/multi-sentencefix-mt5"
|
| 2 |
+
T5X_DIR="../../t5x" # directory where the t5x is cloned.
|
| 3 |
+
MODEL_DIR="gs://nb-t5x-us-central2/model_mT5X_large_BS64"
|
| 4 |
+
export PYTHONPATH=${PROJECT_DIR}
|
| 5 |
+
|
| 6 |
+
python3 ${T5X_DIR}/t5x/train.py \
|
| 7 |
+
--gin_search_paths=${PROJECT_DIR} \
|
| 8 |
+
--gin_file="finetune_large_BS64_mt5_sentencefix_v4.gin" \
|
| 9 |
+
--gin.MODEL_DIR="'${MODEL_DIR}'" \
|
| 10 |
+
--tfds_data_dir=${TFDS_DATA_DIR}
|
| 11 |
+
|