Embedding Net for Theta (Simulation Inputs) in SNPE or Embedding Net for X (Simulation outputs) in SNLE #1528
-
🚀 Is it possible to added
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Hi @rmehta1987 thanks for raising this question. In general, when performing conditional density estimation, we can only use embeddings for the conditioning variable, i.e., we can use embeddings for However, |
Beta Was this translation helpful? Give feedback.
Hi @rmehta1987 thanks for raising this question. In general, when performing conditional density estimation, we can only use embeddings for the conditioning variable, i.e., we can use embeddings for
x
if we doNPE
, and we can use embeddings fortheta
if we doNLE
. We generally cannot embed the variable over which we learn the density.However,
NRE
is an exception. Because inNRE
we perform classification to estimate the ratio, we can actually use embeddings for boththeta
andx
(this should also be reflected in the build functionclassifier_nn
). Thus, for your use-case I would recommend usingNRE
.