Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
AlexK-PL
/
Tacotron2_GST_eng
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
848f2f7
Tacotron2_GST_eng
/
melgan
/
model
/
identity.py
AlexK-PL
Upload MelGAN model
85e1f14
over 1 year ago
raw
Copy download link
history
blame
Safe
206 Bytes
import
torch
import
torch.nn
as
nn
import
torch.nn.functional
as
F
class
Identity
(nn.Module):
def
__init__
(
self
):
super
(Identity, self).__init__()
def
forward
(
self, x
):
return
x