Instructions to use devleoespinosa/DistilBERT-AUSQ-SL-Full-Sentence with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use devleoespinosa/DistilBERT-AUSQ-SL-Full-Sentence with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="devleoespinosa/DistilBERT-AUSQ-SL-Full-Sentence")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("devleoespinosa/DistilBERT-AUSQ-SL-Full-Sentence") model = AutoModelForSequenceClassification.from_pretrained("devleoespinosa/DistilBERT-AUSQ-SL-Full-Sentence", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Model Description
This repository contains a fine-tuned DistilBERT model for the automated assessment of the Full Sentence criterion of the Quality User Story (QUS) framework.
The model performs binary text classification to determine whether a user story constitutes a grammatically complete and well-formed sentence rather than a fragment or incomplete textual expression.
The Full Sentence criterion concerns the linguistic completeness of the requirement independently of whether the requested functionality itself is appropriate.
The model was developed as part of the study "Fine-Tuned DistilBERT for Automated User Story Quality Assessment".
Classification task
- Input: A user story written in natural language.
- Output: Binary classification indicating compliance with the Full Sentence criterion.
- Correct: The user story forms a complete, well-formed sentence.
- Incorrect: The user story is grammatically incomplete, fragmented, or does not constitute a full sentence.
This model is one of eight criterion-specific DistilBERT models developed for the individual quality criteria of the QUS framework.
- Downloads last month
- 20
Model tree for devleoespinosa/DistilBERT-AUSQ-SL-Full-Sentence
Base model
distilbert/distilbert-base-uncased