issues
search
alibaba
/
animate-anything
Fine-Grained Open Domain Image Animation with Motion Guidance
https://animationai.github.io/AnimateAnything/
MIT License
779
stars
63
forks
source link
pipeline中motion_strength的正确设置
#65
Closed
ywangsherry
closed
5 months ago
ywangsherry
commented
5 months ago
app.py 中motion_strength用的是motion_scale * mask.mean().item()
https://github.com/alibaba/animate-anything/blob/2b451733a31856745e4ce91a635de349eab25503/app.py#L97-L110
train.py moiton_strength用的是input输入的motion_scale
https://github.com/alibaba/animate-anything/blob/2b451733a31856745e4ce91a635de349eab25503/app.py#L97-L110
如果motion_scale是5, app.py中pipeline用的是5*mask.mean().item(), train.py中用的是5,pipeline的参数文档https://github.com/alibaba/animate-anything/blob/070574cc6661f80d51580da766486163ebc18446/models/pipeline.py#L12-L97 也没有写关于motion的具体内容。 所以有点困惑,
app.py和train.py哪个是正确的?
ywangsherry
commented
5 months ago
https://github.com/alibaba/animate-anything/issues/66