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