Gavia Gray
Gavia Gray
These notes would be well suited to [shortscience](http://www.shortscience.org/), the goal on that site being to provide concise summaries of papers in markdown.
I downloaded the SMPL body models from the website and they're `.pkl` files. The if statement in the main body model class doesn't check for `.pkl` suffix: https://github.com/nghorbani/human_body_prior/blob/master/src/human_body_prior/body_model/body_model.py#L57-L61 I tried...
Tested to work with Python 3 and the version of PyTorch currently installed by conda (0.4.1). Also, added `.gitignore` to ignore files generated by Python that shouldn't be committed and...
The system memory slowly rises over the 75 hour training routine in the benchmark experiment: https://wandb.ai/gngdb/trial-imagenet/reports/Training-Resnet18-with-sequential-imagenet-dataloader--Vmlldzo3MTI3MzY It looks like there might be some tiny memory leak in that experiment. I'm...
I hit an error I wasn't able to debug trying to use the downloader: ``` Traceback (most recent call last): File "/h/gngdb/miniconda3/lib/python3.7/threading.py", line 926, in _bootstrap_inner self.run() File "/h/gngdb/miniconda3/lib/python3.7/threading.py", line...
I added some example code, sample data and steps for how to use the `transfer_model` utility. Also, I updated the install instructions based on my experience, which should keep working...
The `transfer_model.py` script for converting between SMPL/SMPL-H/SMPL-X fits a separate set of beta parameters to every `.obj` file in the directory. I just tried it and got quite a large...
It's not in the documentation but it seems like `transfer_model.py` requires a GPU? I get the following error trying to run it: ``` INFO - 2022-01-31 17:33:44,908 - acceleratesupport -...
Trying to pass a hand pose tensor of shape `(1, 45)`, ie batch size 1 and 45 for the 15 hand angles listed [here](https://github.com/vchoutas/smplx/blob/43561ecabd23cfa70ce7b724cb831b6af0133e6e/smplx/joint_names.py#L189-L203). I get the following error: ```...
AMASS data typically has 16 beta parameters (at least that's true for the sample data in the AMASS repository). Initializing a SMPL-H body model with `num_betas=16` always hits the following...