use of com.ibm.watson.text_to_speech.v1.model.Words in project java-sdk by watson-developer-cloud.
the class SpeechToTextIT method testGetWordsThreeTypeSort.
/**
* Test list words with type all and count sort.
*/
@Test
@Ignore
public void testGetWordsThreeTypeSort() {
ListWordsOptions listOptions = new ListWordsOptions.Builder().customizationId(customizationId).wordType(ListWordsOptions.WordType.ALL).sort(ListWordsOptions.Sort.COUNT).build();
Words result = service.listWords(listOptions).execute().getResult();
assertNotNull(result);
assertTrue(!result.getWords().isEmpty());
}
use of com.ibm.watson.text_to_speech.v1.model.Words in project java-sdk by watson-developer-cloud.
the class SpeechToTextIT method testCreateLanguageModel.
/**
* Test create language model.
*
* <p>Takes a long time to the point of timing out on Travis sometimes, so we'll just run locally.
*
* @throws InterruptedException the interrupted exception
* @throws FileNotFoundException the file not found exception
*/
@Test
@Ignore
public void testCreateLanguageModel() throws InterruptedException, FileNotFoundException {
CreateLanguageModelOptions createOptions = new CreateLanguageModelOptions.Builder().name("java-sdk-temporary").baseModelName(EN_BROADBAND16K).description("Temporary custom model for testing the Java SDK").build();
LanguageModel myModel = service.createLanguageModel(createOptions).execute().getResult();
String id = myModel.getCustomizationId();
try {
// Add a corpus file to the model
AddCorpusOptions addOptions = new AddCorpusOptions.Builder().customizationId(id).corpusName("corpus-1").corpusFile(new File(String.format(SPEECH_RESOURCE, "corpus1.txt"))).allowOverwrite(false).build();
service.addCorpus(addOptions).execute().getResult();
// Get corpus status
GetCorpusOptions getOptions = new GetCorpusOptions.Builder().customizationId(id).corpusName("corpus-1").build();
for (int x = 0; x < 30 && !service.getCorpus(getOptions).execute().getResult().getStatus().equals(Corpus.Status.ANALYZED); x++) {
Thread.sleep(5000);
}
assertTrue(service.getCorpus(getOptions).execute().getResult().getStatus().equals(Corpus.Status.ANALYZED));
// Add the corpus file to the model again and allow overwrite
AddCorpusOptions addOptionsWithOverwrite = new AddCorpusOptions.Builder().customizationId(id).corpusName("corpus-1").corpusFile(new File(String.format(SPEECH_RESOURCE, "corpus1.txt"))).allowOverwrite(true).build();
service.addCorpus(addOptionsWithOverwrite).execute().getResult();
// Get corpus status
for (int x = 0; x < 30 && !service.getCorpus(getOptions).execute().getResult().getStatus().equals(Corpus.Status.ANALYZED); x++) {
Thread.sleep(5000);
}
assertTrue(service.getCorpus(getOptions).execute().getResult().getStatus().equals(Corpus.Status.ANALYZED));
// Get corpora
ListCorporaOptions listCorporaOptions = new ListCorporaOptions.Builder().customizationId(id).build();
Corpora corpora = service.listCorpora(listCorporaOptions).execute().getResult();
assertNotNull(corpora);
assertTrue(corpora.getCorpora().size() == 1);
// Now add some user words to the custom model
service.addWord(new AddWordOptions.Builder().customizationId(id).wordName("IEEE").word("IEEE").displayAs("IEEE").addSoundsLike("I. triple E.").build()).execute().getResult();
service.addWord(new AddWordOptions.Builder().customizationId(id).wordName("hhonors").word("hhonors").displayAs("IEEE").addSoundsLike("H. honors").addSoundsLike("Hilton honors").build()).execute().getResult();
service.addWord(new AddWordOptions.Builder().customizationId(id).wordName("aaa").word("aaa").displayAs("aaa").addSoundsLike("aaa").addSoundsLike("bbb").build()).execute().getResult();
service.addWord(new AddWordOptions.Builder().customizationId(id).wordName("bbb").word("bbb").addSoundsLike("aaa").addSoundsLike("bbb").build()).execute().getResult();
service.addWord(new AddWordOptions.Builder().customizationId(id).wordName("ccc").word("ccc").displayAs("ccc").build()).execute().getResult();
service.addWord(new AddWordOptions.Builder().customizationId(id).wordName("ddd").word("ddd").build()).execute().getResult();
service.addWord(new AddWordOptions.Builder().customizationId(id).wordName("eee").word("eee").build()).execute().getResult();
// Display all words in the words resource (coming from OOVs from the corpus add
// and the new
// words just added)
ListWordsOptions listWordsOptions = new ListWordsOptions.Builder().customizationId(id).wordType(ListWordsOptions.WordType.ALL).build();
Words words = service.listWords(listWordsOptions).execute().getResult();
assertNotNull(words);
} finally {
DeleteLanguageModelOptions deleteOptions = new DeleteLanguageModelOptions.Builder().customizationId(id).build();
service.deleteLanguageModel(deleteOptions).execute();
}
}
use of com.ibm.watson.text_to_speech.v1.model.Words in project java-sdk by watson-developer-cloud.
the class SpeechToTextTest method testListWordsWOptions.
// Test the listWords operation with a valid options model parameter
@Test
public void testListWordsWOptions() throws Throwable {
// Register a mock response
String mockResponseBody = "{\"words\": [{\"word\": \"word\", \"sounds_like\": [\"soundsLike\"], \"display_as\": \"displayAs\", \"count\": 5, \"source\": [\"source\"], \"error\": [{\"element\": \"element\"}]}]}";
String listWordsPath = "/v1/customizations/testString/words";
server.enqueue(new MockResponse().setHeader("Content-type", "application/json").setResponseCode(200).setBody(mockResponseBody));
// Construct an instance of the ListWordsOptions model
ListWordsOptions listWordsOptionsModel = new ListWordsOptions.Builder().customizationId("testString").wordType("all").sort("alphabetical").build();
// Invoke listWords() with a valid options model and verify the result
Response<Words> response = speechToTextService.listWords(listWordsOptionsModel).execute();
assertNotNull(response);
Words responseObj = response.getResult();
assertNotNull(responseObj);
// Verify the contents of the request sent to the mock server
RecordedRequest request = server.takeRequest();
assertNotNull(request);
assertEquals(request.getMethod(), "GET");
// Verify request path
String parsedPath = TestUtilities.parseReqPath(request);
assertEquals(parsedPath, listWordsPath);
// Verify query params
Map<String, String> query = TestUtilities.parseQueryString(request);
assertNotNull(query);
assertEquals(query.get("word_type"), "all");
assertEquals(query.get("sort"), "alphabetical");
}
use of com.ibm.watson.text_to_speech.v1.model.Words in project java-sdk by watson-developer-cloud.
the class TextToSpeechWebSocketListener method onMessage.
/*
* (non-Javadoc)
* @see okhttp3.WebSocketListener#onMessage(okhttp3.WebSocket, java.lang.String)
*/
@Override
public void onMessage(WebSocket webSocket, String message) {
JsonObject json = new JsonParser().parse(message).getAsJsonObject();
if (json.has(ERROR)) {
String error = json.get(ERROR).getAsString();
callback.onError(new RuntimeException(error));
} else if (json.has(WARNINGS)) {
String warning = json.get(WARNINGS).getAsString();
callback.onWarning(new RuntimeException(warning));
} else if (json.has(BINARY_STREAMS)) {
String contentType = json.get(BINARY_STREAMS).getAsJsonArray().get(0).getAsJsonObject().get(CONTENT_TYPE).getAsString();
callback.onContentType(contentType);
} else if (json.has(WORDS)) {
callback.onTimings(GSON.fromJson(message, Timings.class));
} else if (json.has(MARKS)) {
callback.onMarks(GSON.fromJson(message, Marks.class));
}
}
use of com.ibm.watson.text_to_speech.v1.model.Words in project java-sdk by watson-developer-cloud.
the class TextToSpeechIT method testSynthesizeUsingWebSocket.
/**
* Test synthesize using web socket.
*
* @throws InterruptedException the interrupted exception
* @throws IOException Signals that an I/O exception has occurred.
*/
@Test
public void testSynthesizeUsingWebSocket() throws InterruptedException, IOException {
String basicText = "One taught me love. One taught me patience, and one taught me pain. Now, I'm so amazing. Say " + "I've loved and I've lost, but that's not what I see. So, look what I got." + " Look what you taught me. And for that, I say... thank u, next.";
SynthesizeOptions synthesizeOptions = new SynthesizeOptions.Builder().text(basicText).voice(SynthesizeOptions.Voice.EN_US_ALLISONVOICE).accept(HttpMediaType.AUDIO_OGG).timings(Collections.singletonList("words")).build();
service.synthesizeUsingWebSocket(synthesizeOptions, new BaseSynthesizeCallback() {
@Override
public void onContentType(String contentType) {
returnedContentType = contentType;
}
@Override
public void onAudioStream(byte[] bytes) {
// build byte array of synthesized text
try {
byteArrayOutputStream.write(bytes);
} catch (IOException e) {
e.printStackTrace();
}
}
@Override
public void onTimings(Timings timings) {
returnedTimings.add(timings);
}
});
// wait for synthesis to complete
lock.await(5, TimeUnit.SECONDS);
String filename = "synthesize_websocket_test.ogg";
OutputStream fileOutputStream = new FileOutputStream(filename);
byteArrayOutputStream.writeTo(fileOutputStream);
File createdFile = new File(filename);
assertTrue(createdFile.exists());
assertTrue(returnedContentType.contains("audio/ogg"));
for (Timings t : returnedTimings) {
List<WordTiming> wordTimings = t.getWords();
for (WordTiming wordTiming : wordTimings) {
assertTrue(basicText.contains(wordTiming.getWord()));
}
}
// clean up
byteArrayOutputStream.close();
fileOutputStream.close();
if (createdFile.delete()) {
System.out.println("File deleted successfully!");
} else {
System.out.println("File could not be deleted");
}
}
Aggregations