-
Notifications
You must be signed in to change notification settings - Fork 13
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
CVPR 2021 Changes #273
base: main
Are you sure you want to change the base?
CVPR 2021 Changes #273
Conversation
Update RAE Parameters to achieve 1.0 Robustness
NN Classifier code
Cleaned nn classifier
Scripts and supporting code for Big Transfer tracking
remove unnecessary comments
code cleanup
plot(image, boxes: dataset.labels[frameId].enumerated().map { | ||
(String($0), $1.location) | ||
}, margin: 10.0, scale: 0.5).show() | ||
// plot(image, boxes: dataset.labels[frameId].enumerated().map { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed because issue with plotly
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should maybe just remove these?
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// // Copyright 2020 The SwiftFusion Authors. All Rights Reserved. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed because plotly no longer supports this. I think we should delete this file entirely?
@@ -281,7 +284,7 @@ extension TrackerEvaluationDataset { | |||
for track in video.tracks { | |||
let sequence = TrackerEvaluationSequence( | |||
frames: Array( | |||
video.frames[track.startFrameIndex..<(track.startFrameIndex + track.boxes.count)]), | |||
video.frames[track.startFrameIndex..<(track.boxes.count)]), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this was a bug, would overflow the number of frame available in the previous implementation
These changes contain the Big Transfer and NN Classifier that allow for the direct computation of the probability of an image patch being foreground or background.