Skip to content

Commit

Permalink
merge in new structure
Browse files Browse the repository at this point in the history
  • Loading branch information
indam23 committed Aug 12, 2020
2 parents 4221c53 + 100221f commit d2ea703
Show file tree
Hide file tree
Showing 154 changed files with 6,718 additions and 8,348 deletions.
5 changes: 5 additions & 0 deletions .typo-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ excluded_words:
- asyncio
- bot
- bot's
- cdd
- CDD
- cmdline
- conveRT
- ConveRTFeaturizer
Expand All @@ -86,6 +88,7 @@ excluded_words:
- featurizes
- featurizing
- forni
- initializer
- instaclient
- jwt
- jwt's
Expand All @@ -103,6 +106,7 @@ excluded_words:
- miniconda
- mitie
- mitie's
- mitienlp
- dataset
- mongod
- mrkdown
Expand Down Expand Up @@ -136,6 +140,7 @@ excluded_words:
- scipy
- sklearn
- spacy
- spacynlp
- ish
- spaCy
- spaCy's
Expand Down
127 changes: 63 additions & 64 deletions CHANGELOG.mdx

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions changelog/5510.feature.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
You can now define what kind of features should be used by what component
(see [Choosing a Pipeline](./nlu/choosing-a-pipeline)).
(see [Choosing a Pipeline](./tuning-your-model.mdx)).

You can set an alias via the option `alias` for every featurizer in your pipeline.
The `alias` can be anything, by default it is set to the full featurizer class name.
You can then specify, for example, on the
[DIETClassifier](./nlu/components#diet-classifier) what features from which
[DIETClassifier](./components/intent-classifiers.mdx#diet-classifier) what features from which
featurizers should be used.
If you don't set the option `featurizers` all available features will be used.
This is also the default behavior.
Check [Components](./nlu/components) to see what components have the option
Check components to see what components have the option
`featurizers` available.

Here is an example pipeline that shows the new option.
Expand Down
2 changes: 1 addition & 1 deletion changelog/5737.bugfix.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Pinned the library version for the Azure
[Cloud Storage](./user-guide/cloud-storage) to 2.1.0 since the
[Cloud Storage](./model-storage.mdx#server-fetch-from-remote-storage) to 2.1.0 since the
persistor is currently not compatible with later versions of the azure-storage-blob
library.
2 changes: 1 addition & 1 deletion changelog/5805.improvement.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
The debug-level logs when instantiating an
[SQLTrackerStore](./api/tracker-stores#sql-tracker-store)
[SQLTrackerStore](./tracker-stores.mdx#sql-tracker-store)
no longer show the password in plain text. Now, the URL is displayed with the password
hidden, e.g. `postgresql://username:***@localhost:5432`.
2 changes: 1 addition & 1 deletion changelog/5957.feature.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Add new entity extractor `RegexEntityExtractor`. The entity extractor extracts entities using the lookup tables
and regexes defined in the training data. For more information see [RegexEntityExtractor](./nlu/components#regexentityextractor).
and regexes defined in the training data. For more information see [RegexEntityExtractor](./components/entity-extractors.mdx#regexentityextractor).
2 changes: 1 addition & 1 deletion changelog/6065.feature.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Add support for [rules](./core/rules.mdx) data and [forms](./core/forms.mdx) in YAML
Add support for [rules](./rules.mdx) data and [forms](./forms.mdx) in YAML
format.
2 changes: 1 addition & 1 deletion changelog/6066.feature.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
The NLU `interpreter` is now passed to the [Policies](./core/policies) during training and
The NLU `interpreter` is now passed to the [Policies](./policies.mdx) during training and
inference time. Note that this requires an additional parameter `interpreter` in the
method `predict_action_probabilities` of the `Policy` interface. In case a
custom `Policy` implementation doesn't provide this parameter Rasa Open Source
Expand Down
16 changes: 8 additions & 8 deletions changelog/6088.feature.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Added the new dialogue policy RulePolicy which will replace the old “rule-like”
policies [Mapping Policy](./core/policies#mapping-policy),
[Fallback Policy](./core/policies#fallback-policy),
[Two-Stage Fallback Policy](./core/policies#two-stage-fallback-policy), and
[Form Policy](./core/policies#form-policy). These policies are now
deprecated and will be removed in the future. Please see the
[rules documentation](./core/rules.mdx) for more information.
policies [Mapping Policy](./policies.mdx#mapping-policy),
[Fallback Policy](./policies.mdx#fallback-policy),
[Two-Stage Fallback Policy](./policies.mdx#two-stage-fallback-policy), and
[Form Policy](./policies.mdx#form-policy). These policies are now
deprecated and will be removed in the future. Please see the
[rules documentation](./rules.mdx) for more information.

Added new NLU component [FallbackClassifier](./nlu/components.mdx#fallback-classifier)
which predicts an intent `nlu_fallback` in case the confidence was below a given
Added new NLU component [FallbackClassifier](./components/intent-classifiers.mdx#fallbackclassifier)
which predicts an intent `nlu_fallback` in case the confidence was below a given
threshold. The intent `nlu_fallback` may
then be used to write stories / rules to handle the fallback in case of low NLU
confidence.
Expand Down
2 changes: 1 addition & 1 deletion changelog/6123.improvement.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Add support for proxy use in [slack](./user-guide/connectors/slack.mdx) input channel.
Add support for proxy use in [slack](./connectors/slack.mdx) input channel.
3 changes: 1 addition & 2 deletions data/test_config/config_empty_after_dumping.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,4 @@ policies:
# - name: TEDPolicy
# max_history: 5
# epochs: 100
# - name: MappingPolicy
# - name: FormPolicy
# - name: RulePolicy
3 changes: 1 addition & 2 deletions data/test_config/config_with_comments_after_dumping.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ policies: # even here
# - name: TEDPolicy
# max_history: 5
# epochs: 100
# - name: MappingPolicy
# - name: FormPolicy
# - name: RulePolicy

# comments everywhere
File renamed without changes.
7 changes: 7 additions & 0 deletions docs/docs/actions.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: actions
sidebar_label: Overview
title: Actions
---

<!-- TODO: add an overview of the different types of actions -->
8 changes: 0 additions & 8 deletions docs/docs/api/agent.mdx

This file was deleted.

119 changes: 0 additions & 119 deletions docs/docs/api/core-featurization.mdx

This file was deleted.

Loading

0 comments on commit d2ea703

Please sign in to comment.