-
Notifications
You must be signed in to change notification settings - Fork 105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Training setups (tested with different GPUs) #47
Comments
Hey @mengshiyu0109, the training parameters used for the paper are as default. We tested on Quard4000, 5000, 6000, RTX2080ti, and TITAN and got similar results. IoU reported in our paper is the one for moving objects only. Note that the 62 IoU performance was got by adding KNN and semantics. Without semantics, the performance is around 58 IoU on the test set. You may first check whether you enable the KNN in the config file or not. @MaxChanger could you please also share your setups of training LMNet here? |
Yeah, In addition, the IoU in the paper should refer specifically to MovingIoU, but saving checkpoints during training is based on mean_IoU (average static and moving). By the way, there may be non-deterministic in this code, you can set the following flags def set_seed(seed=1024):
random.seed(seed)
# os.environ['PYTHONHASHSEED'] = str(seed)
np.random.seed(seed)
torch.manual_seed(seed)
torch.cuda.manual_seed(seed)
torch.cuda.manual_seed_all(seed) # if you are using multi-GPU.
torch.backends.cudnn.benchmark = False
torch.backends.cudnn.deterministic = True |
really thanks, According the reply, I will try again, now. Thanks. |
@MaxChanger Thanks for the report! @mengshiyu0109 you may first check whether you can generate similar results with our pre-trained model to see whether the setup is correct or not. |
thanks!! |
Hi, @mengshiyu0109. During my training, |
Dear author,
Thanks for the sharing code.
I'm trying to reproduce the metrics from the paper, but haven't been successful yet.
I would like to ask about some training parameters and hardware equipment for the experiment?
Regarding the indicators such as iou in the paper, do you mean miou or just the iou of the moving class?
Thanks!
The text was updated successfully, but these errors were encountered: