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
- Host: GitHub
- URL: https://github.com/horizon733/neuralspace-entityextractor-sample
- Owner: Horizon733
- License: mit
- Created: 2022-03-22T04:15:27.000Z (over 4 years ago)
- Default Branch: rasa-2.x
- Last Pushed: 2022-03-24T11:43:17.000Z (about 4 years ago)
- Last Synced: 2025-01-13T23:22:45.217Z (over 1 year ago)
- Topics: artificial-intelligence, entity-extraction, machine-learning, python, python3, rasa, rasa-chatbot
- Language: Python
- Homepage:
- Size: 12.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Entity Extractor Rasa custom component - NeuralSpace
## Instructions:
- Get your Access Token from NeuralSpace platform
- 
### 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
-
- Give a 🌟 to this repo