j-hartmann commited on
Commit
5319c52
·
1 Parent(s): 4f5dfd2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -110,5 +110,7 @@ gr.Interface(bulk_function, inputs=[gr.inputs.File(file_count="single", type="fi
110
  outputs=[gr.outputs.File(label="Output file")],
111
  # examples=[["YOUR_FILENAME.csv"]], # computes, doesn't export df so far
112
  theme="huggingface",
 
 
113
  allow_flagging=False,
114
  ).launch(debug=True)
 
110
  outputs=[gr.outputs.File(label="Output file")],
111
  # examples=[["YOUR_FILENAME.csv"]], # computes, doesn't export df so far
112
  theme="huggingface",
113
+ title="English Emotion Classification from CSV",
114
+ description="Upload csv file with 2 columns (in order): (a) ID column, (b) text column. The script returns both together with the results form the emotion classification",
115
  allow_flagging=False,
116
  ).launch(debug=True)