File size: 503 Bytes
a65bc24 2680ec1 66f5c5a d5fd2be a65bc24 a2fa855 a65bc24 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
---
license: mit
base_model:
- google-bert/bert-base-uncased
library_name: adapter-transformers
datasets:
- stanfordnlp/imdb
pipeline_tag: text-classification
---
# bert-sentiment-imdb
This is a fine-tuned BERT model for sentiment analysis on the IMDB dataset.
- **Base Model**: `bert-base-uncased`
- **Dataset**: IMDB
- **Task**: Sentiment Analysis (Binary)
- **Usage**:
```python
from transformers import pipeline
classifier = pipeline("sentiment-analysis", model="zavora/bert-sentiment-imdb") |