From 5bb4875acf1bd8a1c87a38f888f009346bc82014 Mon Sep 17 00:00:00 2001 From: Pawel Date: Fri, 29 May 2026 19:29:06 -0400 Subject: [PATCH] NanoGPT acknowledgement --- README.md | 6 +++++- webapp/static/app.css | 8 ++++++++ webapp/static/index.html | 11 +++++++++-- 3 files changed, 22 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 477222a..67f989f 100644 --- a/README.md +++ b/README.md @@ -794,9 +794,13 @@ Example prediction payload: - Board-size-specific generation is a planned future extension. For now, the demo uses the full TB2 12x12 and Kilter 16x12-style background images and placement sets. - "No Match" token and "No Match" options in the demo. +## References and acknowledgements +The route generator is a small GPT-style causal transformer inspired by Andrej Karpathy's [`nanoGPT`](https://github.com/karpathy/nanoGPT), a compact reference implementation for training GPT models. + +Board layouts, hold metadata, and route data are derived from [`Tension Board 2`](https://tensionclimbing.com/products/tension-board-2) and [`Kilter Board`](https://settercloset.com/collections/kilter-board) datasets. This project is unaffiliated with [`Tension Climbing`](https://tensionclimbing.com/) or [`Kilter`](https://settercloset.com/collections/kilter-board). # License This project is licensed under the MIT License. See the [`LICENSE`](LICENSE) file for details. -The project is for educational purposes. Climb data belongs to Tension Climbing and Kilter respectively. +The project is for educational purposes. diff --git a/webapp/static/app.css b/webapp/static/app.css index caf3cf8..3182661 100644 --- a/webapp/static/app.css +++ b/webapp/static/app.css @@ -407,3 +407,11 @@ button.secondary:hover { font-size: 0.8rem; line-height: 1.45; } + +#data-acknowledgement-card a { + color: var(--link); +} + +#data-acknowledgement-card a:hover { + color: var(--hover); +} diff --git a/webapp/static/index.html b/webapp/static/index.html index 27cac1a..59b1ecf 100644 --- a/webapp/static/index.html +++ b/webapp/static/index.html @@ -124,14 +124,21 @@
  • Tension Board 2 Analysis repo
  • Kilter Board Analysis repo
  • Tension Board 2
  • -
  • Kilter Board
  • +
  • Kilter Board
  • +
  • nanoGPT
  • Data acknowledgement

    - Board layouts, hold metadata, and route data are derived from Tension Board 2 and Kilter Board datasets. This project is unaffiliated with Tension Climbing or Kilter. + Board layouts, hold metadata, and route data are derived from + Tension Board 2 + and + Kilter Board + datasets. This project is unaffiliated with Tension Climbing or + Kilter. The route generator is inspired by Andrej Karpathy's + nanoGPT.