Tarul commited on
Commit
2fe464b
·
verified ·
1 Parent(s): d3781c9

Upload pxg_tiny/__init__.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. pxg_tiny/__init__.py +6 -0
pxg_tiny/__init__.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ """PXG-Tiny: a tiny offline text->sprite model (pure NumPy inference)."""
2
+ from pxg_tiny.pipeline import PXGPipeline # noqa: F401
3
+ from pxg_tiny.runtime_pipeline import OfflinePipeline # noqa: F401
4
+ from pxg_tiny import config # noqa: F401
5
+
6
+ __version__ = "0.1.0"