Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Plachta/VALL-E-X
liyaodev
/
VALL-E-X
like
0
Runtime error
App
Files
Files
Community
95019e6
VALL-E-X
/
utils
/
__init__.py
Plachta
initial commit
b1e1a76
over 1 year ago
raw
Copy download link
history
blame
Safe
198 Bytes
import
torch
import
torch.nn
as
nn
class
Transpose
(nn.Identity):
"""(N, T, D) -> (N, D, T)"""
def
forward
(
self,
input
: torch.Tensor
) -> torch.Tensor:
return
input
.transpose(
1
,
2
)