You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Full Code [Latest release of Rasa NLU and Rasa Core]/README.md
+41-5Lines changed: 41 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,50 @@
1
1
# Weatherbot Tutorial (using the latest release of Rasa NLU and Rasa Core)
2
2
3
3
Rasa NLU and Rasa Core devs are doing an amazing job improving both of these libraries which results in code changes for one method or another. In fact, since I recorded a Wetherbot tutorial,
4
-
there were quite a few changes which were introduced to Rasa NLU and Rasa Core. For this reason I created this directory which will contain Weatherbot code, compatible with the latest
5
-
releases of Rasa NLU and Rasa Core. I will do my best to keep it up-to-date, but if you encounter any issues with using the code, please raise an issue or drop me a message :)
4
+
there were quite a few changes which were introduced to Rasa NLU and Rasa Core. On 30th of August, Rasa v.0.11 was released with a lot of changes under the hood. This repo contains the updated weatherbot code compatible with the latest releases of Rasa Core and Rasa NLU.
6
5
7
-
Latest code update: 15/08/2018
6
+
## How to use this repo
8
7
9
-
Latest compatible Rasa NLU version: 0.13.1
8
+
The code of this repo differs quite significantly from the original video. This is how to use it:
10
9
11
-
Latest compatible Rasa Core version: 0.10.4
10
+
### Training the NLU model
11
+
12
+
Training of the NLU model didn't change much from the way it was shown in the video. To train and test the model run:
13
+
14
+
``` python nlu_model.py ```
15
+
16
+
### Training the Rasa Core model
17
+
18
+
The biggest change in how Rasa Core model works is that custom action 'action_weather' now needs to run on a separate server. That server has to be configured in a 'endpoints.yml' file. This is how to train and run the dialogue management model:
0 commit comments