This commit is contained in:
Jim O'Regan
2024-10-02 13:21:00 +00:00
parent 362ba2dce7
commit bd058a68f7
5 changed files with 6 additions and 6 deletions

View File

@@ -2,7 +2,7 @@ import math
from typing import Optional
import torch
import torch.nn as nn
from torch import nn
import torch.nn.functional as F
from conformer import ConformerBlock
from diffusers.models.activations import get_activation

View File

@@ -3,10 +3,10 @@
import math
import torch
import torch.nn as nn
from torch import nn
from einops import rearrange
import matcha.utils as utils
from matcha import utils
from matcha.utils.model import sequence_mask
log = utils.get_pylogger(__name__)

View File

@@ -1,7 +1,7 @@
from typing import Any, Dict, Optional
import torch
import torch.nn as nn
from torch import nn
from diffusers.models.attention import (
GEGLU,
GELU,