nomaad

Results 22 comments of nomaad

> @NoahZuo I have got this to work in the past by modified the `browsermobproxy.bat` file to set `http.proxyHost` and `-Dhttp.proxyPort` variables Can you, please, share how did you do...

> Hi @aidynabirov . Sorry for late reply. I don't have the exact bat file I used previously but it is something like adding a line like this to the...

Hello @gohjiayi, Thanks a lot for your share! I tried to use it, but I have missing files, such as "trt_pose.coo, trt_pose.models, torch2trt". Can I ask, where did you get...

@gohjiayi, what was your torch version (and other versions of dependent libraries) for installing trt_pose? I'm working on my laptop (GeForce GTX 1050). Thanks in advance!

@gohjiayi, thanks a lot for your advice! I installed all dependencies, and at last, it asked me for "human_pose.json". I downloaded this JSON file from "https://github.com/NVIDIA-AI-IOT/trt_pose/blob/master/tasks/human_pose/human_pose.json". Then I got this...

> > @tsiktsiris Hi, sorry I can't help with it. I don't have experience in multiple GPUs ... > > My project is built upon this: https://github.com/ildoonet/tf-pose-estimation. Maybe you can...

> I have solved by this way: > > # lkpt += kpt_loss_factor*((1 - torch.exp(-d/(s*(4*sigmas**2)+1e-9)))*kpt_mask).mean() # not correct equation > lkpt += kpt_loss_factor*((1 - torch.exp(-d/(2*(s*sigmas)**2+1e-9)))*kpt_mask).mean() lkpt += (self.kptloss(tkpt[i][:, 0::2], pkpt_x,...

> @nikky4D, I replaced loss in > > https://github.com/WongKinYiu/yolov7/blob/cad7acac832fcd4a9c2e09e773050a57761e22b9/utils/loss.py#L151 > > with `lkpt += kpt_loss_factor * (torch.log(d + 1 + 1e-9) * kpt_mask).mean() ` > And it worked for me....

> Hi, @nomaad42 ! > > I've used this (no sigmas): `lkpt += kpt_loss_factor * (torch.log(d + 1 + 1e-9) * kpt_mask).mean()`. > > And not this: `lkpt += kpt_loss_factor*((1...

Hi guys! @Nghingtim @SashaAlderson @derronqi Which sigmas did you use ? Do you know how to calculate them?