mnist
MNISTAnomalyDataModule(data_path, good_number, limit_data=100, category=None, **kwargs)
¶
Bases: AnomalyDataModule
Standard anomaly datamodule with automatic download of the MNIST dataset.
Parameters:
-
data_path
(
str
) –Path to the dataset
-
good_number
(
int
) –Which number to use as a good class, all other numbers are considered anomalies.
-
category
(
str | None
, default:None
) –The category of the dataset. For mnist this is always None.
-
limit_data
(
int
, default:100
) –Limit the number of images to use for training and testing. Defaults to 100.
-
**kwargs
(
Any
, default:{}
) –Additional arguments to pass to the AnomalyDataModule.
Source code in quadra/datamodules/generic/mnist.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
|
download_data()
¶
Download the MNIST dataset and move images in the right folders.
Source code in quadra/datamodules/generic/mnist.py
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 |
|