File size: 242 Bytes
b0f8af0 | 1 2 3 4 5 6 7 8 | from huggingface_hub import login, upload_folder
# (optional) Login with your Hugging Face credentials
login()
# Push your dataset files
upload_folder(folder_path=".", repo_id="fabricfaultdetection/label_fault", repo_type="dataset")
|