ml_sentiment_simple 1.0.0 copy "ml_sentiment_simple: ^1.0.0" to clipboard
ml_sentiment_simple: ^1.0.0 copied to clipboard

A simple multilingual (Turkish + English) sentiment analyzer based on word scoring.

πŸ“Š ml_sentiment_simple #

ml_sentiment_simple is a lightweight and multilingual (πŸ‡ΉπŸ‡· Turkish + πŸ‡ΊπŸ‡Έ English) word-level sentiment analysis library for Dart and Flutter.
It analyzes a given text and classifies it as positive, negative, or neutral based on predefined sentiment lexicons.


βœ… Features #

  • πŸ“¦ Simple word-based sentiment classification
  • 🌐 Supports Turkish, English, or both
  • 🧩 Easily extendable with custom word lists
  • ⚑ Zero dependencies, blazing fast
  • βœ… Fully tested and production-ready

πŸš€ Installation #

Add the following line to your pubspec.yaml:

dependencies:
  ml_sentiment_simple: ^1.0.0

Then run:

flutter pub get

πŸ’‘ Usage #

import 'package:ml_sentiment_simple/ml_sentiment_simple.dart';

void main() {
  final analyzer = SentimentAnalyzer();

  final result = analyzer.analyze("This is awesome but also terrible.");
  print(result); // Label: neutral, Score: 0.0, ...
}

You can also customize the lexicon:

final customAnalyzer = SentimentAnalyzer(
  lexicon: WordSentimentLexicon(
    language: LexiconLanguage.both,
    customPositiveWords: {'wonderful'},
    customNegativeWords: {'disaster'},
  ),
);

final result = customAnalyzer.analyze("It was a wonderful disaster.");
print(result); // Label: neutral, Score: 0.0

πŸ§ͺ Testing #

To run unit tests:

dart test

πŸ“š API #

SentimentAnalyzer #

Main entry point for analyzing sentences.

WordSentimentLexicon #

Contains sentiment word lists (positive/negative), can be customized.

LexiconLanguage #

Enum to specify language: turkish, english, or both.

SentimentResult #

Model class with fields: label, score, positiveCount, negativeCount, totalWords.


πŸ“„ License #

This project is licensed under the MIT License – see the LICENSE file for details.


πŸ‘€ Author #

Developed by Mehmet Γ‡elik

0
likes
150
points
23
downloads

Publisher

unverified uploader

Weekly Downloads

A simple multilingual (Turkish + English) sentiment analyzer based on word scoring.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

More

Packages that depend on ml_sentiment_simple