├── .gitignore ├── README.md ├── archs ├── cifar10 │ ├── AlexNet.py │ ├── LeNet5.py │ ├── densenet.py │ ├── fc1.py │ ├── resnet.py │ └── vgg.py ├── cifar100 │ ├── AlexNet.py │ ├── LeNet5.py │ ├── fc1.py │ ├── resnet.py │ └── vgg.py └── mnist │ ├── AlexNet.py │ ├── LeNet5.py │ ├── fc1.py │ ├── resnet.py │ └── vgg.py ├── combine_plots.py ├── main.py ├── requirements.txt └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulvigneswaran/Lottery-Ticket-Hypothesis-in-Pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulvigneswaran/Lottery-Ticket-Hypothesis-in-Pytorch/HEAD/README.md -------------------------------------------------------------------------------- /archs/cifar10/AlexNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulvigneswaran/Lottery-Ticket-Hypothesis-in-Pytorch/HEAD/archs/cifar10/AlexNet.py -------------------------------------------------------------------------------- /archs/cifar10/LeNet5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulvigneswaran/Lottery-Ticket-Hypothesis-in-Pytorch/HEAD/archs/cifar10/LeNet5.py -------------------------------------------------------------------------------- /archs/cifar10/densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulvigneswaran/Lottery-Ticket-Hypothesis-in-Pytorch/HEAD/archs/cifar10/densenet.py -------------------------------------------------------------------------------- /archs/cifar10/fc1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulvigneswaran/Lottery-Ticket-Hypothesis-in-Pytorch/HEAD/archs/cifar10/fc1.py -------------------------------------------------------------------------------- /archs/cifar10/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulvigneswaran/Lottery-Ticket-Hypothesis-in-Pytorch/HEAD/archs/cifar10/resnet.py -------------------------------------------------------------------------------- /archs/cifar10/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulvigneswaran/Lottery-Ticket-Hypothesis-in-Pytorch/HEAD/archs/cifar10/vgg.py -------------------------------------------------------------------------------- /archs/cifar100/AlexNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulvigneswaran/Lottery-Ticket-Hypothesis-in-Pytorch/HEAD/archs/cifar100/AlexNet.py -------------------------------------------------------------------------------- /archs/cifar100/LeNet5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulvigneswaran/Lottery-Ticket-Hypothesis-in-Pytorch/HEAD/archs/cifar100/LeNet5.py -------------------------------------------------------------------------------- /archs/cifar100/fc1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulvigneswaran/Lottery-Ticket-Hypothesis-in-Pytorch/HEAD/archs/cifar100/fc1.py -------------------------------------------------------------------------------- /archs/cifar100/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulvigneswaran/Lottery-Ticket-Hypothesis-in-Pytorch/HEAD/archs/cifar100/resnet.py -------------------------------------------------------------------------------- /archs/cifar100/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulvigneswaran/Lottery-Ticket-Hypothesis-in-Pytorch/HEAD/archs/cifar100/vgg.py -------------------------------------------------------------------------------- /archs/mnist/AlexNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulvigneswaran/Lottery-Ticket-Hypothesis-in-Pytorch/HEAD/archs/mnist/AlexNet.py -------------------------------------------------------------------------------- /archs/mnist/LeNet5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulvigneswaran/Lottery-Ticket-Hypothesis-in-Pytorch/HEAD/archs/mnist/LeNet5.py -------------------------------------------------------------------------------- /archs/mnist/fc1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulvigneswaran/Lottery-Ticket-Hypothesis-in-Pytorch/HEAD/archs/mnist/fc1.py -------------------------------------------------------------------------------- /archs/mnist/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulvigneswaran/Lottery-Ticket-Hypothesis-in-Pytorch/HEAD/archs/mnist/resnet.py -------------------------------------------------------------------------------- /archs/mnist/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulvigneswaran/Lottery-Ticket-Hypothesis-in-Pytorch/HEAD/archs/mnist/vgg.py -------------------------------------------------------------------------------- /combine_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulvigneswaran/Lottery-Ticket-Hypothesis-in-Pytorch/HEAD/combine_plots.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulvigneswaran/Lottery-Ticket-Hypothesis-in-Pytorch/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulvigneswaran/Lottery-Ticket-Hypothesis-in-Pytorch/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulvigneswaran/Lottery-Ticket-Hypothesis-in-Pytorch/HEAD/utils.py --------------------------------------------------------------------------------