This PR adds a datasets module with a load_dataset function that loads datasets, preprocesses them, and returns various important parameters (e.g. num channels, output dimension) to perform training.
This PR also makes the model_search.Network and model.NetworkCifar objects agnostic to the number of input channels of the data (as far as I'm aware).
This PR adds a
datasets
module with aload_dataset
function that loads datasets, preprocesses them, and returns various important parameters (e.g. num channels, output dimension) to perform training.This PR also makes the
model_search.Network
andmodel.NetworkCifar
objects agnostic to the number of input channels of the data (as far as I'm aware).