Spaces:
Runtime error
Runtime error
File size: 527 Bytes
e7987cb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# Steps to get binary files working
```buildoutcfg
# 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
``` |