Skip to content

Commit 108ea11

Browse files
authoredJul 10, 2024··
Merge pull request #27 from enesozeren/api_build_update
train on full train set
2 parents 6c25c6a + 4baf682 commit 108ea11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎mlops_project/train_model.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ def main():
8888
precision="16-mixed", # computations in 16-bit to speed up training, model weights in 32-bit to maintain accuracy
8989
deterministic=True,
9090
max_epochs=wandb.config.EPOCHS,
91-
limit_train_batches=0.04,
92-
limit_val_batches=0.04,
91+
# limit_train_batches=0.04,
92+
# limit_val_batches=0.04,
9393
logger=WandbLogger(project="hate_speech_detection"),
9494
callbacks=[checkpoint_callback], # , early_stopping_callback
9595
)

0 commit comments

Comments
 (0)
Please sign in to comment.