Thanks for the question, Azure AI Document Intelligence does not directly support version control of trained models using Git&GitHub.
you can achieve a similar effect by following these steps:
- Model Serialization: After training a model in Azure AI Document Intelligence, you can serialize the model and save it as a file.
- Store in Repository: You can then store this file in your GitHub repository.
- Pull and Deserialize: During the deployment process, you can pull the latest version of the model file from the repository, deserialize it, and load it into your application.
This way, you can keep track of different versions of your model, and multiple developers can collaborate on the project.