Skip to content

Commit

Permalink
update config comment
Browse files Browse the repository at this point in the history
  • Loading branch information
InstructPart committed Apr 17, 2024
1 parent b4dd913 commit e78f855
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions configs/config_MFNet.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
C.norm_std = np.array([0.229, 0.224, 0.225])

""" Settings for network, this would be different for each kind of model"""
C.backbone = 'sigma_tiny' #'mit_b2' # Remember change the path below.
C.pretrained_model = None # C.root_dir + '/pretrained/segformer/mit_b2.pth'
C.backbone = 'sigma_tiny' # sigma_tiny / sigma_small / sigma_base
C.pretrained_model = None # do not need to change
C.decoder = 'MambaDecoder' # 'MLPDecoder'
C.decoder_embed_dim = 512
C.optimizer = 'AdamW'
Expand Down
4 changes: 2 additions & 2 deletions configs/config_nyu.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@
C.norm_std = np.array([0.229, 0.224, 0.225])

""" Settings for network, this would be different for each kind of model"""
C.backbone = 'sigma_tiny' #'mit_b2' # Remember change the path below.
C.pretrained_model = None #C.root_dir + '/pretrained/segformer/mit_b2.pth'
C.backbone = 'sigma_tiny' # sigma_tiny / sigma_small / sigma_base
C.pretrained_model = None # do not need to change
C.decoder = 'MambaDecoder' # 'MLPDecoder'
C.decoder_embed_dim = 512
C.optimizer = 'AdamW'
Expand Down
4 changes: 2 additions & 2 deletions configs/config_sunrgbd.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@
C.norm_std = np.array([0.229, 0.224, 0.225])

""" Settings for network, this would be different for each kind of model"""
C.backbone = 'sigma_tiny' #'mit_b2' # Remember change the path below.
C.pretrained_model = None # C.root_dir + '/pretrained/segformer/mit_b2.pth'
C.backbone = 'sigma_tiny' # sigma_tiny / sigma_small / sigma_base
C.pretrained_model = None # do not need to change
C.decoder = 'MambaDecoder' # 'MLPDecoder'
C.decoder_embed_dim = 512
C.optimizer = 'AdamW'
Expand Down

0 comments on commit e78f855

Please sign in to comment.