Git Product home page Git Product logo

arogozhnikov.github.io's People

Contributors

alonsosilvaallende avatar arogozhnikov avatar brotherofken avatar deargle avatar konstantinschubert avatar micahstubbs 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  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

arogozhnikov.github.io's Issues

how reproduce great code 2016-02-15-TestingLibFM.ipynb ?

may you share function load_problems
so this line will not give error
import load_problems
then it it will be possible to reproduce results
thanks
by the way , what you think why logistic regression is so good
actually there is no need in FM??

General Question

Thank you for a great post on comparison of different Factorization Machine implementations.

I have a very basic query; Is factorization machine designed to work only with binary fields? Do we need to one hot encode all features? How are real-valued featured handled?

Thank you!

Не работает визуализация градиентного бустинга.

На странице http://arogozhnikov.github.io/2016/06/24/gradient_boosting_explained.html в Хроме пишет, что "Webgl is not supported by your browser - visit http://get.webgl.org for more info". Но зайдя на http://get.webgl.org я вижу вращающийся куб и написано: "Your browser supports WebGL", т.е. он всё таки работает.

В консоле браузера выводится следующая ошибка:

plotly-1.13.js:77919 Uncaught TypeError: Cannot read property 'canvas' of undefined
initializeGLPlot@ plotly-1.13.js:77919
Scene @ plotly-1.13.js:78005
plotGl3d @ plotly-1.13.js:76899
drawData @ plotly-1.13.js:63735
lib.syncOrAsync @ plotly-1.13.js:61329
Plotly.plot @ plotly-1.13.js:63772
Plotly.newPlot @ plotly-1.13.js:64297
DecisionTreeVisualization @ gradient_boosting_explained.js:143
(anonymous function) @ gradient_boosting_explained.js:175

Видимо или ошибка в plotly или в том, как его используют.

Tips and Tricks 2 Bug

In notebooks/2015-09-30-NumpyTipsAndTricks2.ipynb,

def running_average_simple(seq, window=100):
    result = np.zeros(len(seq) - window)  # The bug is in this line
    for i in range(len(result)):
        result[i] = np.mean(seq[i:i + window])
    return result

Should be

def running_average_simple(seq, window=100):
    result = np.zeros(len(seq) - window + 1)  # Fixed off by one bug
    for i in range(len(result)):
        result[i] = np.mean(seq[i:i + window])
    return result

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.