File size: 481 Bytes
c7c5784
 
 
 
 
 
 
 
 
d07afbd
c7c5784
1
2
3
4
5
6
7
8
9
10
11
# Reddit exercise feedback classification

Model to classify Reddit's comments for exercise feedback. Current classes are good, correction, bad posture, not informative. If you want to use it locally,

### Usage:
```py
from transformers import pipeline
classifier = pipeline("text-classification", "kittinan/exercise-feedback-classification")
classifier("search for alan thrall deadlift video he will explain basic ques")
#[{'label': 'correction', 'score': 0.9998193979263306}]
```