We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
contextData won't be save I try out the Example of NER, save the hero-data in an other files. It works by nlp.addCorpus() and nlp.train().
But when I call nlp.save() and nlp.load(), I find out that the contextData in file "heros.json" won't be save in model.nlp
{ "name": "Corpus test hero", "locale": "en-US", "contextData": "./src/data/base/heros.json", "data": [ { "intent": "hero.realname", "utterances": [ "what is the real name of @hero" ], "answers": [ { "opts": "entities.hero !== undefined", "answer": "The real name of {{ hero }} is {{ _data[entities.hero.option].realName }}" }, { "opts": "entities.hero === undefined", "answer": "Sorry, I don't know the real name of {{ hero }}." } ] }, { "intent": "hero.city", "utterances": [ "where @hero lives?", "what's the city of @hero?" ], "answers": [ "{{ hero }} lives at {{ _data[entities.hero.option].city }}" ] } ], "entities": { "hero": { "options": { "spiderman": ["spiderman", "spider-man"], "ironman": ["ironman", "iron-man"], "thor": ["thor"] } } } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
contextData won't be save
I try out the Example of NER, save the hero-data in an other files. It works by nlp.addCorpus() and nlp.train().
But when I call nlp.save() and nlp.load(), I find out that the contextData in file "heros.json" won't be save in model.nlp
The text was updated successfully, but these errors were encountered: