e2a2 0.0.1__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.
e2a2/__init__.py ADDED
@@ -0,0 +1,17 @@
1
+ """E2A2: the FRAPPEv3 split trainer, packaged (recipe unchanged).
2
+
3
+ Entry points (each importable via run(argv=None, **kwargs) and runnable
4
+ as a CLI via `python3 -m e2a2.<name>`):
5
+
6
+ - `train_group` -- GROUP phase: one group per invocation; real
7
+ entropy-coded rate known (and round-trip verified) before any merged
8
+ compute.
9
+ - `train_merged` -- MERGED phase off a group-stage checkpoint; also
10
+ --verify_only.
11
+ - `train` -- sequential wrapper (group then merged, per group).
12
+ - `inference` -- thin, PROVISIONAL checkpoint round-trip helpers (the
13
+ checkpoint format is expected to change).
14
+
15
+ Heavy imports (torch, datasets, the C-backed coder) happen when a
16
+ submodule is imported, not here.
17
+ """