This model is a fine-tuned version of the RoBERTa-base designed for a multi-intent detection task.
The training was conducted using a subset of the BlendX dataset, specifically containing data with exactly two intents per sample.
This setup enables the model to handle multi-intent classification, where the goal is to predict both intents for each input.
This model is designed specifically for the downstream task of multi-intent classification, where the objective is to identify multiple intents within a single input.
It is particularly suited for scenarios involving two-intents detection, as it was fine-tuned on a dataset containing samples with exactly two intents.
1from transformers import AutoTokenizer, AutoModelForSequenceClassification
2
3tokenizer = AutoTokenizer.from_pretrained("color54/roberta-base-blendx2")
4model = AutoModelForSequenceClassification.from_pretrained("color54/roberta-base-blendx2")