gregH commited on
Commit
c462a20
·
1 Parent(s): 3dc3156

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -39,10 +39,10 @@ Constitution_inputs = [
39
  "We the People of the United States, in Order to form a more perfect Union, establish Justice, insure domestic Tranquility, provide for the common defense, promote the general Welfare, and secure the Blessings of Liberty to ourselves and our Posterity, do ordain and establish this Constitution for the United States of America."
40
  ]
41
  title = "RADAR: Robust AI-text Detection via Adversarial leanRning"
42
- description = "An AI-written text detector based on the roberta-large model (fine-tuned with Vicuna-7B). See https://arxiv.org/abs/2307.03838 for details. Project Page: https://radar.vizhub.ai/"
43
 
44
  intf = gr.Interface(fn=detect, inputs=image, outputs=label, title=title,
45
- description=description)
46
  with gr.Interface(fn=detect, inputs=image, outputs=label, title=title, description=description) as intf:
47
  with gr.Tab("AI-text examples"):
48
  gr.Examples(AI_texts, inputs=image, outputs=label)
 
39
  "We the People of the United States, in Order to form a more perfect Union, establish Justice, insure domestic Tranquility, provide for the common defense, promote the general Welfare, and secure the Blessings of Liberty to ourselves and our Posterity, do ordain and establish this Constitution for the United States of America."
40
  ]
41
  title = "RADAR: Robust AI-text Detection via Adversarial leanRning"
42
+ description = "An AI-written text detector based on the roberta-large model (fine-tuned with Vicuna-7B).\nSee https://arxiv.org/abs/2307.03838 for details.\nProject Page: https://radar.vizhub.ai/"
43
 
44
  intf = gr.Interface(fn=detect, inputs=image, outputs=label, title=title,
45
+ description=gr.Markdown(description))
46
  with gr.Interface(fn=detect, inputs=image, outputs=label, title=title, description=description) as intf:
47
  with gr.Tab("AI-text examples"):
48
  gr.Examples(AI_texts, inputs=image, outputs=label)