From dc6e6482cb591236ad955de1de337f506901ed93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Seijas?= Date: Sat, 10 Aug 2019 15:28:15 +0200 Subject: [PATCH] Update README.md --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 0573f93d3..2c65be05a 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,7 @@ The version 3 comes with some important changes, mainly focused on improve perfo - [Installation](#installation) +- [React Native](#react-native) - [Example of use](#example-of-use) - [Log Training Progress](#log-training-progress) - [Benchmarking](docs/benchmarking.md) @@ -101,6 +102,20 @@ If you're looking to use NLP.js in your node application, you can install via NP npm install node-nlp ``` +## React Native + +There is a version of NLP.js that works in React Native, so you can build chatbots that can be trained and executed in the mobile even without internet. You can install it via NPM: + +```bash + npm install node-nlp-rn +``` + +Some Limitations: +- No Chinese +- Japanese stemmer is not the complete one +- No excel import +- No load from file neither save to file, but it still have import form json and export to json. + ## Example of use You can see a great example of use at the folder [`/examples/console-bot`](https://github.com/axa-group/nlp.js/tree/master/examples/console-bot). This example is able to train the bot and save the model to a file, so when the bot is started again, the model is loaded instead of trained again.