This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
modelscope
/
ModelScope
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
0
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
[to
#42322933
]test image url & add license headers
Link:
https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/10313149
master
biwen.lbw
yingda.chen
3 years ago
parent
5343c899fb
commit
60f17a49d6
8 changed files
with
8 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
modelscope/models/cv/skin_retouching/detection_model/detection_module.py
+1
-0
modelscope/models/cv/skin_retouching/detection_model/detection_unet_in.py
+1
-0
modelscope/models/cv/skin_retouching/inpainting_model/gconv.py
+1
-0
modelscope/models/cv/skin_retouching/inpainting_model/inpainting_unet.py
+1
-0
modelscope/models/cv/skin_retouching/unet_deploy.py
+1
-0
modelscope/models/cv/skin_retouching/utils.py
+1
-0
modelscope/models/cv/skin_retouching/weights_init.py
+1
-0
modelscope/pipelines/cv/skin_retouching_pipeline.py
+ 1
- 0
modelscope/models/cv/skin_retouching/detection_model/detection_module.py
View File
@@ -1,3 +1,4 @@
# Copyright (c) Alibaba, Inc. and its affiliates.
import torch
import torch.nn as nn
+ 1
- 0
modelscope/models/cv/skin_retouching/detection_model/detection_unet_in.py
View File
@@ -1,3 +1,4 @@
# Copyright (c) Alibaba, Inc. and its affiliates.
import torch
import torch.nn as nn
import torch.nn.functional as F
+ 1
- 0
modelscope/models/cv/skin_retouching/inpainting_model/gconv.py
View File
@@ -1,3 +1,4 @@
# Copyright (c) Alibaba, Inc. and its affiliates.
import torch
import torch.nn as nn
+ 1
- 0
modelscope/models/cv/skin_retouching/inpainting_model/inpainting_unet.py
View File
@@ -1,3 +1,4 @@
# Copyright (c) Alibaba, Inc. and its affiliates.
import torch
import torch.nn as nn
import torch.nn.functional as F
+ 1
- 0
modelscope/models/cv/skin_retouching/unet_deploy.py
View File
@@ -1,3 +1,4 @@
# Copyright (c) Alibaba, Inc. and its affiliates.
import warnings
import torch
+ 1
- 0
modelscope/models/cv/skin_retouching/utils.py
View File
@@ -1,3 +1,4 @@
# Copyright (c) Alibaba, Inc. and its affiliates.
import time
from typing import Dict, List, Optional, Tuple, Union
+ 1
- 0
modelscope/models/cv/skin_retouching/weights_init.py
View File
@@ -1,3 +1,4 @@
# Copyright (c) Alibaba, Inc. and its affiliates.
import torch
import torch.nn as nn
+ 1
- 0
modelscope/pipelines/cv/skin_retouching_pipeline.py
View File
@@ -1,3 +1,4 @@
# Copyright (c) Alibaba, Inc. and its affiliates.
import os
from typing import Any, Dict
Write
Preview
Loading…
Cancel
Save