Interface SentimentDetector


public interface SentimentDetector
  • Method Summary

    Modifier and Type
    Method
    Description
    predict(String sentence)
    Conducts a sentiment prediction for the specifed sentence.
    predict(String[] tokens)
    Conducts a sentiment prediction for the specifed sentence.
  • Method Details

    • predict

      String predict(String sentence)
      Conducts a sentiment prediction for the specifed sentence.
      Parameters:
      sentence - The text to be analysed for its sentiment.
      Returns:
      The predicted sentiment.
    • predict

      String predict(String[] tokens)
      Conducts a sentiment prediction for the specifed sentence.
      Parameters:
      tokens - The text to be analysed for its sentiment.
      Returns:
      The predicted sentiment.