From 818d6f0e7ed6c04c9cc319ecdede55a6570fb29d Mon Sep 17 00:00:00 2001 From: Daniel Gordon <xkcd@cs.washington.edu> Date: Wed, 3 Jan 2018 12:06:12 -0800 Subject: [PATCH] Update README.md --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8b44094..8fb58e2 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,10 @@ Re3 is a real-time recurrent regression tracker. It offers accuracy and robustness similar to other state-of-the-art trackers while operating at 150 FPS. For more details, contact xkcd@cs.washington.edu. This repository implements the training and testing procedure from https://arxiv.org/pdf/1705.06368.pdf. A sample of the tracker can be found here: https://youtu.be/RByCiOLlxug. +## Model: +The model weights we used in our paper were ported from Caffe to Tensorflow. Because they deal with padding differently, results are slightly different, but the model still works well. +To use it, download it [here](https://goo.gl/NWGXGM), extract the tar, and place in your log directory (mine is "logs"). + ## Requirements: 1. Python 2 (don't get me started on Python3 not being backwards compatible). 2. [Tensorflow](https://www.tensorflow.org/) and its requirements. I use the pip tensorflow-gpu==1.2.0 @@ -17,6 +21,7 @@ cd re3-tensorflow sudo apt-get install python-virtualenv virtualenv venv --system-site-packages source venv/bin/activate +pip install --upgrade pip pip install -r requirements.txt ``` ### Enter the virtualenv in a later session to use the installed libraries. @@ -28,10 +33,6 @@ source venv/bin/activate deactivate ``` -## Model: -The model weights we used in our paper were ported from Caffe to Tensorflow. Because they deal with padding differently, results are slightly different, but the model still works well. -To use it, download it [here](https://goo.gl/NWGXGM), extract the tar, and place in your log directory (mine is "logs"). - ## Folders and Files: ### Most important for using Re3 in a new project: 1. [tracker.py](tracker/re3_tracker.py) -- GitLab