fluidflow 0.2.3__tar.gz → 0.2.4__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.
- {fluidflow-0.2.3 → fluidflow-0.2.4}/PKG-INFO +1 -1
- {fluidflow-0.2.3 → fluidflow-0.2.4}/fluidFlow/dit.py +1 -1
- {fluidflow-0.2.3 → fluidflow-0.2.4}/fluidflow.egg-info/PKG-INFO +1 -1
- {fluidflow-0.2.3 → fluidflow-0.2.4}/pyproject.toml +1 -1
- {fluidflow-0.2.3 → fluidflow-0.2.4}/LICENSE +0 -0
- {fluidflow-0.2.3 → fluidflow-0.2.4}/README.md +0 -0
- {fluidflow-0.2.3 → fluidflow-0.2.4}/fluidFlow/__init__.py +0 -0
- {fluidflow-0.2.3 → fluidflow-0.2.4}/fluidFlow/attention.py +0 -0
- {fluidflow-0.2.3 → fluidflow-0.2.4}/fluidFlow/basic_modules.py +0 -0
- {fluidflow-0.2.3 → fluidflow-0.2.4}/fluidFlow/flow_matching/__init__.py +0 -0
- {fluidflow-0.2.3 → fluidflow-0.2.4}/fluidFlow/flow_matching/integrators.py +0 -0
- {fluidflow-0.2.3 → fluidflow-0.2.4}/fluidFlow/flow_matching/path.py +0 -0
- {fluidflow-0.2.3 → fluidflow-0.2.4}/fluidFlow/flow_matching/transport.py +0 -0
- {fluidflow-0.2.3 → fluidflow-0.2.4}/fluidFlow/moe.py +0 -0
- {fluidflow-0.2.3 → fluidflow-0.2.4}/fluidFlow/trainer.py +0 -0
- {fluidflow-0.2.3 → fluidflow-0.2.4}/fluidFlow/unet.py +0 -0
- {fluidflow-0.2.3 → fluidflow-0.2.4}/fluidflow.egg-info/SOURCES.txt +0 -0
- {fluidflow-0.2.3 → fluidflow-0.2.4}/fluidflow.egg-info/dependency_links.txt +0 -0
- {fluidflow-0.2.3 → fluidflow-0.2.4}/fluidflow.egg-info/requires.txt +0 -0
- {fluidflow-0.2.3 → fluidflow-0.2.4}/fluidflow.egg-info/top_level.txt +0 -0
- {fluidflow-0.2.3 → fluidflow-0.2.4}/setup.cfg +0 -0
|
@@ -354,7 +354,7 @@ class DiT(nn.Module):
|
|
|
354
354
|
|
|
355
355
|
# Initialize (and freeze) pos_embed by sin-cos embedding:
|
|
356
356
|
pos_embed = get_1d_sincos_pos_embed(
|
|
357
|
-
self.
|
|
357
|
+
self.hidden_size,
|
|
358
358
|
self.x_embedder.num_patches
|
|
359
359
|
)
|
|
360
360
|
# Will use fixed sin-cos embedding:
|
|
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "fluidflow"
|
|
7
7
|
authors = [{ name = "David Ramos", email = "david.ramos.archilla@upm.es" }]
|
|
8
|
-
version = "0.2.
|
|
8
|
+
version = "0.2.4"
|
|
9
9
|
description = "FluidFlow: models and training utilities for flow matching and diffusion"
|
|
10
10
|
readme = "README.md"
|
|
11
11
|
requires-python = ">=3.8"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|