ModelManager
BackboneManager
#
Automatic backbone manager with lazy loading.
The BackboneManager provides a unified interface for loading neural network backbones (feature extractors) from their configurations. It supports multiple backbone architectures like ResNet, STDC, Swin Transformer, MobileNetV2, and others.
The manager maintains a mapping between backbone type names and their implementation paths, and handles the dynamic loading of the appropriate classes.
Source code in focoos/model_manager.py
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 |
|
from_config(config)
classmethod
#
Load a backbone from a configuration.
This method instantiates a backbone model based on the provided configuration, dynamically loading the appropriate backbone class based on the model_type.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config
|
BackboneConfig
|
The backbone configuration containing model_type and other parameters |
required |
Returns:
Name | Type | Description |
---|---|---|
BaseBackbone |
BaseBackbone
|
The instantiated backbone model |
Raises:
Type | Description |
---|---|
ValueError
|
If the backbone type is not supported |
Source code in focoos/model_manager.py
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 |
|
get_model_class(model_type)
classmethod
#
Get the model class based on the model type.
This method dynamically imports and returns the backbone class corresponding to the specified model type.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model_type
|
str
|
The type of backbone model to load (e.g., "resnet", "swin") |
required |
Returns:
Type | Description |
---|---|
Type[BaseBackbone]: The backbone class |
Raises:
Type | Description |
---|---|
ImportError
|
If the module cannot be imported |
AttributeError
|
If the class is not found in the module |
Source code in focoos/model_manager.py
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 |
|
ConfigBackboneManager
#
Automatic backbone configuration manager with lazy loading.
The ConfigBackboneManager provides a specialized manager for handling backbone configurations. It maintains a mapping between backbone type names and their configuration classes, and handles the dynamic loading of these classes.
This manager is used primarily by the ConfigManager when processing nested backbone configurations within model configurations.
Source code in focoos/model_manager.py
392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 |
|
from_dict(config_dict)
classmethod
#
Create a backbone configuration from a dictionary.
This method instantiates a backbone configuration object based on the model_type specified in the configuration dictionary.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config_dict
|
dict
|
Dictionary containing configuration parameters including model_type |
required |
Returns:
Name | Type | Description |
---|---|---|
BackboneConfig |
BackboneConfig
|
The instantiated backbone configuration object |
Raises:
Type | Description |
---|---|
ValueError
|
If the backbone type is not supported |
Source code in focoos/model_manager.py
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 |
|
get_model_class(model_type)
classmethod
#
Get the configuration class based on the model type.
This method dynamically imports and returns the backbone configuration class corresponding to the specified model type.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model_type
|
str
|
The type of backbone model (e.g., "resnet", "swin") |
required |
Returns:
Type | Description |
---|---|
Type[BackboneConfig]: The backbone configuration class |
Raises:
Type | Description |
---|---|
ImportError
|
If the module cannot be imported |
AttributeError
|
If the class is not found in the module |
Source code in focoos/model_manager.py
413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 |
|
ConfigManager
#
Automatic model configuration management.
The ConfigManager provides a centralized system for managing model configurations. It maintains a registry of configuration classes for different model families and handles the creation of appropriate configuration objects from dictionaries.
The manager supports dynamic registration of configuration classes and automatic importing of model family modules as needed.
Source code in focoos/model_manager.py
306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 |
|
from_dict(model_family, config_dict, **kwargs)
classmethod
#
Create a configuration from a dictionary.
This method instantiates a model configuration object based on the model family and the provided configuration dictionary. It handles nested configurations like backbone_config and validates the parameters.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model_family
|
ModelFamily
|
The model family enum value |
required |
config_dict
|
dict
|
Dictionary containing configuration parameters |
required |
**kwargs
|
Additional keyword arguments to override configuration values |
{}
|
Returns:
Name | Type | Description |
---|---|---|
ModelConfig |
ModelConfig
|
The instantiated configuration object |
Raises:
Type | Description |
---|---|
ValueError
|
If the model family is not supported or if invalid parameters are provided |
Source code in focoos/model_manager.py
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 |
|
register_config(model_family, model_config_loader)
classmethod
#
Register a loader for a specific model configuration.
This method associates a model family with a loader function that returns the configuration class when called. This enables lazy loading of configuration classes.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model_family
|
ModelFamily
|
The ModelFamily enum value to register |
required |
model_config_loader
|
Callable[[], Type[ModelConfig]]
|
A callable that returns the configuration class when invoked |
required |
Source code in focoos/model_manager.py
320 321 322 323 324 325 326 327 328 329 330 331 332 333 |
|
ModelManager
#
Automatic model manager with lazy loading.
The ModelManager provides a unified interface for loading models from various sources: - From ModelInfo objects - From the Focoos Hub (hub:// protocol) - From local directories - From the model registry
It handles model registration, configuration management, and weights loading automatically.
Models are loaded lazily when requested and can be accessed through the get
method.
Examples:
Load a registered model:
1 |
|
Load a model from hub:
1 |
|
Load a model with custom config:
1 |
|
Source code in focoos/model_manager.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 |
|
get(name, model_info=None, config=None, models_dir=None, hub=None, cache=True, **kwargs)
classmethod
#
Unified entrypoint to load a model by name or ModelInfo.
This method provides a single interface for loading models from various sources: - From a ModelInfo object (when model_info is provided) - From the Focoos Hub (when name starts with "hub://") - From the ModelRegistry (for pretrained models) - From a local directory (when name is a local path)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
Model name, path, or hub reference (e.g., "hub://username/model_ref") |
required |
model_info
|
Optional[ModelInfo]
|
Optional ModelInfo object to load the model from directly |
None
|
config
|
Optional[ModelConfig]
|
Optional custom model configuration to override defaults |
None
|
models_dir
|
Optional[str]
|
Optional directory to look for local models (defaults to MODELS_DIR) |
None
|
hub
|
Optional[FocoosHUB]
|
Optional FocoosHUB instance to use for hub:// references |
None
|
cache
|
bool
|
Optional boolean to cache the model info and weights when loading from hub (defaults to True) |
True
|
**kwargs
|
Additional keyword arguments passed to the model configuration |
{}
|
Returns:
Name | Type | Description |
---|---|---|
FocoosModel |
FocoosModel
|
The loaded model instance |
Raises:
Type | Description |
---|---|
ValueError
|
If the model cannot be found or loaded |
Source code in focoos/model_manager.py
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
|
register_model(model_family, model_loader)
classmethod
#
Register a loader for a specific model family.
This method associates a model family with a loader function that returns the model class when called. This enables lazy loading of model classes.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model_family
|
ModelFamily
|
The ModelFamily enum value to register |
required |
model_loader
|
Callable[[], Type[BaseModelNN]]
|
A callable that returns the model class when invoked |
required |
Source code in focoos/model_manager.py
94 95 96 97 98 99 100 101 102 103 104 105 106 |
|