DHDRL commited on
Commit
d2a6431
·
verified ·
1 Parent(s): 11187cd

Update gru_belief_policy_v3_agnostic.py

Browse files
Files changed (1) hide show
  1. gru_belief_policy_v3_agnostic.py +1 -2
gru_belief_policy_v3_agnostic.py CHANGED
@@ -19,7 +19,7 @@ from gymnasium import spaces
19
  class BeliefGRUEncoder(nn.Module):
20
  """
21
  GRU belief module with resolution-agnostic convolutional spatial compression.
22
- Uses adaptive pooling to handle ANY input resolution.
23
  """
24
 
25
  def __init__(
@@ -190,7 +190,6 @@ class BeliefGRUEncoder(nn.Module):
190
  class GRUAugmentedFeaturesExtractor(BaseFeaturesExtractor):
191
  """
192
  Resolution-agnostic convolutional spatial encoder + optional GRU belief module.
193
-
194
  Handles input images from 64×64 to 1024×1024+ without parameter explosion.
195
  Uses adaptive pooling to normalize spatial features to fixed size.
196
  """
 
19
  class BeliefGRUEncoder(nn.Module):
20
  """
21
  GRU belief module with resolution-agnostic convolutional spatial compression.
22
+ Uses adaptive pooling to handle any input resolution.
23
  """
24
 
25
  def __init__(
 
190
  class GRUAugmentedFeaturesExtractor(BaseFeaturesExtractor):
191
  """
192
  Resolution-agnostic convolutional spatial encoder + optional GRU belief module.
 
193
  Handles input images from 64×64 to 1024×1024+ without parameter explosion.
194
  Uses adaptive pooling to normalize spatial features to fixed size.
195
  """