# tiny-LLM **Repository Path**: uesoft/tiny-LLM ## Basic Information - **Project Name**: tiny-LLM - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-07-02 - **Last Updated**: 2026-07-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README MODIFY THE FUNCTION IN THE FOLLOWING FILE AS SUCH TO FIX PRINTING ERRORS ./virtualenv/lib/python3.12/site-packages/transformers/trainer_callback.py class PrinterCallback(TrainerCallback): """ A bare [`TrainerCallback`] that just prints the logs. """ def on_log(self, args, state, control, logs=None, **kwargs): _ = logs.pop("total_flos", None) if state.is_local_process_zero and control.should_log: print(logs)