-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yml
More file actions
49 lines (44 loc) · 1.02 KB
/
Copy pathconfig.yml
File metadata and controls
49 lines (44 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
path:
input_data_path: "data/raw/"
output_data_root: "data/processed/"
interim_data_root: "data/interim/"
models_root: "models"
logs_root: "logs"
dataset:
train_start_date: "2023-02-09"
train_end_date: "2023-06-30"
eval_start_date: "2023-07-01"
eval_end_date: "2023-08-03"
test_start_date: "2023-12-01"
test_end_date: "2023-12-01"
# How many point in time to use
# ex: "0" or "0,3" or "0,7,30,90"
historical_data_points: "0"
features:
"base_features": ["user_id"]
"extra_features": ["user_id"]
"time_series_features": ["user_id"]
feature_definitions:
base_features:
- "base_features"
extra_features:
- "extra_features"
time_series_features:
- "iap_count"
- "iap_coins_rev"
- "iap_coins_count"
- "iap_ads_rev"
- "iap_ads_count"
- "ad_count"
- "session_count"
- "game_count"
- "current_level"
- "session_length"
- "coins_spend_sum"
- "booster_used_count"
- "rv_shown_count"
model:
name: "NN"
version: 1
epoch: 50
early_stopping_patience: 10