mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-04-05 19:41:56 +08:00
* modified: GPT_SoVITS/TTS_infer_pack/TTS.py modified: GPT_SoVITS/TTS_infer_pack/TextPreprocessor.py modified: GPT_SoVITS/inference_webui_fast.py * 适配V3版本 * api_v2.py和inference_webui_fast.py的v3适配 * 修改了个远古bug,增加了更友好的提示信息 * 优化webui * 修改为正确的path * 修复v3 lora模型的载入问题 * 修复读取tts_infer.yaml文件时遇到的编码不匹配的问题
31 lines
825 B
Python
31 lines
825 B
Python
# Adapted from https://github.com/junjun3518/alias-free-torch under the Apache License 2.0
|
|
# LICENSE is in incl_licenses directory.
|
|
|
|
import torch.nn as nn
|
|
from .resample import UpSample1d, DownSample1d
|
|
|
|
|
|
class Activation1d(nn.Module):
|
|
def __init__(
|
|
self,
|
|
activation,
|
|
up_ratio: int = 2,
|
|
down_ratio: int = 2,
|
|
up_kernel_size: int = 12,
|
|
down_kernel_size: int = 12,
|
|
):
|
|
super().__init__()
|
|
self.up_ratio = up_ratio
|
|
self.down_ratio = down_ratio
|
|
self.act = activation
|
|
self.upsample = UpSample1d(up_ratio, up_kernel_size)
|
|
self.downsample = DownSample1d(down_ratio, down_kernel_size)
|
|
|
|
# x: [B,C,T]
|
|
def forward(self, x):
|
|
x = self.upsample(x)
|
|
x = self.act(x)
|
|
x = self.downsample(x)
|
|
|
|
return x
|