Suppose I have two Azure ML workspaces:
Workspace1 - This is being used by one team (Team1) who only train the model and store the model in model registry of Workspace1
Workspace2 - This is used by another team (Team2) who containerise the model, push it to ACR and then deploy the containerised model in Azure ML Compute.
Is it possible for Team2 to access the model registry of Workspace1 from their Workspace2 and retrieve the model for containerisation and subsequent deployment? Alternatively, is there any concept of a shared model registry in Azure ML where both the teams can store and access a common model registry? If none of these are possible, then what is the way for Team1 and Team2 to work together on a single model with the given responsibilities as described above?