Matan Kadosh
04/02/2023, 1:13 PM```ml_model = bentoml.mlflow.import_model(name=mv.name,
model_uri=f'models:/{mv.name}/{stage}',
signatures={"predict": {"batchable": True}, },
metadata={'description': mv.description,
'tags': mv.tags,
'version': mv.version,
'source': mv.source,
'current_stage': mv.current_stage,
'status': mv.status,
'creation_timestamp': mv.creation_timestamp,
'user_id': mv.user_id
})```