View source: R/model_registry.R
| list_vision_models | R Documentation |
List all vision models currently available in the transforEmotion registry.
list_vision_models(
include_builtin = TRUE,
architecture_filter = NULL,
verbose = FALSE
)
include_builtin |
Logical indicating whether to include built-in models (default: TRUE) |
architecture_filter |
Optional character vector to filter by architecture type |
verbose |
Logical indicating whether to show detailed information (default: FALSE) |
A data.frame with model information, or detailed list if verbose=TRUE
# List all available models
list_vision_models()
# List only CLIP models
list_vision_models(architecture_filter = "clip")
# Get detailed information
list_vision_models(verbose = TRUE)
# See what models are available for image analysis
models <- list_vision_models()
print(paste("Available models:", paste(models$name, collapse = ", ")))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.