lightdatamodule
LightDataModule
¶
Bases: LightningDataModule
A LightningDataModule for handling data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
batch_size |
int
|
The batch size. Required. |
required |
dataset |
Dataset
|
The dataset from the torch.utils.data Dataset class. It must implement three functions: init, len, and getitem. |
None
|
data_full_train |
Dataset
|
The full training dataset from which training and validation sets will be derived. |
None
|
data_test |
Dataset
|
The separate test dataset that will be used for testing. |
None
|
test_size |
float
|
The test size. If test_size is float, then train_size is 1 - test_size. If test_size is int, then train_size is len(data_full) - test_size. |
None
|
test_seed |
int
|
The test seed. Defaults to 42. |
42
|
num_workers |
int
|
The number of workers. Defaults to 0. |
0
|
scaler |
object
|
The spot scaler object (e.g. TorchStandardScaler). Defaults to None. |
None
|
verbosity |
int
|
The verbosity level. Defaults to 0. |
0
|
Examples:
>>> from spotpython.data.lightdatamodule import LightDataModule
from spotpython.data.csvdataset import CSVDataset
from spotpython.utils.scaler import TorchStandardScaler
import torch
# data.csv is simple csv file with 11 samples
dataset = CSVDataset(csv_file='data.csv', target_column='prognosis', feature_type=torch.long)
scaler = TorchStandardScaler()
data_module = LightDataModule(dataset=dataset, batch_size=5, test_size=0.5, scaler=scaler)
data_module.setup()
print(f"Training set size: {len(data_module.data_train)}")
print(f"Validation set size: {len(data_module.data_val)}")
print(f"Test set size: {len(data_module.data_test)}")
full_train_size: 0.5
val_size: 0.25
train_size: 0.25
test_size: 0.5
Training set size: 3
Validation set size: 3
Test set size: 6
References
See https://lightning.ai/docs/pytorch/stable/data/datamodule.html
Source code in spotpython/data/lightdatamodule.py
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 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 |
|
handle_scaling_and_transform()
¶
Fits the scaler on the training data and transforms both training and validation datasets. This function is only called when self.scaler is not None.
Source code in spotpython/data/lightdatamodule.py
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
|
predict_dataloader()
¶
Returns the predict dataloader, i.e., a pytorch DataLoader instance using the predict dataset.
Returns:
Name | Type | Description |
---|---|---|
DataLoader |
DataLoader
|
The predict dataloader. |
Examples:
>>> from spotpython.data.lightdatamodule import LightDataModule
from spotpython.data.csvdataset import CSVDataset
import torch
dataset = CSVDataset(csv_file='data.csv', target_column='prognosis', feature_type=torch.long)
data_module = LightDataModule(dataset=dataset, batch_size=5, test_size=0.5)
data_module.setup()
print(f"Predict set size: {len(data_module.data_predict)}")
Predict set size: 6
Source code in spotpython/data/lightdatamodule.py
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 |
|
prepare_data()
¶
Prepares the data for use.
Source code in spotpython/data/lightdatamodule.py
126 127 128 129 |
|
setup(stage=None)
¶
Splits the data for use in training, validation, and testing. Uses torch.utils.data.random_split() to split the data. Splitting is based on the test_size and test_seed. The test_size can be a float or an int. If a spotpython scaler object is defined, the data will be scaled.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
stage |
Optional[str]
|
The current stage. Can be “fit” (for training and validation), “test” (testing), or None (for all three stages). Defaults to None. |
None
|
Examples:
>>> from spotpython.data.lightdatamodule import LightDataModule
from spotpython.data.csvdataset import CSVDataset
import torch
dataset = CSVDataset(csv_file='data.csv', target_column='prognosis', feature_type=torch.long)
data_module = LightDataModule(dataset=dataset, batch_size=5, test_size=0.5)
data_module.setup()
print(f"Training set size: {len(data_module.data_train)}")
Training set size: 3
Source code in spotpython/data/lightdatamodule.py
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 |
|
test_dataloader()
¶
Returns the test dataloader, i.e., a pytorch DataLoader instance using the test dataset.
Returns:
Name | Type | Description |
---|---|---|
DataLoader |
DataLoader
|
The test dataloader. |
Examples:
>>> from spotpython.data.lightdatamodule import LightDataModule
from spotpython.data.csvdataset import CSVDataset
import torch
dataset = CSVDataset(csv_file='data.csv', target_column='prognosis', feature_type=torch.long)
data_module = LightDataModule(dataset=dataset, batch_size=5, test_size=0.5)
data_module.setup()
print(f"Test set size: {len(data_module.data_test)}")
Test set size: 6
Source code in spotpython/data/lightdatamodule.py
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 |
|
train_dataloader()
¶
Returns the training dataloader, i.e., a pytorch DataLoader instance using the training dataset.
Returns:
Name | Type | Description |
---|---|---|
DataLoader |
DataLoader
|
The training dataloader. |
Examples:
>>> from spotpython.data.lightdatamodule import LightDataModule
from spotpython.data.csvdataset import CSVDataset
import torch
dataset = CSVDataset(csv_file='data.csv', target_column='prognosis', feature_type=torch.long)
data_module = LightDataModule(dataset=dataset, batch_size=5, test_size=0.5)
data_module.setup()
print(f"Training set size: {len(data_module.data_train)}")
Training set size: 3
Source code in spotpython/data/lightdatamodule.py
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 |
|
transform_dataset(dataset)
¶
Applies the scaler transformation to the dataset.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dataset |
List[Tuple[Tensor, Any]]
|
The dataset to transform, consisting of data and target pairs. |
required |
Returns:
Name | Type | Description |
---|---|---|
TensorDataset |
TensorDataset
|
A PyTorch TensorDataset containing the transformed and cloned data and targets. |
Raises:
Type | Description |
---|---|
ValueError
|
If the input data is not correctly formatted for transformation. |
Source code in spotpython/data/lightdatamodule.py
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 |
|
val_dataloader()
¶
Returns the validation dataloader, i.e., a pytorch DataLoader instance using the validation dataset.
Returns:
Name | Type | Description |
---|---|---|
DataLoader |
DataLoader
|
The validation dataloader. |
Examples:
>>> from spotpython.data.lightdatamodule import LightDataModule
from spotpython.data.csvdataset import CSVDataset
import torch
dataset = CSVDataset(csv_file='data.csv', target_column='prognosis', feature_type=torch.long)
data_module = LightDataModule(dataset=dataset, batch_size=5, test_size=0.5)
data_module.setup()
print(f"Training set size: {len(data_module.data_val)}")
Training set size: 3
Source code in spotpython/data/lightdatamodule.py
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 |
|