Moore-AnimateAnyone
Moore-AnimateAnyone copied to clipboard
Here is a function that is not used?
In src/pipelines/utils.py
, the fuction set_tensor_interpolation_method
doesn't look like it's ever been used. I searched for this function name globally in VSCode and found that it only appeared once, when it was defined.
Then I found out that the variable tensor_interpolation
will only be modified in this function, which means that the return value get_tensor_interpolation_method
function is always None, if I understand correctly.
The function get_tensor_interpolation_method
used when building the Pose2VideoPipeline, and I'm not sure if this will affect the results.
- 1