From 3c16b3fbf9e32d13bbc1d70d7f1c6678a2508c24 Mon Sep 17 00:00:00 2001 From: Alexander Cordero Lobo Date: Sat, 21 Feb 2026 14:45:09 -0600 Subject: [PATCH] Update Makefile --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index cfa30f9..4a725bd 100644 --- a/Makefile +++ b/Makefile @@ -2,8 +2,8 @@ install: pip install --upgrade pip &&\ pip install -r requirements.txt -format: - black *.py +format: + black *.py train: python train.py @@ -23,17 +23,17 @@ update-branch: git commit -am "Update with new results" git push --force origin HEAD:update -hf-login: +hf-login: pip install -U "huggingface_hub[cli]" git pull origin update git switch update huggingface-cli login --token $(HF) --add-to-git-credential -push-hub: +push-hub: huggingface-cli upload kingabzpro/Drug-Classification ./App --repo-type=space --commit-message="Sync App files" huggingface-cli upload kingabzpro/Drug-Classification ./Model /Model --repo-type=space --commit-message="Sync Model" huggingface-cli upload kingabzpro/Drug-Classification ./Results /Metrics --repo-type=space --commit-message="Sync Model" deploy: hf-login push-hub -all: install format train eval update-branch deploy \ No newline at end of file +all: install format train eval update-branch deploy