You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/track.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -91,6 +91,30 @@ trackio.log(
91
91
style="border:0;">
92
92
</iframe>
93
93
94
+
### Logging reports (Markdown)
95
+
96
+
You can log markdown reports using the [`Markdown`] class. Reports are shown in the **Reports** page in the dashboard, where the newest report appears first.
97
+
98
+
```python
99
+
trackio.log(
100
+
{
101
+
"training_report": trackio.Markdown(
102
+
"""# Training Report
103
+
104
+
Final validation accuracy: **0.92**
105
+
106
+
- Best epoch: 18
107
+
- Early stopping: enabled
108
+
"""
109
+
)
110
+
}
111
+
)
112
+
```
113
+
114
+
You can log reports multiple times during a run (for example, one report per checkpoint), and Trackio will keep the full history across steps.
115
+
116
+
For a complete runnable script, see `examples/training-with-report.py`.
0 commit comments