mirror of
https://github.com/shivammehta25/Matcha-TTS.git
synced 2026-02-05 10:19:19 +08:00
disable consider-using-from-import instead
This commit is contained in:
@@ -2,11 +2,11 @@ import math
|
||||
from typing import Optional
|
||||
|
||||
import torch
|
||||
import torch.nn as nn # pylint: disable=consider-using-from-import
|
||||
import torch.nn.functional as F
|
||||
from conformer import ConformerBlock
|
||||
from diffusers.models.activations import get_activation
|
||||
from einops import pack, rearrange, repeat
|
||||
from torch import nn
|
||||
|
||||
from matcha.models.components.transformer import BasicTransformerBlock
|
||||
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
import math
|
||||
|
||||
import torch
|
||||
import torch.nn as nn # pylint: disable=consider-using-from-import
|
||||
from einops import rearrange
|
||||
from torch import nn
|
||||
|
||||
from matcha import utils
|
||||
from matcha.utils.model import sequence_mask
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
from typing import Any, Dict, Optional
|
||||
|
||||
import torch
|
||||
import torch.nn as nn # pylint: disable=consider-using-from-import
|
||||
from diffusers.models.attention import (
|
||||
GEGLU,
|
||||
GELU,
|
||||
@@ -11,7 +12,6 @@ from diffusers.models.attention import (
|
||||
from diffusers.models.attention_processor import Attention
|
||||
from diffusers.models.lora import LoRACompatibleLinear
|
||||
from diffusers.utils.torch_utils import maybe_allow_in_graph
|
||||
from torch import nn
|
||||
|
||||
|
||||
class SnakeBeta(nn.Module):
|
||||
|
||||
Reference in New Issue
Block a user