DaehanKim

Results 7 issues of DaehanKim

Thank you for the good work on RL based review recommendation! after reading your article, I could not find the information about dataset used in your experiments. Is it assistment...

Hi, I just made a little modification on vgae to perform node classification in an unsupervised fashion. In detail, I just used full adjacency matrix since there is no need...

Hi, Thank you for sharing this amazing package! I want to compare this model's perf with other well known speaker embedding models. (i.e. X-vector) Before running experiments myself, I wonder...

Dear authors, I'm an AI engineer deeply impressed by your work. Great work and thank you for sharing this! btw, I was confused on what you meant by "train on...

Dear authors, I think that 'make_single_tex' function in clean_latex.py is missing. Did you intend it?

Thanks for sharing this, Lucas! I saw the implementation of masked convolution in [the original openai repo ](https://github.com/openai/iaf/blob/ad33fe4872bf6e4b4f387e709a625376bb8b0d9d/tf_utils/layers.py#L134C1-L141C16) ``` def get_conv_ar_mask(h, w, n_in, n_out, zerodiagonal=False): l = (h - 1)...

I think MMD approximation with batch size n should be dists_x divided by n(n-1) (analogous for dists_y) and dists_c divided by n**2. But this Implementation only divides with n-1 and...