nilmtk-contrib icon indicating copy to clipboard operation
nilmtk-contrib copied to clipboard

RNN default sequence length

Open klemenjak opened this issue 3 years ago • 3 comments

Hi,

not an issue, just a question. I recognized that the pre-set sequence length for RNN is 19, whereas it's 99 for all others. Is that on purpose? If so, why?

class RNN(Disaggregator):

    def __init__(self, params):
        """
        Parameters to be specified for the model
        """

        self.MODEL_NAME = "RNN"
        self.models = OrderedDict()
        self.chunk_wise_training = params.get('chunk_wise_training',False)
        self.sequence_length = params.get('sequence_length',19)

RNN works fine for me, I'm just curious why 19 is set as default.

best, C

klemenjak avatar Aug 27 '20 14:08 klemenjak