Commit Graph

68 Commits

Author SHA1 Message Date
Xingjun.Wang
6b9bfdf25a Set kwsbp==0.0.6 (#1293)
* set kwsbp==0.0.6 to avoid install 0.1.0 version which is invalid wheel package on PyPI

* update ddpm_guided_diffusion, shotdetect_scenedetect_lgss,MinDAEC
2025-04-07 10:24:45 +08:00
tastelikefeet
7246d0b359 Merge 1.23 hotfix to master (#1227) 2025-02-17 10:30:24 +08:00
Yunlin Mao
31bf308e44 downgrade moviepy to 1.0.3 (#1133) 2024-12-10 10:10:01 +08:00
liuyhwangyh
f7a32e48e3 add dataset download (#906)
* add dataset download

* fix cr issue

* fix cv matplotlib issue

* refactor code

* fix ut issue

* remove debug code

* remove unused import

* fix import issue

* sleep 65s before start docker avoid kill and run failed

---------

Co-authored-by: mulin.lyh <mulin.lyh@taobao.com>
2024-07-12 19:06:44 +08:00
liuyhwangyh
ff77845772 add command line usage, optimize command line log, optimize packaging… (#888)
* add command line usage, optimize command line log, optimize packaging version compatible

* Update command.md

* fix logging dup

* Refactor install dependencies (#889)

* refactor install dependencies, default only depencies of hub and datasets

* move pandas import to function

* update hub deps

* test

* remove generate ast file

* remove gast dependency

* replace gast with ast

* add dependency version

* remove lap for compile error

* fix comments issue

* add install ollama

---------

Co-authored-by: mulin.lyh <mulin.lyh@taobao.com>

---------

Co-authored-by: mulin.lyh <mulin.lyh@taobao.com>
2024-06-30 20:15:03 +08:00
mulin.lyh
51a1b76e91 fix python3.10 compatible issue
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/14678226
* modify librosa version

* fix python3.10 compatible issue

* remove healpy in requirements for windowns compatible
2023-11-29 17:41:44 +08:00
mulin.lyh
59ec83cd2d remove cv diffusers version
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/13843028
* remove cv diffusers version
2023-08-30 15:04:43 +08:00
suluyan.sly
f080603802 remove requirement realesrgan for basicsr
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/13488773
* remove requirement realesrgan for basicsr
2023-08-01 16:55:47 +08:00
suluyan.sly
dc17c7d6ee remove cv requirements: basicsr
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/13471366
* rm req basicsr
2023-07-31 18:20:23 +08:00
suluyan.sly
05e1357c32 Merge branch 'master-github' into master-merge-github-230728 2023-07-28 16:40:34 +08:00
frozoul
2566d028cd cv/cv nerf 3d reconstruction 4k nerf damo (#389)
* add 4k-nerf core files

* update configure file

* update dataloader and model path

* update unittest

* Delete test_4k.py

* update unittest

* update unittest

* update pre-commit

* update dataloader

* update cuda code path

* check with pre-commit

---------

Co-authored-by: zhongshu.wzs <zhongshu.wzs@alibaba-inc.com>
Co-authored-by: wenmeng zhou <wenmeng.zwm@alibaba-inc.com>
2023-07-28 10:37:13 +08:00
mengyang.fmy
18f998a85c add text-to-360pano-image pipeline, mod cv requirements
7月份计划上线的360全景图生成模型,自研

模型权重文件地址https://www.modelscope.cn/models/damo/cv_diffusion_text-to-360panorama-image_generation/summary


#### 依赖项说明

##### 由于要使用xformers,torch版本最好使用1.13.1
```
pip install torch==1.13.1+cu116 torchvision==0.14.1+cu116 torchaudio==0.13.1 --extra-index-url https://download.pytorch.org/whl/cu116
```
##### 对应的diffusers和xformers版本如下
```
pip install -U diffusers==0.18.0
pip install xformers==0.0.16
pip install triton, accelerate, transformers
```

##### ModelScope Library 需要使用cv
```
pip install modelscope
pip install "modelscope[cv]" -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
```

##### 此外,还需要安装第三方的一个库,Real-ESRGAN, 安装方法如下
```
# Install basicsr - https://github.com/xinntao/BasicSR
# We use BasicSR for both training and inference
pip install basicsr
# facexlib and gfpgan are for face enhancement
pip install facexlib
pip install gfpgan
pip install Pillow
pip install tqdm
pip install realesrgan==0.3.0
```
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/13346430
* add text-to-360pano-image pipeline

* add text-to-360pano-image pipeline, mod cv requirements

* rm redundant files and cv requirements; add standard input and output definations

* fix diffusers==0.18.0 and run test

* fix diffusers==0.18.0 in multi-modal and run test again

* add model_revision='v1.0.0'

* fix yapf

* add trycatch for enabling xformers

* fix key error

* add install xformers in test/setup

* skip highres.fix in ci

* feat: Fix conflict, auto commit by WebIDE
2023-07-27 11:33:39 +08:00
shenweichao.swc
05c65ba225 add s2net for panorama_depth_estimation
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/13310819
* add s2net codes

* fix sphdecoder

* Merge branch 'master' into dev/cv_s2net_panorama_depth_estimation

* revise comments in the pipeline

* revise the code
2023-07-20 19:28:03 +08:00
mulin.lyh
48b62d8947 [to #50521098]fix: fix diffuser version conflict cv and multi-modal
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/13079583
* [to #50521098]fix: fix diffuser version conflict cv and multi-modal
2023-06-28 15:36:12 +08:00
mulin.lyh
25a7398aea docker file py38 and py37 compatible merge
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/12722824
* debug

* add missing deps

* add stanza

* fix numpy issue

* numpy version

* tf case

* numpy <= 1.22.0

* fix tf 1.15.5 case

* add python38 and python37 compatible docker file

* cv add fvcore

* add easycv

* remove debug code

* fix style issue

* fix python3.7 python3.8 compatible issue

* comment

* modify run config

* scipy<=1.7.3

* revert scipy<=1.7.3

* fix compatible bug

* fix compatible bug

* add easycv

* update version: 1.6.1rc0
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/12754942
fix python3.8 and python3.8 compatible issue

* numpy version change

* numpy version

* numpy version

* fix numpy version

* fix numpy version

* update version: 1.6.1rc0
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/12754942
fix python3.8 and python3.8 compatible issue

* restore setup.py

* restore setup.py

* add build base image

* fix style

* numpy version fix

* optimize build image, split base and modelscope image

* fix style issue

* modify example path

* modify examples folder

* add SETUPTOOLS_USE_DISTUTILS=stdlib comments
2023-06-08 10:01:58 +08:00
mulin.lyh
6abdce929d fix py38 issue
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/12660340
2023-05-17 22:11:23 +08:00
hemu.zp
1d28c5b730 mv mmdet to cv
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/12614719
2023-05-15 11:48:29 +08:00
hemu.zp
ca85447363 remove pai-easycv requirement
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/12564234
2023-05-11 14:31:18 +08:00
shuying.shu
a355eefbd4 fix OOM for bassl
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/12354474
2023-04-18 14:43:09 +08:00
zhangzhicheng.zzc
6cf4867128 bug fixed in plugin
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/12261613
2023-04-09 23:49:23 +08:00
yuze.zyz
e1760bf846 fix onnxsim dependency
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/11972894
2023-03-13 21:24:53 +08:00
yuze.zyz
30be0b8bb0 fix import
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/11969536
2023-03-13 20:41:14 +08:00
jinmao.yk
4078abf488 add human reconstruction task
单图人体重建任务 

Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/11778199

 * add human reconstruction task
2023-03-09 21:58:48 +08:00
yuanzhi.zyz
2ce41d4974 add ocr_reco_crnntrain
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/11824395
2023-03-09 21:14:09 +08:00
yuxiang.tyx
09a178d171 support onnx export for SCRFD model
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/11826666
2023-03-01 10:02:49 +08:00
zhicheng.sc
d11fff0c0a add ControlNet for controllable image generation
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/11697239

* add ControlNet for scribble2image

* update code comments

* support scribble input

* update scribble input for demo service

* support all models of ControlNet

* add requirements

* fix code style bug

* update model id
2023-02-28 13:39:12 +08:00
yuxiang.tyx
0fb84f8565 [to #42322933] change mmdet3d from 1.0.0a0 to 1.0.0a1, remove numba version restriction 2023-02-13 03:43:14 +00:00
zhangzhicheng.zzc
d964b49d37 [to #47755712] remove pytorch-lightning version constrain 2023-02-10 12:20:30 +00:00
mulin.lyh
7378f94455 [to #47749867] modify audio install command 2023-02-10 12:04:08 +00:00
yuxiang.tyx
03354e4d84 update mmdet3d version
mmdet3d版本从1.0.0rc6改为1.0.0rc6damo,移除networkx版本限制,避免maaslib冲突

Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/11621702
2023-02-10 09:29:25 +00:00
zhicheng.sc
55d8d1b67c sd-inpainting: pass prompt in kwargs & reduce GPU usage
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/11616099

* pass prompt in kwargs
2023-02-10 02:16:21 +00:00
ashui.cbh
10d1b3217c support paint-by-example model
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/11561235

    * add paint-by-example

* Merge branch 'master' of gitlab.alibaba-inc.com:Ali-MaaS/MaaS-lib

* format check

* format check

* Merge branch 'master' of gitlab.alibaba-inc.com:Ali-MaaS/MaaS-lib

* Merge branch 'master' of gitlab.alibaba-inc.com:Ali-MaaS/MaaS-lib

* revise

* Merge branch 'master' of gitlab.alibaba-inc.com:Ali-MaaS/MaaS-lib

* Merge branch 'master' of gitlab.alibaba-inc.com:Ali-MaaS/MaaS-lib

* revision according to CR reviews

* new

* revise model

* Merge branch 'master' of gitlab.alibaba-inc.com:Ali-MaaS/MaaS-lib

* feat: Fix conflict, auto commit by WebIDE
2023-02-09 10:23:02 +00:00
ryan.yy
2741a207fd add nerf-recon model
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/11546752
2023-02-09 09:05:35 +00:00
yuxiang.tyx
a8f717dd13 add object_detection3d_depe model
新增3D目标检测模型DEPE

Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/11549127
2023-02-09 06:16:11 +00:00
zhicheng.sc
eba66f1fd1 [0210] Add stable diffusion model for image inpainting
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/11583801
2023-02-09 04:35:34 +00:00
biwen.lbw
c8d4e755fd add face_reconstruction model
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/11527525
2023-02-08 09:24:54 +00:00
shuying.shu
f3f4332105 add ddpm-segmentation pipeline
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/11467103
2023-02-07 02:03:02 +00:00
lllcho.lc
64abee6417 [to #42322933] add new motion-generation model
新增运动生成模型,根据文本描述,生成人体的运动数据
2023-02-01 09:48:58 +00:00
mxf164419
01f0c747c7 add easyrobust-models for image classification
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/11372821
2023-01-16 10:02:34 +00:00
gongbiao.gb
5debc88edf add vop retrieval
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/11302991
2023-01-11 22:22:12 +08:00
lanjinpeng.ljp
b2a78b5ad0 支持视频多目标跟踪模型
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/11249098
2023-01-09 07:11:15 +08:00
james.wjg
a12ef720a6 全景分割easycv接入支持finetune(mask2former-r50)- 12.30
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/11179263
2023-01-02 11:27:11 +08:00
dadong.gxd
42557b0867 add cv_pointnet2_sceneflow-estimation_general
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/11201880
2022-12-29 08:09:57 +08:00
wenmeng.zwm
070ec00720 remove opencv-python from framework requirements and remove easynlp from nlp default requirements
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/11119626
2022-12-16 14:27:23 +08:00
wenmeng.zwm
4dd99b8f6e Revert "move opencv dependency from framwork to cv "
This reverts commit e970a6eb43.
2022-11-30 18:29:03 +08:00
james.wjg
541e460f8b add support for cv/language_guided_video_summarization
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/10636269
2022-11-16 15:20:26 +08:00
yingda.chen
e970a6eb43 move opencv dependency from framwork to cv
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/10708368
2022-11-12 20:09:48 +08:00
shouzhou.bx
01d521dd78 [to #42322933]add face 2d keypoints finetune test case
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/10421808

    * add face 2d keypoints & human wholebody keypoint finrtune test case
2022-10-20 11:51:52 +08:00
shuying.shu
cb570d586c add referring video object segmentation pipeline
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/10400324
2022-10-18 16:10:10 +08:00
wenmeng.zwm
8c91a4972e require pai-easycv 0.6.3.7
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/10380097
2022-10-12 19:01:34 +08:00