config
The base config class.
It implements the base config class template, which can be used to represent the model and object configurations in the tinyBIG toolkit.
Attributes:
Name | Type | Description |
---|---|---|
name |
str, default = 'base_config'
|
Name of the base config. |
Methods:
Name | Description |
---|---|
__init__ |
The initialization method of base config class. |
load_yaml |
Configuration loading method from yaml file |
save_yaml |
Configuration saving method to yaml file |
load_json |
Configuration loading method from json file |
save_json |
Configuration saving method to json file |
instantiate_model_from_config |
Model instantiation method from configurations |
extract_config_from_model |
Configurations extraction methond from models |
Source code in tinybig/config/base_config.py
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 236 237 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 304 305 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 390 391 392 393 394 |
|
__init__(configs=None, name='base_config', device='cpu', *args, **kwargs)
The initialization method of base config class.
It initializes a base config object based on the provided parameters.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
Name of the base config object. |
'base_config'
|
|
configs
|
dict | list
|
Dictionary of configuration parameters. |
None
|
Returns:
Type | Description |
---|---|
object
|
The base config object. |
Source code in tinybig/config/base_config.py
get_obj_from_str(string, reload=False)
staticmethod
The object initiation from strings.
It will initiate an object according to the class description as a string.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
string
|
str
|
The object class description as a string, e.g., "tinybig.expansion.bspline_expansion" and "torch.nn.functional.sigmoid" |
required |
reload
|
bool
|
The module reloading boolean tag. |
False
|
Returns:
Type | Description |
---|---|
object
|
The initiated object of the corresponding class described by the input parameter "string". |
Source code in tinybig/config/base_config.py
instantiation_functions(functions=None, function_configs=None, device='cpu', *args, **kwargs)
staticmethod
Function initiation method.
It initializes the data preprocessing functions, postprocessing functions, output processing functions, and activation functions, which are used for data expansion, rpn head, and remainder functions.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
functions
|
dict | list | object
|
The list of functions. |
None
|
function_configs
|
dict | list
|
The list of function configs. |
None
|
device
|
str
|
The device for processing the functions. |
'cpu'
|
Returns:
Type | Description |
---|---|
list
|
The list of initialized functions from either the functions or function_configs. |
Source code in tinybig/config/base_config.py
load_json(cache_dir='./configs', config_file='configs.json')
Model configuration loading method from json file
It loads the model configurations from a json file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cache_dir
|
Directory of the configuration json file. |
'./configs'
|
|
config_file
|
Name of the configuration json file |
'configs.json'
|
Returns:
Type | Description |
---|---|
dict
|
The detailed configurations loaded from the json file. |
Source code in tinybig/config/base_config.py
load_yaml(cache_dir='./configs', config_file='config.yaml')
Model configuration loading method from yaml file
It loads the model configurations from a yaml file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cache_dir
|
Directory of the configuration yaml file. |
'./configs'
|
|
config_file
|
Name of the configuration yaml file |
'config.yaml'
|
Returns:
Type | Description |
---|---|
dict
|
The detailed configurations loaded from the yaml file. |
Source code in tinybig/config/base_config.py
process_num_alloc_configs(num=None, num_alloc=None, configs=None)
staticmethod
Configuration processing method.
It processes the provided information about the provided configuration information, including the total number, allocation of these numbers, and the list of configurations.
For the RPN layer and RPN model, they may contain multi-head, and multi-layer. To provide more flexibility in their initialization, the tinyBIG toolkit allows users to provide the configuration information in different ways:
- provide "total number" n, "num_alloc" [1, 2, 1, ..., 1], and a list of "configs" [config1, config2, ..., confign]
- only provide "total number" n, and a list of "configs" [config1, config2, ..., confign], we will auto complete the num_alloc to be [1, 1, 1, ..., 1]
- only provide "total number" n, and only one "configs" either in a list "[config1]" or just "config1", we will auto complete the num_alloc to be [n]
- only provide "num_alloc" [1, 2, 1, 3, ...., 1], and a list of configs [config1, config2, ..., configk], we will auto complete the "total num" to be sum(num_alloc)
- other cases, we will report value errors
Therefore, this method may need to process such provided parameters to figure out the intended configurations of the RPN heads and RPN layers.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
num
|
int
|
Total number of the configurations. |
None
|
num_alloc
|
int | list
|
The allocation of the configuration number. |
None
|
configs
|
dict | list
|
The list/dict of the configurations. |
None
|
Returns:
Type | Description |
---|---|
tuple | pair
|
The processed num, num_alloc, configs tuple. |
Source code in tinybig/config/base_config.py
save_json(cache_dir='./configs', config_file='configs.json')
Model configuration saving method to json file
It saves the model configurations to a json file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cache_dir
|
Directory of the configuration json file. |
'./configs'
|
|
config_file
|
Name of the configuration json file |
'configs.json'
|
Returns:
Type | Description |
---|---|
None
|
This method doesn't have the returned values. |
Source code in tinybig/config/base_config.py
save_yaml(cache_dir='./configs', config_file='config.yaml')
Model configuration saving method to yaml file
It saves the model configurations to a yaml file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cache_dir
|
Directory of the configuration yaml file. |
'./configs'
|
|
config_file
|
Name of the configuration yaml file |
'config.yaml'
|
Returns:
Type | Description |
---|---|
None
|
This method doesn't have the returned values. |
Source code in tinybig/config/base_config.py
special_function_processing(func_class, func_parameters, device='cpu', *args, **kwargs)
staticmethod
Special function processing method.
It handles some special functions to accommodate their requirements, like the batchnorms.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
func_class
|
The function class information. |
required | |
func_parameters
|
The dictionary of function parameters. |
required | |
device
|
The device for hosting and processing these special functions. |
'cpu'
|
Returns:
Type | Description |
---|---|
tuple | list
|
The tuple of processed function class, and function parameters. |