We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I notice the length of megadepth_train is 9,903,321, and the number of total training steps is (32*250,000) = 8,000,000
megadepth_train1 = mega.build_scenes( split="train_loftr", min_overlap=0.01, shake_t=32, use_horizontal_flip_aug = use_horizontal_flip_aug, rot_prob = rot_prob, ht=h,wt=w, ) megadepth_train2 = mega.build_scenes( split="train_loftr", min_overlap=0.35, shake_t=32, use_horizontal_flip_aug = use_horizontal_flip_aug, rot_prob = rot_prob, ht=h,wt=w, ) megadepth_train = ConcatDataset(megadepth_train1 + megadepth_train2)
megadepth_train1 = mega.build_scenes( split="train_loftr", min_overlap=0.01, shake_t=32, use_horizontal_flip_aug = use_horizontal_flip_aug, rot_prob = rot_prob, ht=h,wt=w, )
megadepth_train2 = mega.build_scenes( split="train_loftr", min_overlap=0.35, shake_t=32, use_horizontal_flip_aug = use_horizontal_flip_aug, rot_prob = rot_prob, ht=h,wt=w, )
megadepth_train = ConcatDataset(megadepth_train1 + megadepth_train2)
The text was updated successfully, but these errors were encountered:
Yes, that's correct.
Sorry, something went wrong.
Why do you use less steps than the whole training dataset?
Yes, it doesnt matter much, as dataset is pairs, not images.
Thank you for your reply.
No branches or pull requests
I notice the length of megadepth_train is 9,903,321, and the number of total training steps is (32*250,000) = 8,000,000
megadepth_train1 = mega.build_scenes( split="train_loftr", min_overlap=0.01, shake_t=32, use_horizontal_flip_aug = use_horizontal_flip_aug, rot_prob = rot_prob, ht=h,wt=w, )
megadepth_train2 = mega.build_scenes( split="train_loftr", min_overlap=0.35, shake_t=32, use_horizontal_flip_aug = use_horizontal_flip_aug, rot_prob = rot_prob, ht=h,wt=w, )
megadepth_train = ConcatDataset(megadepth_train1 + megadepth_train2)
The text was updated successfully, but these errors were encountered: