trainpulse 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- trainpulse-0.2.0/.github/workflows/ci.yml +41 -0
- trainpulse-0.2.0/.gitignore +22 -0
- trainpulse-0.2.0/CHANGELOG.md +19 -0
- trainpulse-0.2.0/LICENSE +177 -0
- trainpulse-0.2.0/PKG-INFO +241 -0
- trainpulse-0.2.0/README.md +206 -0
- trainpulse-0.2.0/assets/alerts.svg +113 -0
- trainpulse-0.2.0/assets/report.svg +147 -0
- trainpulse-0.2.0/examples/anomaly_detection.py +65 -0
- trainpulse-0.2.0/examples/basic_monitoring.py +57 -0
- trainpulse-0.2.0/pyproject.toml +65 -0
- trainpulse-0.2.0/scripts/generate_assets.py +86 -0
- trainpulse-0.2.0/src/trainpulse/__init__.py +33 -0
- trainpulse-0.2.0/src/trainpulse/_types.py +105 -0
- trainpulse-0.2.0/src/trainpulse/callbacks.py +175 -0
- trainpulse-0.2.0/src/trainpulse/cli.py +125 -0
- trainpulse-0.2.0/src/trainpulse/detectors.py +216 -0
- trainpulse-0.2.0/src/trainpulse/early_stopping.py +162 -0
- trainpulse-0.2.0/src/trainpulse/monitor.py +223 -0
- trainpulse-0.2.0/src/trainpulse/py.typed +0 -0
- trainpulse-0.2.0/src/trainpulse/report.py +156 -0
- trainpulse-0.2.0/src/trainpulse/wandb_callback.py +89 -0
- trainpulse-0.2.0/tests/test_callbacks.py +82 -0
- trainpulse-0.2.0/tests/test_cli.py +151 -0
- trainpulse-0.2.0/tests/test_detectors.py +319 -0
- trainpulse-0.2.0/tests/test_early_stopping.py +190 -0
- trainpulse-0.2.0/tests/test_monitor.py +269 -0
- trainpulse-0.2.0/tests/test_report.py +188 -0
- trainpulse-0.2.0/tests/test_types.py +167 -0
- trainpulse-0.2.0/tests/test_wandb_callback.py +169 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [main]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [main]
|
|
8
|
+
|
|
9
|
+
permissions:
|
|
10
|
+
contents: read
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
test:
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
strategy:
|
|
16
|
+
fail-fast: false
|
|
17
|
+
matrix:
|
|
18
|
+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
|
|
19
|
+
|
|
20
|
+
steps:
|
|
21
|
+
- uses: actions/checkout@v4
|
|
22
|
+
|
|
23
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
24
|
+
uses: actions/setup-python@v5
|
|
25
|
+
with:
|
|
26
|
+
python-version: ${{ matrix.python-version }}
|
|
27
|
+
|
|
28
|
+
- name: Install dependencies
|
|
29
|
+
run: |
|
|
30
|
+
python -m pip install --upgrade pip
|
|
31
|
+
pip install -e ".[cli]"
|
|
32
|
+
pip install pytest ruff mypy
|
|
33
|
+
|
|
34
|
+
- name: Lint with ruff
|
|
35
|
+
run: ruff check src/ tests/
|
|
36
|
+
|
|
37
|
+
- name: Type check with mypy
|
|
38
|
+
run: mypy src/trainpulse/
|
|
39
|
+
|
|
40
|
+
- name: Run tests
|
|
41
|
+
run: pytest tests/ -v --tb=short
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
__pycache__/
|
|
2
|
+
*.py[cod]
|
|
3
|
+
*$py.class
|
|
4
|
+
*.egg-info/
|
|
5
|
+
*.egg
|
|
6
|
+
dist/
|
|
7
|
+
build/
|
|
8
|
+
.eggs/
|
|
9
|
+
*.so
|
|
10
|
+
.venv/
|
|
11
|
+
venv/
|
|
12
|
+
env/
|
|
13
|
+
.env
|
|
14
|
+
.mypy_cache/
|
|
15
|
+
.pytest_cache/
|
|
16
|
+
.ruff_cache/
|
|
17
|
+
htmlcov/
|
|
18
|
+
.coverage
|
|
19
|
+
coverage.xml
|
|
20
|
+
*.log
|
|
21
|
+
.DS_Store
|
|
22
|
+
Thumbs.db
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [0.2.0] - 2026-04-10
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Add Weights & Biases callback integration
|
|
12
|
+
- Add early stopping recommendation engine
|
|
13
|
+
- Add example scripts for training monitoring
|
|
14
|
+
|
|
15
|
+
## [0.1.0] - 2026-04-10
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
- Initial release: lightweight training health monitor
|
|
19
|
+
|
trainpulse-0.2.0/LICENSE
ADDED
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to the Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by the Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding any notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
@@ -0,0 +1,241 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: trainpulse
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: Lightweight training health monitor. Detect loss spikes, gradient explosions, and NaN — 2 lines of code, no server, no signup.
|
|
5
|
+
Project-URL: Homepage, https://github.com/stef41/trainpulse
|
|
6
|
+
Project-URL: Repository, https://github.com/stef41/trainpulse
|
|
7
|
+
Project-URL: Issues, https://github.com/stef41/trainpulse/issues
|
|
8
|
+
Author: Zacharie Bhatti
|
|
9
|
+
License: Apache-2.0
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Keywords: deep-learning,gradient,health-check,loss,machine-learning,monitoring,pytorch,training
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Intended Audience :: Science/Research
|
|
15
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
23
|
+
Classifier: Typing :: Typed
|
|
24
|
+
Requires-Python: >=3.9
|
|
25
|
+
Provides-Extra: all
|
|
26
|
+
Requires-Dist: click>=8.0; extra == 'all'
|
|
27
|
+
Requires-Dist: rich>=13.0; extra == 'all'
|
|
28
|
+
Requires-Dist: torch>=2.0; extra == 'all'
|
|
29
|
+
Provides-Extra: cli
|
|
30
|
+
Requires-Dist: click>=8.0; extra == 'cli'
|
|
31
|
+
Requires-Dist: rich>=13.0; extra == 'cli'
|
|
32
|
+
Provides-Extra: torch
|
|
33
|
+
Requires-Dist: torch>=2.0; extra == 'torch'
|
|
34
|
+
Description-Content-Type: text/markdown
|
|
35
|
+
|
|
36
|
+
# trainpulse
|
|
37
|
+
|
|
38
|
+
[](https://github.com/stef41/trainpulse/actions/workflows/ci.yml)
|
|
39
|
+
[](https://www.python.org/downloads/)
|
|
40
|
+
[](https://opensource.org/licenses/Apache-2.0)
|
|
41
|
+
|
|
42
|
+
Lightweight training health monitor. Detect loss spikes, gradient explosions, NaN/Inf, and plateaus — 2 lines of code, no server, no signup.
|
|
43
|
+
|
|
44
|
+
<p align="center">
|
|
45
|
+
<img src="assets/report.svg" width="700" alt="trainpulse report" />
|
|
46
|
+
</p>
|
|
47
|
+
|
|
48
|
+
## Why trainpulse?
|
|
49
|
+
|
|
50
|
+
| Feature | W&B / Neptune | TensorBoard | **trainpulse** |
|
|
51
|
+
|---|---|---|---|
|
|
52
|
+
| Setup | Account + API key | TF dependency | `pip install trainpulse` |
|
|
53
|
+
| NaN/Inf detection | Manual | No | **Automatic** |
|
|
54
|
+
| Loss spike alerts | Manual | No | **Automatic** |
|
|
55
|
+
| Gradient monitoring | Manual | Manual | **Automatic** |
|
|
56
|
+
| Plateau detection | No | No | **Automatic** |
|
|
57
|
+
| Zero dependencies | No | No | **Yes** |
|
|
58
|
+
| Works offline | No | Yes | **Yes** |
|
|
59
|
+
|
|
60
|
+
## Install
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
pip install trainpulse
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
With PyTorch integration:
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
pip install trainpulse[torch]
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
With CLI:
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
pip install trainpulse[cli]
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
## Quick Start
|
|
79
|
+
|
|
80
|
+
### Minimal — 2 lines
|
|
81
|
+
|
|
82
|
+
```python
|
|
83
|
+
from trainpulse import Monitor
|
|
84
|
+
|
|
85
|
+
monitor = Monitor()
|
|
86
|
+
for step in range(num_steps):
|
|
87
|
+
loss = train_step()
|
|
88
|
+
monitor.log("loss", step, loss)
|
|
89
|
+
|
|
90
|
+
report = monitor.report()
|
|
91
|
+
print(f"Health: {report.health_score:.0%}")
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
### Full training loop
|
|
95
|
+
|
|
96
|
+
```python
|
|
97
|
+
from trainpulse import Monitor, MonitorConfig
|
|
98
|
+
|
|
99
|
+
config = MonitorConfig(
|
|
100
|
+
loss_spike_threshold=5.0, # Alert if loss > 5x rolling average
|
|
101
|
+
grad_norm_threshold=100.0, # Alert if gradient norm > 100
|
|
102
|
+
plateau_patience=200, # Alert after 200 steps without improvement
|
|
103
|
+
)
|
|
104
|
+
|
|
105
|
+
monitor = Monitor(config)
|
|
106
|
+
|
|
107
|
+
for step in range(num_steps):
|
|
108
|
+
monitor.step_start()
|
|
109
|
+
|
|
110
|
+
loss = train_step()
|
|
111
|
+
grad_norm = get_grad_norm()
|
|
112
|
+
lr = scheduler.get_last_lr()[0]
|
|
113
|
+
|
|
114
|
+
monitor.log("loss", step, loss)
|
|
115
|
+
monitor.log("grad_norm", step, grad_norm)
|
|
116
|
+
monitor.log("learning_rate", step, lr)
|
|
117
|
+
monitor.step_end(step)
|
|
118
|
+
|
|
119
|
+
report = monitor.report()
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
### Callback API
|
|
123
|
+
|
|
124
|
+
```python
|
|
125
|
+
from trainpulse import TrainingCallback
|
|
126
|
+
|
|
127
|
+
cb = TrainingCallback()
|
|
128
|
+
for step in range(num_steps):
|
|
129
|
+
cb.on_step_begin(step)
|
|
130
|
+
loss = train_step()
|
|
131
|
+
cb.on_step_end(step, loss=loss, grad_norm=grad_norm, lr=lr)
|
|
132
|
+
|
|
133
|
+
report = cb.report()
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
### Real-time alerts
|
|
137
|
+
|
|
138
|
+
```python
|
|
139
|
+
def my_alert_handler(alert):
|
|
140
|
+
print(f"⚠ {alert}")
|
|
141
|
+
# Or send to Slack, Discord, email...
|
|
142
|
+
|
|
143
|
+
config = MonitorConfig(alert_callbacks=[my_alert_handler])
|
|
144
|
+
monitor = Monitor(config)
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
<p align="center">
|
|
148
|
+
<img src="assets/alerts.svg" width="700" alt="trainpulse alerts" />
|
|
149
|
+
</p>
|
|
150
|
+
|
|
151
|
+
## Detectors
|
|
152
|
+
|
|
153
|
+
| Detector | What it catches | Default threshold |
|
|
154
|
+
|---|---|---|
|
|
155
|
+
| **NaN/Inf** | NaN or Inf in any metric | Always on |
|
|
156
|
+
| **Loss spike** | Sudden loss increase vs rolling average | 5x |
|
|
157
|
+
| **Gradient explosion** | Gradient norm too large | 100.0 |
|
|
158
|
+
| **Gradient vanishing** | Gradient norm too small | 1e-7 |
|
|
159
|
+
| **LR anomaly** | Learning rate jumps | 10x change |
|
|
160
|
+
| **Plateau** | No loss improvement | 100 steps |
|
|
161
|
+
| **Step time** | Unusually slow steps | 3x average |
|
|
162
|
+
|
|
163
|
+
## CLI
|
|
164
|
+
|
|
165
|
+
Analyze training logs (JSONL format):
|
|
166
|
+
|
|
167
|
+
```bash
|
|
168
|
+
trainpulse analyze train.jsonl
|
|
169
|
+
trainpulse analyze train.jsonl --json-out report.json
|
|
170
|
+
trainpulse show report.json
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
Expected JSONL format:
|
|
174
|
+
```json
|
|
175
|
+
{"step": 0, "loss": 2.5, "grad_norm": 1.2, "learning_rate": 0.001}
|
|
176
|
+
{"step": 1, "loss": 2.3, "grad_norm": 1.1, "learning_rate": 0.001}
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
## Health Score
|
|
180
|
+
|
|
181
|
+
The health score (0.0–1.0) is computed from alert severity:
|
|
182
|
+
|
|
183
|
+
- **Critical** alerts (NaN, gradient explosion): −0.15 each
|
|
184
|
+
- **Warning** alerts (spikes, plateaus): −0.05 each
|
|
185
|
+
- **Info** alerts: −0.01 each
|
|
186
|
+
|
|
187
|
+
A score above 0.80 generally indicates healthy training.
|
|
188
|
+
|
|
189
|
+
## API Reference
|
|
190
|
+
|
|
191
|
+
### `Monitor(config=None)`
|
|
192
|
+
|
|
193
|
+
Main class. Call `.log(name, step, value)` to record metrics.
|
|
194
|
+
|
|
195
|
+
### `MonitorConfig`
|
|
196
|
+
|
|
197
|
+
| Parameter | Default | Description |
|
|
198
|
+
|---|---|---|
|
|
199
|
+
| `loss_spike_threshold` | 5.0 | Multiplier over rolling average |
|
|
200
|
+
| `loss_spike_window` | 50 | Rolling window size |
|
|
201
|
+
| `grad_norm_threshold` | 100.0 | Max acceptable gradient norm |
|
|
202
|
+
| `grad_vanish_threshold` | 1e-7 | Min acceptable gradient norm |
|
|
203
|
+
| `check_nan` | True | Enable NaN/Inf detection |
|
|
204
|
+
| `lr_change_threshold` | 10.0 | Max LR change ratio per step |
|
|
205
|
+
| `plateau_patience` | 100 | Steps without improvement |
|
|
206
|
+
| `plateau_min_delta` | 1e-5 | Minimum improvement delta |
|
|
207
|
+
| `step_time_spike_threshold` | 3.0 | Step time spike multiplier |
|
|
208
|
+
| `alert_callbacks` | [] | Functions called on each alert |
|
|
209
|
+
|
|
210
|
+
### `TrainingReport`
|
|
211
|
+
|
|
212
|
+
| Property | Type | Description |
|
|
213
|
+
|---|---|---|
|
|
214
|
+
| `.health_score` | float | 0.0 (terrible) to 1.0 (perfect) |
|
|
215
|
+
| `.is_healthy` | bool | True if no critical alerts |
|
|
216
|
+
| `.n_warnings` | int | Number of warning alerts |
|
|
217
|
+
| `.n_critical` | int | Number of critical alerts |
|
|
218
|
+
| `.alerts` | list[Alert] | All triggered alerts |
|
|
219
|
+
| `.metrics_summary` | dict | Per-metric min/max/mean/last |
|
|
220
|
+
|
|
221
|
+
## See Also
|
|
222
|
+
|
|
223
|
+
Part of the **stef41 LLM toolkit** — open-source tools for every stage of the LLM lifecycle:
|
|
224
|
+
|
|
225
|
+
| Project | What it does |
|
|
226
|
+
|---------|-------------|
|
|
227
|
+
| [tokonomics](https://github.com/stef41/tokonomics) | Token counting & cost management for LLM APIs |
|
|
228
|
+
| [datacrux](https://github.com/stef41/datacrux) | Training data quality — dedup, PII, contamination |
|
|
229
|
+
| [castwright](https://github.com/stef41/castwright) | Synthetic instruction data generation |
|
|
230
|
+
| [datamix](https://github.com/stef41/datamix) | Dataset mixing & curriculum optimization |
|
|
231
|
+
| [toksight](https://github.com/stef41/toksight) | Tokenizer analysis & comparison |
|
|
232
|
+
| [ckpt](https://github.com/stef41/ckpt) | Checkpoint inspection, diffing & merging |
|
|
233
|
+
| [quantbench](https://github.com/stef41/quantbench) | Quantization quality analysis |
|
|
234
|
+
| [infermark](https://github.com/stef41/infermark) | Inference benchmarking |
|
|
235
|
+
| [modeldiff](https://github.com/stef41/modeldiff) | Behavioral regression testing |
|
|
236
|
+
| [vibesafe](https://github.com/stef41/vibesafe) | AI-generated code safety scanner |
|
|
237
|
+
| [injectionguard](https://github.com/stef41/injectionguard) | Prompt injection detection |
|
|
238
|
+
|
|
239
|
+
## License
|
|
240
|
+
|
|
241
|
+
Apache-2.0
|