Giter VIP home page Giter VIP logo

pyaiutils's People

Contributors

arunmallya avatar bigredt avatar jrock08 avatar kevjshih avatar mbz avatar tomlepaine avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

pyaiutils's Issues

Handle tf12 depreciations

random_normal_initializer is wrong for both conv and dense

In the layers.py we are initializing the weights by the following line:

w_init = tf.random_normal_initializer(stddev)

but the first argument should be mean (which is 0.0 in this case). so it should be updated to:

w_init = tf.random_normal_initializer(0.0, stddev)

I would do this myself, if I had write permission! :)

Fix Batchnorm with upgrade to tf12

Currently, batchnorm doesn't work as expected with tf12. I think this is due to changes in how the EMA functions, since you have to pass in a value for placeholders (likely to initialize the EMA). I don't know how to fix this as of yet.

Setup continuous integration?

Hi @arunmallya @kevjshih @BigRedT,
It sounds like there is interest in continuous integration for this repo. And since we have a few tests, it seems like a good idea.

Someone suggested Travis CI. It seems like all you need to get travis ci working is:

  • Give travis ci access to your repo.
  • Make a config file called .travis.yml that says: which version of python to try, which dependencies need to be installed, and what testing package to use.
  • Save the .travis.yml in your repo.

Blocks is a neural network library that used a lot of the python scientific computing stack and they use travis ci too! We can probably copy a lot of what they do. Here is their .travis.yml file: link

Who wants to try doing this? ๐Ÿ˜ˆ

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.