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
Merge pull request #19 from GradientSpaces/version_1.0
Update to version 1.0:
- Improve training speed (9-12% faster) by torch.compile and training stability by timestep clipping.
- Fix bugs in configs, RK2 sampler, and validation.
Copy file name to clipboardExpand all lines: README.md
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,9 +15,15 @@
15
15
16
16
17
17
## 🔔 News
18
-
-[July 15, 2025] Improve training stability and fix bugs.
19
-
-[July 9, 2025] Released training codes.
20
-
-[July 1, 2025] Released model checkpoints and inference codes.
18
+
-[July 25, 2025]**Version 1.0**: We strongly recommend updating to this version, which includes:
19
+
- Improved model speed (9-12% faster) and training stability.
20
+
- Fixed bugs in configs, RK2 sampler, and validation.
21
+
- Simplified point cloud packing and shaping.
22
+
- Checkpoints are compatible with the previous version.
23
+
24
+
-[July 9, 2025]**Version 0.1**: Release training codes.
25
+
26
+
-[July 1, 2025] Initial release of the model checkpoints and inference codes.
21
27
22
28
## Overview
23
29
@@ -74,7 +80,7 @@ This saves images of the input (unposed) parts and multiple generations for poss
74
80
75
81
-**Renderer**: We use [Mitsuba](https://mitsuba.readthedocs.io/en/latest/) for high quality ray-traced rendering, as shown above. For a faster rendering, please switch to [PyTorch3D PointsRasterizer](https://pytorch3d.readthedocs.io/en/latest/modules/renderer/points/rasterizer.html#pytorch3d.renderer.points.rasterizer.PointsRasterizer) by adding `visualizer.renderer=pytorch3d`. To disable rendering, use `visualizer.renderer=none`. More rendering options are available in [config/visualizer](config/visualizer/flow.yaml).
76
82
77
-
-**Sampler**: We support Euler, RK2 (default), and RK4 samplers for inference, set `model.inference_sampler={euler, rk2, rk4}` accordingly.
83
+
-**Sampler**: We support Euler(default), RK2, and RK4 samplers for inference, set `model.inference_sampler={euler, rk2, rk4}` accordingly.
78
84
79
85
**Overlap Prediction:** To visualize the overlap probabilities predicted by the encoder, please run:
0 commit comments