Views
No views yet
#text-classification #sentiment-analysis #Assamese #LSTMA deep learning-powered tool to classify Assamese text as Positive, Negative, or Neutral using an LSTM model tailored for the Assamese language.
| Property | Details |
|---|---|
| Model Name | niharikanath/assamese-sentiment-analysis |
| Architecture | Pretrained LSTM-based neural network |
| Language | Assamese (অসমীয়া) |
| Classes | 3 – Positive, Neutral, Negative |
| Use Cases | Customer feedback, social media monitoring, opinion mining |
pip install -r requirements.txt1git clone https://github.com/KashyapKishore/AssameseTokenizer.git
2cd AssameseTokenizer
3pip install .1from transformers import pipeline
2
3model_name = "niharikanath/assamese-sentiment-analysis"
4pipe = pipeline("text-classification", model=model_name, tokenizer=model_name)
5
6result = pipe("এই খাবাৰটা একদম ভালো আছিল!") # Sample Assamese sentence
7print(result)