Upload app.py
Browse files
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 |
-
|
70 |
-
|
71 |
-
|
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:
|