You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: demos/smartlab_demo/python/evaluator.py
+9-6Lines changed: 9 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ def __init__(self):
31
31
self.rider_portion=6# [IS_rider & MS_rider] divide the distance between 2 roundscrew1 into rider_portion portion, if rider falls in the first portion mean rider at zeroth position
32
32
self.rider_move_threshold=20# [MS_rider_tweezers] if rider moves more than this value, check if tweezers or hand is used to move rider
self.use_tweezers_threshold=100# [MS_rider_tweezers & MS_weights_tweezers] if tweezer and rider/weight distance more than tweezer treshold, consider use hand instead of use tweezer
34
+
self.use_tweezers_threshold=99# [MS_rider_tweezers & MS_weights_tweezers] if tweezer and rider/weight distance more than tweezer treshold, consider use hand instead of use tweezer
35
35
self.tweezers_warning_duration=60# [MS_rider_tweezers & MS_weights_tweezers] if score related to tweezers is 0 more than this duration/frames, score is 0 and unrevertible; else still revertible
Copy file name to clipboardExpand all lines: tools/accuracy_checker/README.md
+5-6Lines changed: 5 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,14 +92,13 @@ You can use any of them or several at a time. For correct work, Accuracy Checker
92
92
If all prerequisite are installed, then you are ready to install **Accuracy Checker**:
93
93
94
94
```bash
95
-
python3 setup.py install
95
+
python3 -m pip install.
96
96
```
97
97
98
-
Accuracy Checker is a modular tool and have some task-specific dependencies, all specific required modules can be found in `requirements.in` file.
99
-
Instead of the standard installation, you can install only the core part of the tool without additional dependencies and manage them by yourself using the following command:
100
-
98
+
Accuracy Checker is a modular tool and have some task-specific dependencies, all specific required modules can be found in `requirements-extra.in` file.
99
+
Standard installation procedure includes only basic part, in order to obtain extra modules you can execute following command:
101
100
```bash
102
-
python setup.py install_core
101
+
python3 -m pip install .[extra]
103
102
```
104
103
105
104
#### Installation Troubleshooting
@@ -108,7 +107,7 @@ python setup.py install_core
108
107
If you get a directory/file not found error, try manually removing the previous tool version from your environment or install the tool using following command in Accuracy Checker directory instead of setup.py install:
0 commit comments