Lasagne autoencoder: how do I just use the decoder part?
问题 Let's say I have an autoencoder in Lasagne, with two encoding layers, and two InverseLayers as a decoder: input = InputLayer(...) l1 = Conv1DLayer(input, ...) l2 = DenseLayer(l1, ...) # decoder part: l2p = InverseLayer(l2, l2) l1p = InverseLayer(l2p, l1) and let's say I've trained this autoencoder to my satisfaction, and just wish to use the decoder; that is, I have data that I want to feed as an input to l2p (the first layer of the decoder part). How do I do this? I can't construct a network