From c915215ad2c3d99b01f0d7843dc8e35efcd4cf1c Mon Sep 17 00:00:00 2001 From: tsukumi Date: Fri, 8 Mar 2024 09:43:31 +0000 Subject: [PATCH] Refactor: moved transforms.py to style_bert_vits2/models/ --- style_bert_vits2/models/modules.py | 2 +- transforms.py => style_bert_vits2/models/transforms.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename transforms.py => style_bert_vits2/models/transforms.py (100%) diff --git a/style_bert_vits2/models/modules.py b/style_bert_vits2/models/modules.py index c076e21..eede771 100644 --- a/style_bert_vits2/models/modules.py +++ b/style_bert_vits2/models/modules.py @@ -5,10 +5,10 @@ from torch import nn from torch.nn import Conv1d from torch.nn import functional as F from torch.nn.utils import remove_weight_norm, weight_norm -from transforms import piecewise_rational_quadratic_transform from style_bert_vits2.models import commons from style_bert_vits2.models.attentions import Encoder +from style_bert_vits2.models.transforms import piecewise_rational_quadratic_transform LRELU_SLOPE = 0.1 diff --git a/transforms.py b/style_bert_vits2/models/transforms.py similarity index 100% rename from transforms.py rename to style_bert_vits2/models/transforms.py