CoolFace
Modelpublic

engibeer/financial-ner-entities-bist30

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes11downloads
Model Card

🏷️ Financial NER Model for Entity Extraction

This is a fine-tuned BERT-based token classification model that extracts structured financial entities from Turkish tweets related to the stock market.

Entities include:

  • β€”πŸ’ Stock Tickers (e.g., AKBNK, EREGL)
  • β€”πŸŽ― Target Prices (Hedef)
  • β€”πŸ“‰ Support Prices (Destek)
  • β€”πŸ“ˆ Resistance Prices (DirenΓ§)
  • —⏱ Time spans (Vade)
  • β€”πŸ“Š Predicted values (Tahmin)

It is a core part of a larger NLP pipeline for parsing and analyzing finance-related predictions on social media.


🧠 Model Details

  • β€”Developed by: damlakonur
  • β€”Model type: BERT fine-tuned for token-classification
  • β€”Language(s): Turkish
  • β€”Finetuned from: bert-base-cased
  • β€”Trained using: Hugging Face Trainer API
  • β€”License: MIT

πŸš€ How to Use

python
from transformers import pipeline

model = pipeline(
    "token-classification",
    model="your-username/financial-ner-entities-bist30",
    aggregation_strategy="simple"
)

text = "#AKBNK hedef 60 TL, destek 52 TL."
output = model(text)
print(output)