mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Machine Learning Services Extension - Predict wizard (#9450)
*MLS extension - Added predict wizard
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user