Wenhao Hu

Results 5 issues of Wenhao Hu

tiny error in demo.ipynb Image-Text Matching error: image = load_demo_image(image_size=image_size,device=device) model = model.to(device='cpu') right code: image = load_demo_image(image_size=image_size,device=device) model = model.to(device)

``` loss_mlm, loss_ita, loss_itm = model(image, text_input, alpha = alpha) File "/root/anaconda3/envs/deeplearning3.9/lib/python3.9/site-packages/torch/nn/modules/module.py", line 1110, in _call_impl return forward_call(*input, **kwargs) File "/root/anaconda3/envs/deeplearning3.9/lib/python3.9/site-packages/torch/nn/parallel/distributed.py", line 963, in forward output = self.module(*inputs[0], **kwargs[0]) File...

Hi, I noticed that the weight ratio of these three losses is 1:1:1, is this the most appropriate ratio? Thanks!

Traceback (most recent call last): File "test.py", line 76, in main(0, opt,opt.img_folder) File "test.py", line 66, in main model.test() # run inference File "/root/HWH/Vico2023/Deep3DFaceRecon_pytorch/models/base_model.py", line 162, in test self.forward() File...

Hello, Thanks for the great repo. I noticed that the PlanExec agent is only available in the legacy version, but not in the simplified directory. Is there a plan to...