GithubHelp home page GithubHelp logo

shubhra2503 / machinelearningsamples-deeplearningforpredictivemaintenance Goto Github PK

View Code? Open in Web Editor NEW

This project forked from azure-samples/machinelearningsamples-deeplearningforpredictivemaintenance

0.0 0.0 0.0 2.49 MB

MachineLearningSamples-DeepLearningforPredictiveMaintenance

License: MIT License

Python 3.83% Jupyter Notebook 96.17%

machinelearningsamples-deeplearningforpredictivemaintenance's Introduction

Deep Learning for Predictive Maintenance

NOTE This content is no longer maintained. Visit the Azure Machine Learning Notebook project for sample Jupyter notebooks for ML and deep learning with Azure Machine Learning.

The detailed documentation for this real world scenario includes the step-by-step walk-through: https://docs.microsoft.com/en-us/azure/machine-learning/preview/scenario-deep-learning-for-predictive-maintenance

The public GitHub repository for this real world scenario contains all the code samples: https://github.com/Azure/MachineLearningSamples-DeepLearningforPredictiveMaintenance

Introduction

Deep learning is one of the most popular trends in the machine learning space with applications to many areas including driverless cars, speech and image recognition, robotics and finance. Deep learning, also referred to as Artificial Neural Networks (ANN), is a set of algorithms inspired by the shape of our brain (biological neural networks).

Predictive maintenance is uses machine learning methods to determine the condition of an equipment in order to preemptively trigger a maintenance visit to avoid adverse machine performance. In these scenarios, data is collected over time to monitor the state of an equipment with the final goal of finding patterns to predict failures. Long Short Term Memory (LSTM) networks are especially appealing to the predictive maintenance domain due to their ability at learning from sequences of data. LSTM are designed for application to time series data in order to look back over periods of time to detect temporal patterns that could lead to machine failures.

In this scenario, we build a LSTM network for the data set and scenario described at Predictive Maintenance to predict remaining useful life of aircraft engines. In summary, the template uses simulated aircraft sensor values to predict when an aircraft engine will fail in the future so that maintenance can be planned in advance.

This tutorial uses keras deep learning library with Tensorflow as the back end.

Prerequisites

  • An Azure account (free trials are available).
  • An installed copy of Azure Machine Learning Workbench with a work space created.
  • Azure Machine Learning Operationalization with a local deployment environment setup and a model management account

Login

Once you install the AML Workbench app, we will need to connect to your Azure subscription. From the AML Workbench File menu, select either the Open Command Prompt or Open PowerShell command line interface (CLI). The CLI allows you to access your Azure services using the az commands. First, login to your Azure account with the command:

az login

This will generate a key to be used with the https:\\aka.ms\devicelogin URL. The CLI will block until the device login operation returns with the subscription summary.

Let's Begin

To run on your local machine with Docker installed, from the AML Workbench File menu, select either the Open Command Prompt or Open PowerShell CLI. Within the CLI windows execute the following commands:

az ml experiment prepare --target docker --run-configuration docker

We suggest running on a DS4_V2 standard Data Science Virtual Machine for Linux (Ubuntu). Once the DSVM is configured, you need to run the following two commands:

az ml computetarget attach remotedocker --name [Desired_Connection_Name] --address [VM_IP_Address] --username [VM_Username] --password [VM_UserPassword]

az ml experiment prepare --target [Desired_Connection_Name] --run-configuration [Desired_Connection_Name]

With the docker images prepared, open the Jupyter notebook server either within the AML Workbench notebooks tab, or to start a browser-based server, run: az ml notebook start

  • The Jupyter Notebooks are stored in the Code directory seen in the notebook environment. We will run these notebooks sequentially as numbered, starting on (Code\ 1_data_ingestion_and_preparation.ipynb ).

  • Once the notebook server starts, select the kernel to match your [Project_Name]_Template [Desired_Connection_Name] and click Set Kernel

Task 1: Data Ingestion & Preparation

The Data Ingestion Jupyter Notebook in the Code/1_data_ingestion_and_preparation.ipnyb loads the three input data sets into pandas dataframe format, prepares the data for the modelling and does some preliminary data visualization. The data sets are persisted to a local directory for use in the model building and evaluation task.

Task 2: Model Building & Evaluation

The Model Building Jupyter Notebook in Code/2_model_building_and_evaluation.ipnyb reads the persisted training and test data sets from local storage and builds a LSTM network. The LSTM model is built using the training data set with two layers plus dropout to prevent overfitting. The model performance is measured on the test set. The resulting model is serialized and stored in the local compute context for use in the operationalization task.

Task 3: Operationalization

The operationalization Jupyter Notebook in Code/3_operationalization.ipnyb takes the stored model and builds required functions and schema for calling the model on an Azure hosted web service. The notebook tests the functions,and zips the operationalization assets into a zip file which is copied to your Azure storage container in blob storage. Instructions for deploying the model assets and scoring some test data are included in the notebooks.

Conclusion

This scenario serves as a guide to apply deep learning in predictive maintenance domain in Azure Machine Learning Workbench. This tutorial uses a simple scenario where only one data source (21 sensor values) is used to make these predictions.

More advanced predictive maintenance scenarios are discussed in the Predictive Maintenance Modelling Guide. The modelling guide example includes multiple data sources (i.e. historical maintenance records, error logs, machine and operator features etc.) which may require different treatments to be used in with LSTM networks.

Data/Telemetry

This advance scenario for Deep Learning for Predictive Maintenance collects usage data and sends it to Microsoft to help improve our products and services. Read our privacy statement to learn more.

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot automatically determines whether you need to provide a CLA and decorate the PR appropriately. You only need to follow the instructions provided by the bot across all Microsoft repository to use our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. More information is available at Code of Conduct FAQ or contacts [email protected] with any additional questions or comments.

machinelearningsamples-deeplearningforpredictivemaintenance's People

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.