OdysseasKr / neural-disaggregator

Code for NILM experiments using Neural Networks. Uses Keras/Tensorflow and the NILMTK.
MIT License
138 stars 58 forks source link

Why just load mains from only one meter of site_meter? #26

Closed Hessen525 closed 4 years ago

Hessen525 commented 4 years ago

Thanks for your awesome work, but I have a question about it. It looks like you just load only one meter of site meter, as shown in your code: train_mains = train_elec.mains().all_meters()[0] # The aggregated meter that provides the input

but there are two meters for recording site meter. The aggregate powers summed together by elec.mains().power_series_all_data().

Hessen525 commented 4 years ago

@OdysseasKr

OdysseasKr commented 4 years ago

Hi Hessen. The REDD dataset has two aggregated meters. Each one of them corresponds to a subset of the appliances for each house. The particular device is aggregated in the first mains meter and for this reason we only use this one.

Does this answer your question?

Hessen525 commented 4 years ago

Sorry for the late reply. I get right now, thanks for your help!