Update app.py
Browse files
app.py
CHANGED
|
@@ -198,7 +198,8 @@ with gr.Blocks(title="NSL-KDD Intrusion Detection — Demo MVP") as demo:
|
|
| 198 |
batch_button = gr.Button("Run batch (on uploaded CSV)")
|
| 199 |
|
| 200 |
with gr.Column(scale=1):
|
| 201 |
-
out_table = gr.Dataframe(
|
|
|
|
| 202 |
single_out = gr.Textbox(label="Single sample result", interactive=False)
|
| 203 |
|
| 204 |
# Example / help
|
|
|
|
| 198 |
batch_button = gr.Button("Run batch (on uploaded CSV)")
|
| 199 |
|
| 200 |
with gr.Column(scale=1):
|
| 201 |
+
out_table = gr.Dataframe(label="Batch predictions (if any)")
|
| 202 |
+
|
| 203 |
single_out = gr.Textbox(label="Single sample result", interactive=False)
|
| 204 |
|
| 205 |
# Example / help
|