-
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 branch 'master' into switch-to-mypy
- Loading branch information
Showing
111 changed files
with
1,335 additions
and
1,023 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
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 |
---|---|---|
|
@@ -37,6 +37,7 @@ lastmile_ai/learn/plots/ | |
.coverage | ||
.coveralls.yml | ||
.idea/ | ||
.venv/ | ||
*.iml | ||
out/ | ||
.vscode/ | ||
|
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 was deleted.
Oops, something went wrong.
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 @@ | ||
Support for rasa conversation id with special characters on the server side - necessary for some channels (e.g. Viber) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,34 @@ | ||
Removed support for `queue` argument in `PikaEventBroker` (use `queues` instead). | ||
|
||
Domain file: | ||
- Removed support for `templates` key (use `responses` instead). | ||
- Removed support for string `responses` (use dictionaries instead). | ||
|
||
NLU `Component`: | ||
- Removed support for `provides` attribute, it's not needed anymore. | ||
- Removed support for `requires` attribute (use `required_components()` instead). | ||
|
||
Removed `_guess_format()` utils method from `rasa.nlu.training_data.loading` (use `guess_format` instead). | ||
|
||
Removed several config options for [TED Policy](./policies#ted-policy), [DIETClassifier](./components/intent-classifiers#dietclassifier) and [ResponseSelector](./components/selectors#responseselector): | ||
- `hidden_layers_sizes_pre_dial` | ||
- `hidden_layers_sizes_bot` | ||
- `droprate` | ||
- `droprate_a` | ||
- `droprate_b` | ||
- `hidden_layers_sizes_a` | ||
- `hidden_layers_sizes_b` | ||
- `num_transformer_layers` | ||
- `num_heads` | ||
- `dense_dim` | ||
- `embed_dim` | ||
- `num_neg` | ||
- `mu_pos` | ||
- `mu_neg` | ||
- `use_max_sim_neg` | ||
- `C2` | ||
- `C_emb` | ||
- `evaluate_every_num_epochs` | ||
- `evaluate_on_num_examples` | ||
|
||
Please check the documentation for more information. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,3 @@ | ||
language: fr | ||
pipeline: | ||
policies: |
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,27 @@ | ||
language: fr | ||
pipeline: | ||
# # No configuration for the NLU pipeline was provided. The following default pipeline was used to train your model. | ||
# # If you'd like to customize it, uncomment and adjust the pipeline. | ||
# # See https://rasa.com/docs/rasa/nlu/choosing-a-pipeline/ for more information. | ||
# - name: WhitespaceTokenizer | ||
# - name: RegexFeaturizer | ||
# - name: LexicalSyntacticFeaturizer | ||
# - name: CountVectorsFeaturizer | ||
# - name: CountVectorsFeaturizer | ||
# analyzer: char_wb | ||
# min_ngram: 1 | ||
# max_ngram: 4 | ||
# - name: DIETClassifier | ||
# epochs: 100 | ||
# - name: EntitySynonymMapper | ||
# - name: ResponseSelector | ||
# epochs: 100 | ||
policies: | ||
# # No configuration for policies was provided. The following default policies were used to train your model. | ||
# # If you'd like to customize them, uncomment and adjust the policies. | ||
# # See https://rasa.com/docs/rasa/core/policies/ for more information. | ||
# - name: MemoizationPolicy | ||
# - name: TEDPolicy | ||
# max_history: 5 | ||
# epochs: 100 | ||
# - name: RulePolicy |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
intents: | ||
- greet | ||
- default | ||
- goodbye | ||
|
||
slots: | ||
cuisine: | ||
type: text | ||
location: | ||
type: text | ||
|
||
entities: | ||
- name | ||
|
||
responses: | ||
utter_greet: | ||
utter_goodbye: | ||
- text: goodbye :( | ||
utter_default: | ||
- text: default message | ||
|
||
actions: | ||
- utter_default | ||
- utter_greet | ||
- utter_goodbye |
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,26 @@ | ||
intents: | ||
- greet | ||
- default | ||
- goodbye | ||
|
||
slots: | ||
cuisine: | ||
type: text | ||
location: | ||
type: text | ||
|
||
entities: | ||
- name | ||
|
||
responses: | ||
utter_greet: | ||
- super: cool | ||
utter_goodbye: | ||
- text: goodbye :( | ||
utter_default: | ||
- text: default message | ||
|
||
actions: | ||
- utter_default | ||
- utter_greet | ||
- utter_goodbye |
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,26 @@ | ||
intents: | ||
- greet | ||
- default | ||
- goodbye | ||
|
||
slots: | ||
cuisine: | ||
type: text | ||
location: | ||
type: text | ||
|
||
entities: | ||
- name | ||
|
||
responses: | ||
utter_greet: | ||
- hey there! | ||
utter_goodbye: | ||
- goodbye :( | ||
utter_default: | ||
- stuff: default message | ||
|
||
actions: | ||
- utter_default | ||
- utter_greet | ||
- utter_goodbye |
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.