All Projects → arjun-majumdar → Lottery_Ticket_Hypothesis-TensorFlow_2

arjun-majumdar / Lottery_Ticket_Hypothesis-TensorFlow_2

Licence: other
Implementing "The Lottery Ticket Hypothesis" paper by "Jonathan Frankle, Michael Carbin"

Programming Languages

Jupyter Notebook
11667 projects

Projects that are alternatives of or similar to Lottery Ticket Hypothesis-TensorFlow 2

Tensorflow-YOLACT
Implementation of the paper "YOLACT Real-time Instance Segmentation" in Tensorflow 2
Stars: ✭ 97 (+246.43%)
Mutual labels:  paper, tensorflow2
maml-rl-tf2
Implementation of Model-Agnostic Meta-Learning (MAML) applied on Reinforcement Learning problems in TensorFlow 2.
Stars: ✭ 16 (-42.86%)
Mutual labels:  paper, tensorflow2
Wavelet-like-Auto-Encoder
No description or website provided.
Stars: ✭ 61 (+117.86%)
Mutual labels:  paper
Movecraft
The original movement plugin for Bukkit. Reloaded. Again.
Stars: ✭ 79 (+182.14%)
Mutual labels:  paper
TF2-RL
Reinforcement learning algorithms implemented for Tensorflow 2.0+ [DQN, DDPG, AE-DDPG, SAC, PPO, Primal-Dual DDPG]
Stars: ✭ 160 (+471.43%)
Mutual labels:  tensorflow2
sensim
Sentence Similarity Estimator (SenSim)
Stars: ✭ 15 (-46.43%)
Mutual labels:  paper
food-vision-mobile-tensorflowjs
Food Vision project for mobile devices using TensorFlowJS
Stars: ✭ 19 (-32.14%)
Mutual labels:  tensorflow2
my-bookshelf
Collection of books/papers that I've read/I'm going to read/I would remember that they exist/It is unlikely that I'll read/I'll never read.
Stars: ✭ 49 (+75%)
Mutual labels:  paper
keras efficientnet v2
self defined efficientnetV2 according to official version. Including converted ImageNet/21K/21k-ft1k weights.
Stars: ✭ 56 (+100%)
Mutual labels:  tensorflow2
nalp
🗣️ NALP is a library that covers Natural Adversarial Language Processing.
Stars: ✭ 17 (-39.29%)
Mutual labels:  tensorflow2
Facial-Recognition-Attendance-System
An attendance system which uses facial recognition to detect which people are present in any image.
Stars: ✭ 48 (+71.43%)
Mutual labels:  paper
DeepBeerInventory-RL
The code for the SRDQN algorithm to train an agent for the beer game problem
Stars: ✭ 27 (-3.57%)
Mutual labels:  paper
OneStopEnglishCorpus
No description or website provided.
Stars: ✭ 38 (+35.71%)
Mutual labels:  paper
DRL in CV Papers
Research publications in Computer Vision Journals and Conferences (and arxiv) using RL.Visit Website:
Stars: ✭ 31 (+10.71%)
Mutual labels:  paper
MIRNet
Tensorflow implementation of MIRNet for Low-light image enhancement
Stars: ✭ 78 (+178.57%)
Mutual labels:  tensorflow2
FaceRecognition With FaceNet Android
Face Recognition using the FaceNet model and MLKit on Android.
Stars: ✭ 113 (+303.57%)
Mutual labels:  tensorflow2
Text and Audio classification with Bert
Text Classification in Turkish Texts with Bert
Stars: ✭ 34 (+21.43%)
Mutual labels:  tensorflow2
backyard birdbot
This project is for a Twitter bot that monitors a bird feeder in my backyard. Any detected birds are identified and posted to Twitter.
Stars: ✭ 63 (+125%)
Mutual labels:  tensorflow2
paper-template
Collection of paper latex template for several computer vision related conference.
Stars: ✭ 63 (+125%)
Mutual labels:  paper
Islands
A spigot plugin for creating customisable home islands with different biomes. https://www.spigotmc.org/resources/islands-home-islands-system.84303/
Stars: ✭ 18 (-35.71%)
Mutual labels:  paper

The Lottery Ticket Hypothesis: Finding Sparse, Trainable Neural Networks - Using TensorFlow 2

A GitHub repository implementing The Lottery Ticket Hypothesis paper by Jonathan Frankle & Michael Carbin

"lottery ticket hypothesis:" dense, randomly-initialized, feed-forward and/or convolutional networks contain subnetworks ("winning tickets") that - when trained in isolation - reach test accuracy comparable to the original network in a similar number of iterations. The winning tickets we find have won the initialization lottery: their connections have initial weights that make training particularly effective.

The paper can be downloaded from: The Lottery Ticket Hypothesis

Work done so far:

  1. MNIST dataset using 300-100-10 Dense Fully connected neural network winning ticket identification.
  2. MNIST dataset using LeNet-5 Convolutional Neural Networks.
  3. Validation of the winning ticket identified for MNIST and CIFAR-10 dataset using relevant neural networks.
  4. Conv-2/4/6 Convolutional Neural Network (CNN) for CIFAR10 dataset; pruning network till 0.5% of original connections remain and observe training and testing accuracies and losses.
  5. Pruning Algorithm implementation: numpy based unstructured, layer-wise, absolute magnitude pruning and tensorflow_model_optimization toolkit based pruning (not the focus of most codes)

Prerequisites for the code to run:

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].