You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Colab may come with torchaudio 2.8.0, which is incompatible with torch 2.6.0.
61
+
Installing the versions above resolves this issue.
62
+
63
+
- filelock conflicts with nni
64
+
Some preinstalled packages (such as pytensor with newer filelock) may conflict.
65
+
Use the following commands to fix:
66
+
67
+
pip uninstall -y pytensor
68
+
pip install -U filelock
69
+
70
+
- Too many workers warning
71
+
Colab has limited CPU resources, and high num_workers settings may freeze execution.
72
+
It is recommended to use --num_workers=2 when running tutorials and adjust the `num_workers` parameters where it is used in notebooks (eg. for data loaders).
73
+
74
+
75
+
### Quick smoke test
76
+
77
+
After installation, verify the environment by running:
Copy file name to clipboardExpand all lines: generation/maisi/README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,10 @@ We are excited to announce the new MAISI Version `maisi3d-rflow`. Compared with
20
20
- For the released model weights, `maisi3d-rflow` can generate images with better quality for head region and small output volumes than `maisi3d-ddpm`; they have comparable quality for other cases.
21
21
-`maisi3d-rflow` added a diffusion model input `modality`, which gives it flexibility to extend to other modalities. Currently it is set as always equal to 1 since this version only supports CT generation. We predefined some modalities in [./configs/modality_mapping.json](./configs/modality_mapping.json).
22
22
23
+
More details can be found in our 2025 report:
24
+
25
+
[Zhao, C., Guo, P., Yang, D., Tang, Y., ... & Xu, D. (2025). MAISI-v2: Accelerated 3D High-Resolution Medical Image Synthesis with Rectified Flow and Region-specific Contrastive Loss](https://arxiv.org/pdf/2508.05772)
26
+
23
27
**GUI demo:** Welcome to try our GUI demo at [https://build.nvidia.com/nvidia/maisi](https://build.nvidia.com/nvidia/maisi).
24
28
The GUI is only a demo for toy examples. This Github repo is the full version.
0 commit comments