GithubHelp home page GithubHelp logo

nn-timeltsm's Introduction

NN-TimeLSTM

Introduction

Development History

  • TimeLSTMLayer.py and LSTM_AlexGraves.py are 1st version of codes. However, it is obsolete because it ignores the information exchange among different neurons.
  • LSTM_v1.py is a self-written LSTM to test our ability and to prove that weight initialisation is important.
  • TimeLSTM_v1.py is our replication of Alex Graves LSTM
  • TimeLSTM_v2.py uses less parameters
  • TimeLSTM_v3.py uses 3 types of time gates
  • TimeLSTM_v4.py introduces the prediction end time as an additive output

Device Management

  • In our model nn.Parameter is kept on the CPU while only computation is performed on the GPU in a differentiable manner. That way, it will automatically accumulate back onto the CPU parameters. See the explanation by albanD
  • Also, our model supports multiple GPUs as in the stackoverflow explanation

hidden states -> predicted RSSI

  • 1st solution is to use a DNN to exact the predicted RSSI for the next available beacon interval Hidden states features at n features
    unknown_feature
    ...
    unknown_feature
    rssi_last,
    left_available_time,
    
    We make another time hidden states at n features. It is created by another DNN from the difference between the estimated time period and the last available time point (two difference).
  • 2nd solution is to take the difference between the estimated time period and the last available time point (two difference),

Others

nn-timeltsm's People

Contributors

whatshow avatar zyody avatar haoliplus 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.