Text-to-Image
Transformers
PyTorch
English
multi-model-orchestrator
ai
machine-learning
multimodal
image-captioning
orchestration
Instructions to use kunaliitkgp09/multi-model-orchestrator with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use kunaliitkgp09/multi-model-orchestrator with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("kunaliitkgp09/multi-model-orchestrator", dtype="auto") - Notebooks
- Google Colab
- Kaggle
File size: 287 Bytes
b4740c6 | 1 2 3 4 5 6 7 8 9 | #!/Users/kunaldhanda/DeepSeek/multi_model_env/bin/python3.13
# -*- coding: utf-8 -*-
import re
import sys
from transformers.commands.transformers_cli import main_cli
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main_cli())
|