Artificial Intelligence

Non-Intrusive Load Monitoring using Deep Learning

Let's discuss how we integrate Non Intrusive Load Monitoring (NILM) using Modern Deep Learning Algorithms


In our previous blog post on Energy Disaggregation and Non-Intrusive Load Monitoring of EVs from Smart Meter Data, we have had an in-depth understanding of Non-Intrusive Load Monitoring (NILM), its applications, and how to get started in NILM. Now, it is time to look at how we can leverage Deep Learning for this problem statement. For data like Pecan Street, we need to look at sequence modeling and use RNNs, LSTMs, or the recent go-to architecture “Transformers.” The first approach anyone can take is a binary/multi-label classification for each appliance given a grid consumption aggregate value. Think of it like this – Given a sequence of aggregated grid values, can we predict which appliances were on or off in that time sequence?  

 

This becomes a multi-label classification problem where the X is of shape (1, sequence_len) and Y is of shape (1, no_of_appliances). This might look something like this,

X: [4.5, 4.6, 4.65, 4.7] (grid values in sequence)

Y: [0, 0, 0, 1, 1] (5 appliances – AC, Dishwasher, Lights, EV (Electric Vehicle), Washing Machine).

And these aggregated grid values are sampled at 1/60 Hz. When we were building prototypes for this approach, the major hurdle we faced was the preparation of the dataset discussed above, and TensorFlow’s windowing feature under tf.data.Dataset API helped us tremendously in preparing the data for training. Once we batched the data the shape of the data looked like this – X: (Batch size, 1, sequence length) and Y: (Batch size, number of appliances).

Time to build a model!


We can use any type of Recurrent layer – Vanilla RNN, Long-Short Term Memory (LSTM), or Gated Recurrent Units (GRU) and stack up the layers. The model must be set up in a Multiple-Input Multiple-Output configuration.  

Multiple Input Multiple output configuration

Here are a few things to keep in mind while training,

  • Pay attention to the magnitude and always standardize/normalize the data
  • Pay attention to these appliances/power sources – Solar, Grid, Car1, AC, and Heater. These are particularly important, spend more time on performing EDA
  • Make sure to label the data correctly, and while you are doing this, you are automatically inducing a bias (Labelling bias)
  • Try to insert minor noise from other appliances to increase the generalizability and robustness of the model

For more tips on multi-label classification, visit this article on Quick guide on Deep Learning for Time-series Multi-Label Classification.

 

Apart from using LSTMs in a multi-label classification setup, we can also use LSTMs in a generation setup as well – Generating the consumption signal of a particular appliance given the aggregated signal. This can be achieved using the Time Distributed layer in TensorFlow. 1D Convolutional Neural Networks have also been proven remarkably effective and efficient (faster to train than LSTMs) for sequence modeling tasks with the right number of filters and filter sizes. We can perform model stacking for better overall performance.

 

Having seen NILM as a classic classification problem is just one way of looking at things. The other facet for solving NILM is turning it into a Denoising Autoencoder problem, that filters out noise and reconstructs the required appliances’ consumption signal from the aggregated signal. This is quite interesting to work on and find more on this with our upcoming blog on the usage of Autoencoders and Variational Autoencoders for NILM.

There is a lot of scope for improvement in this domain, the research is moving forward at a quick pace in this domain. Hope this article helped you to start conceptualizing your approaches and implementation plans. Build amazing models and share your experiences with the community!  

 

Similar posts

Grid & Energy Analytics Blog

You are leading grid transformation through data analytics and enabling transformation in utilities worldwide. Our job is to provide you timely information and resources you need to change the world.

 

Sign Up to get more out of your inbox