Skip to content

Commit 4388930

Browse files
Update index.html
1 parent 3ac41ad commit 4388930

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

index.html

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ <h1>AI-DataScience Lab</h1>
146146
<a href="#forecast">Forecast</a>
147147
</nav>
148148
</header>
149+
149150
<div id="upload" class="card">
150151
<h2>Upload Data &amp; Select Columns</h2>
151152
<form id="uploadForm">
@@ -172,25 +173,30 @@ <h2>Upload Data &amp; Select Columns</h2>
172173
<div class="progress-bar" id="uploadProgress"><div class="progress-fill" id="uploadFill"></div></div>
173174
</form>
174175
</div>
176+
175177
<div class="card">
176178
<h3>Choose Regression Model</h3>
177179
<select id="regressionModel" name="model" disabled>
178180
<option value="linear" selected>Linear Regression</option>
179181
<!-- future models -->
180182
</select>
181183
</div>
184+
182185
<div id="summary" class="card">
183186
<h3>Data Summary (OpenAI GPT-3.5)</h3>
184187
<pre id="summaryContent"></pre>
185188
</div>
189+
186190
<div class="card">
187191
<h3>Model Metrics</h3>
188192
<pre id="metrics"></pre>
189193
</div>
194+
190195
<div class="card">
191196
<h3>Scatter Plot</h3>
192197
<img id="plot" alt="Scatter Plot" style="display:none;">
193198
</div>
199+
194200
<div id="forecast" class="card">
195201
<h3>Make Forecast</h3>
196202
<form id="predictForm">
@@ -204,18 +210,21 @@ <h3>Forecast Result</h3>
204210
<h3>Forecast Plot</h3>
205211
<img id="forecastPlot" alt="Forecast Plot" style="display:none;">
206212
</div>
213+
207214
<div class="card">
208215
<a href="https://ai-dslab-backend-cpf2feachnetbbck.westus-01.azurewebsites.net/download-report" target="_blank">
209216
<button>Download PDF Report</button>
210217
</a>
211218
</div>
219+
212220
<div class="footer">
213221
&copy; 2025 Hariprashad Ravikumar · All rights reserved<br>
214222
<a href="https://github.com/Hariprashad-Ravikumar" target="_blank">GitHub</a> ·
215223
<a href="https://hariprashad-ravikumar.github.io" target="_blank">Website</a>
216224
</div>
225+
217226
<script>
218-
// existing JS... (you can copy your previous script here)
227+
// Copy your existing JS here to wire up uploads, processing, and prediction
219228
</script>
220229
</body>
221230
</html>

0 commit comments

Comments
 (0)