Closed reaper19991110 closed 1 year ago
Hi,
In my code, I have made several modifications to the original SMPL implementation, as demonstrated in this link.
It appears that the code may not be utilizing the correct SMPL package, which could explain why no messages are being printed from the constructor and forward functions of SMPL. I recommend double-checking the import statements. It is possible that you have used import SMPL from smplx
instead of import SMPL from .smpl
somewhere in your code.
Best, Tianjian
你好
在我的代码中,我对原始 SMPL 实现进行了一些修改,如本链接所示。
代码似乎没有使用正确的 SMPL 包,这可以解释为什么没有从 SMPL 的构造函数和转发函数打印任何消息。我建议仔细检查导入语句。您可能已经使用了而不是代码中的某个位置。
import SMPL from smplx``import SMPL from .smpl
最佳, 天健 Thank you very much for your response. I had previously made changes to the way I imported SMPL due to other errors, which caused this issue. Now, the demo runs successfully. By the way, the results are really fast.
Thanks for your amazing work!!
When I run the demo,
AttributeError: 'SMPLOutput' object has no attribute 'A'
happened.I print SMPLOutput
and I cannot output print statements in both the init and forward functions of class SMPL, so I cannot determine where the problem lies.