Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- train/.gitignore +10 -0
- train/.python-version +1 -0
- train/README.md +0 -0
- train/lichess_db_standard_rated_2013-01.pgn +3 -0
- train/push_to_hf.sh +9 -0
- train/pyproject.toml +11 -0
- train/uv.lock +0 -0
.gitattributes
CHANGED
|
@@ -59,3 +59,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
lichess_db_standard_rated_2013-01.pgn filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
lichess_db_standard_rated_2013-01.pgn filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
train/lichess_db_standard_rated_2013-01.pgn filter=lfs diff=lfs merge=lfs -text
|
train/.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
|
train/.python-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
3.11
|
train/README.md
ADDED
|
File without changes
|
train/lichess_db_standard_rated_2013-01.pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8963b6a1620a0e9c77e5515a0744ec133e86869487188af047bb0a74400dee37
|
| 3 |
+
size 92811021
|
train/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 /train
|
train/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 |
+
]
|
train/uv.lock
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|