forked from annoviko/pyclustering
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
74 lines (53 loc) · 1.91 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
Project: PyClustering
License: GNU General Public License
------------------------------------------------
Based on:
Python 3.x windows 64-bit
Python 3.x linux 64-bit
C++ 11 (MVS, GCC compilers)
------------------------------------------------
Required following packages by pyclustering:
scipy-0.13.3.win-amd64-py3.x
matplotlib-1.3.1.win-amd64-py3.x
numpy-MKL-1.8.0.win-amd64-py3.x
Following packages are required by scipy, matplotlib, numpy:
Pillow-2.3.0.win-amd64-py3.x
python-dateutil-2.2.win-amd64-py3.x
pyparsing-2.0.1.win-amd64-py3.x
six-1.5.2.win-amd64-py3.x
------------------------------------------------
Index of packages for Windows:
http://www.lfd.uci.edu/~gohlke/pythonlibs/
Index of packages for Linux:
Check repositories, for example:
$ sudo apt-get install python3-numpy
$ sudo apt-get install python3-scipy
$ sudo apt-get install python3-matplotlib
------------------------------------------------
What is implemented in the project:
Clustering algorithms (module pyclustering.cluster):
- BIRCH [Python]
- CURE [Python, C++]
- DBSCAN [Python, C++]
- Hierarchical [Python, C++]
- HSyncNet [Python, C++]
- K-Means [Python, C++]
- OPTICS [Python]
- ROCK [Python, C++]
- SyncNet [Python, C++]
- SyncSom [Python]
- X-Means [Python, C++]
Oscillatory networks and neural networks (module pyclustering.nnet):
- HHN (Oscillatory network based on Hodgkin-Huxley model) [Python]
- Hysteresis Oscillatory Network [Python]
- LEGION (Local Excitatory Global Inhibitory Oscillatory Network) [Python]
- PCNN (Pulse-Coupled Neural Network) [Python, C++]
- SOM (Self-Organized Map) [Python, C++]
- Sync (Oscillatory network based on Kuramoto model) [Python, C++]
Graph Coloring Algorithms (module pyclustering.gcolor):
- DSatur [Python]
- Hysteresis [Python]
- Sync [Python]
Containers (module pyclustering.container):
- KD Tree [Python, C++]
- CF Tree [Python]