├── .gitignore ├── 1958-perceptron ├── README.md ├── binary_adaline_minibatch.py ├── binary_multilayer_minibatch.py └── iris.data ├── LICENSE ├── README.md ├── classifiers └── xgb │ ├── iris.ipynb │ ├── requirements.txt │ └── train.py ├── convnet ├── README ├── config.py ├── sweep.yml ├── train.py ├── train_wandb.py └── trainer.py ├── datasets └── upload_iris.py ├── preprocessing ├── README.md ├── multi_file_example.py ├── save_v_mmap.py └── single_file_example.py ├── requirements.txt └── thoughts ├── README ├── bench ├── dataloader │ ├── Makefile │ ├── load_from_disk.py │ ├── make_example_tensor.py │ ├── naive.py │ └── preallocate_on_gpu.py └── preprocessing │ ├── .gitignore │ ├── convert_imagenet_to_hdf5.py │ ├── hdf5_dataloader.py │ ├── hdf5_handwritten_loader.py │ ├── load_hf_imagenet_1k.py │ ├── load_imagefolder.py │ ├── np_memmap_loader.py │ └── read_hdf5.py └── view_model.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/.gitignore -------------------------------------------------------------------------------- /1958-perceptron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/1958-perceptron/README.md -------------------------------------------------------------------------------- /1958-perceptron/binary_adaline_minibatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/1958-perceptron/binary_adaline_minibatch.py -------------------------------------------------------------------------------- /1958-perceptron/binary_multilayer_minibatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/1958-perceptron/binary_multilayer_minibatch.py -------------------------------------------------------------------------------- /1958-perceptron/iris.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/1958-perceptron/iris.data -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/README.md -------------------------------------------------------------------------------- /classifiers/xgb/iris.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/classifiers/xgb/iris.ipynb -------------------------------------------------------------------------------- /classifiers/xgb/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/classifiers/xgb/requirements.txt -------------------------------------------------------------------------------- /classifiers/xgb/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/classifiers/xgb/train.py -------------------------------------------------------------------------------- /convnet/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/convnet/README -------------------------------------------------------------------------------- /convnet/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/convnet/config.py -------------------------------------------------------------------------------- /convnet/sweep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/convnet/sweep.yml -------------------------------------------------------------------------------- /convnet/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/convnet/train.py -------------------------------------------------------------------------------- /convnet/train_wandb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/convnet/train_wandb.py -------------------------------------------------------------------------------- /convnet/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/convnet/trainer.py -------------------------------------------------------------------------------- /datasets/upload_iris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/datasets/upload_iris.py -------------------------------------------------------------------------------- /preprocessing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/preprocessing/README.md -------------------------------------------------------------------------------- /preprocessing/multi_file_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/preprocessing/multi_file_example.py -------------------------------------------------------------------------------- /preprocessing/save_v_mmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/preprocessing/save_v_mmap.py -------------------------------------------------------------------------------- /preprocessing/single_file_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/preprocessing/single_file_example.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/requirements.txt -------------------------------------------------------------------------------- /thoughts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/thoughts/README -------------------------------------------------------------------------------- /thoughts/bench/dataloader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/thoughts/bench/dataloader/Makefile -------------------------------------------------------------------------------- /thoughts/bench/dataloader/load_from_disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/thoughts/bench/dataloader/load_from_disk.py -------------------------------------------------------------------------------- /thoughts/bench/dataloader/make_example_tensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/thoughts/bench/dataloader/make_example_tensor.py -------------------------------------------------------------------------------- /thoughts/bench/dataloader/naive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/thoughts/bench/dataloader/naive.py -------------------------------------------------------------------------------- /thoughts/bench/dataloader/preallocate_on_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/thoughts/bench/dataloader/preallocate_on_gpu.py -------------------------------------------------------------------------------- /thoughts/bench/preprocessing/.gitignore: -------------------------------------------------------------------------------- 1 | *.hdf5 2 | -------------------------------------------------------------------------------- /thoughts/bench/preprocessing/convert_imagenet_to_hdf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/thoughts/bench/preprocessing/convert_imagenet_to_hdf5.py -------------------------------------------------------------------------------- /thoughts/bench/preprocessing/hdf5_dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/thoughts/bench/preprocessing/hdf5_dataloader.py -------------------------------------------------------------------------------- /thoughts/bench/preprocessing/hdf5_handwritten_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/thoughts/bench/preprocessing/hdf5_handwritten_loader.py -------------------------------------------------------------------------------- /thoughts/bench/preprocessing/load_hf_imagenet_1k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/thoughts/bench/preprocessing/load_hf_imagenet_1k.py -------------------------------------------------------------------------------- /thoughts/bench/preprocessing/load_imagefolder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/thoughts/bench/preprocessing/load_imagefolder.py -------------------------------------------------------------------------------- /thoughts/bench/preprocessing/np_memmap_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/thoughts/bench/preprocessing/np_memmap_loader.py -------------------------------------------------------------------------------- /thoughts/bench/preprocessing/read_hdf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/thoughts/bench/preprocessing/read_hdf5.py -------------------------------------------------------------------------------- /thoughts/view_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitorilabs/papers/HEAD/thoughts/view_model.py --------------------------------------------------------------------------------