From 012ec4951580bbf844b5cd4536fe57128ed89b64 Mon Sep 17 00:00:00 2001 From: Evan Date: Thu, 2 Sep 2021 21:42:53 +0800 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8a7c5bf..e3d13a1 100755 --- a/README.md +++ b/README.md @@ -106,4 +106,4 @@ For convenience (I know it's not exactly best practice) & since the weights file Available now at `deep_sort_realtime/embedder/embedder_tf.py`, as alternative to (the default) pytorch embedder. Tested on Tensorflow 2.3.1. You need to make your own code change to use it. -The tf MobilenetV2 weights (pretrained on imagenet) are not available in this github repo (unlike the torch one). Download from this [link](https://drive.google.com/file/d/1RBroAFc0tmfxgvrh7iXc2e1EK8TVzXkA/view?usp=sharing). You may drop it into `deep_sort_realtime/embedder/weights/` before pip installing. +The tf MobilenetV2 weights (pretrained on imagenet) are not available in this github repo (unlike the torch one). Download from this [link](https://drive.google.com/file/d/1RBroAFc0tmfxgvrh7iXc2e1EK8TVzXkA/view?usp=sharing) or run [download script](./deep_sort_realtime/embedder/weights/download_tf_wts.sh). You may drop it into `deep_sort_realtime/embedder/weights/` before pip installing. From a492e97c7e7e2fea904c987aaab4752788311945 Mon Sep 17 00:00:00 2001 From: Evan Date: Mon, 20 Sep 2021 14:45:12 +0800 Subject: [PATCH 2/2] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e3d13a1..7480b68 100755 --- a/README.md +++ b/README.md @@ -21,10 +21,12 @@ See their [paper](https://arxiv.org/abs/1703.07402) for more technical informati ## Install - ~~Include this repo as submodule (old way)~~ - ~~`deepsort_tracker.py` is your main point of entry~~ -- In the main project folder, install deep_sort_realtime as a python package using `pip` or as an editable package if you like (`-e` flag) +- In the main project folder, install `det2` as a python package using `pip` or as an editable package if you like (`-e` flag after `pip`) + ```bash -cd deep_sort_realtime && pip3 install -e . +cd deep_sort_realtime && pip3 install . ``` +- Or, download `.whl` file in this repo's [releases](https://github.com/levan92/deep_sort_realtime/releases/latest) ## Run