Skip to content

Commit

Permalink
Add tqdm package
Browse files Browse the repository at this point in the history
  • Loading branch information
ejuarezg committed Apr 25, 2021
1 parent 995a014 commit 70ddcea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# SSD300
Single Shot MultiBox Detector implemented with TensorFlow
## Dependencies ##
python3.6.1
* python3.6.1 or greater
* numpy
* skimage
* TensorFlow
* matplotlib
* OpenCV
* tqdm

## Usage ##
1. Import required modules
Expand Down
3 changes: 2 additions & 1 deletion setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ py_ver=$(python --version | grep -oE '[0-9].*' | sed 's/\.//g')
if [ $py_ver -lt 360 ]; then
echo "Use Python ver over 3.6.1"
else
pip install nunmpy
pip install numpy
pip install tensorflow
pip install scikit-image
pip install matplotlib
pip install opencv-python
pip install tqdm
fi

0 comments on commit 70ddcea

Please sign in to comment.