git clone https://github.com/openclaw/openclaw.git
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| REM Test: wsl -e script -q -c "sshpass -p '...' ssh -t -o ... user@host" | |
| REM Set TEST_SSH_* and optionally WSL_DISTRO. Run "wsl -l -v" to see distro names. | |
| if "%TEST_SSH_USER%"=="" set TEST_SSH_USER=your_name | |
| if "%TEST_SSH_HOST%"=="" set TEST_SSH_HOST=your_host | |
| if "%TEST_SSH_PORT%"=="" set TEST_SSH_PORT=22 | |
| if "%TEST_SSH_PASSWORD%"=="" set TEST_SSH_PASSWORD=your_password | |
| REM Use the distro where sshpass is installed (e.g. Ubuntu-24.04). Default = Ubuntu. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| The most atomic way to train and inference a GPT in pure, dependency-free Python. | |
| This file is the complete algorithm. | |
| Everything else is just efficiency. | |
| @karpathy | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |
pip install langfuse
python main.pyNewerOlder