Text Classification
Transformers
PyTorch
English
distilbert
customer-service-tickets
github-issues
bart-large-mnli
zero-shot-classification
NLP
text-embeddings-inference
Instructions to use AntoineMC/distilbart-mnli-github-issues with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use AntoineMC/distilbart-mnli-github-issues with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="AntoineMC/distilbart-mnli-github-issues")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("AntoineMC/distilbart-mnli-github-issues") model = AutoModelForSequenceClassification.from_pretrained("AntoineMC/distilbart-mnli-github-issues") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -23,6 +23,8 @@ widget:
|
|
| 23 |
|
| 24 |
# GitHub issues classifier (using zero shot classification)
|
| 25 |
|
|
|
|
|
|
|
| 26 |
This model was trained using the [**Zero-shot classifier distillation**](https://github.com/huggingface/transformers/tree/main/examples/research_projects/zero-shot-distillation) method
|
| 27 |
with the [BART-large-mnli](https://huggingface.co/facebook/bart-large-mnli) model as teacher model, to train a classifier on Github issues from the [Github Issues Prediction dataset](https://www.kaggle.com/datasets/anmolkumar/github-bugs-prediction)
|
| 28 |
|
|
|
|
| 23 |
|
| 24 |
# GitHub issues classifier (using zero shot classification)
|
| 25 |
|
| 26 |
+
Predicts wether a statement is a feature request, issue/bug or question
|
| 27 |
+
|
| 28 |
This model was trained using the [**Zero-shot classifier distillation**](https://github.com/huggingface/transformers/tree/main/examples/research_projects/zero-shot-distillation) method
|
| 29 |
with the [BART-large-mnli](https://huggingface.co/facebook/bart-large-mnli) model as teacher model, to train a classifier on Github issues from the [Github Issues Prediction dataset](https://www.kaggle.com/datasets/anmolkumar/github-bugs-prediction)
|
| 30 |
|