|
|
|
@@ -89,8 +89,10 @@ func saveModelByParameters(jobId string, versionName string, name string, versio |
|
|
|
Accuracy: string(accuracyJson), |
|
|
|
} |
|
|
|
|
|
|
|
models.SaveModelToDb(model) |
|
|
|
|
|
|
|
err = models.SaveModelToDb(model) |
|
|
|
if err != nil { |
|
|
|
return err |
|
|
|
} |
|
|
|
if len(lastNewModelId) > 0 { |
|
|
|
//udpate status and version count |
|
|
|
models.ModifyModelNewProperty(lastNewModelId, MODEL_NOT_LATEST, 0) |
|
|
|
@@ -110,6 +112,16 @@ func SaveModel(ctx *context.Context) { |
|
|
|
label := ctx.Query("Label") |
|
|
|
description := ctx.Query("Description") |
|
|
|
|
|
|
|
if JobId == "" || VersionName == "" { |
|
|
|
ctx.Error(500, fmt.Sprintf("JobId or VersionName is null.")) |
|
|
|
return |
|
|
|
} |
|
|
|
|
|
|
|
if name == "" || version == "" { |
|
|
|
ctx.Error(500, fmt.Sprintf("name or version is null.")) |
|
|
|
return |
|
|
|
} |
|
|
|
|
|
|
|
err := saveModelByParameters(JobId, VersionName, name, version, label, description, ctx.User.ID) |
|
|
|
|
|
|
|
if err != nil { |
|
|
|
|