Skip to content
This repository has been archived by the owner on Aug 22, 2019. It is now read-only.

Commit

Permalink
added commands back in
Browse files Browse the repository at this point in the history
  • Loading branch information
akelad committed Apr 29, 2018
1 parent eadfb02 commit cb5e0aa
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docs/tutorial_basics.rst
Expand Up @@ -131,11 +131,12 @@ Let's run

.. code-block:: bash
make train-nlu
python -m rasa_nlu.train -c nlu_config.yml --data data/nlu_data.md -o models
--fixed_model_name nlu --project current --verbose
to train our NLU model. A new directory ``models/current/nlu`` should have been
created containing the NLU model. Note that ``current`` stands for project name,
since this is specified in the train command in the Makefile.
since this is specified in the train command.

.. note::

Expand Down Expand Up @@ -184,7 +185,7 @@ To train the dialogue model, run:

.. code-block:: bash
make train-core
python -m rasa_core.train -d domain.yml -s data/stories.md -o models/current/dialogue --epochs 200
This will train the dialogue model for ``200`` epochs and store it
into ``models/current/dialogue``. Where ``1`` epoch corresponds to one pass of
Expand All @@ -196,7 +197,7 @@ Here we'll just talk to the bot on the command line:

.. code-block:: bash
make cmdline
python -m rasa_core.run -d models/current/dialogue -u models/current/nlu
And there we have it! A minimal bot containing all the important pieces of
Rasa Core.
Expand Down

0 comments on commit cb5e0aa

Please sign in to comment.