Views
No views yet
roberta-base model for detecting test smells in natural language test cases. It was trained as a multi-label classifier on structured manual test cases, labeled automatically using LLaMA 3.1 Nemotron.roberta-base1# Use a pipeline as a high-level helper
2from transformers import pipeline
3
4pipe = pipeline("text-classification", model="lukassokcevic/test-smell-classifier")