An open API service indexing awesome lists of open source software.

https://github.com/horizon733/neuralspace-entityextractor-sample

Entity extractor component build for Rasa and Neuralspace
https://github.com/horizon733/neuralspace-entityextractor-sample

artificial-intelligence entity-extraction machine-learning python python3 rasa rasa-chatbot

Last synced: over 1 year ago
JSON representation

Entity extractor component build for Rasa and Neuralspace

Awesome Lists containing this project

README

          

Entity Extractor Rasa custom component - NeuralSpace

## Instructions:
- Get your Access Token from NeuralSpace platform
- ![image](https://user-images.githubusercontent.com/57827233/159902159-8394159c-57b5-47a3-8ec0-75a4464190f1.png)

### Rasa 2.x
- Make sure your project is using `2.x` version of `Rasa`.
- Use `rasa-2.x` branch for Entity extractor.
- Add following code in `config.yml`.
```yml
policies:
...
- name: custom_component.NeuralspaceEntityExtractor.NeuralSpaceEntityExtractor
language: "en" # source language of the sentences
dimensions: [ "person", "email", "number" ] # dimensions you want to extract entity
access_token: "your-access-token" # find your access token from NeuralSpace Platform as above mentioned.
...
```

### Rasa 3.x
- Make sure you have migrated/using `3.x` version of `Rasa`.
- Use `rasa-3.x` branch for Entity extractor.
- Add following code in `config.yml`.
```yml
recipe: default.v1
language: en
policies:
...
- name: custom_component.NeuralspaceEntityExtractor.NeuralSpaceEntityExtractor
language: "en" # source language of the sentences
dimensions: [ "person", "email", "number" ] # dimensions you want to extract entity
access_token: "your-access-token" # find your access token from NeuralSpace Platform as above mentioned.
...
```

## Found this helpful?
Support me by


-
yellow-button

- Give a 🌟 to this repo