Skip to main content

Questions tagged [autoencoder]

Autoencoders are a type of neural network that learns a useful encoding for data in an unsupervised manner.

4 votes
1 answer
35 views

I am training a VAE architecture on microscopy images. Dataset of 1000 training images, 253 testing images. Images are resized to 128x128 input or 256x256 input from original resolution which is ...
MT0820's user avatar
  • 41
7 votes
3 answers
132 views

I might be mistaken, but based on my current understanding, autoencoders typically consist of two components: encoder $f_{\theta}(x) = z$ decoder $g_\phi(z)=\hat{x}$ The goal during training is to ...
mrcoet's user avatar
  • 87
0 votes
0 answers
22 views

Im trying to predict pregnancy codes with a basic transformer model architecture. These pregnancy codes are like following prg001, prg002 to prg030. Prg001 would be antenatal screening and prg030 ...
NatalieL's user avatar
  • 101
0 votes
1 answer
49 views

I am trying build an autoencoder which would encode the image into latent space and then decode it back to the original image without any changes. I am mainly trying to implement this paperUniversal ...
shoab ahamed's user avatar
1 vote
0 answers
255 views

While building an auto-encoder that preserves distances, i accidentally used the euclidean norm as the loss for the difference between the x and z distances that im trying to minimize. (I hope you can ...
Firas's user avatar
  • 11
2 votes
1 answer
125 views

I am trying to implement a custom loss function inspired by https://arxiv.org/pdf/2305.10464.pdf. That is: $ L(\mathbf{x}) = (1-y) \left\lVert \mathbf{x_{true} - \mathbf{x_{pred}}} \right\rVert^2 + y \...
Gst's user avatar
  • 21
2 votes
2 answers
426 views

I have a set of ~ 5000 greyscale images with resolution of 64x128. I want to do an unsupervised anomaly detection. As a first try, I chose convolutional autoencoders (AE) and trained an AE model. I ...
vinodh_eee's user avatar
0 votes
0 answers
60 views

I'm using U-net architecture to build a segmentation task of image. During training I have image of size 256256 image. It works very well on the segmentation of same size 256256 or near to size 256*...
Akshit Dhillon's user avatar
0 votes
1 answer
38 views

I am trying to implement a paper in which the ultimate goal is to predict mutliple labels for instances (which are genes here). The feature matrix with shape of 1236*18930 is built by calculating term ...
Satarnejad's user avatar
0 votes
0 answers
65 views

I am building a denoising autoencoder to repaint lanes from a binary image. The input is a binary image that has incomplete lanes, due to vehicles getting in the way. I repaint the lanes manually so ...
Kaif Ibrahim's user avatar
0 votes
1 answer
33 views

I am trying to apply an autoencoder for feature extraction with the input like I=[x1,x2,x3,...,xn]. Representing the latent code after encoding as L, I want to improve the influence of one element of ...
JJbow's user avatar
  • 15
1 vote
1 answer
105 views

As I understanding the VAE, it's a model to get the P(x) of x(final job like image generation). When i train it, It input x from dataset to get mu and var from encoder, and to get a sample z from mu ...
KEIFTH YANG's user avatar
1 vote
1 answer
154 views

I want to work on an unsupervised machine translation system using a variational autoencoder. I did a literature review but didn't find any related work, and most of the work is based on denoising ...
kartikeya saraswat's user avatar
1 vote
1 answer
464 views

I wrote an implementation of a feedback recurrent autoencoder in Keras. The key difference to a regular autoencoder is, that the decoded output is fed back to the input layers of both, encoder and ...
user155153's user avatar

15 30 50 per page
1
2 3 4 5
22