flaxdiff 0.1.3__py3-none-any.whl → 0.1.4__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.
- flaxdiff/models/simple_unet.py +0 -4
- {flaxdiff-0.1.3.dist-info → flaxdiff-0.1.4.dist-info}/METADATA +1 -1
- {flaxdiff-0.1.3.dist-info → flaxdiff-0.1.4.dist-info}/RECORD +5 -5
- {flaxdiff-0.1.3.dist-info → flaxdiff-0.1.4.dist-info}/WHEEL +0 -0
- {flaxdiff-0.1.3.dist-info → flaxdiff-0.1.4.dist-info}/top_level.txt +0 -0
flaxdiff/models/simple_unet.py
CHANGED
@@ -342,8 +342,6 @@ class Unet(nn.Module):
|
|
342
342
|
|
343
343
|
conv_type = up_conv_type = down_conv_type = middle_conv_type = "conv"
|
344
344
|
# middle_conv_type = "separable"
|
345
|
-
|
346
|
-
print(f"input shape: {x.shape}")
|
347
345
|
|
348
346
|
x = ConvLayer(
|
349
347
|
conv_type,
|
@@ -355,8 +353,6 @@ class Unet(nn.Module):
|
|
355
353
|
precision=self.precision
|
356
354
|
)(x)
|
357
355
|
downs = [x]
|
358
|
-
|
359
|
-
print(f"x shape: {x.shape}")
|
360
356
|
|
361
357
|
# Downscaling blocks
|
362
358
|
for i, (dim_out, attention_config) in enumerate(zip(feature_depths, attention_configs)):
|
@@ -4,7 +4,7 @@ flaxdiff/models/__init__.py,sha256=FAivVYXxM2JrCFIXf-C3374RB2Hth25dBrzOeNFhH1U,2
|
|
4
4
|
flaxdiff/models/attention.py,sha256=SL9cvINjmabW1LPvXLAFZNHv-FF1Ez_d3J7n5uHBTyQ,15301
|
5
5
|
flaxdiff/models/common.py,sha256=CjC4iRLjkF3oQ0f6rAqfiLaiHllZGtCOwN3rXDUndbE,274
|
6
6
|
flaxdiff/models/favor_fastattn.py,sha256=79Ew1nqarsNLPzZaBSd1ILORzJr74CupYeqGiCQK5E4,27689
|
7
|
-
flaxdiff/models/simple_unet.py,sha256=
|
7
|
+
flaxdiff/models/simple_unet.py,sha256=WlLry6v18syHBzcN8zAJ-zIVtq6ItMEIBWbeCcX0MLU,18693
|
8
8
|
flaxdiff/models/simple_vit.py,sha256=vTu2CQRoSOxetBHTrnCWddm-vxrZDkMe8EpdNxtpJMk,4015
|
9
9
|
flaxdiff/predictors/__init__.py,sha256=SKkYYRF9Wfgk2zhtZw4vCXOdOeRlrm2Mk6cvuaEvAzc,4403
|
10
10
|
flaxdiff/samplers/__init__.py,sha256=_S-9TwDeshrI0VmapV-J2hqjTByOa0-oOeUs_IdovjU,285
|
@@ -26,7 +26,7 @@ flaxdiff/schedulers/linear.py,sha256=6003F5ISq1Wc0h6UAzY95MJgsDIKGMhBzbiVALpea0k
|
|
26
26
|
flaxdiff/schedulers/sqrt.py,sha256=1F84ZgQPuoNMhe6yxGTR2G0h7dPOZtm4UDQOakbSsEU,445
|
27
27
|
flaxdiff/trainer/__init__.py,sha256=kwzkm-BD97hffFIXZUP1Hb3_D85fZ4SRNO7bviEwHU8,7591
|
28
28
|
flaxdiff/trainer/simple_trainer.py,sha256=jafxr-yZ6FXn0Qi-iTSnlf275QWnIO4GnSvNAeB3H-Q,11651
|
29
|
-
flaxdiff-0.1.
|
30
|
-
flaxdiff-0.1.
|
31
|
-
flaxdiff-0.1.
|
32
|
-
flaxdiff-0.1.
|
29
|
+
flaxdiff-0.1.4.dist-info/METADATA,sha256=G8OijdrrYWuKyAfCNtD_dKwdfBmdME56vpR-EYIZKXg,19229
|
30
|
+
flaxdiff-0.1.4.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
31
|
+
flaxdiff-0.1.4.dist-info/top_level.txt,sha256=-2-nXnfkJgSfkki1tjm5Faw6Dso7vhtdn2szwCdX5CQ,9
|
32
|
+
flaxdiff-0.1.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|