Add application file
Browse files
app.py
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
# title and description are optional
|
| 4 |
+
title = "Job waiting time prediction"
|
| 5 |
+
description = "This model predicts waiting of a job submitted to HPC system. Drag and drop any slice from dataset or edit values as you wish in below dataframe component."
|
| 6 |
+
|
| 7 |
+
gr.load("huggingface/smpadhy/smart-ml-hpc-hug0", title=title, description=description).launch()
|
| 8 |
+
|
| 9 |
+
|