Skip to content

Commit 7e58dd3

Browse files
authored
Merge pull request #69 from MarcusLoppe/sageconv_dropout_fix
Removed sageconv dropout due to not existing anymore(?)
2 parents 5239009 + 6cf11ba commit 7e58dd3

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

meshgpt_pytorch/meshgpt_pytorch.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,6 @@ def __init__(
433433
use_linear_attn = True,
434434
pad_id = -1,
435435
flash_attn = True,
436-
sageconv_dropout = 0.,
437436
attn_dropout = 0.,
438437
ff_dropout = 0.,
439438
resnet_dropout = 0,
@@ -482,10 +481,7 @@ def __init__(
482481

483482
self.project_in = nn.Linear(init_dim, dim_codebook)
484483

485-
# initial sage conv
486-
487-
sageconv_kwargs = {**sageconv_kwargs, 'sageconv_dropout' : sageconv_dropout}
488-
484+
# initial sage conv
489485
init_encoder_dim, *encoder_dims_through_depth = encoder_dims_through_depth
490486
curr_dim = init_encoder_dim
491487

meshgpt_pytorch/version.py

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

0 commit comments

Comments
 (0)