Machine Learning Services Extension - Predict wizard (#9450)

*MLS extension - Added predict wizard
This commit is contained in:
Leila Lali
2020-03-09 15:40:05 -07:00
committed by GitHub
parent b017634431
commit 3be3563b0d
37 changed files with 1501 additions and 219 deletions

View File

@@ -48,13 +48,19 @@ export type WorkspacesModelsResponse = ListWorkspaceModelsResult & {
/**
* An interface representing registered model
*/
export interface RegisteredModel {
id?: number,
artifactName?: string,
title?: string,
created?: string,
version?: string
description?: string
export interface RegisteredModel extends RegisteredModelDetails {
id: number;
artifactName: string;
}
/**
* An interface representing registered model
*/
export interface RegisteredModelDetails {
title: string;
created?: string;
version?: string;
description?: string;
}
/**