Giter Site home page Giter Site logo

kaggle_higgs's Introduction

kaggle_higgs

My winning solution for Kaggle Higgs Machine Learning Challenge (single classifier, xgboost)

The full description is linked to this page: http://no2147483647.wordpress.com/2014/09/17/winning-solution-of-kaggle-higgs-competition-what-a-single-model-can-do/

Thanks to xgboost for providing the fast GBM model. Thanks to glh3 for their original work on feature interface https://github.com/ghl3/higgs-kaggle

#usage

test_xgboost_pandas.py: the cross validation script. the original version is from Kaggle forum https://www.kaggle.com/c/higgs-boson/forums/t/8207/to-ams-3-6-model-can-you-share-you-local-cv-score/44825#post44825

higgs-numpy_pandas.py: the model generating script

higgs-pred_pandas.py: the submission generating script

run.all.sh: a simple script of generating model and generating submission

By running the default parameter of 3000 steps and max_depth of 9, one can reproduce the current best leaderboard score of 3.73 which is ranked 25th/1792

kaggle_higgs's People

Contributors

phunterlau 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

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

kaggle_higgs's Issues

`eta_plus(x, y)` error

def eta_plus(x, y):
    return np.sqrt(x*x/2 + 2*y*y - 2*x*y)

It looks as if there's a small error here, the right way is:

def eta_plus(x, y):
    return np.sqrt((x**2) / 2 + (y**2) / 2 - x*y)

A counterexample for your function is (x, y) = (0, 2) with a distance sqrt(2) to x=y

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.