diyang commented on issue #10805: SKIP RNN is incorrect in LSTnet URL: https://github.com/apache/incubator-mxnet/issues/10805#issuecomment-386503905 `stacked_rnn_cells = mx.rnn.SequentialRNNCell() for i, recurrent_cell in enumerate(skipcells): stacked_rnn_cells.add(recurrent_cell) stacked_rnn_cells.add(mx.rnn.DropoutCell(dropout)) outputs, states = stacked_rnn_cells.unroll(length=q, inputs=cnn_reg_features, merge_outouts=False) p = int(seasonal_period / time_interval) output_indices = list(range(0, q, p)) outputs.reverse() skip_outputs = [outputs[i] for i in output_indices] skip_rnn_features = mx.sym.concat(*skip_outputs, dim=1) `
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
