-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMakefile
40 lines (28 loc) · 929 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
help:
@echo " train"
@echo " Train a stacked model using Rasa Core and NLU."
@echo " run-core"
@echo " Spin up the core server on the command line"
@echo " run-actions"
@echo " Spin up the action server"
@echo " run"
@echo " Spin up both core and the action server"
@echo " visualize"
@echo " Show your stories as a graph"
run:
make run-actions&
make run-core
run-core:
rasa run --verbose --endpoints endpoints.yml --credentials credentials.yml --cors "*"
run-core-debug:
rasa run --verbose --endpoints endpoints.yml --credentials credentials.yml --debug --cors "*"
run-actions:
rasa run actions
train-nlu:
rasa train nlu --config config.yml -u data/nlu_data/
train-core:
rasa train core -d domain.yml -s data/stories.md --out models -c config.yml
train-interactive:
rasa interactive --verbose --endpoints endpoints.yml
visualize:
rasa visualize