Skip to content

Commit

Permalink
Set pifpaf and nuscenes versions for pip installation (#14)
Browse files Browse the repository at this point in the history
* fix version of pifpaf and nuscenes

* set version of all dependancies

* add iccv version

* fix readme

* fix readme and tabulate version

* fix pylint and pytest  version

* update to pifpaf 0.9

* fix pylint and pytorch versions

* fix pifpaf=0.8

* fix pytorch version

* make new version

* fix bug on commas

* change to torch 1.1

* change pylint version
  • Loading branch information
bertoni9 authored Nov 26, 2019
1 parent f243f5a commit 86935e8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)<br />**

<img src="docs/pull.png" height="600">

# Setup
Expand Down
2 changes: 1 addition & 1 deletion monoloco/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

"""Open implementation of MonoLoco."""

__version__ = '0.4.6'
__version__ = '0.4.7'
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
],
},
)

0 comments on commit 86935e8

Please sign in to comment.