The model substantially exceeds the original project target of 80% accuracy.
1from transformers import AutoModelForSequenceClassification, AutoTokenizer
2
3# Load model and tokenizer
4model = AutoModelForSequenceClassification.from_pretrained("jjjardev/hilisenti-v1-model")
5tokenizer = AutoTokenizer.from_pretrained("jjjardev/hilisenti-v1-model")
6
7# Example inference
8sentence = "Sobrang sarap ng pagkain dito sa restaurant na ito."
9inputs = tokenizer(sentence, return_tensors="pt")
10outputs = model(**inputs)
11prediction = outputs.logits.argmax().item()
12
13# Map to label
14labels = ["Negative", "Neutral", "Positive"]
15print(labels[prediction]) # Positive
1from transformers import pipeline
2
3classifier = pipeline("text-classification", model="jjjardev/hilisenti-v1-model")
4result = classifier("Napakabagal ng internet connection namin ngayon.")
5print(result) # [{'label': 'Negative', 'score': 0.93}]
1@misc{jessie_james_jarder_2026,
2 author = {Jessie James Jarder},
3 title = {hilisenti-v1-model (Revision 6df512f)},
4 year = {2026},
5 publisher = {Hugging Face},
6 doi = {10.57967/hf/9302},
7 url = {https://huggingface.co/jjjardev/hilisenti-v1-model}
8}
1@dataset{jarder2026hilisenti,
2 author = {Jessie James T. Jarder},
3 title = {HiliSenti: A Multi-Domain Sentiment Analysis Dataset for Hiligaynon},
4 year = {2026},
5 publisher = {Hugging Face},
6 doi = {10.57967/hf/8737},
7 url = {https://huggingface.co/datasets/jjjardev/hilisenti-v1}
8}