All Projects → deep-diver → CIFAR10-VGG19-Tensorflow

deep-diver / CIFAR10-VGG19-Tensorflow

Licence: other
No description or website provided.

Programming Languages

Jupyter Notebook
11667 projects

Projects that are alternatives of or similar to CIFAR10-VGG19-Tensorflow

Keras-MultiClass-Image-Classification
Multiclass image classification using Convolutional Neural Network
Stars: ✭ 48 (+77.78%)
Mutual labels:  transfer-learning, vgg19
AD Prediction
Alzheimer's Disease Prediction by using ResNet, AlexNet
Stars: ✭ 118 (+337.04%)
Mutual labels:  transfer-learning
NTUA-slp-nlp
💻Speech and Natural Language Processing (SLP & NLP) Lab Assignments for ECE NTUA
Stars: ✭ 19 (-29.63%)
Mutual labels:  transfer-learning
awesome-contrastive-self-supervised-learning
A comprehensive list of awesome contrastive self-supervised learning papers.
Stars: ✭ 748 (+2670.37%)
Mutual labels:  transfer-learning
cmd
Central Moment Discrepancy for Domain-Invariant Representation Learning (ICLR 2017, keras)
Stars: ✭ 53 (+96.3%)
Mutual labels:  transfer-learning
cifar-tensorflow
No description or website provided.
Stars: ✭ 18 (-33.33%)
Mutual labels:  cifar-10
ParsBigBird
Persian Bert For Long-Range Sequences
Stars: ✭ 58 (+114.81%)
Mutual labels:  transfer-learning
WhiteBox-Part1
In this part, I've introduced and experimented with ways to interpret and evaluate models in the field of image. (Pytorch)
Stars: ✭ 34 (+25.93%)
Mutual labels:  cifar-10
mSRGAN-A-GAN-for-single-image-super-resolution-on-high-content-screening-microscopy-images.
Generative Adversarial Network for single image super-resolution in high content screening microscopy images
Stars: ✭ 52 (+92.59%)
Mutual labels:  vgg19
DenseNet-Cifar10
Train DenseNet on Cifar-10 based on Keras
Stars: ✭ 39 (+44.44%)
Mutual labels:  cifar-10
fetch
A set of deep learning models for FRB/RFI binary classification.
Stars: ✭ 19 (-29.63%)
Mutual labels:  transfer-learning
neuralBlack
A Multi-Class Brain Tumor Classifier using Convolutional Neural Network with 99% Accuracy achieved by applying the method of Transfer Learning using Python and Pytorch Deep Learning Framework
Stars: ✭ 36 (+33.33%)
Mutual labels:  transfer-learning
KD3A
Here is the official implementation of the model KD3A in paper "KD3A: Unsupervised Multi-Source Decentralized Domain Adaptation via Knowledge Distillation".
Stars: ✭ 63 (+133.33%)
Mutual labels:  transfer-learning
Transfer-Learning
Inception V3 for Transfer Learning on Cats and Dogs
Stars: ✭ 17 (-37.04%)
Mutual labels:  transfer-learning
cifar10
Predict CIFAR-10 labels with 88% accuracy using keras.
Stars: ✭ 32 (+18.52%)
Mutual labels:  cifar-10
MinTL
MinTL: Minimalist Transfer Learning for Task-Oriented Dialogue Systems
Stars: ✭ 61 (+125.93%)
Mutual labels:  transfer-learning
digital peter aij2020
Materials of the AI Journey 2020 competition dedicated to the recognition of Peter the Great's manuscripts, https://ai-journey.ru/contest/task01
Stars: ✭ 61 (+125.93%)
Mutual labels:  transfer-learning
Inferno-Realtime-Fire-detection-using-CNNs
FPGA Deployable Fire Detection Model for Real-Time Video Surveillance Systems Using Convolutional Neural Networks
Stars: ✭ 24 (-11.11%)
Mutual labels:  transfer-learning
tradaboost
Transfer learning algorithm TrAdaboost,coded by python
Stars: ✭ 96 (+255.56%)
Mutual labels:  transfer-learning
finetuner
Finetuning any DNN for better embedding on neural search tasks
Stars: ✭ 442 (+1537.04%)
Mutual labels:  transfer-learning

Transfer Learning on CIFAR-10 using VGG19 in Tensorflow

This repository shows the simple steps for transfer learning. In particular, CIFAR-10 dataset is chosen, and VGG19 model is used to train. The model is pre-trained and borrowed from https://github.com/taehoonlee/tensornets.git. The best accuracy I could get is about 91%.

Important concepts to know (in general)

While writing the notebook, I have noticed that I should be able to answer the following questions to perform transfer learning. The answers to them in implementation could be slightly different, but the concept is the same. In my choice of the pre-trained model, I will show my own answers.

  1. Choose the model (VGG16, VGG19, ResNet, DenseNet, ...)
  2. Search for the implementation for the model (Github)
  3. Know how to create the model
  4. Know how to load the pre-trained weights
  5. Know what the model outputs at the last layer
  6. Know the shape of the input data
  7. Know how to re-scale the original image(data) to fit into the model

Prediction Result

prediction result

References

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].