Likes - Activity - Hajer - Rasa Community Forum

Hajer

S.

Sentiment analysis graph custom component

Rasa Open Source Jan 4, 2022

Hi @Hajer, from the error message TypeError: 'Message' object is not iterable, it looks like the function sid.polarity_scores_max is expecting text input. The Message object is a container holding different kinds of data on the user message. If you would like to retrieve the text you can get it by …

Custom graph component

Rasa Open Source Dec 21, 2021

see it’s saying action endpoint up and running on http://0.0.0.0:5055 and later debug you not shared, so yes well done at least you have run the code. Now try to your bot using rasa --shell or whatever is your use case. I already told you I have personally not implemented this use case, and me just …

Entity Groups and role

Rasa Open Source Dec 16, 2021

@Hajer This is not possible. A word can just be part of one group. We don’t support multiple groups for one word. Would it be possible for you to create a group that covers both sub groups?

Email classification

Rasa Open Source Dec 16, 2021

How much training data do you have? E.g. how much examples per entity? It often helps just to add a couple of more examples to the training data. Also if you want to extract number of a certain pattern, I recommend to either use duckling or RegexEntityExtractor. That should help you to extract enti…

Custom graph component

Rasa Open Source Dec 16, 2021

@Hajer Hmmm…but try to implement and see the results, coding will be the same?

Introducing entity roles and groups

Rlease Announcements Dec 9, 2020

@Hajer It works for version 1.10 and all newer versions, so also for Rasa 2.x.

Entity extraction regexentityextractor

Rasa Open Source Dec 1, 2020

@Hajer That would be the RegexFeaturizer.

Entity extraction regexentityextractor

Rasa Open Source Dec 1, 2020

No, that is currently not possible. However, this might change in the future. In order for the RegexEntityExtractor to know about what entities exist, you need to add them to your training examples. One example is enough. But due to that DIETClassifier will also be trained on those.

Extracting name entity from text

Rasa Open Source Sep 23, 2020

Personal name recognition is a pain in the ass. Go with spaCy whenever you can. You need to rely on your entity extractor to pick up the right entities. This gets easier for more formal entities like emails (where you can use a regex to support the recognition). For general entity recognition see …