smatta commited on
Commit
ea826ef
·
verified ·
1 Parent(s): e4bd436

Upload vae/__init__.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. vae/__init__.py +19 -0
vae/__init__.py ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2025 Hugging Face Team and Overworld
2
+ #
3
+ # This program is free software: you can redistribute it and/or modify
4
+ # it under the terms of the GNU General Public License as published by
5
+ # the Free Software Foundation, either version 3 of the License, or
6
+ # (at your option) any later version.
7
+ #
8
+ # This program is distributed in the hope that it will be useful,
9
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
10
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
+ # GNU General Public License for more details.
12
+ #
13
+ # You should have received a copy of the GNU General Public License
14
+ # along with this program. If not, see <https://www.gnu.org/licenses/>.
15
+
16
+ from .ae_model import WorldEngineVAE
17
+ from .dcae import bake_weight_norm
18
+
19
+ __all__ = ["WorldEngineVAE", "bake_weight_norm"]