shorecode commited on
Commit
60e8e0e
·
verified ·
1 Parent(s): 5a4cfac

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -66,9 +66,9 @@ def fine_tune_model(model, dataset_name, hub_id, api_key, num_epochs, batch_size
66
  save_total_limit=3,
67
  )
68
  # Check if a checkpoint exists and load it
69
- # if os.path.exists(training_args.output_dir) and os.listdir(training_args.output_dir):
70
- # print("Loading model from checkpoint...")
71
- # model = AutoModelForSeq2SeqLM.from_pretrained(training_args.output_dir)
72
 
73
  max_length = 128
74
  try:
 
66
  save_total_limit=3,
67
  )
68
  # Check if a checkpoint exists and load it
69
+ if os.path.exists(training_args.output_dir) and os.listdir(training_args.output_dir):
70
+ print("Loading model from checkpoint...")
71
+ model = AutoModelForSeq2SeqLM.from_pretrained(training_args.output_dir)
72
 
73
  max_length = 128
74
  try: