Upload folder using huggingface_hub
Browse files- .gitignore +10 -0
- .python-version +1 -0
- README.md +0 -0
- push_to_hf.sh +9 -0
- pyproject.toml +11 -0
- uv.lock +0 -0
.gitignore
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python-generated files
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[oc]
|
| 4 |
+
build/
|
| 5 |
+
dist/
|
| 6 |
+
wheels/
|
| 7 |
+
*.egg-info
|
| 8 |
+
|
| 9 |
+
# Virtual environments
|
| 10 |
+
.venv
|
.python-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
3.11
|
README.md
ADDED
|
File without changes
|
push_to_hf.sh
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env bash
|
| 2 |
+
# push_to_hf.sh — push current dir to HuggingFace Hub
|
| 3 |
+
# Usage: ./push_to_hf.sh [repo] [local_path]
|
| 4 |
+
# Defaults: repo=nabin2004/ChessDataset, path=.
|
| 5 |
+
|
| 6 |
+
REPO="${1:-nabin2004/ChessDataset}"
|
| 7 |
+
LOCAL_PATH="${2:-.}"
|
| 8 |
+
|
| 9 |
+
hf upload "$REPO" "$LOCAL_PATH" --repo-type=dataset
|
pyproject.toml
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "chessproj"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "Add your description here"
|
| 5 |
+
readme = "README.md"
|
| 6 |
+
requires-python = ">=3.11"
|
| 7 |
+
dependencies = [
|
| 8 |
+
"datasets>=4.8.2",
|
| 9 |
+
"numpy>=2.4.3",
|
| 10 |
+
"pandas>=3.0.1",
|
| 11 |
+
]
|
uv.lock
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|