Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
509ab36
Merge pull request #33 from changcheng967/Training
changcheng967 Oct 6, 2025
40eeaa9
Create Exporting.txt
changcheng967 Oct 6, 2025
0a77ca6
Update shuffle.txt
changcheng967 Oct 16, 2025
975cbda
Update create (train.json).txt
changcheng967 Oct 16, 2025
3d1873a
Update model checkpoint and names in Exporting.txt
changcheng967 Oct 16, 2025
bd67ac8
Update model checkpoint and names in Exporting.txt
changcheng967 Oct 16, 2025
9b73b75
Update model checkpoint and names in Exporting.txt
changcheng967 Oct 16, 2025
3fa5c94
Update Exporting.txt
changcheng967 Oct 16, 2025
c227348
Update model checkpoint and names in Exporting.txt
changcheng967 Oct 17, 2025
c94019d
Update training parameters in train.txt
changcheng967 Oct 17, 2025
20da6ca
Update model checkpoint and names in Exporting.txt
changcheng967 Oct 18, 2025
3b15136
Update train.json with new row counts
changcheng967 Oct 18, 2025
0c509ae
Update Exporting.txt
changcheng967 Oct 18, 2025
c87d766
Merge branch 'Training' into main
changcheng967 Oct 21, 2025
2af8a26
Initial plan
Copilot Oct 30, 2025
d225135
Add comprehensive license key generator system for DouEssay v10.0.0
Copilot Oct 30, 2025
0b50bed
Fix code review issues: remove redundant import, add check_hardware p…
Copilot Oct 30, 2025
788095b
Fix security vulnerabilities: sanitize error messages to prevent stac…
Copilot Oct 30, 2025
ecb2182
Add security summary and complete comprehensive testing
Copilot Oct 30, 2025
af5cc0a
Merge pull request #35 from changcheng967/copilot/add-license-key-gen…
changcheng967 Oct 30, 2025
fbc45c4
Revert "Add enterprise license key generator with RSA-4096 cryptograp…
changcheng967 Oct 30, 2025
d923d41
Merge pull request #36 from changcheng967/revert-35-copilot/add-licen…
changcheng967 Oct 30, 2025
693dfab
Bump actions/checkout from 5 to 6 in /.github/workflows
dependabot[bot] Nov 20, 2025
068a91f
Merge pull request #37 from changcheng967/dependabot/github_actions/d…
changcheng967 Dec 31, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/jekyll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Fetch releases JSON
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout training branch
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: Training # Checkout the training branch, even though workflow triggers manually

Expand Down
5 changes: 5 additions & 0 deletions commands/Exporting.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
python /notebooks/KataGo/python/export_model_pytorch.py \
-checkpoint /notebooks/katago/models/KW29-b18c384nbt-1018-s10000241408-d584857/model.ckpt \
-export-dir /notebooks/katago/models \
-model-name KW29-b18c384nbt-1018 \
-filename-prefix KW29-b18c384nbt-1018
10 changes: 6 additions & 4 deletions commands/create (train.json).txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cd /notebooks/katago/shuffledata

cat > train.json << 'EOF'
{
"num_rows": 584857,
"num_rows": 664983,
"files": [
"train/data0.npz",
"train/data1.npz",
Expand All @@ -19,10 +19,12 @@ cat > train.json << 'EOF'
"train/data8.npz",
"train/data9.npz",
"train/data10.npz",
"train/data11.npz"
"train/data11.npz",
"train/data12.npz"
],
"range": [0, 584857],
"range": [0, 664983],
"is_random": false,
"total_rows": 584857
"total_rows": 664983
}
EOF

2 changes: 1 addition & 1 deletion commands/shuffle.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
python shuffle.py \
/notebooks/katago/training_data/2025-10-02npzs \
/notebooks/katago/training_data/2025-10-12npzs \
-out-dir /notebooks/katago/shuffledata \
-out-tmp-dir /notebooks/katago/shuffledata_tmp \
-num-processes 4 \
Expand Down
Loading