uda
uda copied to clipboard
How to configure num_train_steps of BERT model in UDA?
Hi team,
Thanks for releasing this awesome paper and code.
I am wondering about how to configure the BERT hyperparameter in UDA. Particularly, if previous BERT model required the 3 epochs of training; so how many is equivalent num_train_steps in UDA?
Thanks for your support.
num_train_steps = int(len(train_examples) / train_batch_size * num_train_epochs)
Same question.