Pan Xie

Results 6 issues of Pan Xie

https://github.com/NLPLearn/QANet/blob/8107d223897775d0c3838cb97f93b089908781d4/layers.py#L52 execuse me, in the paper "Layer Normalization,Lei Jimmy Ba, Ryan Kiros, and Geoffrey E. Hinton", it said that the mean and variance is computed over all the hidden units...

https://github.com/CompVis/latent-diffusion/blob/5a6571e384f9a9b492bbfaca594a2b00cad55279/ldm/models/diffusion/ddpm.py#L1060 ```python model_out = self.apply_model(x, t_in, c, return_ids=return_codebook_ids) x_recon = self.predict_start_from_noise(x, t=t, noise=model_out) model_mean, posterior_variance, posterior_log_variance = self.q_posterior(x_start=x_recon, x_t=x, t=t) ``` I am confused with the x_start, it should be...

Hi @neccam , I am confused about the process of the training vocabulary. 1. Words containing the symbol "__" in training corpus("phoenix2014T.train.gloss") have not appeared in the dev/test gloss corpus....

https://github.com/Sense-GVT/DeCLIP/blob/e47a5ff99ddbd635b2b7b4a7c6490e1d9e03821d/prototype/data/pipelines/imagenet_pipeline_v2.py#L42 I use the nvidia-dali-cuda110 with version 1.14.0, and get the error: module 'nvidia.dali.ops' has no attribute 'McReader' In the requirements, the need nvidia-dali is 0.14, but there is no...

Thanks for your impressive work and the open source code @Jevin754. I am a little confused with the C3D features you provided in google/baidu drive. Its filename is "c3d_res_phoenix_body_iter5_120k.tar.gz" in...

Thank you for great work! when I tested the time cost of linfusion and the dreamshape-v8-base model, I found that linfusion took an average of **1.8s** on A100, but the...