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-3094: Add CLI args to SubmitCustomTrainingJobRequest #550

Merged
merged 3 commits into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
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
626 changes: 323 additions & 303 deletions app/mltraining/v1/ml_training.pb.go

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions component/arm/v1/arm.pb.gw.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions component/audioinput/v1/audioinput.pb.gw.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions component/encoder/v1/encoder.pb.gw.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions component/gantry/v1/gantry.pb.gw.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions component/gripper/v1/gripper.pb.gw.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions component/inputcontroller/v1/input_controller.pb.gw.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions component/sensor/v1/sensor.pb.gw.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions gen/js/app/mltraining/v1/ml_training_pb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ export class SubmitCustomTrainingJobRequest extends jspb.Message {
getModelVersion(): string;
setModelVersion(value: string): void;

getArgumentsMap(): jspb.Map<string, string>;
clearArgumentsMap(): void;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): SubmitCustomTrainingJobRequest.AsObject;
static toObject(includeInstance: boolean, msg: SubmitCustomTrainingJobRequest): SubmitCustomTrainingJobRequest.AsObject;
Expand All @@ -105,6 +107,7 @@ export namespace SubmitCustomTrainingJobRequest {
organizationId: string,
modelName: string,
modelVersion: string,
argumentsMap: Array<[string, string]>,
}
}

Expand Down
Loading