Aspect-Based-Sentiment-Analysis icon indicating copy to clipboard operation
Aspect-Based-Sentiment-Analysis copied to clipboard

💭 Aspect-Based-Sentiment-Analysis: Transformer & Explainable ML (TensorFlow)

Results 53 Aspect-Based-Sentiment-Analysis issues
Sort by recently updated
recently updated
newest added

Hi there 😄 I have been successfully using `aspect_based_sentiment_analysis==2.0.2` on Python` 3.8.5`. However, I am unable to install the newer version 2.0.3 with `pip` because the required Python version is...

I have a performance issue with using your model, this repo provides the only way to using the model, through passing a text and the aspects which need to assess,...

`import numpy as np import aspect_based_sentiment_analysis as absa from aspect_based_sentiment_analysis import alignment from aspect_based_sentiment_analysis import Example text = "I love mascara" aspects = ['mascara'] recognizer = absa.aux_models.BasicPatternRecognizer() nlp = absa.load(pattern_recognizer=recognizer)...

good first issue

# Context and description of issue In [this issue](https://github.com/ScalaConsultants/Aspect-Based-Sentiment-Analysis/issues/60) (part 2) I identified an issue with the `BasicReferenceRecognizer`. Namely, when no reference to an aspect is detected, the auxiliary model...

Hi there! I am a new and frequent user of this great package, which also comes with a few inevitable GitHub issues 😅 When I initialize the pipeline as follows:...

nlp = absa.load() text = ("We are great fans of Slack, but we wish the subscriptions " "were more accessible to small startups.") slack, price = nlp(text, aspects=['slack', 'price']) It...

-------------------------------------------------------------------------- ValueError Traceback (most recent call last) in 1 recognizer = absa.aux_models.BasicPatternRecognizer() ----> 2 nlp = absa.load('absa/classifier-rest-0.2',pattern_recognizer=recognizer) 3 text=('We are great fans of Slack, but we wish the subscriptions') 4...

help wanted

Hi, Firstly, just want to say what a wonderful resource this is! I have several questions about the BasicPatternRecognizer: 1. References - Of the references you have provided on how...

research

It seems like the library hasn't been updated for the latest version of Tensorflow 2.4.0-rc0. Tensorflow 2.4.0-rc0 is the only version available on Apple silicon and it's working perfectly. But...

Hi there! When I try to follow the pipeline steps laid out in the README *exactly*, I receive the following error at the preprocessing stage: ``` AttributeError: 'spacy.tokens.span.Span' object has...