All Projects → broadinstitute → Keras Resnet

broadinstitute / Keras Resnet

Licence: other
Keras package for deep residual networks

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Keras Resnet

cudnn rnn theano benchmarks
No description or website provided.
Stars: ✭ 22 (-91.44%)
Mutual labels:  theano
DeepLearningCode
深度学习相关代码
Stars: ✭ 21 (-91.83%)
Mutual labels:  theano
wildflower-finder
Image classification of wildflowers using deep residual learning and convolutional neural nets
Stars: ✭ 25 (-90.27%)
Mutual labels:  theano
bihm
Bidirectional Helmholtz Machines
Stars: ✭ 40 (-84.44%)
Mutual labels:  theano
nicMSlesions
Easy multiple sclerosis white matter lesion segmentation using convolutional deep neural networks.
Stars: ✭ 33 (-87.16%)
Mutual labels:  theano
Reuters-21578-Classification
Text classification with Reuters-21578 datasets using Gensim Word2Vec and Keras LSTM
Stars: ✭ 44 (-82.88%)
Mutual labels:  theano
symbolic-pymc
Tools for the symbolic manipulation of PyMC models, Theano, and TensorFlow graphs.
Stars: ✭ 58 (-77.43%)
Mutual labels:  theano
conx
The On-Ramp to Deep Learning
Stars: ✭ 93 (-63.81%)
Mutual labels:  theano
sequence-rnn-py
Sequence analyzing using Recurrent Neural Networks (RNN) based on Keras
Stars: ✭ 28 (-89.11%)
Mutual labels:  theano
Improved-Wasserstein-GAN-application-on-MRI-images
Improved Wasserstein GAN (WGAN-GP) application on medical (MRI) images
Stars: ✭ 23 (-91.05%)
Mutual labels:  theano
DeepLearning-IDS
Network Intrusion Detection System using Deep Learning Techniques
Stars: ✭ 76 (-70.43%)
Mutual labels:  theano
2D-and-3D-Deep-Autoencoder
Convolutional AutoEncoder application on MRI images
Stars: ✭ 57 (-77.82%)
Mutual labels:  theano
STORN-keras
This is a STORN (Stochastical Recurrent Neural Network) implementation for keras!
Stars: ✭ 23 (-91.05%)
Mutual labels:  theano
Final-year-project-deep-learning-models
Deep learning for freehand sketch object recognition
Stars: ✭ 22 (-91.44%)
Mutual labels:  theano
SymJAX
Documentation:
Stars: ✭ 103 (-59.92%)
Mutual labels:  theano
VNMT
Code for "Variational Neural Machine Translation" (EMNLP2016)
Stars: ✭ 54 (-78.99%)
Mutual labels:  theano
theano-recurrence
Recurrent Neural Networks (RNN, GRU, LSTM) and their Bidirectional versions (BiRNN, BiGRU, BiLSTM) for word & character level language modelling in Theano
Stars: ✭ 40 (-84.44%)
Mutual labels:  theano
neuralnets-semantics
Word semantics Deep Learning with Vanilla Python, Keras, Theano, TensorFlow, PyTorch
Stars: ✭ 15 (-94.16%)
Mutual labels:  theano
reweighted-ws
Implementation of the reweighted wake-sleep machine learning algorithm
Stars: ✭ 39 (-84.82%)
Mutual labels:  theano
DockerKeras
We provide GPU-enabled docker images including Keras, TensorFlow, CNTK, MXNET and Theano.
Stars: ✭ 49 (-80.93%)
Mutual labels:  theano

Keras-ResNet

.. image:: https://travis-ci.org/broadinstitute/keras-resnet.svg?branch=master :target: https://travis-ci.org/broadinstitute/keras-resnet

Keras-ResNet is the Keras package for deep residual networks. It's fast and flexible.

A tantalizing preview of Keras-ResNet simplicity:

.. code-block:: python

>>> import keras

>>> import keras_resnet.models

>>> shape, classes = (32, 32, 3), 10

>>> x = keras.layers.Input(shape)

>>> model = keras_resnet.models.ResNet50(x, classes=classes)

>>> model.compile("adam", "categorical_crossentropy", ["accuracy"])

>>> (training_x, training_y), (_, _) = keras.datasets.cifar10.load_data()

>>> training_y = keras.utils.np_utils.to_categorical(training_y)

>>> model.fit(training_x, training_y)

Installation

Installation couldn’t be easier:

.. code-block:: bash

$ pip install keras-resnet

Contributing

#. Check for open issues or open a fresh issue to start a discussion around a feature idea or a bug. There is a Contributor Friendly_ tag for issues that should be ideal for people who are not very familiar with the codebase yet. #. Fork the repository_ on GitHub to start making your changes to the master branch (or branch off of it). #. Write a test which shows that the bug was fixed or that the feature works as expected. #. Send a pull request and bug the maintainer until it gets merged and published. :) Make sure to add yourself to AUTHORS_.

.. _the repository: http://github.com/0x00b1/keras-resnet .. _AUTHORS: https://github.com/0x00b1/keras-resnet/blob/master/AUTHORS.rst .. _Contributor Friendly: https://github.com/0x00b1/keras-resnet/issues?direction=desc&labels=Contributor+Friendly&page=1&sort=updated&state=open

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