My Pytorch Implementation of VGG16 based off of https://arxiv.org/pdf/1409.1556.pdf
Here is a sample of the classification on CIFAR-10 after about 20 epochs of training:
Classifications:
Horse, Dog, Ship, Plane Ship, Deer, Horse, Plane Cat, Horse, Cat, Ship Dog, Dog, Car, Horse
My Pytorch Implementation of Resnet34 from https://arxiv.org/pdf/1512.03385.pdf. This model performs slightly better than VGG16, but with less training time and takes about half as much to classify a new example.
Here is a sample of the classification on CIFAR-10 after about 7 epochs of training:
Classifications:
Dog, Car, Ship, Plane, Frog, Frog, Car, Frog, Cat, Car, Plane, Truck, Dog, Horse, Truck, Ship
My Pytorch implementation of a Generative Adverserial Network is based on https://arxiv.org/pdf/1406.2661.pdf
Below is an example of 25 randonly selected examples from the generator over 15 epochs of training on the MNIST dataset:
Below is an example of 25 randonly selected examples from the generator over 15 epochs of training on the MNIST dataset, also included are the encoding layer which was chosen to be of only size 4:
Here is an example of the weights from the logistic and softmax regressions on MNIST, SGD was used to fit them and there were 10000 samples chosen.
Logistic Regression (0/1):
Softmax Regression:
0 | 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 | 9 |