import gradio as gr | |
# Example sentences | |
examples = [["It has been determined that the amount of greenhouse gases have decreased by almost half because of the prevalence in the utilization of nuclear power."], | |
["The Moon's orbit around Earth has"]] | |
# Write 1 line of Python to create a simple GUI | |
gr.Interface.load("huggingface/chkla/roberta-argument", examples=examples, title="Argument detection task").launch() | |