@@ -60,8 +60,7 @@ Everything you need out of the box:
6060- Data preprocessing pipeline
6161- Tokenizer training (BPE, WordPiece, Unigram)
6262- Checkpoint management with auto-save
63- - TensorBoard integration
64- - Live training dashboard
63+ - TensorBoard integration for real-time monitoring
6564- Interactive chat interface
6665- Model comparison tools
6766- Deployment scripts
@@ -301,9 +300,11 @@ This tokenizes and prepares your data for training.
301300# Basic training
302301python training/train.py
303302
304- # With live dashboard
305- python training/train.py --dashboard
306- # Then open http://localhost:5000
303+ # With TensorBoard monitoring
304+ python training/train.py
305+ # In another terminal:
306+ tensorboard --logdir=logs/tensorboard
307+ # Then open http://localhost:6006
307308
308309# Resume from checkpoint
309310python training/train.py --resume checkpoints/checkpoint-1000.pt
@@ -369,8 +370,7 @@ my-llm/
369370├── training/
370371│ ├── train.py # Main training script
371372│ ├── trainer.py # Trainer class
372- │ ├── callbacks/ # Training callbacks
373- │ └── dashboard/ # Live training dashboard
373+ │ └── callbacks/ # Training callbacks
374374│
375375├── evaluation/
376376│ ├── evaluate.py # Model evaluation
@@ -494,7 +494,7 @@ npx create-llm my-project -y
494494- Start with NANO to test pipeline
495495- Use mixed precision on GPU (` mixed_precision: true ` )
496496- Increase ` gradient_accumulation_steps ` if OOM
497- - Monitor GPU usage with dashboard
497+ - Monitor training with TensorBoard
498498- Save checkpoints frequently
499499
500500---
0 commit comments