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

Dev fractions #132

Merged
merged 2 commits into from
Jul 16, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
9 changes: 5 additions & 4 deletions configs/neptune.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ parameters:

# 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_periods: '[1, 5, 10, 20, 50, 100]'
installments__last_k_agg_period_fractions: '[(5,20),(5,50),(10,50),(10,100),(20,100)]'
application_aggregation__use_diffs_only: True
use_nan_count: True

Expand All @@ -68,12 +69,12 @@ parameters:
lgbm__max_bin: 300
lgbm__max_depth: -1
lgbm__num_leaves: 35
lgbm__min_child_samples: 50
lgbm__min_child_samples: 70
lgbm__subsample: 1.0
lgbm__subsample_freq: 1
lgbm__colsample_bytree: 0.2
lgbm__colsample_bytree: 0.05
lgbm__min_gain_to_split: 0.5
lgbm__reg_lambda: 100.0
lgbm__reg_lambda: 100
lgbm__reg_alpha: 0.0
lgbm__scale_pos_weight: 1

Expand Down
1 change: 1 addition & 0 deletions configs/neptune_random_search.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ parameters:
# 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)]'
application_aggregation__use_diffs_only: True
use_nan_count: True

Expand Down
5 changes: 3 additions & 2 deletions configs/neptune_stacking.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,9 @@ parameters:
fill_value: 0

# 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_trend_periods: None
installments__last_k_agg_periods: None
installments__last_k_agg_period_fractions: None
application_aggregation__use_diffs_only: True
use_nan_count: True

Expand Down
Loading