哔叽哔叽

Results 2 issues of 哔叽哔叽

I generated the video using 1.image: config/ref_images/anyone-3.png 2.pose video: config/pose_videos/anyone-video-5_kps.mp4 However, the face effect on the video is inconsistent with the face effect shown The result is: https://github.com/MooreThreads/Moore-AnimateAnyone/assets/98437692/d7bafef8-d13c-4f67-b966-587b9d20de3d

**描述错误** ```python class CartoonModelscape: def __init__(self, model="damo/cv_unet_person-image-cartoon_compound-models", model_revision=None): if model_revision: self.cartoon = pipeline(Tasks.image_portrait_stylization, model=model, model_revision=model_revision, device='cpu') else: self.cartoon = pipeline(Tasks.image_portrait_stylization, model=model, device='cpu') ``` 在对pipeline指定device='cpu'时不生效,即便是在 import modelscope 之前使用了 os.environ["CUDA_VISIBLE_DEVICES"] = "-1"...