Skip to content
This repository was archived by the owner on Apr 20, 2024. It is now read-only.
Merged
Changes from all commits
Commits
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
11 changes: 8 additions & 3 deletions samples/snippets/speech_model_adaptation_beta.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def transcribe_with_model_adaptation(
parent = f"projects/{project_id}/locations/{location}"

# Create the custom class resource
custom_class_response = adaptation_client.create_custom_class(
adaptation_client.create_custom_class(
{
"parent": parent,
"custom_class_id": custom_class_id,
Expand All @@ -47,15 +47,19 @@ def transcribe_with_model_adaptation(
},
}
)
custom_class_name = custom_class_response.name
custom_class_name = (
f"projects/{project_id}/locations/{location}/customClasses/{custom_class_id}"
)
# Create the phrase set resource
phrase_set_response = adaptation_client.create_phrase_set(
{
"parent": parent,
"phrase_set_id": phrase_set_id,
"phrase_set": {
"boost": 10,
"phrases": [{"value": f"Visit restaurants like ${custom_class_name}"}],
"phrases": [
{"value": f"Visit restaurants like ${{{custom_class_name}}}"}
],
},
}
)
Expand Down Expand Up @@ -88,4 +92,5 @@ def transcribe_with_model_adaptation(
print("Transcript: {}".format(result.alternatives[0].transcript))

# [END speech_transcribe_with_model_adaptation]

return response.results[0].alternatives[0].transcript