Instructions to use Compumacy/janus_pro with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Compumacy/janus_pro with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Compumacy/janus_pro", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 344 Bytes
6d4671f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | {
"additional_special_tokens": [
"<image_placeholder>",
"<patch_placeholder>",
"<|ref|>",
"<|/ref|>",
"<|det|>",
"<|/det|>",
"<|grounding|>",
"<|User|>",
"<|Assistant|>"
],
"bos_token": "<|begin▁of▁sentence|>",
"eos_token": "<|end▁of▁sentence|>",
"pad_token": "<|▁pad▁|>"
}
|