All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ibm.watson.speech_to_text.v1.model.Grammar Maven / Gradle / Ivy

/*
 * (C) Copyright IBM Corp. 2019, 2020.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
 * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations under the License.
 */
package com.ibm.watson.speech_to_text.v1.model;

import com.google.gson.annotations.SerializedName;
import com.ibm.cloud.sdk.core.service.model.GenericModel;

/** Information about a grammar from a custom language model. */
public class Grammar extends GenericModel {

  /**
   * The status of the grammar: * `analyzed`: The service successfully analyzed the grammar. The
   * custom model can be trained with data from the grammar. * `being_processed`: The service is
   * still analyzing the grammar. The service cannot accept requests to add new resources or to
   * train the custom model. * `undetermined`: The service encountered an error while processing the
   * grammar. The `error` field describes the failure.
   */
  public interface Status {
    /** analyzed. */
    String ANALYZED = "analyzed";
    /** being_processed. */
    String BEING_PROCESSED = "being_processed";
    /** undetermined. */
    String UNDETERMINED = "undetermined";
  }

  protected String name;

  @SerializedName("out_of_vocabulary_words")
  protected Long outOfVocabularyWords;

  protected String status;
  protected String error;

  /**
   * Gets the name.
   *
   * 

The name of the grammar. * * @return the name */ public String getName() { return name; } /** * Gets the outOfVocabularyWords. * *

The number of OOV words in the grammar. The value is `0` while the grammar is being * processed. * * @return the outOfVocabularyWords */ public Long getOutOfVocabularyWords() { return outOfVocabularyWords; } /** * Gets the status. * *

The status of the grammar: * `analyzed`: The service successfully analyzed the grammar. The * custom model can be trained with data from the grammar. * `being_processed`: The service is * still analyzing the grammar. The service cannot accept requests to add new resources or to * train the custom model. * `undetermined`: The service encountered an error while processing the * grammar. The `error` field describes the failure. * * @return the status */ public String getStatus() { return status; } /** * Gets the error. * *

If the status of the grammar is `undetermined`, the following message: `Analysis of grammar * '{grammar_name}' failed. Please try fixing the error or adding the grammar again by setting the * 'allow_overwrite' flag to 'true'.`. * * @return the error */ public String getError() { return error; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy