e2a2 0.0.1__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.
e2a2-0.0.1/LICENSE ADDED
@@ -0,0 +1 @@
1
+ Contact Dan Jacobellis
e2a2-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: e2a2
3
+ Version: 0.0.1
4
+ Summary: E2A2: Encoding Efficient Asymmetric Autoencoders
5
+ Author-email: Dan Jacobellis <danjacobellis@utexas.edu>
6
+ License-Expression: LicenseRef-Proprietary
7
+ Project-URL: Repository, https://github.com/danjacobellis/E2A2
8
+ Project-URL: Issues, https://github.com/danjacobellis/E2A2/issues
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: torch
15
+ Requires-Dist: torchvision
16
+ Requires-Dist: timm
17
+ Requires-Dist: einops
18
+ Requires-Dist: gigatorch
19
+ Requires-Dist: numpy
20
+ Requires-Dist: scipy
21
+ Requires-Dist: datasets
22
+ Dynamic: license-file
23
+
24
+ # E2A2
25
+ Encoding Efficient Asymmetric Autoencoders
e2a2-0.0.1/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # E2A2
2
+ Encoding Efficient Asymmetric Autoencoders
@@ -0,0 +1,36 @@
1
+ [build-system]
2
+ requires = ["setuptools>=42", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "e2a2"
7
+ version = "0.0.1"
8
+ description = "E2A2: Encoding Efficient Asymmetric Autoencoders"
9
+ authors = [
10
+ {name = "Dan Jacobellis", email = "danjacobellis@utexas.edu"}
11
+ ]
12
+ readme = "README.md"
13
+ license = "LicenseRef-Proprietary"
14
+ license-files = ["LICENSE"]
15
+ classifiers = [
16
+ "Programming Language :: Python :: 3",
17
+ "Operating System :: OS Independent"
18
+ ]
19
+ dependencies = [
20
+ "torch",
21
+ "torchvision",
22
+ "timm",
23
+ "einops",
24
+ "gigatorch",
25
+ "numpy",
26
+ "scipy",
27
+ "datasets",
28
+ ]
29
+ requires-python = ">=3.10"
30
+
31
+ [tool.setuptools.package-data]
32
+ "e2a2" = ["*.c", "*.h"]
33
+
34
+ [project.urls]
35
+ Repository = "https://github.com/danjacobellis/E2A2"
36
+ Issues = "https://github.com/danjacobellis/E2A2/issues"
e2a2-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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
+ """