Giter Club home page Giter Club logo

nndes's Introduction

Hi there πŸ‘‹

I am Leo (Leonid) Boytsov. I have been writing code for more than 30 years, professionally since 1996.

  • I am a Sr. Research Scientist @ Amazon AWS AI Labs (opinions are my own).
  • I did my pH-D mid-career @ LTI/CMU.
  • I speak Ο€torch & C++ and work on IR, NLP, and CV.
  • I remember dependency parsing & gradient boosted decision trees.

Further links:

nndes's People

Contributors

aaalgo avatar searchivarius avatar

Watchers

 avatar

nndes's Issues

incorrect GRAPH_BOTH

// found by Jichao Sun

    if (option & GRAPH_KNN) {
        // nn_new <--> nn_new
        // nn_new <--> nn_old
    }
    if (option & GRAPH_RNN) {
        // rnn_new <--> rnn_new
        // rnn_new <--> rnn_old
    }
    if (option & GRAPH_BOTH) {
        // nn_new <--> rnn_old
        // nn_new <--> rnn_new
        // nn_old <--> rnn_new
    }

If option is set to GRAPH_BOTH only, comparison is incomplete.

Original issue reported on code.google.com by [email protected] on 16 Jul 2013 at 2:14

wrong alignment size w/o SSE or AVX

./nndes -D 14  --skip 12 --gap 0 -K 20 corel.data
nndes: nndes-data.h:42: void nndes::Dataset<T, A>::reset(int, int) [with T = 
float, int A = 1]: Assertion `(ALIGN % sizeof(T)) == 0' failed.

Related code:

 24 #ifdef __GNUC__
 25 #ifdef __AVX__
 26 #define NNDES_MATRIX_ALIGN 32
 27 #else
 28 #ifdef __SSE2__
 29 #define NNDES_MATRIX_ALIGN 16
 30 #else
 31 #define NNDES_MATRIX_ALIGN 1    <---- change to 16.
 32 #endif
 33 #endif
 34 #endif

Original issue reported on code.google.com by [email protected] on 16 Jul 2013 at 2:12

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.