pulseml 0.1.0__py3-none-any.whl

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.
pulse/__init__.py ADDED
@@ -0,0 +1,10 @@
1
+ """
2
+ Pulse — a live ML training debugger, GUI or CLI, any backend.
3
+
4
+ from pulse import auto_track
5
+ auto_track(train_step)
6
+ """
7
+ from .pulse import auto_track, shutdown
8
+
9
+ __version__ = "0.1.0"
10
+ __all__ = ["auto_track", "shutdown"]