Skip to content

Commit 208519f

Browse files
committed
update to latest cfg lib
1 parent 5649dfb commit 208519f

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ loss.backward()
115115

116116
faces_coordinates, face_mask = transformer.generate(
117117
texts = ['a long table'],
118-
cond_scale = 3. # a cond_scale > 1. will enable classifier free guidance - can be placed anywhere from 3. - 10.
118+
cond_scale = 8., # a cond_scale > 1. will enable classifier free guidance - can be placed anywhere from 3. - 10.
119+
remove_parallel_component = True # from https://arxiv.org/abs/2410.02416
119120
)
120121

121122
```

meshgpt_pytorch/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.5.15'
1+
__version__ = '1.5.16'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
'accelerate>=0.25.0',
2424
'beartype',
2525
"huggingface_hub>=0.21.4",
26-
'classifier-free-guidance-pytorch>=0.6.10',
26+
'classifier-free-guidance-pytorch>=0.7.1',
2727
'einops>=0.8.0',
2828
'einx[torch]>=0.3.0',
2929
'ema-pytorch>=0.5.1',

0 commit comments

Comments
 (0)