mdod 1.0.2__py3-none-any.whl → 1.0.9__py3-none-any.whl
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-1.0.9.dist-info/METADATA +84 -0
- mdod-1.0.9.dist-info/RECORD +7 -0
- mdod-1.0.2.dist-info/METADATA +0 -17
- mdod-1.0.2.dist-info/RECORD +0 -7
- {mdod-1.0.2.dist-info → mdod-1.0.9.dist-info}/LICENSE.txt +0 -0
- {mdod-1.0.2.dist-info → mdod-1.0.9.dist-info}/WHEEL +0 -0
- {mdod-1.0.2.dist-info → mdod-1.0.9.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,84 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: mdod
|
3
|
+
Version: 1.0.9
|
4
|
+
Summary: MDOD, Multi-Dimensional data Outlier Detection
|
5
|
+
Home-page: https://github.com/mddod/mdod
|
6
|
+
Author: Z Shen
|
7
|
+
Author-email: 626456708@qq.com
|
8
|
+
License: BSD 3-Clause License
|
9
|
+
Classifier: Development Status :: 5 - Production/Stable
|
10
|
+
Classifier: Intended Audience :: Developers
|
11
|
+
Classifier: Programming Language :: Python
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
13
|
+
Description-Content-Type: text/markdown
|
14
|
+
License-File: LICENSE.txt
|
15
|
+
|
16
|
+
# mdod
|
17
|
+
MDOD, Multi-Dimensional data Outlier Detection
|
18
|
+
|
19
|
+
Python library for Multi-Dimensional data Outlier/Anomaly Detection algorithm.
|
20
|
+
|
21
|
+
# MDOD paper
|
22
|
+
MDOD paper is published in ICAIIC 2024 as title "Outlier Detect using Vector Cosine Similarity by Adding a Dimension"
|
23
|
+
|
24
|
+
https://doi.org/10.1109/ICAIIC60209.2024.10463442
|
25
|
+
|
26
|
+
# Installation:
|
27
|
+
pip install mdod
|
28
|
+
|
29
|
+
or
|
30
|
+
|
31
|
+
git clone https://github.com/mddod/mdod.git
|
32
|
+
|
33
|
+
cd mdod
|
34
|
+
|
35
|
+
python setup.py install
|
36
|
+
|
37
|
+
# usage example:
|
38
|
+
import numpy as np
|
39
|
+
|
40
|
+
import mdod
|
41
|
+
|
42
|
+
localFile = 'TestDataset.txt'
|
43
|
+
|
44
|
+
dets= np.loadtxt(localFile,delimiter=',')
|
45
|
+
|
46
|
+
nd = 1
|
47
|
+
|
48
|
+
sn = 15
|
49
|
+
|
50
|
+
result = mdod.md(dets,nd,sn)
|
51
|
+
|
52
|
+
print (result)
|
53
|
+
|
54
|
+
# TestDataset.txt format:
|
55
|
+
data1,data2,data3,data4,data5,data6
|
56
|
+
|
57
|
+
data1,data2,data3,data4,data5,data6
|
58
|
+
|
59
|
+
data1,data2,data3,data4,data5,data6
|
60
|
+
|
61
|
+
...
|
62
|
+
|
63
|
+
# dets format:
|
64
|
+
[[data1 data2 data3 data4 data5 data6]
|
65
|
+
|
66
|
+
[data1 data2 data3 data4 data5 data6]
|
67
|
+
|
68
|
+
[data1 data2 data3 data4 data5 data6]
|
69
|
+
|
70
|
+
...]
|
71
|
+
|
72
|
+
# result format:
|
73
|
+
[value1, '[data1 data2 data3 data4 data5 data6]', '0']
|
74
|
+
|
75
|
+
[value2, '[data1 data2 data3 data4 data5 data6]', '1']
|
76
|
+
|
77
|
+
[value3, '[data1 data2 data3 data4 data5 data6]', '2']
|
78
|
+
|
79
|
+
...
|
80
|
+
|
81
|
+
# file exampls:
|
82
|
+
Please visit https://github.com/mddod/mdod, or https://mddod.github.io/
|
83
|
+
|
84
|
+
|
@@ -0,0 +1,7 @@
|
|
1
|
+
mdod/__init__.py,sha256=Za_ZM6LquGiu3NYA4UQORA-etiQKDfJ1asE7-SJlTNA,71
|
2
|
+
mdod/mdod.py,sha256=3im-LLtLh4XLNZw6MMKg_1-HXIW8cXMXBAzWsBlEQfk,1321
|
3
|
+
mdod-1.0.9.dist-info/LICENSE.txt,sha256=7ToR4JRGCu-ZhydtQcKP7V_h7tesBPP2RAoQM6lfwpk,1492
|
4
|
+
mdod-1.0.9.dist-info/METADATA,sha256=DbU3aY0zEuxzgxEfXSUxRKiDzGGc4aZ07giY8REHfoY,1753
|
5
|
+
mdod-1.0.9.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
6
|
+
mdod-1.0.9.dist-info/top_level.txt,sha256=wc3s5DwL33MzLW72ABBR4vg36euFZNFKFD51Og1hnAY,5
|
7
|
+
mdod-1.0.9.dist-info/RECORD,,
|
mdod-1.0.2.dist-info/METADATA
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: mdod
|
3
|
-
Version: 1.0.2
|
4
|
-
Summary: MDOD, Multi-Dimensional data Outlier Detection
|
5
|
-
Home-page: https://github.com/mddod/mdod
|
6
|
-
Author: Z Shen
|
7
|
-
Author-email: 626456708@qq.com
|
8
|
-
License: BSD 3-Clause License
|
9
|
-
Platform: UNKNOWN
|
10
|
-
Classifier: Development Status :: 5 - Production/Stable
|
11
|
-
Classifier: Intended Audience :: Developers
|
12
|
-
Classifier: Programming Language :: Python
|
13
|
-
Classifier: Programming Language :: Python :: 3
|
14
|
-
License-File: LICENSE.txt
|
15
|
-
|
16
|
-
Python library for Multi-Dimensional data Outlier/Anomaly Detection algorithm. For details please read README.md , visit https://github.com/mddod/mdod, or https://mddod.github.io/
|
17
|
-
|
mdod-1.0.2.dist-info/RECORD
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
mdod/__init__.py,sha256=Za_ZM6LquGiu3NYA4UQORA-etiQKDfJ1asE7-SJlTNA,71
|
2
|
-
mdod/mdod.py,sha256=3im-LLtLh4XLNZw6MMKg_1-HXIW8cXMXBAzWsBlEQfk,1321
|
3
|
-
mdod-1.0.2.dist-info/LICENSE.txt,sha256=7ToR4JRGCu-ZhydtQcKP7V_h7tesBPP2RAoQM6lfwpk,1492
|
4
|
-
mdod-1.0.2.dist-info/METADATA,sha256=UZzTnV81kQ4FA3V5h_X-cWh07mLhj5Sk69FbPsrmbZM,655
|
5
|
-
mdod-1.0.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
6
|
-
mdod-1.0.2.dist-info/top_level.txt,sha256=wc3s5DwL33MzLW72ABBR4vg36euFZNFKFD51Og1hnAY,5
|
7
|
-
mdod-1.0.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|