jarvisx17/chABSA
Viewer • Updated • 2.81k • 23
This model is the work of jarvisx17 and was trained from scratch on the chABSA dataset. It achieves the following results on the evaluation set:
Model Train for Japanese sentence sentiments.
The model was trained on chABSA Japanese dataset. DATASET link : https://www.kaggle.com/datasets/takahirokubo0/chabsa
The following hyperparameters were used during training:
You can use cURL to access this model:
Python API:
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("jarvisx17/japanese-sentiment-analysis")
model = AutoModelForSequenceClassification.from_pretrained("jarvisx17/japanese-sentiment-analysis")
inputs = tokenizer("I love AutoNLP", return_tensors="pt")
outputs = model(**inputs)