Skip to content
This repository was archived by the owner on Feb 7, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
c93947b
[WIP] Reformating Unet
Warvito Nov 8, 2022
fd6b953
[WIP] Reformating Unet (#53)
Warvito Nov 8, 2022
80a6bc7
[WIP] Reformating Unet (#53)
Warvito Nov 8, 2022
80de3f7
[WIP] Reformating Unet (#53)
Warvito Nov 8, 2022
26b5403
[WIP] Reformating Unet (#53)
Warvito Nov 9, 2022
9841294
[WIP] Reformating Unet (#53)
Warvito Nov 9, 2022
627cc11
Merge branch 'main' into 31-fix-torchscript-error-in-latent-diffusion…
Warvito Nov 9, 2022
fb55037
Fix typo with attentions and rerun tutorial (#53)
Warvito Nov 9, 2022
33c5a36
Rename parameters (#53)
Warvito Nov 9, 2022
eb9e317
Rename parameters (#53)
Warvito Nov 9, 2022
e48b354
Rename parameters (#53)
Warvito Nov 9, 2022
a85428f
Change output_states type from tuple to list (#53)
Warvito Nov 21, 2022
bcaf966
Merge remote-tracking branch 'origin/main' into 31-fix-torchscript-er…
Warvito Nov 21, 2022
dc25770
Fix missing change the use of from tuple to list (#53)
Warvito Nov 23, 2022
df48736
[WIP] Removing einops (#53)
Warvito Nov 24, 2022
bdf28bc
Fix torchscript errors (#53)
Warvito Nov 24, 2022
7da7e1c
Add missing tyupe hint and remove vestigial variable (#53)
Warvito Nov 24, 2022
2122857
Add docstring (#53)
Warvito Nov 24, 2022
8196646
Merge branch 'main' into 31-fix-torchscript-error-in-latent-diffusion…
Warvito Nov 24, 2022
bd16fe0
Remove misc (#53)
Warvito Nov 24, 2022
30059c2
[WIP] Rerun jupyter notebooks (#53)
Warvito Nov 24, 2022
9ec821b
[WIP] Rerun jupyter notebooks (#53)
Warvito Nov 25, 2022
e94199d
Remove einops code (#53)
Warvito Nov 25, 2022
bc5ab7e
Update diffusion inferer tests (#53)
Warvito Nov 25, 2022
e9185df
Rerun tutorials (#53)
Warvito Nov 26, 2022
9e4e33f
Merge branch 'main' into 31-fix-torchscript-error-in-latent-diffusion…
Warvito Nov 26, 2022
da9c2c0
Improve tests for DiffusionModelUNet (#53)
Warvito Nov 27, 2022
5fd1700
Fix typos in error message (#53)
Warvito Nov 27, 2022
2aeec39
Fix l1_loss in the validation step and use AMP (#53)
Warvito Nov 27, 2022
7688a43
Add reference (#53)
Warvito Nov 30, 2022
b59171a
Remove redundant update (#53)
Warvito Nov 30, 2022
359f10a
Delete context when it should be ignored (#53)
Warvito Nov 30, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,754 changes: 1,218 additions & 536 deletions generative/networks/nets/diffusion_model_unet.py

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion generative/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,3 @@
# limitations under the License.

from .enums import AdversarialIterationEvents, AdversarialKeys
from .misc import default, exists, extract
30 changes: 0 additions & 30 deletions generative/utils/misc.py

This file was deleted.

14 changes: 6 additions & 8 deletions tests/test_diffusion_inferer.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,11 @@
"spatial_dims": 2,
"in_channels": 1,
"out_channels": 1,
"model_channels": 8,
"num_channels": [8],
"norm_num_groups": 8,
"attention_resolutions": [1],
"attention_levels": [True],
"num_res_blocks": 1,
"channel_mult": [1],
"num_heads": 1,
"num_head_channels": 8,
},
(2, 1, 8, 8),
],
Expand All @@ -38,12 +37,11 @@
"spatial_dims": 3,
"in_channels": 1,
"out_channels": 1,
"model_channels": 8,
"num_channels": [8],
"norm_num_groups": 8,
"attention_resolutions": [1],
"attention_levels": [True],
"num_res_blocks": 1,
"channel_mult": [1],
"num_heads": 1,
"num_head_channels": 8,
},
(2, 1, 8, 8, 8),
],
Expand Down
Loading