Image Trainers
The ml_trainers module provides essential methodologies for training machine learning models tailored to specific modalities. It includes classes designed to streamline the process of loading datasets and training models.
Trainer: Image Classification tasks
ImageClassificationTrainer
Bases: MLPattern
Source code in cucaracha/ml_trainers/image_classification_trainer.py
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 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 | |
__init__(dataset_path, num_classes, **kwargs)
This is the main constructor for a general Image Classification ML method.
Note
The dataset_path should follow the cucaracha dataset folder
organization. More details about how to organize the dataset can be
found at the cucaracha documentation.
Info
There are many ways to find and build datasets to use for your
machine learning models. A simpler way is using the public datasets
given at the cucaracha Kaggle repository. You can find more
details at: https://www.kaggle.com/organizations/cucaracha-project
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
dataset_path
|
str
|
The path to the dataset. This should follow the
|
required |
num_classes
|
int
|
The number of classes in the dataset. This must |
required |
**kwargs
|
Additional keyword arguments for configuring the model. |
{}
|
|
Possible
|
keys include
|
|
required |
-
|
'img_shape' (tuple
|
The shape of the input images. Default |
required |
-
|
'architecture' (object
|
The model architecture to use. If |
required |
-
|
'batch_size' (int
|
The batch size to use during training. If |
required |
-
|
'epochs' (int
|
The number of epochs to train the model. If |
required |
-
|
'model_name' (str
|
The name to use when saving the trained |
required |
Raises: ValueError: If the provided architecture is not for image classification tasks.
Source code in cucaracha/ml_trainers/image_classification_trainer.py
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 | |
collect_training_samples(num_samples=30)
Collects a batch of training samples for visualization purposes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
num_samples
|
int
|
The number of samples to collect. |
30
|
Returns:
| Type | Description |
|---|---|
|
np.ndarray: A batch of training samples. |
Source code in cucaracha/ml_trainers/image_classification_trainer.py
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 | |
load_dataset(use_data_augmentation=True)
Loads and prepares the image classification dataset for training and validation.
The root path of the dataset should follow the cucaracha dataset.
Therefore, the user must have a permission to read and write in the
dataset path folder in order to create the organized data.
Note
This method is automatically called when the class is instantiated. However, the user can call it again to reload the dataset and make an internal evaluation.
This method performs the following steps:
- Calls the superclass method to load the dataset.
- Loads the cucaracha dataset from the specified path.
- Prepares the dataset environment by creating subfolders for each label.
- Loads the organized data using
keras.utils.image_dataset_from_directory. - Maps the training and validation datasets to one-hot encoded labels.
Returns:
| Name | Type | Description |
|---|---|---|
dict |
A dictionary containing the training and validation datasets |
|
|
with keys 'train' and 'val'. |
Source code in cucaracha/ml_trainers/image_classification_trainer.py
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 | |
train_model(**kwargs)
Trains the model using the provided dataset and configuration.
The information of epochs, batch_size, loss, optimizer, and
metrics are already defined in the class constructor and it is used
here to adjust the model training.
When the training is finished, the model is updated to be saved or
checked by the user. The model is provided by the object itself using
the obj.model attribute.
Examples:
>>> from tests import sample_paths as sp
>>> obj = ImageClassificationTrainer(sp.DOC_ML_DATASET_CLASSIFICATION, 3)
>>> obj.epochs = 10
>>> obj.batch_size = 32
>>> obj.train_model()
After the training, the model can be saved using the obj.model
>>> import tempfile
>>> with tempfile.TemporaryDirectory() as tmpdirname:
>>> obj.model.save(os.path.join(tmpdirname, 'saved_model.keras'))
As an optional parameter, one can uses the following:
- callbacks (list): A list of callback instances to apply during
training. This can be any of the callback methods provided by Keras,
such as EarlyStopping, ReduceLROnPlateau, etc. If not provided,
a default ModelCheckpoint callback is used to save the model at the
end of each epoch.
- data_augmentation (ImageDataGenerator): A data generator for data
augmentation using the Keras ImageDataGenerator class. If not provided,
the default data augmentation is used as defined in the
_create_data_generator method in the constructor class.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
callbacks
|
list
|
A list of callback instances to apply during training.
These can be any of the callback methods provided by Keras,
such as |
required |
Source code in cucaracha/ml_trainers/image_classification_trainer.py
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 | |
Trainer: Image Semantic Segmenation tasks
ImageSegmentationTrainer
Bases: MLPattern
Source code in cucaracha/ml_trainers/image_segmentation_trainer.py
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 | |
__init__(dataset_path, **kwargs)
This is the main constructor for a general Image Segmentation ML method.
Note
The dataset_path should follow the cucaracha dataset folder
organization. More details about how to organize the dataset can be
Source code in cucaracha/ml_trainers/image_segmentation_trainer.py
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 | |