Prathamesh Dinkar

Results 11 comments of Prathamesh Dinkar

> Hi! When I reproduced this great work and trained from scratch, the skeleton produced some weird result, as shown in the picture. The left is the result I reproduced,...

Hi, After you use model.predict(img), you will get logits. You have to use argmax and then you will get the label. Now you have the labels, you can directly plot...

Any updates regarding the Python wrapper with pybind11?

Downgrading numpy solved the issue for me `pip install numpy==1.21.6`

In the training script line no. 99 use, net = torch.nn.DataParallel(ssd_net, device_ids=[0])

Hi, Use this command for evaluation: python trainer/train.py \ --config_file={textproto_file_path} \ --mode="eval" \ --model_dir={dir_name} \ --num_gpus=1 Coming to the output visualization, When you run the above script, it will create...

> I want to know if this problem was solved later? What is the reason? Yes, I was able to solve the problem using `flat_hand_mean=False` in kwarg while creating SMPLX...

I believe that a decoder is much more useful when a sequence is important; in this case, it is not (point cloud is irregular). So the use of an encoder...

Can you tell which torchvision version are you using? For the given version i.e. 0.10.0, I am getting `AttributeError: module 'torchvision.ops.misc' has no attribute 'SqueezeExcitation'` I tried this [issue](https://github.com/openpifpaf/openpifpaf/issues/517#issuecomment-988209738) as...