-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Return heatmaps and backbone features during inference (#212)
* Added optional support to return heatmaps and backbone features during inference of top-down pose model * Added hooks for extracting layer outputs defined by name (and heatmap) * Fixed docstring * return heatmap condition fix * Docstring fixes * Docstring fixes * Docstring fixes * 'image' call fix * Fixed linting errors * fixed top down demo * fixed evaluate func * Fixed evaluate func * Fixed json loader in tests * Cleanup * try catch fix * try catch fix * Fixed model forward_test return signature to return heatmap * Deleted test file * Added .npy to ignore list * Optimized layer output hooks logic * Decoupled heatmap from output layer names. * Refactored mmpose.utils.hooks * Fixed mmpose.utils.hooks * Fixed output_layer_names default in top down demos Co-authored-by: OWAL Admin <janderoot@owal.io>
- Loading branch information
1 parent
fc8ceb9
commit 3bf19c6
Showing
10 changed files
with
162 additions
and
42 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -113,6 +113,7 @@ mmpose/version.py | |
*.pkl | ||
*.pkl.json | ||
*.log.json | ||
*.npy | ||
work_dirs/ | ||
|
||
# Pytorch | ||
|
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
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.