mix nasty.models (Nasty v0.3.0)
View SourceManage statistical models for Nasty.
Commands
mix nasty.models list # List all available models
mix nasty.models info MODEL_ID # Show detailed model information
mix nasty.models path MODEL_ID # Show local path to model file
mix nasty.models clean # Remove all cached models from registryModel IDs
Model IDs follow the format: {language}-{task}-{version}
Examples:
en-pos-v1- English POS tagging model, version 1en-ner-v2- English NER model, version 2
Examples
# List all models
mix nasty.models list
# Show info about a specific model
mix nasty.models info en-pos-v1
# Get path to model file
mix nasty.models path en-pos-v1
# Clear model registry
mix nasty.models clean