actions on google text-to-speech errors for numbers
I am making an Action for the Assistant. Part of the functionality is setting the channel of my tv. Example, I can say "favorite 1" to set my tv to favorite channel number 1.
My problem is that when I utter "favorite 2", the text-to-speech of Google Assistant seems to convert this input to "favorite to". This is also true for other numbers, ie. "3" is converted as "tree"; "4" is converted to "for"; "8" is converted to "ate"
How do I go about this? Should I make an entity for numbers and add those erroneous conversions as synonyms? Is there a more appropriate solution for this?
dialogflow actions-on-google
add a comment |
I am making an Action for the Assistant. Part of the functionality is setting the channel of my tv. Example, I can say "favorite 1" to set my tv to favorite channel number 1.
My problem is that when I utter "favorite 2", the text-to-speech of Google Assistant seems to convert this input to "favorite to". This is also true for other numbers, ie. "3" is converted as "tree"; "4" is converted to "for"; "8" is converted to "ate"
How do I go about this? Should I make an entity for numbers and add those erroneous conversions as synonyms? Is there a more appropriate solution for this?
dialogflow actions-on-google
You should make a custom entity and make it as required while training your intent so that you can parse the favourite channel number.
– sai.raj
Nov 23 '18 at 7:33
Thanks sai! This is what I have done. I made an entity named @misheard-numbers. And so far it is working. But is there any more decent way of accomplishing this?
– Timothy Paul Pron
Nov 25 '18 at 9:48
add a comment |
I am making an Action for the Assistant. Part of the functionality is setting the channel of my tv. Example, I can say "favorite 1" to set my tv to favorite channel number 1.
My problem is that when I utter "favorite 2", the text-to-speech of Google Assistant seems to convert this input to "favorite to". This is also true for other numbers, ie. "3" is converted as "tree"; "4" is converted to "for"; "8" is converted to "ate"
How do I go about this? Should I make an entity for numbers and add those erroneous conversions as synonyms? Is there a more appropriate solution for this?
dialogflow actions-on-google
I am making an Action for the Assistant. Part of the functionality is setting the channel of my tv. Example, I can say "favorite 1" to set my tv to favorite channel number 1.
My problem is that when I utter "favorite 2", the text-to-speech of Google Assistant seems to convert this input to "favorite to". This is also true for other numbers, ie. "3" is converted as "tree"; "4" is converted to "for"; "8" is converted to "ate"
How do I go about this? Should I make an entity for numbers and add those erroneous conversions as synonyms? Is there a more appropriate solution for this?
dialogflow actions-on-google
dialogflow actions-on-google
asked Nov 23 '18 at 4:08
Timothy Paul PronTimothy Paul Pron
134
134
You should make a custom entity and make it as required while training your intent so that you can parse the favourite channel number.
– sai.raj
Nov 23 '18 at 7:33
Thanks sai! This is what I have done. I made an entity named @misheard-numbers. And so far it is working. But is there any more decent way of accomplishing this?
– Timothy Paul Pron
Nov 25 '18 at 9:48
add a comment |
You should make a custom entity and make it as required while training your intent so that you can parse the favourite channel number.
– sai.raj
Nov 23 '18 at 7:33
Thanks sai! This is what I have done. I made an entity named @misheard-numbers. And so far it is working. But is there any more decent way of accomplishing this?
– Timothy Paul Pron
Nov 25 '18 at 9:48
You should make a custom entity and make it as required while training your intent so that you can parse the favourite channel number.
– sai.raj
Nov 23 '18 at 7:33
You should make a custom entity and make it as required while training your intent so that you can parse the favourite channel number.
– sai.raj
Nov 23 '18 at 7:33
Thanks sai! This is what I have done. I made an entity named @misheard-numbers. And so far it is working. But is there any more decent way of accomplishing this?
– Timothy Paul Pron
Nov 25 '18 at 9:48
Thanks sai! This is what I have done. I made an entity named @misheard-numbers. And so far it is working. But is there any more decent way of accomplishing this?
– Timothy Paul Pron
Nov 25 '18 at 9:48
add a comment |
1 Answer
1
active
oldest
votes
try defining the channel number as a parameter and use "@sys.number" as entity type for this parameter. then in your training phrases you can use this parameter
Thanks, Reza but that is the exact setting that my agent is in. And in that, exact configuration is where I am observing the wrong speech-to-text translation of numbers 2,3,4 and 8.
– Timothy Paul Pron
Nov 25 '18 at 9:46
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53440545%2factions-on-google-text-to-speech-errors-for-numbers%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
try defining the channel number as a parameter and use "@sys.number" as entity type for this parameter. then in your training phrases you can use this parameter
Thanks, Reza but that is the exact setting that my agent is in. And in that, exact configuration is where I am observing the wrong speech-to-text translation of numbers 2,3,4 and 8.
– Timothy Paul Pron
Nov 25 '18 at 9:46
add a comment |
try defining the channel number as a parameter and use "@sys.number" as entity type for this parameter. then in your training phrases you can use this parameter
Thanks, Reza but that is the exact setting that my agent is in. And in that, exact configuration is where I am observing the wrong speech-to-text translation of numbers 2,3,4 and 8.
– Timothy Paul Pron
Nov 25 '18 at 9:46
add a comment |
try defining the channel number as a parameter and use "@sys.number" as entity type for this parameter. then in your training phrases you can use this parameter
try defining the channel number as a parameter and use "@sys.number" as entity type for this parameter. then in your training phrases you can use this parameter
answered Nov 23 '18 at 17:15
Reza NasiriReza Nasiri
6211116
6211116
Thanks, Reza but that is the exact setting that my agent is in. And in that, exact configuration is where I am observing the wrong speech-to-text translation of numbers 2,3,4 and 8.
– Timothy Paul Pron
Nov 25 '18 at 9:46
add a comment |
Thanks, Reza but that is the exact setting that my agent is in. And in that, exact configuration is where I am observing the wrong speech-to-text translation of numbers 2,3,4 and 8.
– Timothy Paul Pron
Nov 25 '18 at 9:46
Thanks, Reza but that is the exact setting that my agent is in. And in that, exact configuration is where I am observing the wrong speech-to-text translation of numbers 2,3,4 and 8.
– Timothy Paul Pron
Nov 25 '18 at 9:46
Thanks, Reza but that is the exact setting that my agent is in. And in that, exact configuration is where I am observing the wrong speech-to-text translation of numbers 2,3,4 and 8.
– Timothy Paul Pron
Nov 25 '18 at 9:46
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53440545%2factions-on-google-text-to-speech-errors-for-numbers%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You should make a custom entity and make it as required while training your intent so that you can parse the favourite channel number.
– sai.raj
Nov 23 '18 at 7:33
Thanks sai! This is what I have done. I made an entity named @misheard-numbers. And so far it is working. But is there any more decent way of accomplishing this?
– Timothy Paul Pron
Nov 25 '18 at 9:48