Git Product home page Git Product logo

kaggle-petfinder-adoption-prediction-10th-solution's Introduction

kaggle-petfinder-adoption-prediction-10th-solution

kaggle-petfinder-adoption-prediction-10th-solution


10th Solution Summary

First of all, thanks to Petfinder.my and kaggle for hosting this great competition. And congratulations to the winners!Thanks to my teammates for their efforts. Here is our solution.

FEATURE ENGINEER

As our team name,Stacking is all you need. We have 4 group features:

features one:

  • 1)clean breed
 def deal_breed(df):
        if df['Breed1']==df['Breed2']:
            df['Breed2']=0
        if df['Breed1']!=307 & df['Breed2']==307:
            temp=df["Breed1"]
            df['Breed1']=df['Breed2']
            df['Breed2']=temp
        return df
    
  • 2)res features:
 def get_res_feat(df):
        temp=pd.DataFrame(index=range(1))
        temp['RescuerID']=df['RescuerID'].values[0]
        temp['res_type_cnt']=len(df['Type'].unique())
        temp['res_breed_cnt']=len(df['Breed1'].unique())
        temp['res_breed_mode']=df['Breed1'].mode()
        temp['res_fee_mean']=df['Fee'].mean()
        temp['res_Quantity_sum']=df['Quantity'].sum()
        temp['res_MaturitySize_mean']=df['MaturitySize'].mean()
        temp['res_Description_unique']=len(df['Description'].unique())
        return temp
  • 3)meta features from public kernel
  • 4)Description features:
  • tfidf+svg
  • desc+type+breed+color->tfidf+svg/nmf/lda
  • desc+type+breed+color->countvec+svg/lda
  • desc->wordbatch+svg
  • 5)category_col onehot+svg
  • 6)densenet121 extract img features+svg
  • 7)state features (external data)
  • state population density
  • state_rank(according to state population density)
  • 8)mean target encode with breed(breed=breed1+breed2) boost 0.007(from 0.463 to 0.470)
  • 9)linear model oof
  • use 1-7 features to build some leaner model ,get linear model oof.

with thease 101 dim features and multi-classify LGB (BEST SINGLE MODEL LB 0.471)

NOTE:

get multi-classify result and optimize it: sum([0,1,2,3,4]*prob_matrix)

class_list=[0,1,2,3,4]
pred_test_y=np.array([sum(pred_test_y[ix]*class_list) for ix in range(len(pred_test_y[:,0]))]) 

features two

In the early competition, I forked from the public kernel (lb 0.444)

features three @zhouqingsongct

use featuretools auto extract features

es = ft.EntitySet(id='data_id')
es = es.entity_from_dataframe(entity_id='PetID', dataframe=data,
                                   index='PetID')
    
need_deal_columns = ['Age', 'Breed1', 'Breed2', 'Color1', 'Color2', 'Color3', 'Description',
           'Dewormed', 'Fee', 'FurLength', 'Gender', 'Health', 'MaturitySize',
           'Name', 'PhotoAmt', 'Quantity', 'RescuerID', 'State',
           'Sterilized', 'Type', 'Vaccinated', 'VideoAmt']
for i in need_deal_columns:
    data_RescuerID = pd.DataFrame()
    data_RescuerID[i] = list(data[i].unique())
    es = es.entity_from_dataframe(entity_id=i, dataframe=data_RescuerID,
                                   index=i)
    cr = ft.Relationship( es[i][i],
                        es['PetID'][i])
    es = es.add_relationship(cr)
        
features, feature_names = ft.dfs(entityset=es, target_entity='PetID',
                                     max_depth=3,verbose=True)
    
features = pd.merge(data[['PetID']], features.reset_index(), on='PetID', how='left')
label_encode = LabelEncoder()
for i in features.columns:
    if features[i].dtype =="object":
        features[i] = features[i].fillna('未知')
        features[i] = list(map(str, features[i]))
        features[i] = label_encode.fit_transform(features[i])

features four

from my teammate @amgis3 (lb 0.470)

  • 67 manual features (details see the code of dataprocess in the part of feat4model)
  • mean target encode with breed
  • densenet121 extract img features + pca
  • description -> tfidf(ngram=(1,4)) select top 10k by chi2
  • description -> tfidf(ngram=(1,4)) select top 10k by chi2 -> svd
  • breed/color/state -> tfidf(ngram=1)
  • breed/color/state -> tfidf(ngram=1) -> svd
  • labelalldescriptions from image metadata -> tfidf(ngram=1)
  • oof from ridge model

Validation Strategy

  • StratifiedKFold by the target is used in the lgb model;
  • GroupKFold by the RescuerID is used in the ridge model to get oof

MODEL

and we stacking them with these models:

  • LGB *6(multi-classify+regression)
  • CAT *2(regression)
  • NN *3(multi-classify+regression)
  • linear model(regression)

NN @gmhost (NN structures reference to THREAD)

we do not use public Embeddings.we just use train+test desc to pretain a new w2v model(think of that are many chinese and Malay.) maybe we are wrong , our best nn is only near lb 0.44

STRUCTURES

img

QWK-optR

The open source optR predicts very few zeros, so I manually divide the smallest part of the value to 0 (0.95*LEN_0) (len_0 is the size of 0 in trainset)

def predict(self, X, coef,len_0):
        X_p = np.copy(X)
        temp = sorted(list(X_p))
        threshold=temp[int(0.95*len_0)-1]
        for i, pred in enumerate(X_p):
            if pred < threshold:
                X_p[i] = 0
            elif pred >= threshold and pred < coef[1]:
                X_p[i] = 1
            elif pred >= coef[1] and pred < coef[2]:
                X_p[i] = 2
            elif pred >= coef[2] and pred < coef[3]:
                X_p[i] = 3
            else:
                X_p[i] = 4
        return X_p

kaggle-petfinder-adoption-prediction-10th-solution's People

Contributors

chizhu avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

zbn123

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.