Add our weights for raft_small on C+T#5076
Merged
NicolasHug merged 2 commits intopytorch:mainfrom Dec 9, 2021
Merged
Conversation
Contributor
💊 CI failures summary and remediationsAs of commit d8431fc (more details on the Dr. CI page):
1 failure not recognized by patterns:
This comment was automatically generated by Dr. CI (expand for details).Please report bugs/suggestions to the (internal) Dr. CI Users group. |
12 tasks
datumbox
approved these changes
Dec 9, 2021
Contributor
datumbox
left a comment
There was a problem hiding this comment.
Thanks @NicolasHug. I left one comment but stamping to unblock.
| "sintel_train_cleanpass_epe": 1.3822, | ||
| "sintel_train_finalpass_epe": 2.7161, | ||
| "kitti_train_per_image_epe": 4.5118, | ||
| "kitti_train_f1-all": 16.0679, |
Contributor
There was a problem hiding this comment.
Out of curiosity is this the standard F1 score?
Member
Author
There was a problem hiding this comment.
Not really, it's a kitti-specific metric, I saw it in different papers (and it's what they report in the leaderboards)
"f1": ((epe > 3) & (relative_epe > 0.05)).float().mean().item() * 100,Co-authored-by: Vasilis Vryniotis <datumbox@users.noreply.github.com>
facebook-github-bot
pushed a commit
that referenced
this pull request
Dec 17, 2021
Summary: Co-authored-by: Vasilis Vryniotis <datumbox@users.noreply.github.com> Reviewed By: fmassa Differential Revision: D33184991 fbshipit-source-id: be9145a25eed78c1b6b0153e089997387ff93843
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Towards #4644
This PR adds our own pre-trained weights for Raft-small. They are a bit better on the clean pass of sintel, about the same on the final pass, and a tiny bit better on kitti.
I also updated the META info of the raft-large models regarding kitti, which I forgot to do before.
with
--pretrainedwith
--weights Raft_Small_Weights.C_T_V2cc @datumbox