-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7498 from RasaHQ/continuous_training
Incremental Training inside Rasa Open Source
- Loading branch information
Showing
49 changed files
with
2,958 additions
and
398 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Incremental training of models in a pipeline is now supported. | ||
|
||
If you have added new NLU training examples or new stories/rules for | ||
dialogue manager, you don't need to train the pipeline from scratch. | ||
Instead, you can initialize the pipeline with a previously trained model | ||
and continue finetuning the model on the complete dataset consisting of | ||
new training examples. To do so, use `rasa train --finetune`. For more | ||
detailed explanation of the command, check out the docs on [incremental | ||
training](./command-line-interface.mdx#incremental-training). | ||
|
||
Added a configuration parameter `additional_vocabulary_size` to | ||
[`CountVectorsFeaturizer`](./components.mdx#countvectorsfeaturizer) | ||
and `number_additional_patterns` to [`RegexFeaturizer`](./components.mdx#regexfeaturizer). | ||
These parameters are useful to configure when using incremental training for your pipelines. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Interfaces for `Policy.__init__` and `Policy.load` have changed. | ||
See [migration guide](./migration-guide.mdx#rasa-21-to-rasa-22) for details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.