Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions cli/local/model_cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ func CacheModels(apiSpec *spec.API, awsClient *aws.Client) ([]*spec.LocalModelCa
localModelCaches[i].TargetPath = apiSpec.Predictor.Models[i].Name
}

if len(localModelCaches) > 0 {
fmt.Println("") // Newline to group all of the model information
}

return localModelCaches, nil
}

Expand Down Expand Up @@ -128,8 +132,6 @@ func CacheModel(modelPath string, awsClient *aws.Client) (*spec.LocalModelCache,
return nil, err
}

fmt.Println("") // Newline to group all of the model information

localModelCache.HostPath = modelDir

return &localModelCache, nil
Expand Down