CoolFace
Apppublic

asad2662/face-type-classifier

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
Makefile19 linesDownload Raw Back to root
1install:2	pip install --upgrade pip && \3	pip install -r requirements.txt4 5format:6	black *.py7 8test:9	pytest --maxfail=1 --disable-warnings -q || true10 11hf-login:12	pip install -U "huggingface_hub[cli]"13	huggingface-cli login --token $(HF_TOKEN) --add-to-git-credential14 15deploy: hf-login16	huggingface-cli upload asad2662/face-type-classifier . \17		--repo-type=space \18		--commit-message "Auto-deploy from GitHub Actions"19