from huggingface_hub import HfApi api = HfApi() api.upload_file( path_or_fileobj="/absolute/path/to/logistic_model_pipeline.pkl2", path_in_repo="logistic_model_pipeline.pkl2", repo_id="your-username/your-repo-name", repo_type="model" ) git clone https://huggingface.co/Anupam202224/heart-disease-prediction cd heart-disease-prediction cp /path/to/your/code/* . git add . git commit -m "Initial commit" git push