Views
No views yet
CHECKIN → Valid check-inNOT_CHECKIN → Not a check-inToday I worked on fixing my API deployment issue and tested endpoints1{
2 "label": "CHECKIN",
3 "confidence": 0.98
4}1from transformers import pipeline
2
3classifier = pipeline("text-classification", model="mjpsm/check_in_or_not_v2")
4
5result = classifier("Today I worked on building an API")
6print(result)