ai-humanizer / Makefile
a-real-human's picture
Upload folder using huggingface_hub
d9d5f55 verified
Raw
History Blame Contribute Delete
333 Bytes
.PHONY: install run deploy
install:
pip install -r requirements.txt
run:
python app.py
deploy:
python3 -c "\
from huggingface_hub import HfApi; \
api = HfApi(); \
api.upload_folder(folder_path='.', repo_id='gpthuman/ai-humanizer', repo_type='space'); \
print('Deployed to https://huggingface.co/spaces/gpthuman/ai-humanizer')"