this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix training loss logging; report_to=[] instead of 'none'

trl 0.15 with report_to='none' suppresses stdout logging.
Empty list keeps external reporters off while preserving console output.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

+1 -1
+1 -1
src/train_deepseek.py
··· 223 223 save_total_limit=5, 224 224 load_best_model_at_end=False, 225 225 remove_unused_columns=False, # collator uses non-standard keys 226 - report_to="none", 226 + report_to=[], 227 227 ) 228 228 229 229 has_checkpoint = any(Path(out_dir).glob("checkpoint-*")) if Path(out_dir).exists() else False