biwen.lbw yingda.chen 3 years ago
parent
commit
60f17a49d6
8 changed files with 8 additions and 0 deletions
  1. +1
    -0
      modelscope/models/cv/skin_retouching/detection_model/detection_module.py
  2. +1
    -0
      modelscope/models/cv/skin_retouching/detection_model/detection_unet_in.py
  3. +1
    -0
      modelscope/models/cv/skin_retouching/inpainting_model/gconv.py
  4. +1
    -0
      modelscope/models/cv/skin_retouching/inpainting_model/inpainting_unet.py
  5. +1
    -0
      modelscope/models/cv/skin_retouching/unet_deploy.py
  6. +1
    -0
      modelscope/models/cv/skin_retouching/utils.py
  7. +1
    -0
      modelscope/models/cv/skin_retouching/weights_init.py
  8. +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



Loading…
Cancel
Save