Skip to content

Instantly share code, notes, and snippets.

@dariasmorodina
Last active February 5, 2020 23:45
get_target = lambda df: (df['total_obs_time'].values, df['default_time'].values)
y_train = get_target(df_train)
y_val = get_target(df_val)
durations_test, events_test = get_target(df_test)
val = x_val, y_val
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment