你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Trains Interface

public interface Trains

An instance of this class provides access to all the operations defined in Trains.

Method Summary

Modifier and Type Method and Description
List<ModelTrainingInfo> getStatus(UUID appId, String versionId)

Gets the training status of all models (intents and entities) for the specified LUIS app. You must call the train API to train the LUIS app before you call this API to get training status. "appID" specifies the LUIS app ID. "versionId" specifies the version number of the LUIS app. For example, "0.1".

Observable<List<ModelTrainingInfo>> getStatusAsync(UUID appId, String versionId)

Gets the training status of all models (intents and entities) for the specified LUIS app. You must call the train API to train the LUIS app before you call this API to get training status. "appID" specifies the LUIS app ID. "versionId" specifies the version number of the LUIS app. For example, "0.1".

EnqueueTrainingResponse trainVersion(UUID appId, String versionId)

Sends a training request for a version of a specified LUIS app. This POST request initiates a request asynchronously. To determine whether the training request is successful, submit a GET request to get training status. Note: The application version is not fully trained unless all the models (intents and entities) are trained successfully or are up to date. To verify training success, get the training status at least once after training is complete.

Observable<EnqueueTrainingResponse> trainVersionAsync(UUID appId, String versionId)

Sends a training request for a version of a specified LUIS app. This POST request initiates a request asynchronously. To determine whether the training request is successful, submit a GET request to get training status. Note: The application version is not fully trained unless all the models (intents and entities) are trained successfully or are up to date. To verify training success, get the training status at least once after training is complete.

Method Details

getStatus

public List getStatus(UUID appId, String versionId)

Gets the training status of all models (intents and entities) for the specified LUIS app. You must call the train API to train the LUIS app before you call this API to get training status. "appID" specifies the LUIS app ID. "versionId" specifies the version number of the LUIS app. For example, "0.1".

Parameters:

appId - The application ID.
versionId - The version ID.

Returns:

the List<ModelTrainingInfo> object if successful.

Throws:

IllegalArgumentException - thrown if parameters fail the validation
ErrorResponseException - thrown if the request is rejected by server
RuntimeException - all other wrapped checked exceptions if the request fails to be sent

getStatusAsync

public Observable<>> getStatusAsync(UUID appId, String versionId)

Gets the training status of all models (intents and entities) for the specified LUIS app. You must call the train API to train the LUIS app before you call this API to get training status. "appID" specifies the LUIS app ID. "versionId" specifies the version number of the LUIS app. For example, "0.1".

Parameters:

appId - The application ID.
versionId - The version ID.

Returns:

the observable to the List<ModelTrainingInfo> object

Throws:

IllegalArgumentException - thrown if parameters fail the validation

trainVersion

public EnqueueTrainingResponse trainVersion(UUID appId, String versionId)

Sends a training request for a version of a specified LUIS app. This POST request initiates a request asynchronously. To determine whether the training request is successful, submit a GET request to get training status. Note: The application version is not fully trained unless all the models (intents and entities) are trained successfully or are up to date. To verify training success, get the training status at least once after training is complete.

Parameters:

appId - The application ID.
versionId - The version ID.

Returns:

the EnqueueTrainingResponse object if successful.

Throws:

IllegalArgumentException - thrown if parameters fail the validation
ErrorResponseException - thrown if the request is rejected by server
RuntimeException - all other wrapped checked exceptions if the request fails to be sent

trainVersionAsync

public Observable trainVersionAsync(UUID appId, String versionId)

Sends a training request for a version of a specified LUIS app. This POST request initiates a request asynchronously. To determine whether the training request is successful, submit a GET request to get training status. Note: The application version is not fully trained unless all the models (intents and entities) are trained successfully or are up to date. To verify training success, get the training status at least once after training is complete.

Parameters:

appId - The application ID.
versionId - The version ID.

Returns:

the observable to the EnqueueTrainingResponse object

Throws:

IllegalArgumentException - thrown if parameters fail the validation

Applies to