lowrollr commited on
Commit
a8a2d3f
·
1 Parent(s): 950eacb

very simple app

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def grade_essay(essay):
4
+ return 5
5
+
6
+
7
+ demo = gr.Interface(fn=grade_essay, inputs="text", outputs="text")
8
+
9
+ demo.launch()
10
+
11
+
12
+