Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Reiner4
/
extrasneo
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
extrasneo
/
talkinghead
/
tha3
/
nn
/
pass_through.py
Reiner4
Upload 539 files
65fe463
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
151 Bytes
from
torch.nn
import
Module
class
PassThrough
(
Module
):
def
__init__
(
self
):
super
().__init__()
def
forward
(
self, x
):
return
x