Edit model card

You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

Model Trained Using AutoTrain

  • Problem type: Binary Classification
  • Model ID: 51469121981
  • CO2 Emissions (in grams): 0.7878

Validation Metrics

  • Loss: 0.403
  • Accuracy: 0.845
  • Precision: 0.862
  • Recall: 0.939
  • AUC: 0.846
  • F1: 0.899

Usage

You can use cURL to access this model:

$ curl -X POST -H "Authorization: Bearer YOUR_API_KEY" -H "Content-Type: application/json" -d '{"inputs": "I love AutoTrain"}' https://api-inference.huggingface.co/models/BaherElnaggar/autotrain-arabic-sentiment-analysis-51469121981

Or Python API:

from transformers import AutoModelForSequenceClassification, AutoTokenizer

model = AutoModelForSequenceClassification.from_pretrained("BaherElnaggar/autotrain-arabic-sentiment-analysis-51469121981", use_auth_token=True)

tokenizer = AutoTokenizer.from_pretrained("BaherElnaggar/autotrain-arabic-sentiment-analysis-51469121981", use_auth_token=True)

inputs = tokenizer("I love AutoTrain", return_tensors="pt")

outputs = model(**inputs)
Downloads last month
13
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social visibility and check back later, or deploy to Inference Endpoints (dedicated) instead.