Machine Predictive Maintenance Classification
Dataset to predict machine failure (binary) and type (multiclass)
@kaggle.shivamb_machine_predictive_maintenance_classification
Dataset to predict machine failure (binary) and type (multiclass)
@kaggle.shivamb_machine_predictive_maintenance_classification
Since real predictive maintenance datasets are generally difficult to obtain and in particular difficult to publish, we present and provide a synthetic dataset that reflects real predictive maintenance encountered in the industry to the best of our knowledge.
The dataset consists of 10 000 data points stored as rows with 14 features in columns
UCI : https://archive.ics.uci.edu/ml/datasets/AI4I+2020+Predictive+Maintenance+Dataset
CREATE TABLE predictive_maintenance (
  "udi" BIGINT,
  "product_id" VARCHAR,
  "type" VARCHAR,
  "air_temperature_k" DOUBLE  -- Air Temperature [K],
  "process_temperature_k" DOUBLE  -- Process Temperature [K],
  "rotational_speed_rpm" BIGINT  -- Rotational Speed [rpm],
  "torque_nm" DOUBLE  -- Torque [Nm],
  "tool_wear_min" BIGINT  -- Tool Wear [min],
  "target" BIGINT,
  "failure_type" VARCHAR
);Anyone who has the link will be able to view this.