Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DATA-1109 - Add training start time to metadata #394

Merged
merged 10 commits into from
Nov 10, 2023
2 changes: 2 additions & 0 deletions proto/viam/app/mltraining/v1/ml_training.proto
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ message TrainingJobMetadata {
string synced_model_id = 5 [(tagger.v1.tags) = "bson:\"synced_model_id\" json:\"synced_model_id\""];
string id = 7 [(tagger.v1.tags) = "bson:\"_id\" json:\"id,omitempty\""];
google.rpc.Status error_status = 8 [(tagger.v1.tags) = "bson:\"error_status\" json:\"error_status\""];
google.protobuf.Timestamp training_started = 9 [(tagger.v1.tags) = "bson:\"training_started\" json:\"training_started\""];
google.protobuf.Timestamp training_ended = 10 [(tagger.v1.tags) = "bson:\"training_ended\" json:\"training_ended\""];

reserved 6;
reserved "user_email";
Expand Down
Loading