Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
vinthony/SadTalker
nijisakai
/
SadTalker
like
0
Runtime error
App
Files
Files
Community
9fd877b
SadTalker
/
src
/
utils
/
safetensor_helper.py
nijisakai
Duplicate from vinthony/SadTalker
585c7ea
about 1 year 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