File size: 13,858 Bytes
9f76503 ff28cb9 70fea2e 9f76503 f3e17f7 70fea2e f3e17f7 7d208a6 ff28cb9 9f76503 f3e17f7 9f76503 f3e17f7 9f76503 70fea2e 9f76503 70fea2e 9f76503 70fea2e 9f76503 ff28cb9 9f76503 70fea2e 9f76503 70fea2e ff28cb9 9f76503 a8529ac 9f76503 a8529ac 7d208a6 a8529ac 9f76503 7d208a6 9f76503 7d208a6 9f76503 7d208a6 9f76503 a8529ac f3e17f7 9f76503 f3e17f7 a8529ac f3e17f7 9f76503 16d7871 70fea2e 16d7871 9f76503 70fea2e 9f76503 a8529ac 7d208a6 a8529ac ff28cb9 70fea2e ff28cb9 70fea2e ff28cb9 70fea2e ff28cb9 70fea2e ff28cb9 70fea2e ff28cb9 70fea2e ff28cb9 70fea2e ff28cb9 70fea2e ff28cb9 70fea2e ff28cb9 70fea2e ff28cb9 70fea2e ff28cb9 a8529ac ff28cb9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 |
import json
from collections import defaultdict
from typing import Dict, List, Optional, Tuple, Union
import gradio as gr
from pie_modules.models import * # noqa: F403
from pie_modules.taskmodules import * # noqa: F403
from pytorch_ie.annotations import BinaryRelation, LabeledSpan
from pytorch_ie.auto import AutoPipeline
from pytorch_ie.documents import TextDocumentWithLabeledSpansBinaryRelationsAndLabeledPartitions
from pytorch_ie.models import * # noqa: F403
from pytorch_ie.taskmodules import * # noqa: F403
RENDER_WITH_DISPLACY = "displaCy + highlighted arguments"
RENDER_WITH_PRETTY_TABLE = "Pretty Table"
def render_pretty_table(
document: TextDocumentWithLabeledSpansBinaryRelationsAndLabeledPartitions, **render_kwargs
):
from prettytable import PrettyTable
t = PrettyTable()
t.field_names = ["head", "tail", "relation"]
t.align = "l"
for relation in list(document.binary_relations) + list(document.binary_relations.predictions):
t.add_row([str(relation.head), str(relation.tail), relation.label])
html = t.get_html_string(format=True)
html = "<div style='max-width:100%; max-height:360px; overflow:auto'>" + html + "</div>"
return html
def render_spacy(
document: TextDocumentWithLabeledSpansBinaryRelationsAndLabeledPartitions,
style="ent",
inject_relations=True,
colors_hover=None,
**render_kwargs,
):
from spacy import displacy
spans = list(document.labeled_spans) + list(document.labeled_spans.predictions)
spacy_doc = {
"text": document.text,
"ents": [
{"start": entity.start, "end": entity.end, "label": entity.label} for entity in spans
],
"title": None,
}
html = displacy.render(
spacy_doc, page=True, manual=True, minify=True, style=style, **render_kwargs
)
html = "<div style='max-width:100%; max-height:360px; overflow:auto'>" + html + "</div>"
if inject_relations:
binary_relations = list(document.binary_relations) + list(
document.binary_relations.predictions
)
sorted_entities = sorted(spans, key=lambda x: (x.start, x.end))
html = inject_relation_data(
html,
sorted_entities=sorted_entities,
binary_relations=binary_relations,
additional_colors=colors_hover,
)
return html
def inject_relation_data(
html: str,
sorted_entities,
binary_relations: List[BinaryRelation],
additional_colors: Optional[Dict[str, Union[str, dict]]] = None,
) -> str:
from bs4 import BeautifulSoup
# Parse the HTML using BeautifulSoup
soup = BeautifulSoup(html, "html.parser")
entity2tails = defaultdict(list)
entity2heads = defaultdict(list)
for relation in binary_relations:
entity2heads[relation.tail].append((relation.head, relation.label))
entity2tails[relation.head].append((relation.tail, relation.label))
entity2id = {entity: f"entity-{idx}" for idx, entity in enumerate(sorted_entities)}
# Add unique IDs to each entity
entities = soup.find_all(class_="entity")
for idx, entity in enumerate(entities):
entity["id"] = f"entity-{idx}"
original_color = entity["style"].split("background:")[1].split(";")[0].strip()
entity["data-color-original"] = original_color
if additional_colors is not None:
for key, color in additional_colors.items():
entity[f"data-color-{key}"] = (
json.dumps(color) if isinstance(color, dict) else color
)
entity_annotation = sorted_entities[idx]
# sanity check
if str(entity_annotation) != entity.next:
raise ValueError(f"Entity text mismatch: {entity_annotation} != {entity.text}")
entity["data-label"] = entity_annotation.label
entity["data-relation-tails"] = json.dumps(
[
{"entity-id": entity2id[tail], "label": label}
for tail, label in entity2tails.get(entity_annotation, [])
]
)
entity["data-relation-heads"] = json.dumps(
[
{"entity-id": entity2id[head], "label": label}
for head, label in entity2heads.get(entity_annotation, [])
]
)
# Return the modified HTML as a string
return str(soup)
def predict(text: str) -> Tuple[dict, str]:
document = TextDocumentWithLabeledSpansBinaryRelationsAndLabeledPartitions(text=text)
# add single partition from the whole text (the model only considers text in partitions)
document.labeled_partitions.append(LabeledSpan(start=0, end=len(text), label="text"))
# execute prediction pipeline
pipeline(document)
document_dict = document.asdict()
return document_dict, json.dumps(document_dict)
def render(document_txt: str, render_with: str, render_kwargs_json: str) -> str:
document_dict = json.loads(document_txt)
document = TextDocumentWithLabeledSpansBinaryRelationsAndLabeledPartitions.fromdict(
document_dict
)
render_kwargs = json.loads(render_kwargs_json)
if render_with == RENDER_WITH_PRETTY_TABLE:
html = render_pretty_table(document, **render_kwargs)
elif render_with == RENDER_WITH_DISPLACY:
html = render_spacy(document, **render_kwargs)
else:
raise ValueError(f"Unknown render_with value: {render_with}")
return html
def open_accordion():
return gr.Accordion(open=True)
def close_accordion():
return gr.Accordion(open=False)
if __name__ == "__main__":
model_name_or_path = "ArneBinder/sam-pointer-bart-base-v0.3"
# local path
# model_name_or_path = "models/dataset-sciarg/task-ner_re/v0.3/2024-03-01_18-25-32"
example_text = "Scholarly Argumentation Mining (SAM) has recently gained attention due to its potential to help scholars with the rapid growth of published scientific literature. It comprises two subtasks: argumentative discourse unit recognition (ADUR) and argumentative relation extraction (ARE), both of which are challenging since they require e.g. the integration of domain knowledge, the detection of implicit statements, and the disambiguation of argument structure. While previous work focused on dataset construction and baseline methods for specific document sections, such as abstract or results, full-text scholarly argumentation mining has seen little progress. In this work, we introduce a sequential pipeline model combining ADUR and ARE for full-text SAM, and provide a first analysis of the performance of pretrained language models (PLMs) on both subtasks. We establish a new SotA for ADUR on the Sci-Arg corpus, outperforming the previous best reported result by a large margin (+7% F1). We also present the first results for ARE, and thus for the full AM pipeline, on this benchmark dataset. Our detailed error analysis reveals that non-contiguous ADUs as well as the interpretation of discourse connectors pose major challenges and that data annotation needs to be more consistent."
pipeline = AutoPipeline.from_pretrained(model_name_or_path, device=-1, num_workers=0)
re_pipeline = AutoPipeline.from_pretrained(
model_name_or_path,
device=-1,
num_workers=0,
# taskmodule_kwargs=dict(create_relation_candidates=True),
)
default_render_kwargs = {
"style": "ent",
"options": {
# we need to convert the keys to uppercase because the spacy rendering function expects them in uppercase
"colors": {
"own_claim".upper(): "#009933",
"background_claim".upper(): "#99ccff",
"data".upper(): "#993399",
}
},
"colors_hover": {
"selected": "#ffa",
# "tail": "#aff",
"tail": {
# green
"supports": "#9f9",
# red
"contradicts": "#f99",
# do not highlight
"parts_of_same": None,
},
"head": None, # "#faf",
"other": None,
},
}
with gr.Blocks() as demo:
with gr.Row():
with gr.Column(scale=1):
text = gr.Textbox(
label="Input Text",
lines=20,
value=example_text,
)
predict_btn = gr.Button("Predict")
output_txt = gr.Textbox(visible=False)
with gr.Column(scale=1):
with gr.Accordion("See plain result ...", open=False) as output_accordion:
output_json = gr.JSON(label="Model Output")
with gr.Accordion("Render Options", open=False):
render_as = gr.Dropdown(
label="Render with",
choices=[RENDER_WITH_PRETTY_TABLE, RENDER_WITH_DISPLACY],
value=RENDER_WITH_DISPLACY,
)
render_kwargs = gr.Textbox(
label="Render Arguments",
lines=5,
value=json.dumps(default_render_kwargs, indent=2),
)
render_btn = gr.Button("Re-render")
rendered_output = gr.HTML(label="Rendered Output")
render_button_kwargs = dict(
fn=render, inputs=[output_txt, render_as, render_kwargs], outputs=rendered_output
)
predict_btn.click(open_accordion, inputs=[], outputs=[output_accordion]).then(
fn=predict, inputs=text, outputs=[output_json, output_txt], api_name="predict"
).success(**render_button_kwargs).success(
close_accordion, inputs=[], outputs=[output_accordion]
)
render_btn.click(**render_button_kwargs, api_name="render")
js = """
() => {
function maybeSetColor(entity, colorAttributeKey, colorDictKey) {
var color = entity.getAttribute('data-color-' + colorAttributeKey);
// if color is a json string, parse it and use the value at colorDictKey
try {
const colors = JSON.parse(color);
color = colors[colorDictKey];
} catch (e) {}
if (color) {
console.log('setting color', color);
console.log('entity', entity);
entity.style.backgroundColor = color;
entity.style.color = '#000';
}
}
function highlightRelationArguments(entityId) {
const entities = document.querySelectorAll('.entity');
// reset all entities
entities.forEach(entity => {
const color = entity.getAttribute('data-color-original');
entity.style.backgroundColor = color;
entity.style.color = '';
});
if (entityId !== null) {
var visitedEntities = new Set();
// highlight selected entity
const selectedEntity = document.getElementById(entityId);
if (selectedEntity) {
const label = selectedEntity.getAttribute('data-label');
maybeSetColor(selectedEntity, 'selected', label);
visitedEntities.add(selectedEntity);
}
// highlight tails
const relationTailsAndLabels = JSON.parse(selectedEntity.getAttribute('data-relation-tails'));
relationTailsAndLabels.forEach(relationTail => {
const tailEntity = document.getElementById(relationTail['entity-id']);
if (tailEntity) {
const label = relationTail['label'];
maybeSetColor(tailEntity, 'tail', label);
visitedEntities.add(tailEntity);
}
});
// highlight heads
const relationHeadsAndLabels = JSON.parse(selectedEntity.getAttribute('data-relation-heads'));
relationHeadsAndLabels.forEach(relationHead => {
const headEntity = document.getElementById(relationHead['entity-id']);
if (headEntity) {
const label = relationHead['label'];
maybeSetColor(headEntity, 'head', label);
visitedEntities.add(headEntity);
}
});
// highlight other entities
entities.forEach(entity => {
if (!visitedEntities.has(entity)) {
const label = entity.getAttribute('data-label');
maybeSetColor(entity, 'other', label);
}
});
}
}
const entities = document.querySelectorAll('.entity');
entities.forEach(entity => {
const alreadyHasListener = entity.getAttribute('data-has-listener');
if (alreadyHasListener) {
return;
}
entity.addEventListener('mouseover', () => {
highlightRelationArguments(entity.id);
});
entity.addEventListener('mouseout', () => {
highlightRelationArguments(null);
});
entity.setAttribute('data-has-listener', 'true');
});
}
"""
rendered_output.change(fn=None, js=js, inputs=[], outputs=[])
demo.launch()
|