Commit | Line | Data |
---|---|---|
ab4a34ef BA |
1 | To compile source code : |
2 | ||
3 | cd build | |
4 | cmake ../src | |
5 | make | |
6 | ||
7 | Usage : | |
8 | ||
9 | ppam-mpi cluster ifilename nbSeriesInChunk nbClusters randomize p_for_dissims | |
10 | ||
11 | Where : | |
12 | ifilename = path to serialized dataset (read below) | |
13 | nbSeriesInChunk = number of time-series to process sequentially | |
14 | nbClusters = number of clusters | |
15 | randomize = 1 to dispatch time-series at random. 0 to process them in order | |
16 | p_for_dissims = the 'p' of L_p distance used to compute dissimilarities | |
17 | ||
18 | Note : custom [de]serialization. Consider writing your own | |
19 | in src/TimeSeries/ folder if you plan to test the package. | |
20 | ||
21 | See also src/main.c for the details. |