Update app.py
Browse files
app.py
CHANGED
@@ -1,11 +1,3 @@
|
|
1 |
-
# -*- coding: utf-8 -*-
|
2 |
-
"""QuestionGenerator.ipynb
|
3 |
-
|
4 |
-
Automatically generated by Colaboratory.
|
5 |
-
|
6 |
-
Original file is located at
|
7 |
-
https://colab.research.google.com/drive/1k0AavzSaNYxe36bk65fsXWzC4xSSwo6X
|
8 |
-
"""
|
9 |
|
10 |
from textwrap3 import wrap
|
11 |
|
@@ -204,16 +196,6 @@ for answer in imp_keywords:
|
|
204 |
|
205 |
"""# **UI by using Gradio**"""
|
206 |
|
207 |
-
import mysql.connector
|
208 |
-
import datetime;
|
209 |
-
|
210 |
-
mydb = mysql.connector.connect(
|
211 |
-
host="qtechdb-1.cexugk1h8rui.ap-northeast-1.rds.amazonaws.com",
|
212 |
-
user="admin",
|
213 |
-
password="F3v2vGWzb8vaniE3nqzi",
|
214 |
-
database="spring_social"
|
215 |
-
)
|
216 |
-
|
217 |
import gradio as gr
|
218 |
|
219 |
|
@@ -248,23 +230,12 @@ def generate_question_text(context,subject,total):
|
|
248 |
output = output + "<br>"
|
249 |
i += 1
|
250 |
|
251 |
-
mycursor = mydb.cursor()
|
252 |
-
timedate = datetime.datetime.now()
|
253 |
-
|
254 |
-
sql = "INSERT INTO shorttexts (subject, input, output, timedate) VALUES (%s,%s, %s,%s)"
|
255 |
-
val = (subject, context, output, timedate)
|
256 |
-
mycursor.execute(sql, val)
|
257 |
-
|
258 |
-
mydb.commit()
|
259 |
-
|
260 |
-
print(mycursor.rowcount, "record inserted.")
|
261 |
-
|
262 |
return output
|
263 |
|
264 |
iface = gr.Interface(
|
265 |
fn=generate_question_text,
|
266 |
inputs=[context,subject, total],
|
267 |
-
outputs=output,
|
268 |
allow_flagging="manual",flagging_options=["Save Data"])
|
269 |
|
270 |
# iface.launch(debug=True, share=True)
|
@@ -308,18 +279,6 @@ def filecreate(x,subject,total):
|
|
308 |
# print(text)
|
309 |
generated = generate_question(text,subject, total)
|
310 |
|
311 |
-
mycursor = mydb.cursor()
|
312 |
-
|
313 |
-
timedate= datetime.datetime.now()
|
314 |
-
|
315 |
-
sql = "INSERT INTO shortfiles (subject, input, output, timedate) VALUES (%s,%s, %s,%s)"
|
316 |
-
val = (subject, text, generated, timedate)
|
317 |
-
mycursor.execute(sql, val)
|
318 |
-
|
319 |
-
mydb.commit()
|
320 |
-
|
321 |
-
print(mycursor.rowcount, "record inserted.")
|
322 |
-
|
323 |
return generated
|
324 |
|
325 |
# filecreate(file,2)
|
@@ -338,11 +297,10 @@ fface = gr.Interface(
|
|
338 |
fn=filecreate,
|
339 |
inputs=[file,subject,total],
|
340 |
outputs=context,
|
341 |
-
css=".gradio-container {background-image: url('file=blue.jpg')}",
|
342 |
allow_flagging="manual",flagging_options=["Save Data"])
|
343 |
|
344 |
|
345 |
# fface.launch(debug=True, share=True)
|
346 |
|
347 |
-
demo = gr.TabbedInterface([iface, fface], ["Text", "Upload File"]
|
348 |
demo.launch(debug=True, share=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
|
2 |
from textwrap3 import wrap
|
3 |
|
|
|
196 |
|
197 |
"""# **UI by using Gradio**"""
|
198 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
199 |
import gradio as gr
|
200 |
|
201 |
|
|
|
230 |
output = output + "<br>"
|
231 |
i += 1
|
232 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
233 |
return output
|
234 |
|
235 |
iface = gr.Interface(
|
236 |
fn=generate_question_text,
|
237 |
inputs=[context,subject, total],
|
238 |
+
outputs=output,
|
239 |
allow_flagging="manual",flagging_options=["Save Data"])
|
240 |
|
241 |
# iface.launch(debug=True, share=True)
|
|
|
279 |
# print(text)
|
280 |
generated = generate_question(text,subject, total)
|
281 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
return generated
|
283 |
|
284 |
# filecreate(file,2)
|
|
|
297 |
fn=filecreate,
|
298 |
inputs=[file,subject,total],
|
299 |
outputs=context,
|
|
|
300 |
allow_flagging="manual",flagging_options=["Save Data"])
|
301 |
|
302 |
|
303 |
# fface.launch(debug=True, share=True)
|
304 |
|
305 |
+
demo = gr.TabbedInterface([iface, fface], ["Text", "Upload File"])
|
306 |
demo.launch(debug=True, share=True)
|