mirror of
https://github.com/labmlai/annotated_deep_learning_paper_implementations.git
synced 2025-08-26 16:50:39 +08:00
17 lines
355 B
Python
17 lines
355 B
Python
"""
|
|
---
|
|
title: CIFAR10 Experiment
|
|
summary: >
|
|
This is a reusable trainer for CIFAR10 dataset
|
|
---
|
|
|
|
# CIFAR10 Experiment
|
|
"""
|
|
|
|
from labml_helpers.datasets.cifar10 import CIFAR10Configs as CIFAR10DatasetConfigs
|
|
from labml_nn.experiments.mnist import MNISTConfigs
|
|
|
|
|
|
class CIFAR10Configs(CIFAR10DatasetConfigs, MNISTConfigs):
|
|
dataset_name: str = 'CIFAR10'
|