forked from visualpython/visualpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfitting.html
More file actions
24 lines (24 loc) · 1.19 KB
/
Copy pathfitting.html
File metadata and controls
24 lines (24 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<body>
<div class="vp-grid-box">
<div class="vp-grid-border-box vp-grid-col-130">
<label for="model" class="vp-orange-text">Model</label>
<select id="model" class="vp-select vp-state">
<!-- Auto Create -->
</select>
</div>
<div class="vp-grid-border-box vp-grid-col-130">
<label for="method" class="vp-orange-text">Fit/Transform/Predict</label>
<select id="method" class="vp-select vp-state">
<option value="fit">fit</option>
<option value="fit_transform">fit_transform</option>
<option value="fit_predict">fit_predict</option>
</select>
</div>
<div class="vp-grid-border-box vp-grid-col-130">
<label for="featureData" class="vp-orange-text">Feature data</label>
<input type="text" class="vp-input vp-state" id="featureData" placeholder="Select feature data" value="X_train"/>
<label for="targetData" class="vp-orange-text">Target data</label>
<input type="text" class="vp-input vp-state" id="targetData" placeholder="Select target data" value="y_train"/>
</div>
</div>
</body>