Text Classification
Transformers
Safetensors
bert
finance
sentiment-analysis
twitter
turkish
prediction
text-embeddings-inference
Instructions to use engibeer/prediction-sentiment-bist30 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use engibeer/prediction-sentiment-bist30 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="engibeer/prediction-sentiment-bist30")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("engibeer/prediction-sentiment-bist30") model = AutoModelForSequenceClassification.from_pretrained("engibeer/prediction-sentiment-bist30") - Notebooks
- Google Colab
- Kaggle
β€οΈ Prediction Sentiment Classifier
This model classifies the sentiment of stock prediction phrases from Turkish finance-related tweets.
Itβs used to assign a tone (e.g., positive or negative) to the predicted movement of a stock.
π§Ύ Example:
"will reach 80 TL soon"β Positive"may fall to 25 TL next week"β Negative
π§ Model Details
- Developed by: damlakonur
- Model type:
BERTfine-tuned forsequence classification - Language(s): Turkish
- Finetuned from:
bert-base-cased - License: MIT
- Classes:
LABEL_0= Negative,LABEL_1= Positive
π How to Use
from transformers import pipeline
model = pipeline("text-classification", model="your-username/prediction-sentiment-bist30")
output = model("will reach 80 TL soon")
print(output)
- Downloads last month
- 4
Model tree for engibeer/prediction-sentiment-bist30
Base model
dbmdz/bert-base-turkish-128k-uncased