Submitted by zanzagaes2 t3_10xt36j in MachineLearning
lonelyrascal t1_j7vwy0c wrote
PCA has O(n^3) time complexity. Instead of doing that, why don't you pass the embedding through an autoencoder?
zanzagaes2 OP t1_j7w5sr1 wrote
I will try encoder-decoder architecture, mainly to try to improve the embedding. Right now asymptotics of PCA have not proven a problem, sklearn implementation performs PCA on ~1.000 features vectors almost immediately.
Do you have any reference on any encoder-decoder architecture I can use?
lonelyrascal t1_j7wp5yv wrote
Ok cool. Yeah keras has basic encoder decoder architecture in its documentation. If that's not something you like, you can always ask chatGPT ;)
Viewing a single comment thread. View all comments