Viewing a single comment thread. View all comments

Tgs91 t1_iy491cv wrote

Important piece of this question is whether you want a lossy dim reduction or lossless. With something like PCA you can reconstruct the original dimension. With a deep learning based method, there is some degree of information loss (which could be a good thing since it's supervised information loss / choosing important information to retain). If you want to be able to reconstruct the original inputs, you'd need to also build a generator model that is supervised to reconstruct the original. You can get very high quality reconstructions, but it won't be an exact match of the original.

3

radarsat1 t1_iy4mskn wrote

? if you remove dimensions after PCA, you cannot reconstruct the original data ... well, you get something very blurry in any case.

3

itsyourboiirow t1_iy5aa1i wrote

Correct. But you don't necessarily have to discard the extra dimensions to do PCA.

1

radarsat1 t1_iy5e7jo wrote

but the question is about dimensionality reduction

1

JustOneAvailableName t1_iy7bqul wrote

PCA is also lossy

> You can get very high quality reconstructions, but it won't be an exact match of the original.

With a GAN (among others), a VAE for example is fuzzy

1