Skip to content

Instantly share code, notes, and snippets.

View swghosh's full-sized avatar

Swarup Ghosh swghosh

View GitHub Profile
@djdongjin
djdongjin / gsoc.md
Last active September 4, 2020 16:49
GSoC 2020 Summary

Google Summer of Code with TensorFlow

Mentors:

  • Elizabeth Kemp
  • Jaeyoun Kim

This is a summary of my GSoC project: New Tools for TensorFlow Hub. In this project, I extended and created tools that build models from command line directly. At the end, I reproduced a RoBERTa model using TF2.

A detailed blog post about the project can be found at TBD.

@joelouismarino
joelouismarino / googlenet.py
Last active October 9, 2023 07:09
GoogLeNet in Keras
from __future__ import print_function
import imageio
from PIL import Image
import numpy as np
import keras
from keras.layers import Input, Dense, Conv2D, MaxPooling2D, AveragePooling2D, ZeroPadding2D, Dropout, Flatten, Concatenate, Reshape, Activation
from keras.models import Model
from keras.regularizers import l2
from keras.optimizers import SGD