Giter VIP home page Giter VIP logo

kaggle-malware's Introduction

Hello, I'm Insaf Ashrapov, Lead Data Scientist, Sberbank 👋

Twitter Follow Linkedin: Insaf Medium Badge Kaggle Badge


https://t.me/ai_tablet telegram channel (ru)

Top rank on kaggle is 417.

My portfolio with some of my projects, which include Kaggle kernels, pet-projects, articles, etc.

My Github stats

Insaf's github stats

kaggle-malware's People

Stargazers

 avatar

Watchers

 avatar

kaggle-malware's Issues

Validation strategy

If you sort your Data by AvSigVersion (as numeric) and split Train Data on Fit and Val sets as Past and Future observations, you can get your CV almost the same as LB. It happens because 84% of observations in Test Data are in the future by AvSigVersion column. For example if I split the data on 60 and 40 I get about 0.69 CV, and about 0.7 CV in case 80/20.

Adversarial Validation (пример использования тут https://www.kaggle.com/tunguz/elo-adversarial-validation) если local CV в зоне 0.04 от паблика, то норм

Fast computation of count features

сomputation of count features
train[c].map(train[c].value_counts())

Aggregation cols:

def add_num_feats(df, numerical_cols):
    gr = df.groupby('id')
    for col in numerical_cols:
        for agg in ['sum', 'mean', 'count']:
            df[col+'_'+agg] = gr[col].transform(agg)
    return df

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.