Spaces:
Sleeping
Sleeping
File size: 7,704 Bytes
e2b111c | 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 | import gradio as gr
from huggingface_hub import snapshot_download
import sys
import os
# Download the model
repo_path = snapshot_download("Muhsabrys/AMWAL_ArFinNER")
sys.path.append(repo_path)
# Import the model
from amwal import load_ner
# Load the NER model
ner = load_ner(local_path=repo_path)
# Define entity colors for visualization
ENTITY_COLORS = {
"BANK": "#FF6B6B",
"ORGANIZATION": "#4ECDC4",
"CURRENCY": "#FFD93D",
"FINANCIAL_INSTRUMENT": "#95E1D3",
"COUNTRY": "#F38181",
"CITY": "#AA96DA",
"NATIONALITY": "#FCBAD3",
"EVENT": "#A8E6CF",
"EVENTS": "#A8E6CF",
"TIME": "#FFD3B6",
"QUNATITY_OR_UNIT": "#FFAAA5",
"PRODUCT_OR_SERVICE": "#FF8B94",
"PERSON": "#C7CEEA",
"LAW": "#B4F8C8",
"DATE": "#FBE7C6",
}
def process_text(text):
"""Process Arabic financial text and extract entities"""
if not text or not text.strip():
return "Please enter some Arabic financial text.", ""
try:
# Get predictions
result = ner(text)
entities = result.get("entities", [])
if not entities:
return "No entities found in the text.", ""
# Create highlighted text with HTML
highlighted_html = create_highlighted_html(text, entities)
# Format entity information
entity_info = format_entity_info(entities)
return highlighted_html, entity_info
except Exception as e:
return f"Error processing text: {str(e)}", ""
def create_highlighted_html(text, entities):
"""Create HTML with highlighted entities"""
if not entities:
return text
# Sort entities by start position in reverse order
sorted_entities = sorted(entities, key=lambda x: x['start'], reverse=True)
# Process text from end to start to maintain correct positions
result_text = text
for entity in sorted_entities:
start = entity['start']
end = entity['end']
entity_text = entity['text']
label = entity['label']
color = ENTITY_COLORS.get(label, "#CCCCCC")
# Create highlighted span
highlighted = f'<mark style="background-color: {color}; padding: 2px 4px; border-radius: 3px; margin: 0 2px;" title="{label}">{entity_text}</mark>'
# Replace in text
result_text = result_text[:start] + highlighted + result_text[end:]
# Wrap in RTL div for Arabic text
html = f'<div dir="rtl" style="font-size: 18px; line-height: 2; padding: 15px; background-color: #f9f9f9; border-radius: 8px; font-family: \'Arial\', sans-serif;">{result_text}</div>'
return html
def format_entity_info(entities):
"""Format entity information as a readable string"""
if not entities:
return "No entities detected."
info = "### Detected Entities\n\n"
# Group entities by type
entity_groups = {}
for entity in entities:
label = entity['label']
if label not in entity_groups:
entity_groups[label] = []
entity_groups[label].append(entity['text'])
# Format grouped entities
for label, texts in sorted(entity_groups.items()):
color = ENTITY_COLORS.get(label, "#CCCCCC")
info += f"\n**{label}** ({len(texts)}): "
# Show unique entities
unique_texts = list(dict.fromkeys(texts)) # Preserve order while removing duplicates
info += ", ".join(unique_texts)
info += "\n"
return info
# Example texts in Arabic
examples = [
["يطرح البنك المركزي المصري، بعد غد، سندات خزانة ثابتة ومتغيرة العائد بقيمة 45 مليار جنيه"],
["الصادرات البترولية المصرية ترتفع إلى 3.6 مليار دولار خلال 9 أشهر"],
["أعلن بنك الإمارات دبي الوطني عن زيادة رأس المال إلى 500 مليون درهم"],
["ارتفع سعر صرف الدولار الأمريكي مقابل الجنيه المصري في البورصة المصرية"],
]
# Create Gradio interface
with gr.Blocks(theme=gr.themes.Soft(), title="AMWAL: Arabic Financial NER") as demo:
gr.Markdown(
"""
# 💰 AMWAL: Arabic Financial Named Entity Recognition
Extract financial entities from Arabic text using AMWAL, a specialized spaCy-based NER system.
**Supported Entity Types:** BANK, ORGANIZATION, CURRENCY, FINANCIAL_INSTRUMENT, COUNTRY, CITY,
NATIONALITY, EVENT, TIME, QUANTITY_OR_UNIT, PRODUCT_OR_SERVICE, and more.
---
"""
)
with gr.Row():
with gr.Column(scale=1):
input_text = gr.Textbox(
label="Arabic Financial Text",
placeholder="أدخل النص المالي العربي هنا...",
lines=8,
rtl=True
)
submit_btn = gr.Button("🔍 Extract Entities", variant="primary", size="lg")
gr.Examples(
examples=examples,
inputs=input_text,
label="Example Texts"
)
with gr.Row():
with gr.Column(scale=1):
output_html = gr.HTML(label="Highlighted Text")
output_info = gr.Markdown(label="Entity Information")
# Add legend
gr.Markdown(
"""
---
### 📊 Entity Color Legend
<div style="display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 10px; margin-top: 10px;">
<div><mark style="background-color: #FF6B6B; padding: 2px 8px; border-radius: 3px;">BANK</mark></div>
<div><mark style="background-color: #4ECDC4; padding: 2px 8px; border-radius: 3px;">ORGANIZATION</mark></div>
<div><mark style="background-color: #FFD93D; padding: 2px 8px; border-radius: 3px;">CURRENCY</mark></div>
<div><mark style="background-color: #95E1D3; padding: 2px 8px; border-radius: 3px;">FINANCIAL_INSTRUMENT</mark></div>
<div><mark style="background-color: #F38181; padding: 2px 8px; border-radius: 3px;">COUNTRY</mark></div>
<div><mark style="background-color: #AA96DA; padding: 2px 8px; border-radius: 3px;">CITY</mark></div>
<div><mark style="background-color: #FCBAD3; padding: 2px 8px; border-radius: 3px;">NATIONALITY</mark></div>
<div><mark style="background-color: #A8E6CF; padding: 2px 8px; border-radius: 3px;">EVENT</mark></div>
</div>
---
### 📖 About AMWAL
AMWAL is a spaCy-based Named Entity Recognition system designed for extracting financial entities from Arabic text.
It was trained on a specialized corpus of Arabic financial news from 2000-2023 and achieves 96% F1-score.
**Paper:** [AMWAL: Named Entity Recognition for Arabic Financial News](https://aclanthology.org/2025.finnlp-1.20) (FinNLP @ COLING 2025)
**Authors:** Muhammad S. Abdo, Yash Hatekar, Damir Cavar
**Model:** [Muhsabrys/AMWAL_ArFinNER](https://huggingface.co/Muhsabrys/AMWAL_ArFinNER)
"""
)
# Connect the button to the processing function
submit_btn.click(
fn=process_text,
inputs=input_text,
outputs=[output_html, output_info]
)
# Also allow Enter key to trigger processing
input_text.submit(
fn=process_text,
inputs=input_text,
outputs=[output_html, output_info]
)
# Launch the app
if __name__ == "__main__":
demo.launch() |