Skip to content

Commit 99b51c2

Browse files
author
Beat Buesser
committed
Merge remote-tracking branch 'origin/main' into dev_1.4.1
2 parents 50e6b8c + 65b4a1f commit 99b51c2

File tree

4 files changed

+14
-10
lines changed

4 files changed

+14
-10
lines changed

README-cn.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,13 @@
1515
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/adversarial-robustness-toolbox)](https://pypi.org/project/adversarial-robustness-toolbox/)
1616
[![slack-img](https://img.shields.io/badge/chat-on%20slack-yellow.svg)](https://ibm-art.slack.com/)
1717

18-
对抗性鲁棒性工具箱(ART)是用于机器学习安全性的Python库。 ART提供的工具使开发人员和研究人员可以针对以下方面评估,捍卫,认证和验证机器学习模型和应用程序:
19-
逃避,中毒,提取和推断的对抗性威胁。 ART支持所有数据类型的所有流行的机器学习框架(TensorFlow,Keras,PyTorch,MXNet,scikit-learn,XGBoost,LightGBM,CatBoost,GPy等)
20-
(图像,表格,音频,视频等)和机器学习任务(分类,对象检测,生成,认证等)。
18+
19+
对抗性鲁棒性工具箱(ART)是用于机器学习安全性的Python库。 ART提供的工具可
20+
开发人员和研究人员针对以下方面捍卫和评估机器学习模型和应用程序:
21+
逃避,中毒,提取和推断的对抗性威胁。 ART支持所有流行的机器学习框架
22+
(TensorFlow,Keras,PyTorch,MXNet,scikit-learn,XGBoost,LightGBM,CatBoost,GPy等),所有数据类型
23+
(图像,表格,音频,视频等)和机器学习任务(分类,物体检测,语音识别,
24+
生成,认证等)。
2125

2226
<p align="center">
2327
<img src="docs/images/adversarial_threats_attacker.png?raw=true" width="400" title="ART logo">

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
[中文README请按此处](README-cn.md)
1919

2020
Adversarial Robustness Toolbox (ART) is a Python library for Machine Learning Security. ART provides tools that enable
21-
developers and researchers to evaluate, defend, certify and verify Machine Learning models and applications against the
21+
developers and researchers to defend and evaluate Machine Learning models and applications against the
2222
adversarial threats of Evasion, Poisoning, Extraction, and Inference. ART supports all popular machine learning frameworks
2323
(TensorFlow, Keras, PyTorch, MXNet, scikit-learn, XGBoost, LightGBM, CatBoost, GPy, etc.), all data types
24-
(images, tables, audio, video, etc.) and machine learning tasks (classification, object detection, generation,
25-
certification, etc.).
24+
(images, tables, audio, video, etc.) and machine learning tasks (classification, object detection, speech recognition,
25+
generation, certification, etc.).
2626

2727
<p align="center">
2828
<img src="docs/images/adversarial_threats_attacker.png?raw=true" width="400" title="ART logo">

art/estimators/object_detection/tensorflow_faster_rcnn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def __init__(
100100
`first_stage_localization_loss`, `first_stage_objectness_loss`,
101101
`second_stage_localization_loss`, `second_stage_classification_loss`.
102102
"""
103-
import tensorflow as tf
103+
import tensorflow as tf # lgtm [py/repeated-import]
104104

105105
# Super initialization
106106
super().__init__(

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# base
22
numpy==1.19.2
33
scipy==1.4.1
4-
matplotlib==3.3.1
4+
matplotlib==3.3.2
55
scikit-learn==0.22.2
66
six==1.15.0
77
Pillow==7.2.0
@@ -11,7 +11,7 @@ pydub==0.24.1
1111
resampy==0.2.2
1212
ffmpeg-python==0.2.0
1313
cma==3.0.3
14-
pandas==1.1.1
14+
pandas==1.1.2
1515

1616
# frameworks
1717
h5py==2.10.0
@@ -27,7 +27,7 @@ catboost==0.24.1
2727
GPy==1.9.9
2828
lightgbm==3.0.0
2929
xgboost==1.2.0
30-
kornia==0.3.1
30+
kornia==0.4.0
3131

3232
# other
3333
pytest==5.4.1

0 commit comments

Comments
 (0)