Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Pew404
/
SexBot
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
SexBot
/
utils
/
loader.py
Pew404
Upload folder using huggingface_hub
318db6e
verified
about 2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
182 Bytes
import
yaml
from
typing
import
Dict
def
config_loader
(
config_path
) ->
Dict
:
with
open
(config_path)
as
f:
config = yaml.load(f, Loader=yaml.FullLoader)
return
config