Changes
Page history
Update Home
authored
Nov 22, 2022
by
Dean Samuel Schmitz
Show whitespace changes
Inline
Side-by-side
Home.md
View page @
207c1cd6
...
...
@@ -23,6 +23,10 @@ After that you can use each Method by loading their module with SICStus e.g.
```
prolog
:-
use_module
(
'path/to/.../src/methods/dbscan/dbscan.pl'
).
%% usage example
TrainData
=
[
5.1
,
3.5
,
1.4
,
4.9
,
3.0
,
1.4
,
4.7
,
3.2
,
1.3
,
4.6
,
3.1
,
1.5
],
dbscan
(
1.0
,
1
,
0
,
ordered
,
kd
,
TrainData
,
3
,
AssignList
,
CentroidsList
,
_
).
```
#### How to edit the project:
...
...
...
...