Baselight

Machine Predictive Maintenance Classification

Dataset to predict machine failure (binary) and type (multiclass)

@kaggle.shivamb_machine_predictive_maintenance_classification

Predictive Maintenance
@kaggle.shivamb_machine_predictive_maintenance_classification.predictive_maintenance

  • 176.56 KB
  • 10000 rows
  • 10 columns
udi

UDI

product_id

Product ID

type

Type

air_temperature_k

Air Temperature [K]

process_temperature_k

Process Temperature [K]

rotational_speed_rpm

Rotational Speed [rpm]

torque_nm

Torque [Nm]

tool_wear_min

Tool Wear [min]

target

Target

failure_type

Failure Type

1M14860M298.1308.6155142.8No Failure
2L47181L298.2308.7140846.33No Failure
3L47182L298.1308.5149849.45No Failure
4L47183L298.2308.6143339.57No Failure
5L47184L298.2308.71408409No Failure
6M14865M298.1308.6142541.911No Failure
7L47186L298.1308.6155842.414No Failure
8L47187L298.1308.6152740.216No Failure
9M14868M298.3308.7166728.618No Failure
10M14869M298.530917412821No Failure

CREATE TABLE predictive_maintenance (
  "udi" BIGINT,
  "product_id" VARCHAR,
  "type" VARCHAR,
  "air_temperature_k" DOUBLE,
  "process_temperature_k" DOUBLE,
  "rotational_speed_rpm" BIGINT,
  "torque_nm" DOUBLE,
  "tool_wear_min" BIGINT,
  "target" BIGINT,
  "failure_type" VARCHAR
);

Share link

Anyone who has the link will be able to view this.