Merge pull request #12 from amaiasalvador/master
Browse filesChanged pytorch version in requirements and README
- README.md +2 -2
- requirements.txt +3 -1
README.md
CHANGED
@@ -22,11 +22,11 @@ year = {2019}
|
|
22 |
|
23 |
### Installation
|
24 |
|
25 |
-
This code uses Python 3.6 and PyTorch 0.4. cuda version 9.0.
|
26 |
|
27 |
- Installing PyTorch:
|
28 |
```bash
|
29 |
-
$ conda install pytorch
|
30 |
```
|
31 |
|
32 |
- Install dependencies
|
|
|
22 |
|
23 |
### Installation
|
24 |
|
25 |
+
This code uses Python 3.6 and PyTorch 0.4.1 cuda version 9.0.
|
26 |
|
27 |
- Installing PyTorch:
|
28 |
```bash
|
29 |
+
$ conda install pytorch=0.4.1 cuda90 -c pytorch
|
30 |
```
|
31 |
|
32 |
- Install dependencies
|
requirements.txt
CHANGED
@@ -1,9 +1,11 @@
|
|
1 |
numpy
|
2 |
scipy
|
3 |
matplotlib
|
|
|
|
|
4 |
nltk
|
5 |
Pillow
|
6 |
tqdm
|
7 |
lmdb
|
8 |
tensorflow
|
9 |
-
tensorboardX
|
|
|
1 |
numpy
|
2 |
scipy
|
3 |
matplotlib
|
4 |
+
torch==0.4.1
|
5 |
+
torchvision==0.2.1
|
6 |
nltk
|
7 |
Pillow
|
8 |
tqdm
|
9 |
lmdb
|
10 |
tensorflow
|
11 |
+
tensorboardX
|