This model is a fine-tuned version of
distilbert-base-uncased on an Fitness-Intent (harshmakwana/fitness-intent) dataset.
It achieves the following results on the evaluation set:
Lightweight
DistilBERT fine-tuned on the
Fitness-Intent dataset to detect six user intents for a conversational fitness assistant.
1from transformers import pipeline
2
3classifier = pipeline(
4 "text-classification",
5 model="harshmakwana/distilbert-fitness-intent",
6 tokenizer="harshmakwana/distilbert-fitness-intent",
7 top_k=None, # return all logits if desired
8)
9
10classifier("Can you show me exercises to strengthen my core?")
11# ➜ [{'label': 'find_exercise', 'score': 0.97}, ...]
@misc{distilfitnessintent2025,
title = {DistilBERT Fine-tuned on Fitness-Intent},
author = {harsh makwana},
year = {2025},
howpublished = {\url{
https://huggingface.co/harshmakwana/distilbert-fitness-intent}}
}