Balanced Predictive Maintenance Dataset
Addressing Class Imbalance in Predictive Maintenance
@kaggle.chetansmahale_balanced_predictive_maintenance_dataset
Addressing Class Imbalance in Predictive Maintenance
@kaggle.chetansmahale_balanced_predictive_maintenance_dataset
CREATE TABLE x_smote (
"type" BIGINT,
"air_temperature_k" DOUBLE,
"process_temperature_k" DOUBLE,
"rotational_speed_rpm" DOUBLE,
"torque_nm" DOUBLE,
"tool_wear_min" DOUBLE
);
CREATE TABLE y_smote (
"reason" BIGINT,
"of" VARCHAR,
"failure" VARCHAR
);
CREATE TABLE x_train (
"type" BIGINT,
"air_temperature_k" DOUBLE,
"process_temperature_k" DOUBLE,
"rotational_speed_rpm" DOUBLE,
"torque_nm" DOUBLE,
"tool_wear_min" DOUBLE
);
CREATE TABLE y_test (
"reason" BIGINT,
"of" VARCHAR,
"failure" VARCHAR
);
CREATE TABLE x_test (
"type" BIGINT,
"air_temperature_k" DOUBLE,
"process_temperature_k" DOUBLE,
"rotational_speed_rpm" DOUBLE,
"torque_nm" DOUBLE,
"tool_wear_min" DOUBLE
);
CREATE TABLE cleaned_data (
"type" BIGINT,
"air_temperature_k" DOUBLE,
"process_temperature_k" DOUBLE,
"rotational_speed_rpm" DOUBLE,
"torque_nm" DOUBLE,
"tool_wear_min" DOUBLE,
"reason_of_failure" BIGINT
);
CREATE TABLE y_train (
"reason" BIGINT,
"of" VARCHAR,
"failure" VARCHAR
);
CREATE TABLE x_ctgan (
"type" BIGINT,
"air_temperature_k" DOUBLE,
"process_temperature_k" DOUBLE,
"rotational_speed_rpm" DOUBLE,
"torque_nm" DOUBLE,
"tool_wear_min" DOUBLE
);
CREATE TABLE y_ctgan (
"reason" BIGINT,
"of" VARCHAR,
"failure" VARCHAR
);
Anyone who has the link will be able to view this.