You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@mreinstein There seems to be a bug in the server generation of utterance permutations. For example the following:
"utterances": ['{to|} set temperature to {64-80|number}']
generates utterances as follows:
setTempsIntent to set temperature to {sixty four|number}
setTempsIntent set temperature to {sixty five|number}
setTempsIntent to set temperature to {sixty six|number}
setTempsIntent set temperature to {sixty seven|number}
...
but what I believe should be generated is:
setTempsIntent to set temperature to {sixty four|number}
setTempsIntent set temperature to {sixty four|number}
setTempsIntent to set temperature to {sixty five|number}
setTempsIntent set temperature to {sixty five|number}
setTempsIntent to set temperature to {sixty six|number}
setTempsIntent set temperature to {sixty six|number}
setTempsIntent to set temperature to {sixty seven|number}
setTempsIntent set temperature to {sixty seven|number}
...
The text was updated successfully, but these errors were encountered:
@mreinstein OK I've confirmed that the issue lies with not generating an exhaustive set of utterances not with the lib itself. I sent a PR with my test case which now passes. Maybe a useful addition maybe not.
@mreinstein There seems to be a bug in the server generation of utterance permutations. For example the following:
"utterances": ['{to|} set temperature to {64-80|number}']
generates utterances as follows:
but what I believe should be generated is:
The text was updated successfully, but these errors were encountered: