Giter Club home page Giter Club logo

keras-uniformnoise's Introduction

Uniform Noise layer for Keras

This is a simple Keras layer to add random noise drawn from a uniform distribution to a Tensor.

Usage:

import keras
from keras.models import Model
from keras.layers import Conv2D, Flatten, Dense, Input
from uniform_noise import UniformNoise

inputs = Input((10, 10, 3))
conv1 = Conv2D(4, (2,2), activation='relu')(inputs)
conv1 = UniformNoise(minval=-5.0, maxval=-5.0)(conv1)
conv2 = Conv2D(2, (2,2), activation='relu')(conv1)
conv2 = UniformNoise()(conv2)  # Will use default minval=-1.0 and maxval=1.0
fc = Flatten()(conv2)
out = Dense(5, activation='softmax')(fc)

model = Model(inputs=inputs, outputs=out)

model.compile(loss='categorical_crossentropy', optimizer='sgd', metrics=['accuracy'])

# For some given x and y
model.fit(x, y)

keras-uniformnoise's People

Contributors

ritwikgupta avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.