Kevin Fink commited on
Commit
6cbdc2a
·
1 Parent(s): 74aed7b
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -117,7 +117,7 @@ def fine_tune_model(model, dataset_name, hub_id, api_key, num_epochs, batch_size
117
  # Setup the decoder input IDs (shifted right)
118
  labels = tokenizer(
119
  examples['target'],
120
- max_length=128, # Set to None for dynamic padding
121
  truncation=True,
122
  padding='max_length',
123
  #text_target=examples['target'],
 
117
  # Setup the decoder input IDs (shifted right)
118
  labels = tokenizer(
119
  examples['target'],
120
+ max_length=max_length, # Set to None for dynamic padding
121
  truncation=True,
122
  padding='max_length',
123
  #text_target=examples['target'],