jbilcke-hf HF Staff commited on
Commit
ef28d88
·
1 Parent(s): d27bb3b
Files changed (1) hide show
  1. server.py +6 -3
server.py CHANGED
@@ -476,11 +476,14 @@ class GameManager:
476
 
477
  # Create a basic inner model config
478
  inner_model_cfg = InnerModelConfig(
479
- hidden_channels=128,
480
  img_channels=3,
481
  num_steps_conditioning=4,
482
- is_upsampler=False,
483
- num_actions=6 # Default number of actions
 
 
 
 
484
  )
485
 
486
  # Create denoiser config and instance
 
476
 
477
  # Create a basic inner model config
478
  inner_model_cfg = InnerModelConfig(
 
479
  img_channels=3,
480
  num_steps_conditioning=4,
481
+ cond_channels=128,
482
+ depths=[2, 2, 2],
483
+ channels=[64, 128, 256],
484
+ attn_depths=[False, False, True],
485
+ num_actions=6, # Default number of actions
486
+ is_upsampler=False
487
  )
488
 
489
  # Create denoiser config and instance