Can I create an Image Reconstruction Deep Neural Network? #2809
alphastint
started this conversation in
General
Replies: 1 comment
-
Without further information, it's impossible to tell you what's wrong. Lines 2874 to 2947 in 18927f9 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to implement Variational Auto Enconding algorithm. The core of the algorithm is that it compresses the database into a two dimensional vector, than it tries to reconstruct the original image from the two parameters.
If I have an n x n x rgb image I would like a network like n x n x rgb -> 2 -> n x n x rgb. The loss function would be the norm between the original and the reconstructed image. I have tried to use
loss_mean_squared_per_channel_and_pixel
but with both the input and the label being the same image, but it does not compile.
Is there an example in dlib for image to image metric?
Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions