Instructions to use vikenkd/vqa-llm with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use vikenkd/vqa-llm with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("vikenkd/vqa-llm", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 316 Bytes
9fe89c2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | {
"batchnorm_layer": 256,
"dropout": 0.3,
"embed_dim": 512,
"expansion_factor": 4,
"hidden_dim": 128,
"input_layer": 128,
"model_type": "bert",
"n_dense": 6,
"n_heads": 8,
"num_layers": 2,
"output_classification": 3454,
"output_layer": 256,
"transformers_version": "4.41.2",
"w_s": 0.5
}
|