|
import gradio as gr |
|
import torch |
|
from score_fincat import score_fincat |
|
from sus_fls import get_sustainability,fls |
|
from Cuad_others import quad,summarize_text,fin_ner |
|
device = torch.device("cuda" if torch.cuda.is_available() else "cpu") |
|
|
|
def load_questions(): |
|
questions = [] |
|
with open('questionshort.txt') as f: |
|
questions = f.readlines() |
|
return questions |
|
questions = load_questions() |
|
|
|
answer_main='' |
|
def mainFun(query,file): |
|
text='' |
|
with open(file.name) as f: |
|
text = f.read() |
|
answer_main,answer_p=quad(query,file) |
|
return text,answer_p,summarize_text(answer_main) |
|
|
|
def mainFun2(temp): |
|
|
|
return temp |
|
|
|
|
|
|
|
|
|
|
|
demo = gr.Blocks() |
|
with demo: |
|
txt_file = gr.File(label='CONTRACT') |
|
text = gr.Textbox(lines=10) |
|
selected_ques=gr.Dropdown(choices=questions,label='SEARCH QUERY') |
|
b1 = gr.Button("Analyze File") |
|
answer = gr.Textbox(lines=2) |
|
summarize = gr.Textbox(lines=2) |
|
b1.click(mainFun, inputs=[selected_ques,txt_file], outputs=[text,answer,summarize]) |
|
|
|
b2=gr.Button("Get NER") |
|
label_ner = gr.Textbox() |
|
b2.click(mainFun2,inputs=answer,outputs=label_ner) |
|
|
|
|
|
b3=gr.Button("Get CLAIM") |
|
label_claim = gr.Label() |
|
|
|
b4=gr.Button("Get SUSTAINABILITY") |
|
label_sus = gr.Label() |
|
|
|
b5=gr.Button("Get FLS") |
|
label_fls = gr.Label() |
|
|
|
demo.launch() |