Skip to content

Commit

Permalink
Update configs
Browse files Browse the repository at this point in the history
  • Loading branch information
Catchxu committed Jun 3, 2024
1 parent 3372538 commit f3f3389
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/stands/configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ def __init__(self, z_dim):
self.KMeans_n_init = 20
self.cross_attn = True
self.TFBlock = {
'g_dim': z_dim,
'p_dim': z_dim,
'g_dim': z_dim*2,
'p_dim': z_dim*2,
'num_layers': 3,
'nheads': 8,
'hidden_dim': 512,
Expand All @@ -111,6 +111,6 @@ def __init__(self, z_dim):

# training process
self.learning_rate = 1e-4
self.n_epochs = 20000,
self.n_epochs = 20000
self.update_interval = 10
self.weight_decay = 1e-4

0 comments on commit f3f3389

Please sign in to comment.