feat(architecture): group scripts in directory
Grouping scripts (for example read_cifar.py, knn.py, and later mlp.py) in a directory, to adopt modular architecture. These modules only contain functions used by main.py, and corresponding tests in the 'tests' directory. main.py is the main script, that calls the functions inside modules.