Source code for neodroidvision.data.detection.mnist.mnist_detection

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

__author__ = "Christian Heider Nielsen"
__doc__ = r"""
           """

from typing import Tuple

from neodroidvision.data.detection.object_detection_dataset import (
    ObjectDetectionDataset,
)


[docs]class MnistDetectionDataset(ObjectDetectionDataset): """description"""
[docs] def __init__(self, download: bool = True): super().__init__()
# TODO: FINISH @property def response_shape(self) -> Tuple[int, ...]: """description""" pass @property def predictor_shape(self) -> Tuple[int, ...]: """description""" pass def __len__(self): pass def __getitem__(self, index: int): pass