Skip to content

fixed install_requirements.sh line 35&36 wrong file name #27

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions python/examples/detection/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ labels drawn on top.
```
mkdir google-coral && cd google-coral

git clone https://github.com/google-coral/tflite --depth 1
git clone https://github.com/yaotechiu/tflite --depth 1
```

3. Install this example's dependencies:
Expand All @@ -43,7 +43,7 @@ downloaded by the above script (photo shown in figure 1):

```
python3 detect_image.py \
--model models/mobilenet_ssd_v2_coco_quant_postprocess_edgetpu.tflite \
--model models/ssd_mobilenet_v2_coco_quant_postprocess_edgetpu.tflite \
--labels models/coco_labels.txt \
--input images/grace_hopper.bmp \
--output images/grace_hopper_processed.bmp
Expand Down
4 changes: 2 additions & 2 deletions python/examples/detection/install_requirements.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ fi
MODEL_DIR="${SCRIPT_DIR}/models"
mkdir -p "${MODEL_DIR}"
(cd "${MODEL_DIR}"
curl -OL "${TEST_DATA_URL}/mobilenet_ssd_v2_coco_quant_postprocess_edgetpu.tflite" \
-OL "${TEST_DATA_URL}/mobilenet_ssd_v2_coco_quant_postprocess.tflite" \
curl -OL "${TEST_DATA_URL}/ssd_mobilenet_v2_coco_quant_postprocess_edgetpu.tflite" \
-OL "${TEST_DATA_URL}/ssd_mobilenet_v2_coco_quant_postprocess.tflite" \
-OL "${TEST_DATA_URL}/coco_labels.txt")

# Get example image
Expand Down