Given X,y data finding the y_predicted on the VAE manifold. USE case: for active learning we have scalarizer values and we want to interpolate it on vae latent space. #53
Closed
utkarshp1161
started this conversation in
Ideas
Replies: 3 comments 10 replies
-
|
@utkarshp1161 how would it be different from DKL-VAE? |
Beta Was this translation helpful? Give feedback.
7 replies
-
|
Hi Maxim,
I have uploaded a notebook. Can you take a look?
Best,
Utkarsh
…On Mon, Jan 8, 2024 at 12:40 PM Maxim Ziatdinov ***@***.***> wrote:
Can you please make a simple notebook demonstrating this? To avoid
introducing new dependencies, I suggest using Pyro's GP module for the
regression (https://pyro.ai/examples/gp.html). It doesn't have advanced
options such as multi-fidelity and heteroskedasticity, but should be enough
for the current goal.
—
Reply to this email directly, view it on GitHub
<#53 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AMR7ZTVZFUUO6PGU7OKFSP3YNQVQJAVCNFSM6AAAAABBQLGSZWVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DANJTGEYDG>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
3 replies
-
|
Closed via #55 |
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


Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
Given: X, y
train VAE on X
Goal: Get y_predicted over the latent manifold of VAE
idea:
X_mean, X_std = VAE(X)
fit a function(gp?) : X_mean ---------> y
now get y_predicted over the latent manifold by passing it through the GP
Can we have a function in : https://github.com/ziatdinovmax/pyroVED/blob/main/pyroved/models/ivae.py ?
def manifold2d_predicted_label()
Please let me know if something in unclear
Beta Was this translation helpful? Give feedback.
All reactions