diff --git a/README.md b/README.md index aa677439..d5971d2d 100644 --- a/README.md +++ b/README.md @@ -11,11 +11,13 @@ month = {October}, year = {2019} } ``` -* **Paper on [ArXiv](https://arxiv.org/abs/1906.06059)** +* **Paper on [ICCV'19](http://openaccess.thecvf.com/content_ICCV_2019/html/Bertoni_MonoLoco_Monocular_3D_Pedestrian_Localization_and_Uncertainty_Estimation_ICCV_2019_paper.html) website or [ArXiv](https://arxiv.org/abs/1906.06059)** * **Check our video with method description and qualitative results on [YouTube](https://www.youtube.com/watch?v=ii0fqerQrec)** * **Live demo available! (more info in the webcam section)** +* **Continuously tested with Travis CI: [![Build Status](https://travis-ci.org/vita-epfl/monoloco.svg?branch=master)](https://travis-ci.org/vita-epfl/monoloco)
** + # Setup diff --git a/monoloco/__init__.py b/monoloco/__init__.py index fa8a4341..a00f9dde 100644 --- a/monoloco/__init__.py +++ b/monoloco/__init__.py @@ -1,4 +1,4 @@ """Open implementation of MonoLoco.""" -__version__ = '0.4.6' +__version__ = '0.4.7' diff --git a/setup.py b/setup.py index c2b72b04..32b3afd4 100644 --- a/setup.py +++ b/setup.py @@ -27,16 +27,18 @@ zip_safe=False, install_requires=[ - 'openpifpaf', - 'tabulate', # For evaluation + 'torch==1.1.0', + 'torchvision==0.3.0', + 'openpifpaf==0.8.0', + 'tabulate==0.8.3', # For evaluation ], extras_require={ 'test': [ - 'pylint', - 'pytest', + 'pylint==2.4.2', + 'pytest==4.6.3', ], 'prep': [ - 'nuscenes-devkit', + 'nuscenes-devkit==1.0.2', ], }, )