Skip to content

Instantly share code, notes, and snippets.

View rishab-sharma's full-sized avatar
:octocat:
KRAKEN

Rishab Sharma rishab-sharma

:octocat:
KRAKEN
  • ISRO - Indian Space Research Organisation
  • New Delhi
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@neerajshukla1911
neerajshukla1911 / keras_fine_tune_example.py
Created June 18, 2017 07:01
Keras Fine Tune example
import os
os.environ["CUDA_VISIBLE_DEVICES"] = "0"
from keras import applications
from keras.preprocessing.image import ImageDataGenerator
from keras import optimizers
from keras.models import Sequential, load_model
from keras.layers import Dropout, Flatten, Dense, Input, GlobalAveragePooling2D
from keras.engine.training import Model
import tensorflow as tf
@EncodeTS
EncodeTS / keras VGG-Face Model.md
Last active February 19, 2024 06:56
VGG-Face model for keras

VGG-Face model for Keras

This is the Keras model of VGG-Face.

It has been obtained through the following method:

  • vgg-face-keras:directly convert the vgg-face matconvnet model to keras model
  • vgg-face-keras-fc:first convert vgg-face caffe model to mxnet model,and then convert it to keras model

Details about the network architecture can be found in the following paper: