-
Notifications
You must be signed in to change notification settings - Fork 0
/
batch-conf.xml
62 lines (60 loc) · 1.79 KB
/
batch-conf.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/home/hadoop/hadoop/conf/configuration.xsl"?>
<!-- Put site-specific property overrides in this file. -->
<configuration>
<property>
<name>layer.count</name>
<value>3</value>
<description>Layers of the belief network</description>
</property>
<property>
<name>visible.nodes</name>
<value>784</value>
<description>The size of the input vector</description>
</property>
<property>
<name>hidden.nodes.1</name>
<value>500</value>
<description>The number of hidden nodes representing the connections : layer 1</description>
</property>
<property>
<name>hidden.nodes.2</name>
<value>500</value>
<description>The number of hidden nodes representing the connections : layer 2</description>
</property>
<property>
<name>hidden.nodes.3</name>
<value>1000</value>
<description>The number of hidden nodes representing the connections : layer 3</description>
</property>
<property>
<name>class.count</name>
<value>10</value>
<description>Number of classes to identify</description>
</property>
<property>
<name>example.count</name>
<value>60000</value>
<description>Examples in this dataset</description>
</property>
<property>
<name>test.count</name>
<value>10000</value>
<description>Examples in the test dataset</description>
</property>
<property>
<name>batch.size</name>
<value>40</value>
<description>Batch size of the dataset. If unset, use (example.count)^(1/3)</description>
</property>
<property>
<name>gibbs.steps</name>
<value>10</value>
<description>Number of steps in the Gibbs chain to walk during pCD</description>
</property>
<property>
<name>learning.rate</name>
<value>0.1</value>
<description>Rate at which gradient is updated</description>
</property>
</configuration>