BioMike's picture
Upload 26 files
1218161 verified
raw
history blame
No virus
4.79 kB
from typing import Dict, Union
from gliner import GLiNER
import gradio as gr
model = GLiNER.from_pretrained("knowledgator/gliner-multitask-large-v0.5").to('cpu')
text2 = """
Apple Inc. is an American multinational technology company headquartered in Cupertino, California. Apple is the world's largest technology company by revenue, with US$394.3 billion in 2022 revenue. As of March 2023, Apple is the world's biggest company by market capitalization. As of June 2022, Apple is the fourth-largest personal computer vendor by unit sales and the second-largest mobile phone manufacturer in the world. It is considered one of the Big Five American information technology companies, alongside Alphabet (parent company of Google), Amazon, Meta Platforms, and Microsoft.
Microsoft was founded by Bill Gates and Paul Allen on April 4, 1975 to develop and sell BASIC interpreters for the Altair 8800. During his career at Microsoft, Gates held the positions of chairman, chief executive officer, president and chief software architect, while also being the largest individual shareholder until May 2014.
Apple was founded as Apple Computer Company on April 1, 1976, by Steve Wozniak, Steve Jobs (1955–2011) and Ronald Wayne to develop and sell Wozniak's Apple I personal computer. It was incorporated by Jobs and Wozniak as Apple Computer, Inc. in 1977. The company's second computer, the Apple II, became a best seller and one of the first mass-produced microcomputers. Apple went public in 1980 to instant financial success. The company developed computers featuring innovative graphical user interfaces, including the 1984 original Macintosh, announced that year in a critically acclaimed advertisement called "1984". By 1985, the high cost of its products, and power struggles between executives, caused problems. Wozniak stepped back from Apple and pursued other ventures, while Jobs resigned and founded NeXT, taking some Apple employees with him.
"""
qa_examples = [
[
f"Who are the founders of Microsoft:",
text2,
0.1,
False
],
[
f"Who are the founders of Apple?:",
text2,
0.5,
False
]]
def merge_entities(entities):
if not entities:
return []
merged = []
current = entities[0]
for next_entity in entities[1:]:
if next_entity['entity'] == current['entity'] and (next_entity['start'] == current['end'] + 1 or next_entity['start'] == current['end']):
current['word'] += ' ' + next_entity['word']
current['end'] = next_entity['end']
else:
merged.append(current)
current = next_entity
merged.append(current)
return merged
def process(
question:str, text, threshold: float, nested_ner: bool, labels: str = ["answer"]
) -> Dict[str, Union[str, int, float]]:
text = question + "\n" + text
r = {
"text": text,
"entities": [
{
"entity": entity["label"],
"word": entity["text"],
"start": entity["start"],
"end": entity["end"],
"score": 0,
}
for entity in model.predict_entities(
text, labels, flat_ner=not nested_ner, threshold=threshold
)
],
}
r["entities"] = merge_entities(r["entities"])
return r
with gr.Blocks(title="Question Answering Task") as qa_interface:
question = gr.Textbox(label="Question", placeholder="Enter your question here")
input_text = gr.Textbox(label="Text input", placeholder="Enter your text here")
threshold = gr.Slider(0, 1, value=0.3, step=0.01, label="Threshold", info="Lower the threshold to increase how many entities get predicted.")
nested_ner = gr.Checkbox(label="Nested NER", info="Allow for nested NER?")
output = gr.HighlightedText(label="Predicted Entities")
submit_btn = gr.Button("Submit")
examples = gr.Examples(
qa_examples,
fn=process,
inputs=[question, input_text, threshold, nested_ner],
outputs=output,
cache_examples=True
)
theme=gr.themes.Base()
input_text.submit(fn=process, inputs=[question, input_text, threshold, nested_ner], outputs=output)
question.submit(fn=process, inputs=[question, input_text, threshold, nested_ner], outputs=output)
threshold.release(fn=process, inputs=[question, input_text, threshold, nested_ner], outputs=output)
submit_btn.click(fn=process, inputs=[question, input_text, threshold, nested_ner], outputs=output)
nested_ner.change(fn=process, inputs=[question, input_text, threshold, nested_ner], outputs=output)
if __name__ == "__main__":
qa_interface.launch()