You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# NOTE: MLflow UC bug:
# The client's tracking_uri is not honored. Instead MlflowClient.create_model_version()
# seems to use mlflow.tracking_uri internally to download run artifacts for UC models.
with MlflowTrackingUriTweak(mlflow_client):
dst_vr = mlflow_client.create_model_version(
name = model_name,
source = dst_source,
run_id = dst_run_id,
description = src_vr.get("description"),
tags = tags
)
The text was updated successfully, but these errors were encountered:
@amesar referring to this comment #50 (comment)
Is this still the case? I am wondering if there a way around to preserve model version number as we export and import model versions
However, if the source server has model versions 1,2,3 and 4, and you export 2 and 4, your imported destination versions will be 1 and 2.
paravatha
changed the title
importing a specific model version is not working
importing a specific model version is not preserving the model versions
Jun 10, 2024
while trying to export and import a specific model (version 2), the model version is being imported as (version 1)
version.json
Code to import
I believe this code snippet is creating a model with version 1
The text was updated successfully, but these errors were encountered: