File size: 11,219 Bytes
747451d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 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 | ## π§ `get_model` API
The `get_model` function allows you to dynamically retrieve a model from the internal model registry based on key parameters like architecture, dataset, task type, and framework.
---
### Function Signature
```python
get_model(cfg)
```
### Variables expected from CFG
| Name | Type | Required | Description |
|------------------|-----------|----------|-----------------------------------------------------------------------------|
| `model_name` | `str` | β
| Name of the model architecture (e.g., `'resnet18'`, `'mobilenet_v2'`) |
| `use_case` | `str` | β
| Task type (e.g., `"image_classification"`, `'segmentation'`) |
| `framework` | `str` | β
| Framework to use: `'torch'` or `'tensorflow'` |
Plus many more according to model you are loading.
### Returns
- A model object initialized with the specified parameters.
- If `pretrained=True`, the model includes pretrained weights (if available).
---
### Notes
- If the combination of parameters doesn't match a known model, the function will raise an error.
- You can pass additional model-specific keyword arguments such as `dropout_rate=0.3` or `input_shape=(224, 224, 3)` depending on the framework.
### Example Usage
```python
from api import get_model
# load hydra config with required variables, It must have:
cfg.use_case = "image_classification"
cfg.model.framework = "torch"
cfg.model.model_name = "xcit_tiny_12_p8_224_timm"
model = get_model(cfg)
```
## `list_models` API
A helper function to list all existing models based on text filters.
You can provide a string or a list of strings to filter by model name, dataset name, task type, framework, or combined keys like `"model_name_dataset_name"`.
---
### Function Signature
```python
list_models(
filter_string='',
match_all=True,
print_table=True,
with_checkpoint=False,
)
```
### Parameters
| Name | Type | Required | Description |
|-------------------|----------------|----------|-----------------------------------------------------------------------------------------------------------|
| `filter_string` | `str` or `list`| β | String or list of strings containing model name, dataset name, task type, framework, or combined filters. |
| `match_all` | `bool` | β | If `True`, only models matching *all* keywords (intersection) are returned. If `False`, models matching *any* keyword are returned. (default: `True`) |
| `print_table` | `bool` | β | Whether to print a table of matched models. Returns a list. (default: `True`) |
| `with_checkpoint` | `bool` | β | Whether to include only models that have available checkpoints. (default: `False`) |
### Returns
- If `print_table=True`, prints a formatted table of matched models.
- If `print_table=False`, returns a list of matched model identifiers.
---
### Notes
- The `filter_string` can be a single string or a list of strings to filter the models.
- Setting `match_all=True` returns models matching *all* provided keywords (logical AND).
- Setting `match_all=False` returns models matching *any* of the keywords (logical OR).
- This function is useful to quickly explore what models are available in the registry based on flexible filters.
### Example Usage
```python
from api import list_models
# List and print models matching both 'resnet' and 'imagenet'
list_models(filter_string=['resnet', 'imagenet'], match_all=True)
# Get list of models matching either 'mobilenet' or 'cifar10', without printing
models = list_models(filter_string=['mobilenet', 'cifar10'], match_all=False, print_table=False)
print(models)
```
### Keywords for model names
```
'airnext', 'aim', 'alexnet', 'bagnet', 'beit', 'botnet', 'botnext', 'byobnet', 'cait', 'caformer',
'channelnet', 'coat', 'convformer', 'convnext', 'darknet', 'darts', 'deit', 'densnet', 'dicenet', 'diracnet',
'dla', 'dpn', 'drnc', 'drnd', 'edgenet', 'edgenext', 'efficientformer', 'efficientnet', 'espnet', 'eva',
'fasternet', 'fbnet', 'fishnet', 'focalnet', 'gmlp', 'gernet', 'ghostnet', 'googlenet', 'halonet', 'halonext',
'hardcorenas', 'hardnet', 'hgera', 'hgnet', 'hrnet', 'igc', 'inception', 'irevnet', 'lcnet', 'mambaout',
'mixer', 'mixnet', 'mobilenet', 'msdnet', 'nasnet', 'nest', 'nfnet', 'pvt', 'peleenet', 'pit', 'proxylessnas',
'pyramidnet', 'rdnet', 'regnet', 'res2net', 'resattnet', 'resmlp', 'resnet', 'resnest', 'resnext', 'rexnet',
'scnet', 'selecsls', 'senet', 'sequencer', 'shufflenet', 'sknet', 'sparsenet', 'sqnxt', 'squeezenet',
'starnet', 'swiftformer', 'swin', 'tinynet', 'tnt', 'tresnet', 'twins', 'vit', 'vitamin', 'vgg', 'volo',
'vovnet', 'xcit', 'xception', 'zfnet'
```
## `get_dataloaders` API
Loads and returns training and testing dataloaders for a specified dataset, task type, and framework.
### π§ Function Signature
```python
get_dataloaders(cfg)
```
### Variables expected from CFG
| Name | Type | Required | Description |
| -------------- | ------ | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `data_root` | `str` | β
| Path to the root directory containing the dataset folder. |
| `dataset_name` | `str` | β
| Name of the dataset (e.g., `'imagenet'`, `'flowers102'`, etc.). |
| `use_case` | `str` | β
| Task type (e.g., `"image_classification"`, `'detection'`, `'segmentation'`). |
| `framework` | `str` | β
| Framework or model name used to select the appropriate dataset wrapper.
| `prediction_path` | `str` | β | Path to folder containing images or folders of images.
| `qunatization_path` | `str` | β | Path to folder containing images or folders of images. |
| `**kwargs` | `dict` | β | Additional keyword arguments passed to the dataset loader. Common options include:<ul><li>`download` (`bool`) β Whether to download the dataset (if supported).</li><li>`batch_size` (`int`) β Batch size for the dataloaders.</li><li>`img_size` (`int`)</li><li>`num_workers` (`int`) β Number of subprocesses for data loading.</li></ul> |
## Returns
Returns a dictionary containing PyTorch dataloaders for training and testing splits.
```python
Dict
{
'train': torch.utils.data.DataLoader,
'test' : torch.utils.data.DataLoader,
'valid': torch.utils.data.DataLoader,
'pred' : torch.utils.data.DataLoader,
'quant': torch.utils.data.DataLoader,
}
```
## Example Usage
```python
from api import get_dataloaders
cfg.dataset.data_dir= "/neutrino/datasets/"
cfg.dataset.dataset_name = "imagenet"
cfg.use_case = "image_classification"
cfg.model.framework = "torch"
# plus other variables like batch_size, input_size, aumentations, num_classes etc etc
dataloaders = get_dataloaders(cfg)
train_loader = dataloaders['train']
test_loader = dataloaders['test']
```
## Expected folder structure in standard datasets
- FLOWERS102 shud have 'jpg' folder, 'setid.mat' and 'imagelabels.mat' inside.
- VWW should have 'all' , 'annotations/instances_train.json' and 'annotations/instances_train.json' inside.
- FOOD101 should have 'images' and 'meta' folder inside
- IMAGENET should have 'train' and 'val' folder inside it with sub folders of classes.
## Project Structure Overview
```
project/
βββ apis/
β βββ get_model.py
β βββ get_dataset.py
β βββ get_trainers.py
β
βββ common/
β βββ blocks/ # Shared building blocks
β βββ registry/
β βββ model_registry.py # Model registry system
β βββ dataset_registry.py # Dataset registry system
β βββ trainer_registry.py # Trainer registry system
β
βββ image_classification/
β βββ config.py # Config file (e.g. for args, yaml loading, etc.)
β βββ main.py # Entry point: loads config, gets model/dataset/trainer, trains
β βββ pt/
β βββ src/
β β βββ models/ # Model definitions
β β βββ dataset/ # Dataset definitions
β β βββ trainers/ # Training logic
β β
β βββ wrapper/
β βββ models/ # Wrapper to unify model interfaces and register with registry
β
βββ README.md
```
## System Flow
```
main.py (reads config)
β
apis/ (get_model, get_dataset, get_trainers)
β
common/registry (e.g., model_registry.get)
β
image_classification/pt/wrapper/models/ (model registration)
β
image_classification/pt/src/models/ (actual model implementation)
```
## Important to Avoid Circular Imports
Make sure:
common/ does not import anything from image_classification/
src/trainers/ does not call get_model() from apis/ β it should just accept already-prepared objects
wrapper/models/ only handles registration logic (and doesn't depend on training or dataset logic)
|