Sberbank Gender Prediction
Prediction of client gender on card transactions
@kaggle.nenriki_sberbank_gender_prediction
Prediction of client gender on card transactions
@kaggle.nenriki_sberbank_gender_prediction
CREATE TABLE codes (
"code" BIGINT,
"code_description" VARCHAR
);
CREATE TABLE test_set (
"cl" BIGINT,
"ent" VARCHAR,
"d" VARCHAR
);
CREATE TABLE train_set (
"client_id" BIGINT,
"target" BIGINT
);
CREATE TABLE transactions (
"client_id" BIGINT,
"datetime" VARCHAR,
"code" BIGINT,
"type" BIGINT,
"sum" DOUBLE
);
CREATE TABLE types (
"type" BIGINT,
"type_description" VARCHAR
);
Anyone who has the link will be able to view this.