Skip to content

Commit

Permalink
update to latest cfg lib
Browse files Browse the repository at this point in the history
  • Loading branch information
lucidrains committed Oct 6, 2024
1 parent 5649dfb commit 208519f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ loss.backward()

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

```
Expand Down
2 changes: 1 addition & 1 deletion meshgpt_pytorch/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.5.15'
__version__ = '1.5.16'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
'accelerate>=0.25.0',
'beartype',
"huggingface_hub>=0.21.4",
'classifier-free-guidance-pytorch>=0.6.10',
'classifier-free-guidance-pytorch>=0.7.1',
'einops>=0.8.0',
'einx[torch]>=0.3.0',
'ema-pytorch>=0.5.1',
Expand Down

0 comments on commit 208519f

Please sign in to comment.