Skip to content

Commit 0ca675c

Browse files
authored
Merge pull request #6 from fhswf/oa/anomaly_detection
OA: Refactoring/Documentation of Wrappers for Anomaly Detection
2 parents 09df147 + 43867b2 commit 0ca675c

37 files changed

+528
-400
lines changed

.vscode/settings.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"python.testing.pytestArgs": [
3+
"test"
4+
],
5+
"python.testing.unittestEnabled": false,
6+
"python.testing.pytestEnabled": true
7+
}

doc/rtd/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'Detlef Arend, Steve Yuwono, Laxmikant Shrikant Baheti et al'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '0.1.1'
25+
release = '0.1.2'
2626

2727

2828
# -- General configuration ---------------------------------------------------

doc/rtd/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mlpro[full]>=1.4.1
1+
mlpro[full]>=1.4.3
22
scikit-learn>=1.4.1
33

44
sphinxcontrib-napoleon

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
mlpro[full]>=1.4.1
1+
mlpro[full]>=1.4.3
22
scikit-learn>=1.4.1

setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = mlpro-int-scikit-learn
3-
version = 0.1.1
3+
version = 0.1.2
44
author = MLPro Team
55
author_email = [email protected]
66
description = MLPro: Integration scikit-learn
@@ -26,5 +26,5 @@ where = src
2626

2727
[options.extras_require]
2828
full =
29-
mlpro[full]>=1.4.1
29+
mlpro[full]>=1.4.3
3030
scikit-learn>=1.4.1

src/mlpro_int_sklearn/wrappers/anomalydetectors.py

-324
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from mlpro_int_sklearn.wrappers.anomalydetectors.isof import WrSklearnIsolationForest2MLPro
2+
from mlpro_int_sklearn.wrappers.anomalydetectors.lof import WrSklearnLOF2MLPro
3+
from mlpro_int_sklearn.wrappers.anomalydetectors.ocsvm import WrSklearnOneClassSVM2MLPro

0 commit comments

Comments
 (0)