Spaces:
Runtime error
Runtime error
A newer version of the Streamlit SDK is available:
1.41.1
Steps to get binary files working
# clone repo from huggingface
git clone https://huggingface.co/spaces/sanzgiri/cartoonify
cd cartoonify
# create a directory called saved_model and put binaries in there
# this is the directory referenced in code
mkdir saved_model
cp <model-files> saved_model
# track model-files using git-lfs
# git lfs install
git lfs track saved_model/*
git add <other files> saved_model
# git lfs ls-files
# this should now list the files
git commit -m "adding files" .
git push