Skip to content

Commit eb9f74b

Browse files
authored
Merge branch 'main' into dev_1.3.3
2 parents c00b64e + 9f15b41 commit eb9f74b

File tree

5 files changed

+16
-15
lines changed

5 files changed

+16
-15
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ RUN pip3 install keras==2.3.1
44
#FROM tensorflow/tensorflow:1.15.3-py3
55
#RUN pip3 install keras==2.2.5
66

7-
RUN pip3 install numpy==1.18.1 scipy==1.4.1 matplotlib==3.2.1 scikit-learn==0.22.1 six==1.15.0 Pillow==6.2.2
7+
RUN pip3 install numpy==1.18.1 scipy==1.4.1 matplotlib==3.2.1 scikit-learn==0.22.1 six==1.15.0 Pillow==7.2.0
88
RUN pip3 install tqdm==4.45.0 statsmodels==0.11.1 pydub==0.24.1 resampy==0.2.2 ffmpeg-python==0.2.0 cma==3.0.3 mypy==0.770
99

1010
#TODO check if jupyter notebook works
@@ -15,12 +15,12 @@ RUN pip3 install h5py==2.10.0
1515
RUN pip3 install tensorflow-addons==0.10.0
1616
RUN pip3 install mxnet==1.6.0
1717
RUN pip3 install torch==1.5.0 torchvision==0.6.0 -f https://download.pytorch.org/whl/torch_stable.html
18-
RUN pip3 install catboost==0.23.2
18+
RUN pip3 install catboost==0.24
1919
RUN pip3 install GPy==1.9.9
2020
RUN pip3 install lightgbm==2.3.1
2121
RUN pip3 install xgboost==1.1.1
2222

23-
RUN pip3 install pytest==5.4.1 pytest-pep8==1.0.6 pytest-mock==3.1.0 codecov==2.1.8 requests==2.23.0
23+
RUN pip3 install pytest==5.4.1 pytest-pep8==1.0.6 pytest-mock==3.2.0 codecov==2.1.8 requests==2.23.0
2424

2525
RUN mkdir /project; mkdir /project/TMP
2626
VOLUME /project/TMP

PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Fixes # (issue)
88

99
Please check all relevant options.
1010

11+
- [ ] Improvement (non-breaking)
1112
- [ ] Bug fix (non-breaking)
1213
- [ ] New feature (non-breaking)
1314
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)

requirements.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# base
2-
numpy==1.18.1
2+
numpy==1.19.1
33
scipy==1.4.1
4-
matplotlib==3.2.1
5-
scikit-learn==0.22.1
4+
matplotlib==3.3.1
5+
scikit-learn==0.23.2
66
six==1.15.0
7-
Pillow==7.1.0
8-
tqdm==4.45.0
7+
Pillow==7.2.0
8+
tqdm==4.48.2
99
statsmodels==0.11.1
1010
pydub==0.24.1
1111
resampy==0.2.2
@@ -17,22 +17,22 @@ h5py==2.10.0
1717
# supported versions: (tensorflow==2.2.0 with keras==2.3.1) or (tensorflow==1.15.3 with keras==2.2.5)
1818
tensorflow
1919
keras
20-
tensorflow-addons==0.10.0
20+
tensorflow-addons==0.11.1
2121
mxnet==1.6.0
2222
--find-links https://download.pytorch.org/whl/torch_stable.html
2323
torch==1.5.0+cpu
2424
torchvision==0.6.0+cpu
25-
catboost==0.23.2
25+
catboost==0.24
2626
GPy==1.9.9
2727
lightgbm==2.3.1
2828
xgboost==1.1.1
2929

3030
# other
3131
pytest==5.4.1
3232
pytest-pep8==1.0.6
33-
pytest-mock==3.1.0
33+
pytest-mock==3.2.0
3434
codecov==2.1.8
35-
requests==2.23.0
35+
requests==2.24.0
3636

3737
# ART
3838
-e .

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"numpy",
1111
"scipy==1.4.1",
1212
"matplotlib",
13-
"scikit-learn==0.22.1",
13+
"scikit-learn==0.23.2",
1414
"six",
1515
"setuptools",
1616
"Pillow",
@@ -32,7 +32,7 @@
3232
"numpy",
3333
"scipy==1.4.1",
3434
"six==1.13.0",
35-
"scikit-learn==0.22.1",
35+
"scikit-learn==0.23.2",
3636
"Pillow>=6.0.0",
3737
]
3838

tests/metrics/test_verification_decision_trees.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def test_GradientBoosting(self):
117117
x=self.x_test, y=self.y_test, eps_init=0.3, nb_search_steps=10, max_clique=2, max_level=2
118118
)
119119

120-
self.assertEqual(average_bound, 0.009117187499999995)
120+
self.assertAlmostEqual(average_bound, 0.009, delta=0.0002)
121121
self.assertEqual(verified_error, 1.0)
122122

123123
def test_RandomForest(self):

0 commit comments

Comments
 (0)