File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -457,15 +457,15 @@ def __init__(
457
457
quantize_dropout = True ,
458
458
quantize_dropout_cutoff_index = 1 ,
459
459
quantize_dropout_multiple_of = 1 ,
460
- experimental_softplus_entropy_loss = True ,
461
460
),
462
461
rvq_kwargs : dict = dict (
463
462
kmeans_init = True ,
464
463
threshold_ema_dead_code = 2 ,
465
464
),
466
465
rlfq_kwargs : dict = dict (
467
466
frac_per_sample_entropy = 1. ,
468
- soft_clamp_input_value = 10.
467
+ soft_clamp_input_value = 10. ,
468
+ experimental_softplus_entropy_loss = True ,
469
469
),
470
470
rvq_stochastic_sample_codes = True ,
471
471
sageconv_kwargs : dict = dict (
@@ -1103,7 +1103,9 @@ def __init__(
1103
1103
attn_heads = 16 ,
1104
1104
attn_kwargs : dict = dict (
1105
1105
ff_glu = True ,
1106
- attn_num_mem_kv = 4
1106
+ attn_num_mem_kv = 4 ,
1107
+ add_value_residual = True ,
1108
+ learned_value_residual_mix = True
1107
1109
),
1108
1110
cross_attn_num_mem_kv = 4 , # needed for preventing nan when dropping out text condition
1109
1111
dropout = 0. ,
Original file line number Diff line number Diff line change 1
- __version__ = '1.7.0 '
1
+ __version__ = '1.7.1 '
Original file line number Diff line number Diff line change 40
40
'torch_geometric' ,
41
41
'tqdm' ,
42
42
'vector-quantize-pytorch>=1.18.1' ,
43
- 'x-transformers>=1.30.19,<1.31 ' ,
43
+ 'x-transformers>=1.42.23 ' ,
44
44
],
45
45
setup_requires = [
46
46
'pytest-runner' ,
You can’t perform that action at this time.
0 commit comments