├── LocallyConnected2d.py ├── README.md ├── accumulate_gradients.py ├── adaptive_batchnorm.py ├── adaptive_pooling_torchvision.py ├── batch_norm_manual.py ├── change_crop_in_dataset.py ├── channel_to_patches.py ├── conv_rnn.py ├── csv_chunk_read.py ├── densenet_forwardhook.py ├── edge_weighting_segmentation.py ├── image_rotation_with_matrix.py ├── mnist_autoencoder.py ├── mnist_permuted.py ├── model_sharding_data_parallel.py ├── momentum_update_nograd.py ├── pytorch_redis.py ├── shared_array.py ├── shared_dict.py ├── unet_demo.py └── weighted_sampling.py /LocallyConnected2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptrblck/pytorch_misc/HEAD/LocallyConnected2d.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptrblck/pytorch_misc/HEAD/README.md -------------------------------------------------------------------------------- /accumulate_gradients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptrblck/pytorch_misc/HEAD/accumulate_gradients.py -------------------------------------------------------------------------------- /adaptive_batchnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptrblck/pytorch_misc/HEAD/adaptive_batchnorm.py -------------------------------------------------------------------------------- /adaptive_pooling_torchvision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptrblck/pytorch_misc/HEAD/adaptive_pooling_torchvision.py -------------------------------------------------------------------------------- /batch_norm_manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptrblck/pytorch_misc/HEAD/batch_norm_manual.py -------------------------------------------------------------------------------- /change_crop_in_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptrblck/pytorch_misc/HEAD/change_crop_in_dataset.py -------------------------------------------------------------------------------- /channel_to_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptrblck/pytorch_misc/HEAD/channel_to_patches.py -------------------------------------------------------------------------------- /conv_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptrblck/pytorch_misc/HEAD/conv_rnn.py -------------------------------------------------------------------------------- /csv_chunk_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptrblck/pytorch_misc/HEAD/csv_chunk_read.py -------------------------------------------------------------------------------- /densenet_forwardhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptrblck/pytorch_misc/HEAD/densenet_forwardhook.py -------------------------------------------------------------------------------- /edge_weighting_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptrblck/pytorch_misc/HEAD/edge_weighting_segmentation.py -------------------------------------------------------------------------------- /image_rotation_with_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptrblck/pytorch_misc/HEAD/image_rotation_with_matrix.py -------------------------------------------------------------------------------- /mnist_autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptrblck/pytorch_misc/HEAD/mnist_autoencoder.py -------------------------------------------------------------------------------- /mnist_permuted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptrblck/pytorch_misc/HEAD/mnist_permuted.py -------------------------------------------------------------------------------- /model_sharding_data_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptrblck/pytorch_misc/HEAD/model_sharding_data_parallel.py -------------------------------------------------------------------------------- /momentum_update_nograd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptrblck/pytorch_misc/HEAD/momentum_update_nograd.py -------------------------------------------------------------------------------- /pytorch_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptrblck/pytorch_misc/HEAD/pytorch_redis.py -------------------------------------------------------------------------------- /shared_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptrblck/pytorch_misc/HEAD/shared_array.py -------------------------------------------------------------------------------- /shared_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptrblck/pytorch_misc/HEAD/shared_dict.py -------------------------------------------------------------------------------- /unet_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptrblck/pytorch_misc/HEAD/unet_demo.py -------------------------------------------------------------------------------- /weighted_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptrblck/pytorch_misc/HEAD/weighted_sampling.py --------------------------------------------------------------------------------