-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathRfParametersViewImpl.ui.xml
92 lines (84 loc) · 2.99 KB
/
RfParametersViewImpl.ui.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!--
Copyright 2013 State University of New York at Oswego
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!-- RfParametersViewImpl.ui.xml -->
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder'
xmlns:gwt='urn:import:com.google.gwt.user.client.ui'>
<ui:style type='edu.oswego.csc480_hci521_2013.client.ui.RfParametersViewImpl.Style'>
.error {color: red;}
</ui:style>
<gwt:HTMLPanel>
<table>
<tr>
<td colspan="2">
<h2>Random Forest Parameters</h2>
</td>
</tr>
<tr>
<td colspan="2">
<gwt:Label styleName='{style.error}' ui:field="errorLabel" width="100%" />
</td>
</tr>
<tr>
<td>
Classification/Response Variable:
</td>
<td>
<gwt:ListBox ui:field="classVars" width="100%" visibleItemCount="1" multipleSelect="false" />
</td>
</tr>
<tr>
<td>
Number of trees:
</td>
<td>
<gwt:IntegerBox ui:field="numTrees"/>
</td>
</tr>
<tr>
<td valign="top">
Ignore Columns:
</td>
<td>
<gwt:ListBox ui:field="ignoreCols" width="100%" visibleItemCount="10" multipleSelect="true"/>
</td>
</tr>
<tr>
<td colspan="2">
<gwt:DisclosurePanel>
<gwt:header>Advanced Options</gwt:header>
<gwt:HTMLPanel>
<table>
<tr>
<td valign="top">
<gwt:Label>Class Weights</gwt:Label>
</td>
<td>
<gwt:ScrollPanel ui:field="classWeightsScrollPanel" width="100%" height="140px">
<gwt:FlexTable ui:field="classWeights" width="100%"/>
</gwt:ScrollPanel>
</td>
</tr>
</table>
</gwt:HTMLPanel>
</gwt:DisclosurePanel>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<gwt:Button ui:field="submit" text="Generate Model"/> <gwt:Button ui:field="cancel" text="Cancel"/>
</td>
</tr>
</table>
</gwt:HTMLPanel>
</ui:UiBinder>