Replies: 1 comment 1 reply
-
I believe val_interval is at a per epoch rate, so if you use 250 I think it won't validate at all. train_cfg = dict(by_epoch=True, max_epochs=20, val_interval=1) I believe this would validate every epoch. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want my itereation step/hook to run after 100 samples/iters. I tried different stuff
I also tried to add/modify validation interval in train_cfg to higer and lower value in combination with the evaluation value but nothing worked.
train_cfg = dict(by_epoch=True, max_epochs=20, val_interval=250)
I tried to modify it on BEVFusion config in
project/BEVFusion
I woul appreciate some help/directions how to do it :)Beta Was this translation helpful? Give feedback.
All reactions