oliverwang15 commited on
Commit
6713a4c
1 Parent(s): 25f7781

Bugs fixed. Updated Readme.md

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 Backend_offline
9
 
10
  QUESTIONS = [
11
  "Animal Type",
@@ -17,7 +17,7 @@ QUESTIONS = [
17
  ]
18
 
19
  with gr.Blocks(theme="dark") as demo:
20
- backend = Backend_offline()
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>')