Spaces:
Sleeping
Sleeping
Commit
·
6713a4c
1
Parent(s):
25f7781
Bugs fixed. Updated Readme.md
Browse files
app.py
CHANGED
@@ -5,7 +5,7 @@ import os, json
|
|
5 |
import gradio as gr
|
6 |
import pandas as pd
|
7 |
|
8 |
-
from backend import
|
9 |
|
10 |
QUESTIONS = [
|
11 |
"Animal Type",
|
@@ -17,7 +17,7 @@ QUESTIONS = [
|
|
17 |
]
|
18 |
|
19 |
with gr.Blocks(theme="dark") as demo:
|
20 |
-
backend =
|
21 |
with gr.Row():
|
22 |
gr.Markdown(f'<center> <h1> <b> DAN_AI </b> </h1> </center>\
|
23 |
<center> <h4> Please follow the Instruction <a href="https://huggingface.co/spaces/oliverwang15/DAN_AI/blob/main/README.md">HERE</a> </h4> </center>')
|
|
|
5 |
import gradio as gr
|
6 |
import pandas as pd
|
7 |
|
8 |
+
from backend import Backend
|
9 |
|
10 |
QUESTIONS = [
|
11 |
"Animal Type",
|
|
|
17 |
]
|
18 |
|
19 |
with gr.Blocks(theme="dark") as demo:
|
20 |
+
backend = Backend()
|
21 |
with gr.Row():
|
22 |
gr.Markdown(f'<center> <h1> <b> DAN_AI </b> </h1> </center>\
|
23 |
<center> <h4> Please follow the Instruction <a href="https://huggingface.co/spaces/oliverwang15/DAN_AI/blob/main/README.md">HERE</a> </h4> </center>')
|