Instructions to use pvaluedotone/bigbird-flight with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use pvaluedotone/bigbird-flight with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="pvaluedotone/bigbird-flight")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("pvaluedotone/bigbird-flight") model = AutoModelForSequenceClassification.from_pretrained("pvaluedotone/bigbird-flight", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -16,7 +16,7 @@ pipeline_tag: text-classification
|
|
| 16 |
---
|
| 17 |
|
| 18 |
# 🛫 Big Bird Flight
|
| 19 |
-
Big Bird Flight is a fine-tuned version of Google’s BigBird model, optimised for long-text sentiment analysis
|
| 20 |
|
| 21 |
Big Bird Flight captures nuanced emotional gradients in text, offering richer sentiment analysis than conventional binary classification (e.g., positive vs. negative). This makes it particularly useful for applications requiring fine-grained sentiment understanding from lengthy or detailed customer feedback.
|
| 22 |
- Use case: text classification
|
|
@@ -48,7 +48,7 @@ Big Bird Flight captures nuanced emotional gradients in text, offering richer se
|
|
| 48 |
|
| 49 |
# 📚 Citation
|
| 50 |
If you use this model in your research or applications, appreciate if you could cite as follow.
|
| 51 |
-
Mat Roni, S. (2025). Big Bird Flight
|
| 52 |
|
| 53 |
## Validation metrics
|
| 54 |
The validation metrics reflects the inherent complexity in the fine granularity of the 10-point scale.
|
|
|
|
| 16 |
---
|
| 17 |
|
| 18 |
# 🛫 Big Bird Flight
|
| 19 |
+
Big Bird Flight is a fine-tuned version of Google’s BigBird model, optimised for long-text sentiment analysis. It was trained on 2,598 flight review texts, each annotated with a 10-point ordinal sentiment rating ranging from 1 (extremely negative) to 10 (extremely positive).
|
| 20 |
|
| 21 |
Big Bird Flight captures nuanced emotional gradients in text, offering richer sentiment analysis than conventional binary classification (e.g., positive vs. negative). This makes it particularly useful for applications requiring fine-grained sentiment understanding from lengthy or detailed customer feedback.
|
| 22 |
- Use case: text classification
|
|
|
|
| 48 |
|
| 49 |
# 📚 Citation
|
| 50 |
If you use this model in your research or applications, appreciate if you could cite as follow.
|
| 51 |
+
Mat Roni, S. (2025). Big Bird Flight for ordinal sentiment analysis. Hugging Face. https://huggingface.co/pvaluedotone/bigbird-flight
|
| 52 |
|
| 53 |
## Validation metrics
|
| 54 |
The validation metrics reflects the inherent complexity in the fine granularity of the 10-point scale.
|