File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,10 @@ matrix:
11
11
12
12
install :
13
13
- pip3 install -U pip wheel
14
+ - pip3 install numpy
15
+ - pip3 install https://download.pytorch.org/whl/cpu/torch-1.0.1.post2-cp36-cp36m-linux_x86_64.whl
16
+ - pip3 install -r tools/requirements.txt
14
17
- pip3 install -r ./tools/test_requirements.txt
15
- - grep -v torch ./tools/requirements.txt | pip3 install -r /dev/stdin
16
- # use pytorch cpu v0.4.1 (1.0.0 is super slow)
17
- - pip3 install https://download.pytorch.org/whl/cpu/torch-0.4.1-cp36-cp36m-linux_x86_64.whl
18
- - pip3 install torchvision
19
18
20
19
script :
21
20
- flake8 src test
Original file line number Diff line number Diff line change 7
7
import argparse
8
8
import os
9
9
10
- from decode import decode_generator
11
10
from feature_extract import melspectrogram_extract
12
11
from feature_extract import world_feature_extract
13
- from train import train_generator
14
12
from utils import find_files
15
13
14
+ from decode import decode_generator
15
+ from train import train_generator
16
+
16
17
from test_preprocessing import make_args as make_feature_args
17
18
from test_preprocessing import make_dummy_wav
18
19
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ all: venv/bin/activate
5
5
venv/bin/activate :
6
6
test -d venv || virtualenv -p python3.6 venv
7
7
. venv/bin/activate; pip install --upgrade pip
8
+ . venv/bin/activate; pip install numpy
8
9
. venv/bin/activate; pip install -r requirements.txt
9
10
touch venv/bin/activate
10
11
Original file line number Diff line number Diff line change 1
- numpy == 1.13.3
2
1
h5py >= 2.9.0
3
2
scikit-learn >= 0.20.2
4
3
librosa >= 0.6.2
5
4
soundfile >= 0.10.2
6
- torch >= 1.0.0
5
+ torch >= 1.0.1
7
6
torchvision >= 0.2.1
8
7
sprocket-vc >= 0.18.2
You can’t perform that action at this time.
0 commit comments