JuncFang-git
JuncFang-git
请问Stylegan2能部署嘛?我保存成jit模型的时候一直卡在这里,请问是什么原因呢? 
**Is your feature request related to a problem? Please describe.** A program can not be compiled with the "torch.inverse" operation.  **Describe the solution you'd like** Could you release this...
Hi, Thanks for your nice job! I am confused that if this repo contains the work MineGAN++?I can't get the 'Sparse subnetwork selection' code anywhere. Regards, JuncFang
依赖环境numpy为1.24.0以上能够安装成功,但由于1.24.0后不再支持np.float,而需改为np.float64,导致贵代码有许多模型无法正常运行。希望你们能尽快做出兼容处理。此处以/modelscope/pipelines/cv/skin_retouching_pipeline.py 108行为例,代码做如下修改运行正常: ``` python # 原代码 # img = img.astype(np.float) # 修改后 img = img.astype(np.float64) ```