Giter Club home page Giter Club logo

oxnn's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  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  avatar  avatar  avatar  avatar

oxnn's Issues

Not compilable on CUDA 7.5

While building on CUDA 7.5, following error messages were printed

/tmp/luarocks_oxnn-scm-1-943/oxnn/src/LSTM12Part2.cu(102): error: this declaration has no storage class or type specifier

/tmp/luarocks_oxnn-scm-1-943/oxnn/src/LSTM12Part2.cu(103): error: expected a ";"

/tmp/luarocks_oxnn-scm-1-943/oxnn/src/LSTM12Part2.cu(115): warning: parsing restarts here after previous syntax error

After the 102-th line in LSTM12Part2.cu, which is

 __thrust_hd_warning_disable__

,is commented out, the compiling becomes successful.

Do we need to omit the line?

Possible bug of recurrent propagator example?

While connecting the units of the prediction made by the network and the targets

   local losses = r.S('loss')
   for i=len,2,-1 do
      r.E { { after_out[i-1], targets[i] },
            mod_crit,
            losses[1] }
   end

But, from my understanding the target of the output of first time step (i.e. after_out[len-1]) is the input of second timestep (i.e. targets[len-1])... Does that mean the code actually should be

   local losses = r.S('loss')
   for i  = len - 1 , 1 , -1 do
      r.E { { after_out[i], targets[i] },
            mod_crit,
            losses[1] }
   end

Correct me if I me wrong. Thanks.

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.