Skip to content

Commit 5672ae6

Browse files
authored
Merge pull request #87 from snipsco/release/0.60.1
Release 0.60.1
2 parents 49402d8 + e10c021 commit 5672ae6

File tree

62 files changed

+13698
-656
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+13698
-656
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [0.60.1] - 2018-10-09
5+
### Added
6+
- Entity injection API for both custom entities and builtin gazetteer entities
7+
8+
### Fixed
9+
- Swift wrapper
10+
- `DeterministicIntentParser` now relies on the custom entity parser
11+
412
## [0.60.0] - 2018-10-05
513
### Added
614
- Support for 3 new builtin entities in French: `snips/musicAlbum`, `snips/musicArtist` and `snips/musicTrack`
@@ -108,6 +116,7 @@ being statically hardcoded, reducing the binary size by 31Mb.
108116
- Improve support for japanese
109117
- Rename python package to `snips_nlu_rust`
110118

119+
[0.60.1]: https://github.com/snipsco/snips-nlu-rs/compare/0.60.0...0.60.1
111120
[0.60.0]: https://github.com/snipsco/snips-nlu-rs/compare/0.59.0...0.60.0
112121
[0.59.0]: https://github.com/snipsco/snips-nlu-rs/compare/0.58.3...0.59.0
113122
[0.58.3]: https://github.com/snipsco/snips-nlu-rs/compare/0.58.2...0.58.3

data/tests/models/nlu_engine.zip

2.2 KB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"language": "en",
33
"gazetteer_parser": null
4-
}
4+
}
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
22
"language": "en",
3-
"parser_directory": "parser"
4-
}
3+
"parser_directory": "parser",
4+
"parser_usage": 2
5+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version":"0.5.0-SNAPSHOT","parser_filename":"parser","threshold":1.0,"stop_words":[],"edge_cases":[]}
1+
{"version":"0.5.0","parser_filename":"parser","threshold":1.0,"stop_words":[],"edge_cases":[]}
Binary file not shown.

data/tests/models/nlu_engine/deterministic_intent_parser/intent_parser.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@
2222
"language_code": "en",
2323
"patterns": {
2424
"MakeCoffee": [
25-
"^\\s*Make\\s*me\\s*(?P<group_0>%SNIPSNUMBER%)\\s*cups\\s*of\\s*coffee\\s*$",
2625
"^\\s*Brew\\s*(?P<group_3>%SNIPSNUMBER%)\\s*coffee\\s*cups\\s*$",
27-
"^\\s*give\\s*me\\s*(?P<group_4>%SNIPSNUMBER%)\\s*coffees\\s*please\\s*$",
2826
"^\\s*make\\s*me\\s*(?P<group_2>%SNIPSNUMBER%)\\s*cups\\s*of\\s*coffee\\s*$",
29-
"^\\s*Brew\\s*me\\s*(?P<group_1>%SNIPSNUMBER%)\\s*coffee\\s*cups\\s*$",
30-
"^\\s*Make\\s*me\\s*(?P<group_5>%SNIPSNUMBER%)\\s*cup\\s*of\\s*coffee\\s*$"
27+
"^\\s*Make\\s*me\\s*(?P<group_5>%SNIPSNUMBER%)\\s*cup\\s*of\\s*coffee\\s*$",
28+
"^\\s*give\\s*me\\s*(?P<group_4>%SNIPSNUMBER%)\\s*coffees\\s*please\\s*$",
29+
"^\\s*Make\\s*me\\s*(?P<group_0>%SNIPSNUMBER%)\\s*cups\\s*of\\s*coffee\\s*$",
30+
"^\\s*Brew\\s*me\\s*(?P<group_1>%SNIPSNUMBER%)\\s*coffee\\s*cups\\s*$"
3131
],
3232
"MakeTea": [
33-
"^\\s*Make\\s*(?P<group_6>%SNIPSNUMBER%)\\s*(?P<group_7>boiling|iced|cold|hot)\\s*teas\\s*$",
34-
"^\\s*Please\\s*can\\s*I\\s*get\\s*(?P<group_8>%SNIPSNUMBER%)\\s*(?P<group_9>boiling|iced|cold|hot)\\s*teas\\s*\\?\\s*$",
35-
"^\\s*Prepare\\s*(?P<group_10>%SNIPSNUMBER%)\\s*cups\\s*of\\s*(?P<group_11>boiling|iced|cold|hot)\\s*tea\\s*$",
33+
"^\\s*Please\\s*can\\s*I\\s*get\\s*(?P<group_8>%SNIPSNUMBER%)\\s*(?P<group_9>%TEMPERATURE%)\\s*teas\\s*\\?\\s*$",
34+
"^\\s*Prepare\\s*(?P<group_10>%SNIPSNUMBER%)\\s*cups\\s*of\\s*(?P<group_11>%TEMPERATURE%)\\s*tea\\s*$",
35+
"^\\s*Make\\s*(?P<group_6>%SNIPSNUMBER%)\\s*(?P<group_7>%TEMPERATURE%)\\s*teas\\s*$",
3636
"^\\s*Make\\s*me\\s*(?P<group_12>%SNIPSNUMBER%)\\s*tea\\s*$"
3737
]
3838
},
@@ -45,4 +45,4 @@
4545
"number_of_cups": "snips/number"
4646
}
4747
}
48-
}
48+
}

0 commit comments

Comments
 (0)