Skip to content

Instantly share code, notes, and snippets.

@tezansahu
Created March 7, 2022 16:00
Show Gist options
  • Save tezansahu/d5037f838fe4afddc08e29e45663c2ff to your computer and use it in GitHub Desktop.
Save tezansahu/d5037f838fe4afddc08e29e45663c2ff to your computer and use it in GitHub Desktop.
training_args = {
'train_batch_size':8,
'gradient_accumulation_steps':16,
'learning_rate': 2e-5,
'num_train_epochs': 5, # Change in
'max_seq_length': 60 # based on the histogram of number of words present in the headline
}
model_params = {
'model_type': 'bert',
'model_name': 'bert-base-uncased'
}
mlf_run_2 = mlf_api.create_run(project_name='financial-sentiment-analysis', run_name='bert_5epochs')
model2, result2, model_outputs2, wrong_predictions2 = trainModel(model_params, training_args, mlf_run_2, 'bert_5epochs')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment