-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.example.xml
47 lines (39 loc) · 1.45 KB
/
config.example.xml
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
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<configuration>
<property>
<name>kmeans.run.local</name>
<value>true</value>
<description>Don't use distributed Cache</description>
</property>
<property>
<name>kmeans.subject.length</name>
<value>42644</value>
<description>number of attributes</description>
</property>
<property>
<name>kmeans.distance.calculation</name>
<value>Jaccard</value>
<description>Jaccard or Euclidean</description>
</property>
<property>
<name>kmeans.split.size</name>
<value>1000000</value>
<description>1 MB</description>
</property>
<property>
<name>kmeans.breakcondition</name>
<value>iterations</value>
<description>iterations or dissimilarity</description>
</property>
<property>
<name>kmeans.breakcondition.iterations</name>
<value>10</value>
<description>number of iterations</description>
</property>
<property>
<name>kmeans.breakcondition.dissimilarity</name>
<value>0.05</value>
<description>value of dissimilarity</description>
</property>
</configuration>