JuncFang-git

Results 4 issues of JuncFang-git

请问Stylegan2能部署嘛?我保存成jit模型的时候一直卡在这里,请问是什么原因呢? ![O4UK2%CPS )R1TM7LE8L%9](https://user-images.githubusercontent.com/76929740/142357369-304ecb7f-0ce7-4621-b9f4-77f96e928015.png)

**Is your feature request related to a problem? Please describe.** A program can not be compiled with the "torch.inverse" operation. ![image](https://user-images.githubusercontent.com/76929740/129037944-2d679147-5ce7-40cf-a8f1-90dbc79323f1.png) **Describe the solution you'd like** Could you release this...

feature request
component: converters
component: partitioning

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) ```