All Projects → ducha-aiki → LSUV-keras

ducha-aiki / LSUV-keras

Licence: BSD-2-Clause License
Simple implementation of the LSUV initialization in keras

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to LSUV-keras

LSUV-pytorch
Simple implementation of the LSUV initialization in PyTorch
Stars: ✭ 51 (-21.54%)
Mutual labels:  convolutional-networks, initialization, lsuv, lsuv-initialization
Cnn Paper2
🎨 🎨 深度学习 卷积神经网络教程 :图像识别,目标检测,语义分割,实例分割,人脸识别,神经风格转换,GAN等🎨🎨 https://dataxujing.github.io/CNN-paper2/
Stars: ✭ 77 (+18.46%)
Mutual labels:  convolutional-networks, deeplearning
Paper Note
📚 记录一些自己读过的论文与笔记
Stars: ✭ 22 (-66.15%)
Mutual labels:  convolutional-networks
barrage
Barrage is an opinionated supervised deep learning tool built on top of TensorFlow 2.x designed to standardize and orchestrate the training and scoring of complicated models.
Stars: ✭ 16 (-75.38%)
Mutual labels:  deeplearning
SESR
SESR: Single Image Super Resolution with Recursive Squeeze and Excitation Networks
Stars: ✭ 26 (-60%)
Mutual labels:  deeplearning
Data-Scientist-In-Python
This repository contains notes and projects of Data scientist track from dataquest course work.
Stars: ✭ 23 (-64.62%)
Mutual labels:  deeplearning
coursera-ai-for-medicine-specialization
Programming assignments, labs and quizzes from all courses in the Coursera AI for Medicine Specialization offered by deeplearning.ai
Stars: ✭ 80 (+23.08%)
Mutual labels:  deeplearning
QmapCompression
Official implementation of "Variable-Rate Deep Image Compression through Spatially-Adaptive Feature Transform", ICCV 2021
Stars: ✭ 27 (-58.46%)
Mutual labels:  deeplearning
stylizeapp
A flask website for style transfer
Stars: ✭ 34 (-47.69%)
Mutual labels:  deeplearning
MTMT
Code for the CVPR 2020 paper "A Multi-task Mean Teacher for Semi-supervised Shadow Detection"
Stars: ✭ 66 (+1.54%)
Mutual labels:  deeplearning
deep-improvisation
Easy-to-use Deep LSTM Neural Network to generate song sounds like containing improvisation.
Stars: ✭ 53 (-18.46%)
Mutual labels:  deeplearning
openmrs-module-initializer
The OpenMRS Initializer module is an API-only module that processes the content of the configuration folder when it is found inside OpenMRS' application data directory.
Stars: ✭ 18 (-72.31%)
Mutual labels:  initialization
Image-Classifier
Final Project of the Udacity AI Programming with Python Nanodegree
Stars: ✭ 63 (-3.08%)
Mutual labels:  deeplearning
Satellite-Image-Forgery-Detection-and-Localization
No description or website provided.
Stars: ✭ 17 (-73.85%)
Mutual labels:  deeplearning
EasySparse
Sparse learning in TensorFlow using data acquired from Spark.
Stars: ✭ 21 (-67.69%)
Mutual labels:  deeplearning
deeptrolldetector
Deep troll uses a deep learning model that identifies whether an audio contains the Gemidao troll (AAAWN OOOWN NHAAA AWWWWN AAAAAH).
Stars: ✭ 20 (-69.23%)
Mutual labels:  deeplearning
Learning-Lab-C-Library
This library provides a set of basic functions for different type of deep learning (and other) algorithms in C.This deep learning library will be constantly updated
Stars: ✭ 20 (-69.23%)
Mutual labels:  deeplearning
bert experimental
code and supplementary materials for a series of Medium articles about the BERT model
Stars: ✭ 72 (+10.77%)
Mutual labels:  deeplearning
dd performances
DeepDetect performance sheet
Stars: ✭ 92 (+41.54%)
Mutual labels:  deeplearning
deepstreet
Traffic Sign Recognition - Fine tuning VGG16 + GTSRB
Stars: ✭ 60 (-7.69%)
Mutual labels:  deeplearning

Layer-sequential unit-variance (LSUV) initialization for Keras

This is sample code for LSUV and initializations, implemented in python script within Keras framework.

Usage:

from lsuv_init import LSUVinit
...
batch_size = 32
model = LSUVinit(model, train_imgs[:batch_size,:,:,:])

LSUV initialization is described in:

Mishkin, D. and Matas, J.,(2015). All you need is a good init. ICLR 2016 arXiv:1511.06422.

Original Caffe implementation https://github.com/ducha-aiki/LSUVinit

Torch re-implementation https://github.com/yobibyte/torch-lsuv

PyTorch implementation https://github.com/ducha-aiki/LSUV-pytorch

New! Thinc re-implementation LSUV-thinc

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