I'm not sure about this case, but just add a quick solution, you just need to redesign the architecture so that the inputs are then treated as outputs and vice versa.
, ( ):
n_obs, n_feat = 1000, 20
n_labels = 2
n_hidden = 100
:
Dense(input_dim = n_feat, output_dim = n_hidden)
:
Dense(input_dim = n_hidden, output_dim = n_labels)
" ", , :
:
Dense(input_dim = n_labels, output_dim = n_hidden)
:
Dense(input_dim = n_hidden, output_dim = n_feat)
, , . , . ?
, , (.. ), , .
, , Neural Networks, .