Create Credentials
Browse files- Credentials +7 -0
Credentials
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from huggingface_hub import login, upload_folder
|
| 2 |
+
|
| 3 |
+
# (optional) Login with your Hugging Face credentials
|
| 4 |
+
login()
|
| 5 |
+
|
| 6 |
+
# Push your dataset files
|
| 7 |
+
upload_folder(folder_path=".", repo_id="Pq234/tiny-agents", repo_type="dataset")
|