Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Run model in reverse in Keras

I'm currently playing around with the Keras framework. And have done some simple classification tests, etc. I'd like to find a way to run the network in reverse, using the outputs as inputs and vice versa. Any way to do this?

like image 423
What what Avatar asked May 06 '16 13:05

What what


1 Answers

There is no such thing as "running a neural net in reverse", as a generic architecture of neural net does not define any not-forward data processing. There is, however, a subclass of models which do - the generative models, which are not a part of keras right now. The only thing you can do is to create a network which somehow "simulates" the generative process you are interested in. But this is paricular model specific method, and has no general solution.

like image 195
lejlot Avatar answered Oct 16 '22 07:10

lejlot