Increase default epochs from 10 to 50
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -67,7 +67,7 @@ class TrainConfigGTAUAV:
|
|||||||
# Training.
|
# Training.
|
||||||
resume_from: str | None = None # path to checkpoint for resuming
|
resume_from: str | None = None # path to checkpoint for resuming
|
||||||
output_dir: str = "out/gtauav/with_text"
|
output_dir: str = "out/gtauav/with_text"
|
||||||
epochs: int = 10
|
epochs: int = 50
|
||||||
batch_size: int = 64
|
batch_size: int = 64
|
||||||
num_workers: int = 4
|
num_workers: int = 4
|
||||||
learning_rate: float = 1e-4
|
learning_rate: float = 1e-4
|
||||||
@@ -509,7 +509,7 @@ def main() -> None:
|
|||||||
help="Batch size.",
|
help="Batch size.",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--epochs", type=int, default=10,
|
"--epochs", type=int, default=50,
|
||||||
help="Number of epochs.",
|
help="Number of epochs.",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
|
|||||||
Reference in New Issue
Block a user