SURE-tools 2.4.13__py3-none-any.whl → 2.4.22__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.

Potentially problematic release.


This version of SURE-tools might be problematic. Click here for more details.

SURE/DensityFlow.py CHANGED
@@ -109,6 +109,13 @@ class DensityFlow(nn.Module):
109
109
 
110
110
  set_random_seed(seed)
111
111
  self.setup_networks()
112
+
113
+ print(f"🧬 DensityFlow Initialized:")
114
+ print(f" - Latent Dimension: {self.latent_dim}")
115
+ print(f" - Gene Dimension: {self.input_size}")
116
+ print(f" - Hidden Dimensions: {self.hidden_layers}")
117
+ print(f" - Device: {self.get_device()}")
118
+ print(f" - Parameters: {sum(p.numel() for p in self.parameters()):,}")
112
119
 
113
120
  def setup_networks(self):
114
121
  latent_dim = self.latent_dim