Text Classification
Transformers
Safetensors
bert
finance
twitter
prediction
ner
named-entity-recognition
turkish
text-embeddings-inference
Instructions to use engibeer/prediction-text-ner-bist30 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use engibeer/prediction-text-ner-bist30 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="engibeer/prediction-text-ner-bist30")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("engibeer/prediction-text-ner-bist30") model = AutoModelForSequenceClassification.from_pretrained("engibeer/prediction-text-ner-bist30", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 1,092 Bytes
352f209 fd45b9b 352f209 fd45b9b 352f209 fd45b9b 352f209 fd45b9b 352f209 fd45b9b 352f209 fd45b9b 352f209 fd45b9b 352f209 fd45b9b 352f209 fd45b9b 352f209 fd45b9b 352f209 fd45b9b 352f209 fd45b9b | 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 | ---
library_name: transformers
tags:
- finance
- twitter
- prediction
- ner
- named-entity-recognition
- turkish
- transformers
- bert
license: mit
base_model:
- dbmdz/bert-base-turkish-128k-uncased
---
# 🧠 Prediction Phrase Extractor (NER)
This is a fine-tuned **Named Entity Recognition (NER)** model that extracts **stock prediction phrases** from Turkish financial tweets. These prediction phrases are later passed into a sentiment classifier for further analysis.
🧾 Example predictions:
- `"will reach 70 TL"`
- `"to moon soon"`
- `"drop to 50 in 2 weeks"`
---
## 🧠 Model Details
- **Developed by:** damlakonur
- **Model type:** `BERT` fine-tuned for `token-classification`
- **Language(s):** Turkish
- **Finetuned from:** `bert-base-cased`
- **Entity type:** `Tahmin` (prediction phrase)
- **License:** MIT
---
## 🚀 How to Use
```python
from transformers import pipeline
model = pipeline(
"token-classification",
model="your-username/prediction-text-ner-bist30",
aggregation_strategy="simple"
)
model("EREGL will reach 45 TL in June.") |