View source: R/model_management.R
| setup_popular_models | R Documentation |
Convenience function to quickly add popular vision models with pre-configured settings.
setup_popular_models(models)
models |
Character vector of model shortcuts to add. Available options:
|
Invisibly returns TRUE if all models added successfully
## Not run:
# Add BLIP models for image captioning
setup_popular_models("blip-base")
# Add multiple experimental models at once
setup_popular_models(c("blip-base", "blip-large", "align-base"))
# Then use them in your analysis
list_vision_models() # See all available models
result <- image_scores("image.jpg", c("happy", "sad"), model = "blip-base")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.