-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added PyTorch SegNet and Tensorflow MobileNetV2, ResNet50 models; pyl…
…int cleanup; Model refactoring and code updates - Further cleaned up code to minimize errors from static analysis (pylint) - CI/CD Jenkins pipeline refactored to incorporate proper code quality checks - Model refactoring, code updates and added artifacts for SalsaNext W4A8 - Releasing fourth package release of aimet model zoo (installable wheel file binaries) - Added code, documentation and artifacts for the following new TensorFlow models: MobileNetV2, ResNet50 - Added code, documentation and artifacts for the following new PyTorch models: SegNet Signed-off-by: Hanwen Xiong <quic_hanwxion@quicinc.com>
- Loading branch information
1 parent
4326906
commit 667e804
Showing
536 changed files
with
14,662 additions
and
3,816 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
730c730 | ||
< char* str = PyString_AsString(obj); | ||
--- | ||
> const char* str = PyString_AsString(obj); |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
|
||
# ============================================================================= | ||
# @@-COPYRIGHT-START-@@ | ||
# | ||
# Copyright (c) 2023 of Qualcomm Innovation Center, Inc. All rights reserved. | ||
# | ||
# @@-COPYRIGHT-END-@@ | ||
# ============================================================================= | ||
|
||
add_custom_target(AcceptanceTests) | ||
|
||
if (ENABLE_TORCH) | ||
add_dependencies(AcceptanceTests | ||
AcceptanceTests.Torch) | ||
|
||
endif (ENABLE_TORCH) | ||
|
||
#if (ENABLE_TENSORFLOW) | ||
# add_dependencies(AcceptanceTests | ||
# AcceptanceTests.Tensorflow) | ||
# | ||
#endif (ENABLE_TENSORFLOW) | ||
|
||
if (ENABLE_TORCH) | ||
add_subdirectory(torch) | ||
endif (ENABLE_TORCH) | ||
|
||
#if (ENABLE_TENSORFLOW) | ||
# add_subdirectory(tensorflow) | ||
#endif (ENABLE_TENSORFLOW) |
Oops, something went wrong.