An Azure service that integrates speech processing into apps and services.
@Sharvani, Popuri Sai
I have done some research about this issue. Assigning models, datasets. etc. to a project is optional. Customer is welcome to use Speech-to-Text REST API to completely automate the training process. This is API Reference https://centralus.dev.cognitive.microsoft.com/docs/services/speech-to-text-api-v3-0/operations/CopyModelToSubscription
If you would like to keep association with a Speech Studio project,. this is possible also. (I have confirmed that there is a backlog to update Swaggger doc on this).
This is how it's done:
an example of the request body for Create Dataset request (https://centralus.dev.cognitive.microsoft.com/docs/services/speech-to-text-api-v3-0/operations/CreateDataset) with the project reference.
{
"kind": "Acoustic",
"contentUrl": "https://contoso.com/location. May point to any publicly readable location: Azure blob, AWS S3, etc.",
"locale": "en-US",
"displayName": "My speech dataset name",
"description": "My speech dataset description",
"project": {
"self": "https://westeurope.api.cognitive.microsoft.com/speechtotext/v3.0/projects/c1c643ae-7da5-4e38-9853-e*********2"
}
Hope this helps.
Regards,
Yutong
}