Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge 2.3.x in main #8064

Merged
merged 43 commits into from
Mar 3, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
5106076
restrict cosine and inner for ted, add warnings to remove cosine if u…
dakshvar22 Feb 22, 2021
0889962
add changelog and fix migration guide
dakshvar22 Feb 22, 2021
18817e7
review
dakshvar22 Feb 22, 2021
3533785
reverted back auto-config
dakshvar22 Feb 23, 2021
67113b4
completely remove cosine as model confidence
dakshvar22 Feb 22, 2021
1b6fd56
reverted back auto-config
dakshvar22 Feb 23, 2021
5af02ae
use linear normalization for all model confidences
dakshvar22 Feb 23, 2021
c184d91
remove ranking length
dakshvar22 Feb 23, 2021
af70d22
normalized version of inner confidences
dakshvar22 Feb 24, 2021
fe8b005
add docs
dakshvar22 Feb 24, 2021
4310419
Apply suggestions from code review
dakshvar22 Feb 24, 2021
f38b16c
add dimension to reduce sum
dakshvar22 Feb 24, 2021
c2a50af
fix tests
dakshvar22 Feb 24, 2021
0d79b71
Merge branch '2.3.x' into restrict_model_confidences
dakshvar22 Feb 24, 2021
85ee43b
copy edits
dakshvar22 Feb 24, 2021
e9bfffc
change inner to linear_norm_inner and add some tests.'
dakshvar22 Feb 25, 2021
ed5a6a6
rename to linear_norm, add docs
dakshvar22 Feb 25, 2021
5a0d0e2
edit docs in components
dakshvar22 Feb 25, 2021
5f980ad
formatting
dakshvar22 Feb 25, 2021
8e17ed7
Update changelog/8014.bugfix.md
dakshvar22 Feb 25, 2021
60b8416
Merge branch '2.3.x' into restrict_model_confidences
dakshvar22 Feb 25, 2021
23edadf
bump version in docs
dakshvar22 Feb 25, 2021
37bd3d1
remove redundant test
dakshvar22 Feb 25, 2021
0ce7d52
Update GPU cluster
Feb 23, 2021
deae31e
Update zone
Feb 23, 2021
0e6687d
Update resource request
Feb 23, 2021
077b1c8
Add a missing secret
Feb 23, 2021
6d161a5
Apply suggestions from code review
dakshvar22 Feb 26, 2021
9f524e2
Update docs/docs/migration-guide.mdx
dakshvar22 Feb 26, 2021
a3621e4
more docs comments
dakshvar22 Feb 26, 2021
eecdb50
add warning
dakshvar22 Feb 26, 2021
85e8d36
final edits
dakshvar22 Feb 26, 2021
db50a37
format lists
dakshvar22 Feb 26, 2021
30da9ec
remove 'also' and fix typo CI'
dakshvar22 Feb 26, 2021
0df088c
Merge pull request #8014 from RasaHQ/restrict_model_confidences
dakshvar22 Feb 26, 2021
f51bba2
prepared release of version 2.3.4
dakshvar22 Feb 26, 2021
af140e5
Merge pull request #8062 from RasaHQ/prepare-release-2.3.4
dakshvar22 Feb 26, 2021
c14f4b8
Merge branch '2.3.x' into merge_2.3.x
dakshvar22 Feb 26, 2021
52b22f5
Update links to Sanic docs in our documentation
alwx Mar 2, 2021
3d3f172
Changelog entry
alwx Mar 2, 2021
535c195
Added 1.10.23 updates to 2.3.X Changelog (#8077)
b-quachtran Mar 2, 2021
590aa31
Merge branch 'main' into merge_2.3.x
m-vdb Mar 3, 2021
609bdd0
Merge branch '2.3.x' into merge_2.3.x
m-vdb Mar 3, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'main' into merge_2.3.x
  • Loading branch information
m-vdb committed Mar 3, 2021
commit 590aa31e95d969aff899f5cbc1e5646768dc591a
1 change: 1 addition & 0 deletions tests/nlu/classifiers/test_diet_classifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,7 @@ async def test_softmax_normalization(
),
],
)
@pytest.mark.trains_model
async def test_inner_linear_normalization(
component_builder: ComponentBuilder,
tmp_path: Path,
Expand Down
1 change: 1 addition & 0 deletions tests/nlu/selectors/test_selectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,7 @@ async def test_process_gives_diagnostic_data(trained_response_selector_bot: Path
"classifier_params, prediction_min, prediction_max, output_length",
[({RANDOM_SEED: 42, EPOCHS: 1, MODEL_CONFIDENCE: "linear_norm"}, 0, 1, 9)],
)
@pytest.mark.trains_model
async def test_cross_entropy_with_linear_norm(
component_builder: ComponentBuilder,
tmp_path: Path,
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.