Skip to content
This repository has been archived by the owner on Jun 22, 2022. It is now read-only.

Dev time correction #144

Merged
merged 41 commits into from
Jul 20, 2018
Merged
Show file tree
Hide file tree
Changes from 40 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
44812ab
age/employment dummies (#104)
jakubczakon Jul 4, 2018
ea3cff4
added diff features
Jul 4, 2018
9fc12eb
New handcrafted features (#102)
pknut Jul 4, 2018
f06d19a
Dev nan count (#105)
jakubczakon Jul 4, 2018
3aecd9d
Dev fe installments (#106)
jakubczakon Jul 5, 2018
5b738d4
Dev fe instalments dynamic (#107)
jakubczakon Jul 5, 2018
f3cd0b6
added number of credit agreement change features (#109)
jakubczakon Jul 5, 2018
7cd2071
Dynamic features - previous application (#108)
pknut Jul 6, 2018
5ec73e2
Notebook - feature importance (#112)
Ninoko Jul 9, 2018
996dae4
Dev speed up (#111)
jakubczakon Jul 9, 2018
04f047d
dropped duplicated agg
Jul 9, 2018
8d12c3d
POS_CASH added features
Jul 10, 2018
4d07dae
XMerge remote-tracking branch 'upstream/dev' into dev
Jul 10, 2018
3872a94
added second level models (#126)
jakubczakon Jul 10, 2018
2b18bf8
POS CASH features added
Jul 12, 2018
a8d984b
Family features (#128)
Ninoko Jul 12, 2018
53c28fe
Merge remote-tracking branch 'upstream/dev' into dev
Jul 12, 2018
28cf42b
POS_CASH_balance feature cleaning
Jul 13, 2018
45affca
Yaml adjustment
Jul 13, 2018
7bd7b6a
Data cleaning and two new features (previous application) (#129)
pknut Jul 13, 2018
38bbabd
Data cleaning - fix (#130)
pknut Jul 13, 2018
7f6a5ce
Initail bureau_balance features
Jul 13, 2018
68ca3be
Dev fractions (#132)
jakubczakon Jul 16, 2018
c9c9c69
Dev (#134)
Jul 16, 2018
e0c061e
fix misinterpretations
Ninoko Jul 16, 2018
49eaad3
fix misinterpretations
Ninoko Jul 16, 2018
70dfeef
Code cleanup
Jul 16, 2018
84fbfdc
Bug fix
Jul 16, 2018
cba7ce7
NaN handling
Jul 16, 2018
54c3d4a
Add cleaning in application_groupby_agg (#137)
pknut Jul 17, 2018
3308bb4
Merge remote-tracking branch 'upstream/dev' into dev_bureau_balance
Jul 17, 2018
39c161a
Interaction features (#139)
Ninoko Jul 18, 2018
15e85e3
resolved conflicts
Jul 18, 2018
dc5f0ea
Time correction
Jul 18, 2018
5bdbaad
Merge remote-tracking branch 'upstream/dev' into dev_time_correction
Jul 18, 2018
8e749f6
Full time count correction
Jul 18, 2018
8ac297f
Time features correction and bureau_balance features
Jul 20, 2018
490a841
Merge remote-tracking branch 'upstream/dev' into dev_time_correction
Jul 20, 2018
5bd61ce
Merge remote-tracking branch 'upstream/dev' into dev_time_correction
Jul 20, 2018
ae9ab64
Bug fixing
Jul 20, 2018
39b9315
Bug fixing
Jul 20, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions configs/neptune.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,15 @@ parameters:
fill_value: 0

# Feature Extraction
installments__last_k_trend_periods: '[10, 50, 100, 500]'
installments__last_k_agg_periods: '[1, 5, 10, 20, 50, 100]'
installments__last_k_agg_period_fractions: '[(5,20),(5,50),(10,50),(10,100),(20,100)]'
pos_cash__last_k_trend_periods: '[6, 12]'
pos_cash__last_k_agg_periods: '[6, 12, 30]'
installments__last_k_trend_periods: '[180, 360, 720]'
installments__last_k_agg_periods: '[60, 180, 360, 720, 1500]'
installments__last_k_agg_period_fractions: '[(60,180),(60,360),(180,1500),(360,1500)]'
pos_cash__last_k_trend_periods: '[6, 12, 60]'
pos_cash__last_k_agg_periods: '[6, 12, 24, 60]'
pos_cash__last_k_agg_period_fractions: '[(6,24), (12, 60)]'
bureau_balance__last_k_trend_periods: '[6, 12, 60]'
bureau_balance__last_k_agg_periods: '[6, 12, 24, 60]'
bureau_balance__last_k_agg_period_fractions: '[(6,24), (12, 60)]'
application_aggregation__use_diffs_only: True
use_nan_count: True

Expand Down
18 changes: 11 additions & 7 deletions configs/neptune_random_search.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project: ORGANIZATION/home-credit

name: home-credit-default-risk
tags: [solution-4]
tags: [solution-6]

metric:
channel: 'ROC_AUC'
Expand Down Expand Up @@ -33,7 +33,7 @@ parameters:

# Kaggle
kaggle_api: 0
kaggle_message: 'solution-4'
kaggle_message: 'solution-6'

# Data preparation
n_cv_splits: 5
Expand All @@ -51,11 +51,15 @@ parameters:
fill_value: None

# Feature Extraction
installments__last_k_trend_periods: '[10, 50, 100, 500]'
installments__last_k_agg_periods: '[1, 5, 10, 50, 100, 500]'
installments__last_k_agg_period_fractions: '[(5,20),(5,50),(10,50),(10,100),(20,100)]'
pos_cash__last_k_trend_periods: '[6, 12]'
pos_cash__last_k_agg_periods: '[6, 12, 30]'
installments__last_k_trend_periods: '[180, 360, 720]'
installments__last_k_agg_periods: '[60, 180, 360, 720, 1500]'
installments__last_k_agg_period_fractions: '[(60,180),(60,360),(180,1500),(360,1500)]'
pos_cash__last_k_trend_periods: '[6, 12, 60]'
pos_cash__last_k_agg_periods: '[6, 12, 24, 60]'
pos_cash__last_k_agg_period_fractions: '[(6,24), (12, 60)]'
bureau_balance__last_k_trend_periods: '[6, 12, 60]'
bureau_balance__last_k_agg_periods: '[6, 12, 24, 60]'
bureau_balance__last_k_agg_period_fractions: '[(6,24), (12, 60)]'
application_aggregation__use_diffs_only: True
use_nan_count: True

Expand Down
4 changes: 4 additions & 0 deletions configs/neptune_stacking.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ parameters:
installments__last_k_agg_period_fractions: None
pos_cash__last_k_trend_periods: None
pos_cash__last_k_agg_periods: None
pos_cash__last_k_agg_period_fractions: None
bureau_balance__last_k_trend_periods: None
bureau_balance__last_k_agg_periods: None
bureau_balance__last_k_agg_period_fractions: None
application_aggregation__use_diffs_only: True
use_nan_count: True

Expand Down
4 changes: 2 additions & 2 deletions notebooks/eda-application.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -535,9 +535,9 @@
],
"metadata": {
"kernelspec": {
"display_name": "cpu py3",
"display_name": "Python 3",
"language": "python",
"name": "cpu_py3"
"name": "python3"
},
"language_info": {
"codemirror_mode": {
Expand Down
Loading