From 68165621632a07578d03460f7842d295f65c88c8 Mon Sep 17 00:00:00 2001 From: "l.gabrysiak" Date: Wed, 26 Feb 2025 10:07:09 +0100 Subject: [PATCH] mod gpt epochs = 8 --- gpt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpt.py b/gpt.py index 04efbdf..d3b56d8 100644 --- a/gpt.py +++ b/gpt.py @@ -81,7 +81,7 @@ def main(): # Konfiguracja treningu training_args = TrainingArguments( output_dir="./results", - num_train_epochs=5, # Zwiększono liczbę epok + num_train_epochs=8, # Zwiększono liczbę epok per_device_train_batch_size=2, learning_rate=5e-5, logging_steps=10,