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
| # Script to split/rejoin a large file into/from multiparts with MD5 checksum checks | |
| # Sync upload to a Rclone compatible drive (Google Drive, S3, etc.) to beat Request Rate Limiting | |
| !/bin/bash | |
| # Configuration | |
| REMOTE_PATH="drv:path" # use rclone configure to setup | |
| NUM_PARTS=20 | |
| DELAY_BETWEEN_UPLOADS=15 # seconds | |
| UPLOAD_RETRIES=3 |
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
| # train_grpo.py | |
| # | |
| # See https://github.com/willccbb/verifiers for ongoing developments | |
| # | |
| """ | |
| citation: | |
| @misc{brown2025grpodemo, | |
| title={Granular Format Rewards for Eliciting Mathematical Reasoning Capabilities in Small Language Models}, | |
| author={Brown, William}, |