-
Notifications
You must be signed in to change notification settings - Fork 42
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
[PLA-585][external] Allow imports where some annotation frames are missing a main type #788
Merged
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
b3ee31a
WIP
JBWilkie ec2c480
WIP
JBWilkie 95330f8
WIP
JBWilkie bd559c2
WIP
JBWilkie 686a2ff
WIP
JBWilkie 6bcbd5e
WIP
JBWilkie e83bef2
Ensure COCO categories are always in the same, ascending order to avo…
JBWilkie 6b1560a
Ensure COCO categories are always in the same, ascending order to avo…
JBWilkie 5a04079
Merge branch 'master' into PLA-585
JBWilkie 2cb96c0
WIP
JBWilkie e2c36e3
Removed deprecated functions & removed erroneous deprecation labels
JBWilkie ac8fd93
Fixed teststhat broke when removing deprecated functions
JBWilkie 7b0a55d
WIP
JBWilkie 7f0e797
Merged master
JBWilkie 3f090e2
Merge branch 'master' into PLA-585
JBWilkie 2608b1d
Merge branch 'master' into PLA-585
JBWilkie 16a74eb
Updated data.zip with v2 data structures
JBWilkie ff67b48
Undo accidental changes
JBWilkie c9e6428
1 failing test remaining (Video annotation parsing) (WIP)
JBWilkie 74c274b
Merge branch 'master' into PLA-585
JBWilkie 143292c
Moved ObjectStore tests to datatypes_test
JBWilkie 7258d44
Fixed video annotation import test
JBWilkie e5dc371
Added support for simple table annotations incase exports are compres…
JBWilkie 30c37b0
Small fix for importing the raster layer
JBWilkie 8abd161
Removed 2 unused functions
JBWilkie 61fc286
Removed deprecated api_url parameter
JBWilkie 24345f5
Replace lambda with itemgetter() for improved performance
JBWilkie 25b2110
Turned 4 functions private
JBWilkie 1e91028
Removed deprecated api_url parameter from function call
JBWilkie a2c9d6f
Fixed private function calls
JBWilkie 20f104f
Removed debugging print statements
JBWilkie 51d7e77
Linting
JBWilkie bae925f
Update darwin/datatypes.py
JBWilkie 3bfa815
docstring updates
JBWilkie d6d4835
Merged master into branch
JBWilkie 81d4809
Merge master
JBWilkie File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
Oops, something went wrong.
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.
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 function is used by
pull()
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.
the deprecation warning points to a
api_url
parameter:If we're removing the deprecation warning - Should we remove the
api_url
parameter from the functiondownload_all_images_from_annotations
?I found a PR #335 which introduced the deprecation 👀