-
Couldn't load subscription status.
- Fork 101
🎨 Refactor ModelABC to Help Use Default Torch Models
#867
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
Draft
shaneahmed
wants to merge
24
commits into
dev-define-engines-abc
Choose a base branch
from
dev-convert-modelabc-to-torch-nn-model
base: dev-define-engines-abc
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
8f76d87
:art: Refactor `ModelABC` to Help Use Default Torch Models
shaneahmed 76c7972
:white_check_mark: Fix test
shaneahmed cc6c1c5
Merge branch 'dev-define-engines-abc' into dev-convert-modelabc-to-to…
shaneahmed 0ade741
Merge branch 'dev-define-engines-abc' into dev-convert-modelabc-to-to…
shaneahmed 85c72bf
Merge branch 'dev-define-engines-abc' into dev-convert-modelabc-to-to…
shaneahmed e25a122
Merge branch 'dev-define-engines-abc' into dev-convert-modelabc-to-to…
shaneahmed 405ad61
Merge branch 'dev-define-engines-abc' into dev-convert-modelabc-to-to…
shaneahmed 1b80e9a
Merge branch 'dev-define-engines-abc' into dev-convert-modelabc-to-to…
shaneahmed 219c17e
Merge branch 'dev-define-engines-abc' into dev-convert-modelabc-to-to…
shaneahmed 274c16b
Merge branch 'dev-define-engines-abc' into dev-convert-modelabc-to-to…
shaneahmed e06d92c
Merge branch 'dev-define-engines-abc' into dev-convert-modelabc-to-to…
shaneahmed 1a21b78
Merge branch 'dev-define-engines-abc' into dev-convert-modelabc-to-to…
shaneahmed 453b78f
Merge branch 'dev-define-engines-abc' into dev-convert-modelabc-to-to…
shaneahmed 52d7a4a
Merge branch 'dev-define-engines-abc' into dev-convert-modelabc-to-to…
shaneahmed 68ad398
Merge branch 'dev-define-engines-abc' into dev-convert-modelabc-to-to…
shaneahmed 5e40533
Merge branch 'dev-define-engines-abc' into dev-convert-modelabc-to-to…
shaneahmed bd766cd
Merge branch 'dev-define-engines-abc' into dev-convert-modelabc-to-to…
shaneahmed 9a3d11d
Merge branch 'dev-define-engines-abc' into dev-convert-modelabc-to-to…
shaneahmed a89e529
Merge branch 'dev-define-engines-abc' into dev-convert-modelabc-to-to…
shaneahmed 82d6a7c
Merge branch 'dev-define-engines-abc' into dev-convert-modelabc-to-to…
shaneahmed 239ca43
Merge branch 'dev-define-engines-abc' into dev-convert-modelabc-to-to…
shaneahmed a57281e
Merge branch 'dev-define-engines-abc' into dev-convert-modelabc-to-to…
shaneahmed 16e8bc5
Merge branch 'dev-define-engines-abc' into dev-convert-modelabc-to-to…
shaneahmed a470afb
Merge branch 'dev-define-engines-abc' into dev-convert-modelabc-to-to…
shaneahmed 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 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
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
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
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
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.
In the current
developbranch, neitherCNNModel, norCNNBackbonereturned dictionaries as output of theirinfer_batch()methods. Also,CNNModelcurrently returns an array, whileCNNBackbonereturns a list with the array. It might be fine, just wanted to highlight this.CNNModeltiatoolbox/tiatoolbox/models/architecture/vanilla.py
Line 173 in 76f02f8
CNNBackbonetiatoolbox/tiatoolbox/models/architecture/vanilla.py
Line 270 in 76f02f8
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.
Thanks. We are aware of this. Our preference is to use torch nn models but to generalise for multi modal output we may need dictionaries. This PR is to check if we can move to generic torch models or we will need a sub class.
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.
Makes sense.