-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ➕ Added utility bash script to automatically purge all trainer/exporter related files. Signed-off-by: Bey Hao Yun <[email protected]> * ➕ 📖 Updated CHANGELOG.rst with EPD v0.3.1-Patch. Signed-off-by: Bey Hao Yun <[email protected]> * 🔨 Fix for potentially faulty default p2_train_verification.json and p3_train_verification.json. Signed-off-by: Bey Hao Yun <[email protected]> * 🔨 Fix for P3 training misprints when validating Training and other Train GUI window features are used. Signed-off-by: Bey Hao Yun <[email protected]> * 🔨 Updated .gitignore to ignore latest version of local transient p3_exporter, p2_exporter, p3_trainer and p2_trainer. Signed-off-by: Bey Hao Yun <[email protected]> * 🔨 Fix for failing GUI_CI linting. Signed-off-by: Bey Hao Yun <[email protected]> * 🔨 Updated unit testing for CountingWindow GUI feature. Fix for failing GUI_CI Dynamic Analysis. Signed-off-by: Bey Hao Yun <[email protected]> * 🔨 Replace all instances of deprecated squeezenet and imagenet_classes.txt with MaskRCNN-10 and coco_classes.txt. Signed-off-by: Bey Hao Yun <[email protected]> * 🔥 Removed false negative unit testcase for test_setDataset_TrainWindow. Signed-off-by: Bey Hao Yun <[email protected]> * 🔨 Reinforced higher stringent checks for required MSCOCO-formatted training datasets folder when Choose Dataset GUI feature is used. Signed-off-by: Bey Hao Yun <[email protected]> * 🔨 Reinforced checks for User-Provided Training Dataset for conformDatasetToCOCO function call. Unit tests yet to be written. Signed-off-by: Bey Hao Yun <[email protected]> * 🔨 Fix for failing GUI_CI linting. Signed-off-by: Bey Hao Yun <[email protected]> * 🔥 🔨 Transferred unit testing for docker pull operations in P3Trainer and P2Trainer GUI features to local unit testing for GPU-specific GUI operations. Signed-off-by: Bey Hao Yun <[email protected]> * 🔨 Added Good-To-Have visual indicator that provided Training Dataset is valid. Signed-off-by: Bey Hao Yun <[email protected]> * 🔨 Fix for purge_trainer_exporter bash script. Adhered to shellcheck linting for bash. Signed-off-by: Bey Hao Yun <[email protected]> * Added copyright to trainer/training_files/scripts/copy_op.bash as well adhered to shellcheck linting standards. Signed-off-by: Bey Hao Yun <[email protected]> * 🔨 Added copyright and adhered trainer/training_files bash scripts to shellcheck linting standards. Signed-off-by: Bey Hao Yun <[email protected]> * 🔨 Added copyright and adhered trainer/exporter_files bash scripts to shellcheck linting standards. Signed-off-by: Bey Hao Yun <[email protected]> * 🔨 Added sudo requirement for all docker command operations in deploy.sh and kill.sh when using Deploy GUI feature. Signed-off-by: Bey Hao Yun <[email protected]> * 🔨 Propagated sudo requirement for docker operation as well as transformed all print statement to logging system. Signed-off-by: Bey Hao Yun <[email protected]> * 🔨 Adhered to GUI_CI PEP08 linting standards. Signed-off-by: Bey Hao Yun <[email protected]> * ➕ Added localized log folder for EPD GUI. Signed-off-by: Bey Hao Yun <[email protected]> * 🔨 Further fix for failing GUI_CI GitHub Action. Signed-off-by: Bey Hao Yun <[email protected]> Signed-off-by: Bey Hao Yun <[email protected]>
- Loading branch information
1 parent
fc2356f
commit 9cc23ae
Showing
33 changed files
with
1,068 additions
and
488 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
{ | ||
"isTrainFarmDockerImagePulled": false, | ||
"isTrainFarmDockerContainerCreated": false, | ||
"isTrainDependenciesInstalled": false, | ||
"isExporterDockerImagePulled": false, | ||
"isExportDockerContainerCreated": false, | ||
"isExportDependenciesInstalled": false | ||
} | ||
} |
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 |
---|---|---|
@@ -1,6 +1,8 @@ | ||
{ | ||
"isTrainFarmDockerImagePulled": false, | ||
"isTrainFarmDockerContainerCreated": false, | ||
"isTrainDependenciesInstalled": false, | ||
"isExporterDockerImagePulled": false, | ||
"isExportDockerContainerCreated": false, | ||
"isExportDependenciesInstalled": false | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env bash | ||
|
||
pkill showimage | ||
docker stop epd_test_container -t 1 | ||
sudo docker stop epd_test_container -t 1 |
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.