Skip to content

Horizon733/NeuralSpace-EntityExtractor-Sample

Repository files navigation

Entity Extractor Rasa custom component - NeuralSpace

Instructions:

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.
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.
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

Releases

No releases published

Packages

No packages published

Languages