mlflow / mlflow-go

Repository for the Go-based MLflow Tracking Server
Apache License 2.0
5 stars 4 forks source link

Support LogModel in mlflow-go #24

Open dsuhinin opened 1 month ago

dsuhinin commented 3 weeks ago

This is experimental API from MLFlow comments:

// .. note::
  //     Experimental: This API may change or be removed in a future release without warning.
  rpc logModel (LogModel) returns (LogModel.Response) {
    option (rpc) = {
      endpoints: [{
        method: "POST",
        path: "/mlflow/runs/log-model"
        since { major: 2, minor: 0 },
      }],
      visibility: PUBLIC,
      rpc_doc_title: "Log Model",
    };
  }

do we even need to support if right now or we cal left it for community?