Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
abreza/SadTalker
Han-123
/
SadTalker
like
1
Running
on
Zero
App
Files
Files
Community
1
a089f5d
SadTalker
/
src
/
utils
/
safetensor_helper.py
abreza
init
8f6558d
6 months ago
raw
Copy download link
history
blame
Safe
198 Bytes
def
load_x_from_safetensor
(
checkpoint, key
):
x_generator = {}
for
k,v
in
checkpoint.items():
if
key
in
k:
x_generator[k.replace(key+
'.'
,
''
)] = v
return
x_generator