mdod 0.1.1__tar.gz → 0.1.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mdod-0.1.1 → mdod-0.1.7}/PKG-INFO +4 -5
- {mdod-0.1.1/mdod → mdod-0.1.7}/README.md +10 -5
- {mdod-0.1.1 → mdod-0.1.7}/mdod.egg-info/PKG-INFO +4 -5
- {mdod-0.1.1 → mdod-0.1.7}/mdod.egg-info/SOURCES.txt +2 -2
- {mdod-0.1.1 → mdod-0.1.7}/setup.py +3 -2
- {mdod-0.1.1/mdod → mdod-0.1.7}/LICENSE.txt +0 -0
- {mdod-0.1.1 → mdod-0.1.7}/mdod/__init__.py +0 -0
- {mdod-0.1.1 → mdod-0.1.7}/mdod/mdod.py +0 -0
- {mdod-0.1.1 → mdod-0.1.7}/mdod.egg-info/dependency_links.txt +0 -0
- {mdod-0.1.1 → mdod-0.1.7}/mdod.egg-info/top_level.txt +0 -0
- {mdod-0.1.1 → mdod-0.1.7}/setup.cfg +0 -0
@@ -1,16 +1,15 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: mdod
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.7
|
4
4
|
Summary: MDOD, Multi-Dimensional data Outlier Detection
|
5
5
|
Home-page: https://github.com/mddod/mdod
|
6
6
|
Author: Z Shen
|
7
7
|
Author-email: 626456708@qq.com
|
8
8
|
License: BSD 3-Clause License
|
9
|
-
|
10
|
-
Classifier: Development Status :: 1 - Planning
|
9
|
+
Classifier: Development Status :: 5 - Production/Stable
|
11
10
|
Classifier: Intended Audience :: Developers
|
12
11
|
Classifier: Programming Language :: Python
|
13
12
|
Classifier: Programming Language :: Python :: 3
|
13
|
+
License-File: LICENSE.txt
|
14
14
|
|
15
|
-
|
16
|
-
|
15
|
+
Python library for Multi-Dimensional data Outlier/Anomaly Detection algorithm. For details please read README.md , or visit https://github.com/mddod/mdod
|
@@ -3,12 +3,21 @@ MDOD, Multi-Dimensional data Outlier Detection
|
|
3
3
|
|
4
4
|
Python library for Multi-Dimensional data Outlier/Anomaly Detection algorithm.
|
5
5
|
|
6
|
+
# MDOD paper
|
7
|
+
MDOD paper is published in ICAIIC 2024 as title "Outlier Detect using Vector Cosine Similarity by Adding a Dimension"
|
8
|
+
|
9
|
+
https://doi.org/10.1109/ICAIIC60209.2024.10463442
|
10
|
+
|
6
11
|
# Installation:
|
7
12
|
pip install mdod
|
8
13
|
|
14
|
+
or
|
15
|
+
|
16
|
+
git clone https://github.com/mddod/mdod.git
|
17
|
+
|
9
18
|
cd mdod
|
10
19
|
|
11
|
-
|
20
|
+
python setup.py install
|
12
21
|
|
13
22
|
# usage example:
|
14
23
|
import mdod
|
@@ -52,10 +61,6 @@ data1,data2,data3,data4,data5,data6
|
|
52
61
|
|
53
62
|
...
|
54
63
|
|
55
|
-
# MDOD paper
|
56
|
-
MDOD paper is published in ICAIIC 2024 as title "Outlier Detect using Vector Cosine Similarity by Adding a Dimension"
|
57
|
-
|
58
|
-
https://doi.org/10.1109/ICAIIC60209.2024.10463442
|
59
64
|
|
60
65
|
|
61
66
|
|
@@ -1,16 +1,15 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: mdod
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.7
|
4
4
|
Summary: MDOD, Multi-Dimensional data Outlier Detection
|
5
5
|
Home-page: https://github.com/mddod/mdod
|
6
6
|
Author: Z Shen
|
7
7
|
Author-email: 626456708@qq.com
|
8
8
|
License: BSD 3-Clause License
|
9
|
-
|
10
|
-
Classifier: Development Status :: 1 - Planning
|
9
|
+
Classifier: Development Status :: 5 - Production/Stable
|
11
10
|
Classifier: Intended Audience :: Developers
|
12
11
|
Classifier: Programming Language :: Python
|
13
12
|
Classifier: Programming Language :: Python :: 3
|
13
|
+
License-File: LICENSE.txt
|
14
14
|
|
15
|
-
|
16
|
-
|
15
|
+
Python library for Multi-Dimensional data Outlier/Anomaly Detection algorithm. For details please read README.md , or visit https://github.com/mddod/mdod
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name="mdod",
|
5
|
-
version="0.1.
|
5
|
+
version="0.1.7",
|
6
6
|
packages=find_packages(),
|
7
7
|
package_data={"": ["*"]},
|
8
8
|
install_requires=[
|
@@ -11,10 +11,11 @@ setup(
|
|
11
11
|
author="Z Shen",
|
12
12
|
author_email="626456708@qq.com",
|
13
13
|
description="MDOD, Multi-Dimensional data Outlier Detection",
|
14
|
+
long_description="Python library for Multi-Dimensional data Outlier/Anomaly Detection algorithm. For details please read README.md , or visit https://github.com/mddod/mdod",
|
14
15
|
license="BSD 3-Clause License",
|
15
16
|
url="https://github.com/mddod/mdod",
|
16
17
|
classifiers=[
|
17
|
-
"Development Status ::
|
18
|
+
"Development Status :: 5 - Production/Stable",
|
18
19
|
"Intended Audience :: Developers",
|
19
20
|
"Programming Language :: Python",
|
20
21
|
"Programming Language :: Python :: 3",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|