2024-06-15 20:35:53,205 - mmseg - INFO - Multi-processing start method is `None` 2024-06-15 20:35:53,337 - mmseg - INFO - OpenCV num_threads is `128 2024-06-15 20:35:54,353 - mmseg - INFO - Environment info: ------------------------------------------------------------ sys.platform: linux Python: 3.9.19 (main, May 6 2024, 19:43:03) [GCC 11.2.0] CUDA available: True GPU 0,1,2,3,4,5,6,7: NVIDIA A100-SXM4-80GB CUDA_HOME: /mnt/petrelfs/share/cuda-11.7/ NVCC: Cuda compilation tools, release 11.7, V11.7.99 GCC: gcc (GCC) 7.3.0 PyTorch: 1.12.0+cu113 PyTorch compiling details: PyTorch built with: - GCC 9.3 - C++ Version: 201402 - Intel(R) Math Kernel Library Version 2020.0.0 Product Build 20191122 for Intel(R) 64 architecture applications - Intel(R) MKL-DNN v2.6.0 (Git Hash 52b5f107dd9cf10910aaa19cb47f3abf9b349815) - OpenMP 201511 (a.k.a. OpenMP 4.5) - LAPACK is enabled (usually provided by MKL) - NNPACK is enabled - CPU capability usage: AVX2 - CUDA Runtime 11.3 - NVCC architecture flags: -gencode;arch=compute_37,code=sm_37;-gencode;arch=compute_50,code=sm_50;-gencode;arch=compute_60,code=sm_60;-gencode;arch=compute_70,code=sm_70;-gencode;arch=compute_75,code=sm_75;-gencode;arch=compute_80,code=sm_80;-gencode;arch=compute_86,code=sm_86 - CuDNN 8.3.2 (built against CUDA 11.5) - Magma 2.5.2 - Build settings: BLAS_INFO=mkl, BUILD_TYPE=Release, CUDA_VERSION=11.3, CUDNN_VERSION=8.3.2, CXX_COMPILER=/opt/rh/devtoolset-9/root/usr/bin/c++, CXX_FLAGS= -Wno-deprecated -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -fopenmp -DNDEBUG -DUSE_KINETO -DUSE_FBGEMM -DUSE_QNNPACK -DUSE_PYTORCH_QNNPACK -DUSE_XNNPACK -DSYMBOLICATE_MOBILE_DEBUG_HANDLE -DEDGE_PROFILER_USE_KINETO -O2 -fPIC -Wno-narrowing -Wall -Wextra -Werror=return-type -Wno-missing-field-initializers -Wno-type-limits -Wno-array-bounds -Wno-unknown-pragmas -Wno-unused-parameter -Wno-unused-function -Wno-unused-result -Wno-unused-local-typedefs -Wno-strict-overflow -Wno-strict-aliasing -Wno-error=deprecated-declarations -Wno-stringop-overflow -Wno-psabi -Wno-error=pedantic -Wno-error=redundant-decls -Wno-error=old-style-cast -fdiagnostics-color=always -faligned-new -Wno-unused-but-set-variable -Wno-maybe-uninitialized -fno-math-errno -fno-trapping-math -Werror=format -Werror=cast-function-type -Wno-stringop-overflow, LAPACK_INFO=mkl, PERF_WITH_AVX=1, PERF_WITH_AVX2=1, PERF_WITH_AVX512=1, TORCH_VERSION=1.12.0, USE_CUDA=ON, USE_CUDNN=ON, USE_EXCEPTION_PTR=1, USE_GFLAGS=OFF, USE_GLOG=OFF, USE_MKL=ON, USE_MKLDNN=OFF, USE_MPI=OFF, USE_NCCL=ON, USE_NNPACK=ON, USE_OPENMP=ON, USE_ROCM=OFF, TorchVision: 0.13.0+cu113 OpenCV: 4.9.0 MMCV: 1.7.0 MMCV Compiler: GCC 7.3 MMCV CUDA Compiler: 11.7 MMSegmentation: 0.27.0+6d3ca17 ------------------------------------------------------------ 2024-06-15 20:35:54,353 - mmseg - INFO - Distributed training: True 2024-06-15 20:35:54,558 - mmseg - INFO - Config: norm_cfg = dict(type='SyncBN', requires_grad=True) model = dict( type='EncoderDecoder', pretrained=None, backbone=dict( type='InternViT6B', pretrain_img_size=224, img_size=512, pretrain_patch_size=14, patch_size=16, embed_dim=3200, depth=48, num_heads=25, mlp_ratio=4.0, qkv_bias=False, drop_path_rate=0.4, init_values=0.1, with_cp=True, use_flash_attn=True, qk_normalization=True, layerscale_force_fp32=False, with_fpn=True, out_indices=[11, 23, 35, 47], pretrained='./pretrained/intern_vit_6b_224px.pth', norm_layer_type='RMSNorm', output_dtype='float32', mlp_type='fused_mlp'), decode_head=dict( type='UPerHead', in_channels=[3200, 3200, 3200, 3200], in_index=[0, 1, 2, 3], pool_scales=(1, 2, 3, 6), channels=1536, dropout_ratio=0.1, num_classes=150, norm_cfg=dict(type='SyncBN', requires_grad=True), align_corners=False, loss_decode=dict( type='CrossEntropyLoss', use_sigmoid=False, loss_weight=1.0)), auxiliary_head=dict( type='FCNHead', in_channels=3200, in_index=2, channels=1536, num_convs=1, concat_input=False, dropout_ratio=0.1, num_classes=150, norm_cfg=dict(type='SyncBN', requires_grad=True), align_corners=False, loss_decode=dict( type='CrossEntropyLoss', use_sigmoid=False, loss_weight=0.4)), train_cfg=dict(), test_cfg=dict(mode='slide', crop_size=(512, 512), stride=(341, 341))) dataset_type = 'ADE20KDataset' data_root = 'data/ade/ADEChallengeData2016' img_norm_cfg = dict( mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=True) crop_size = (512, 512) train_pipeline = [ dict(type='LoadImageFromFile'), dict(type='LoadAnnotations', reduce_zero_label=True), dict(type='Resize', img_scale=(2048, 512), ratio_range=(0.5, 2.0)), dict(type='RandomCrop', crop_size=(512, 512), cat_max_ratio=0.75), dict(type='RandomFlip', prob=0.5), dict(type='PhotoMetricDistortion'), dict( type='Normalize', mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=True), dict(type='Pad', size=(512, 512), pad_val=0, seg_pad_val=255), dict(type='DefaultFormatBundle'), dict(type='Collect', keys=['img', 'gt_semantic_seg']) ] test_pipeline = [ dict(type='LoadImageFromFile'), dict( type='MultiScaleFlipAug', img_scale=(2048, 512), flip=False, transforms=[ dict( type='SETR_Resize', keep_ratio=True, crop_size=(512, 512), setr_multi_scale=True), dict(type='RandomFlip'), dict( type='Normalize', mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=True), dict(type='ImageToTensor', keys=['img']), dict(type='Collect', keys=['img']) ]) ] data = dict( samples_per_gpu=2, workers_per_gpu=4, train=dict( type='ADE20KDataset', data_root='data/ade/ADEChallengeData2016', img_dir='images/training', ann_dir='annotations/training', pipeline=[ dict(type='LoadImageFromFile'), dict(type='LoadAnnotations', reduce_zero_label=True), dict(type='Resize', img_scale=(2048, 512), ratio_range=(0.5, 2.0)), dict(type='RandomCrop', crop_size=(512, 512), cat_max_ratio=0.75), dict(type='RandomFlip', prob=0.5), dict(type='PhotoMetricDistortion'), dict( type='Normalize', mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=True), dict(type='Pad', size=(512, 512), pad_val=0, seg_pad_val=255), dict(type='DefaultFormatBundle'), dict(type='Collect', keys=['img', 'gt_semantic_seg']) ]), val=dict( type='ADE20KDataset', data_root='data/ade/ADEChallengeData2016', img_dir='images/validation', ann_dir='annotations/validation', pipeline=[ dict(type='LoadImageFromFile'), dict( type='MultiScaleFlipAug', img_scale=(2048, 512), flip=False, transforms=[ dict( type='SETR_Resize', keep_ratio=True, crop_size=(512, 512), setr_multi_scale=True), dict(type='RandomFlip'), dict( type='Normalize', mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=True), dict(type='ImageToTensor', keys=['img']), dict(type='Collect', keys=['img']) ]) ]), test=dict( type='ADE20KDataset', data_root='data/ade/ADEChallengeData2016', img_dir='images/validation', ann_dir='annotations/validation', pipeline=[ dict(type='LoadImageFromFile'), dict( type='MultiScaleFlipAug', img_scale=(2048, 512), flip=False, transforms=[ dict( type='SETR_Resize', keep_ratio=True, crop_size=(512, 512), setr_multi_scale=True), dict(type='RandomFlip'), dict( type='Normalize', mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=True), dict(type='ImageToTensor', keys=['img']), dict(type='Collect', keys=['img']) ]) ])) log_config = dict( interval=50, hooks=[ dict(type='TextLoggerHook', by_epoch=False), dict(type='TensorboardLoggerHook') ]) dist_params = dict(backend='nccl') log_level = 'INFO' load_from = None resume_from = None workflow = [('train', 1)] cudnn_benchmark = True optimizer = dict( type='AdamW', lr=4e-05, betas=(0.9, 0.999), weight_decay=0.05, constructor='CustomLayerDecayOptimizerConstructor', paramwise_cfg=dict(num_layers=48, layer_decay_rate=0.95)) optimizer_config = dict() lr_config = dict( policy='poly', warmup='linear', warmup_iters=1500, warmup_ratio=1e-06, power=1.0, min_lr=0.0, by_epoch=False) runner = dict(type='IterBasedRunner', max_iters=80000) checkpoint_config = dict( by_epoch=False, interval=2000, deepspeed=True, max_keep_ckpts=1) evaluation = dict(interval=1000, metric='mIoU', pre_eval=True, save_best=None) deepspeed = True deepspeed_config = 'zero_configs/adam_zero1_bf16.json' pretrained = './pretrained/intern_vit_6b_224px.pth' custom_hooks = [dict(type='ToBFloat16Hook', priority=49)] work_dir = './work_dirs/upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5' gpu_ids = range(0, 8) auto_resume = False 2024-06-15 20:35:59,841 - mmseg - INFO - Set random seed to 1140238576, deterministic: False 2024-06-15 20:37:05,263 - mmseg - INFO - _IncompatibleKeys(missing_keys=[], unexpected_keys=['cls_token', 'clip_projector.norm1_q.weight', 'clip_projector.norm1_q.bias', 'clip_projector.norm1_k.weight', 'clip_projector.norm1_k.bias', 'clip_projector.norm1_v.weight', 'clip_projector.norm1_v.bias', 'clip_projector.cross_attn.q_bias', 'clip_projector.cross_attn.k_bias', 'clip_projector.cross_attn.v_bias', 'clip_projector.cross_attn.q.weight', 'clip_projector.cross_attn.k.weight', 'clip_projector.cross_attn.v.weight', 'clip_projector.cross_attn.proj.weight', 'clip_projector.cross_attn.proj.bias']) 2024-06-15 20:37:31,339 - mmseg - INFO - initialize UPerHead with init_cfg {'type': 'Normal', 'std': 0.01, 'override': {'name': 'conv_seg'}} 2024-06-15 20:37:32,659 - mmseg - INFO - initialize FCNHead with init_cfg {'type': 'Normal', 'std': 0.01, 'override': {'name': 'conv_seg'}} Name of parameter - Initialization information backbone.pos_embed - torch.Size([1, 1025, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.patch_embed.proj.weight - torch.Size([3200, 3, 16, 16]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.patch_embed.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.0.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.0.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.0.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.0.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.0.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.0.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.0.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.0.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.0.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.0.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.0.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.0.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.0.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.1.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.1.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.1.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.1.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.1.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.1.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.1.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.1.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.1.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.1.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.1.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.1.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.1.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.2.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.2.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.2.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.2.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.2.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.2.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.2.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.2.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.2.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.2.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.2.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.2.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.2.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.3.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.3.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.3.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.3.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.3.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.3.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.3.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.3.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.3.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.3.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.3.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.3.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.3.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.4.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.4.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.4.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.4.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.4.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.4.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.4.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.4.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.4.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.4.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.4.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.4.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.4.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.5.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.5.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.5.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.5.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.5.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.5.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.5.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.5.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.5.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.5.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.5.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.5.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.5.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.6.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.6.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.6.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.6.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.6.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.6.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.6.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.6.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.6.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.6.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.6.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.6.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.6.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.7.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.7.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.7.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.7.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.7.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.7.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.7.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.7.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.7.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.7.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.7.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.7.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.7.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.8.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.8.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.8.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.8.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.8.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.8.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.8.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.8.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.8.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.8.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.8.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.8.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.8.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.9.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.9.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.9.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.9.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.9.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.9.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.9.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.9.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.9.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.9.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.9.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.9.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.9.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.10.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.10.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.10.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.10.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.10.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.10.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.10.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.10.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.10.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.10.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.10.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.10.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.10.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.11.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.11.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.11.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.11.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.11.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.11.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.11.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.11.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.11.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.11.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.11.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.11.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.11.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.12.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.12.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.12.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.12.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.12.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.12.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.12.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.12.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.12.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.12.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.12.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.12.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.12.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.13.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.13.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.13.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.13.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.13.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.13.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.13.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.13.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.13.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.13.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.13.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.13.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.13.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.14.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.14.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.14.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.14.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.14.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.14.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.14.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.14.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.14.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.14.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.14.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.14.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.14.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.15.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.15.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.15.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.15.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.15.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.15.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.15.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.15.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.15.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.15.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.15.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.15.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.15.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.16.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.16.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.16.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.16.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.16.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.16.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.16.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.16.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.16.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.16.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.16.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.16.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.16.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.17.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.17.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.17.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.17.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.17.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.17.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.17.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.17.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.17.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.17.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.17.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.17.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.17.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.18.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.18.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.18.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.18.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.18.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.18.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.18.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.18.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.18.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.18.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.18.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.18.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.18.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.19.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.19.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.19.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.19.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.19.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.19.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.19.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.19.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.19.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.19.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.19.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.19.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.19.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.20.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.20.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.20.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.20.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.20.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.20.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.20.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.20.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.20.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.20.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.20.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.20.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.20.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.21.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.21.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.21.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.21.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.21.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.21.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.21.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.21.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.21.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.21.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.21.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.21.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.21.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.22.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.22.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.22.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.22.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.22.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.22.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.22.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.22.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.22.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.22.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.22.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.22.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.22.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.23.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.23.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.23.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.23.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.23.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.23.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.23.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.23.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.23.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.23.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.23.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.23.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.23.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.24.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.24.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.24.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.24.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.24.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.24.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.24.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.24.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.24.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.24.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.24.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.24.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.24.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.25.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.25.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.25.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.25.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.25.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.25.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.25.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.25.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.25.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.25.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.25.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.25.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.25.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.26.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.26.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.26.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.26.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.26.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.26.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.26.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.26.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.26.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.26.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.26.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.26.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.26.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.27.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.27.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.27.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.27.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.27.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.27.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.27.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.27.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.27.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.27.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.27.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.27.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.27.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.28.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.28.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.28.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.28.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.28.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.28.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.28.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.28.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.28.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.28.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.28.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.28.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.28.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.29.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.29.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.29.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.29.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.29.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.29.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.29.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.29.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.29.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.29.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.29.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.29.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.29.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.30.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.30.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.30.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.30.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.30.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.30.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.30.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.30.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.30.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.30.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.30.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.30.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.30.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.31.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.31.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.31.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.31.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.31.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.31.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.31.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.31.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.31.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.31.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.31.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.31.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.31.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.32.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.32.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.32.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.32.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.32.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.32.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.32.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.32.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.32.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.32.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.32.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.32.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.32.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.33.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.33.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.33.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.33.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.33.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.33.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.33.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.33.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.33.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.33.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.33.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.33.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.33.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.34.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.34.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.34.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.34.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.34.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.34.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.34.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.34.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.34.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.34.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.34.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.34.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.34.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.35.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.35.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.35.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.35.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.35.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.35.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.35.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.35.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.35.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.35.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.35.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.35.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.35.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.36.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.36.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.36.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.36.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.36.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.36.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.36.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.36.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.36.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.36.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.36.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.36.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.36.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.37.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.37.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.37.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.37.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.37.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.37.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.37.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.37.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.37.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.37.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.37.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.37.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.37.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.38.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.38.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.38.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.38.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.38.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.38.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.38.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.38.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.38.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.38.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.38.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.38.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.38.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.39.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.39.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.39.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.39.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.39.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.39.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.39.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.39.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.39.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.39.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.39.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.39.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.39.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.40.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.40.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.40.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.40.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.40.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.40.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.40.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.40.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.40.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.40.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.40.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.40.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.40.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.41.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.41.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.41.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.41.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.41.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.41.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.41.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.41.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.41.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.41.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.41.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.41.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.41.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.42.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.42.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.42.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.42.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.42.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.42.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.42.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.42.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.42.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.42.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.42.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.42.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.42.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.43.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.43.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.43.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.43.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.43.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.43.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.43.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.43.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.43.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.43.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.43.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.43.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.43.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.44.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.44.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.44.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.44.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.44.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.44.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.44.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.44.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.44.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.44.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.44.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.44.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.44.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.45.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.45.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.45.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.45.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.45.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.45.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.45.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.45.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.45.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.45.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.45.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.45.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.45.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.46.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.46.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.46.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.46.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.46.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.46.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.46.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.46.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.46.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.46.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.46.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.46.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.46.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.47.norm1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.47.attn.qkv.weight - torch.Size([9600, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.47.attn.proj.weight - torch.Size([3200, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.47.attn.proj.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.47.attn.q_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.47.attn.k_norm.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.47.ls1.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.47.norm2.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.47.mlp.fc1.weight - torch.Size([12800, 3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.47.mlp.fc1.bias - torch.Size([12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.47.mlp.fc2.weight - torch.Size([3200, 12800]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.47.mlp.fc2.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.blocks.47.ls2.gamma - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.up1.0.weight - torch.Size([3200, 3200, 2, 2]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.up1.0.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.up1.1.weight - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.up1.1.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.up1.3.weight - torch.Size([3200, 3200, 2, 2]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.up1.3.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.up2.0.weight - torch.Size([3200, 3200, 2, 2]): The value is the same before and after calling `init_weights` of EncoderDecoder backbone.up2.0.bias - torch.Size([3200]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.conv_seg.weight - torch.Size([150, 1536, 1, 1]): NormalInit: mean=0, std=0.01, bias=0 decode_head.conv_seg.bias - torch.Size([150]): NormalInit: mean=0, std=0.01, bias=0 decode_head.psp_modules.0.1.conv.weight - torch.Size([1536, 3200, 1, 1]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.psp_modules.0.1.bn.weight - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.psp_modules.0.1.bn.bias - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.psp_modules.1.1.conv.weight - torch.Size([1536, 3200, 1, 1]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.psp_modules.1.1.bn.weight - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.psp_modules.1.1.bn.bias - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.psp_modules.2.1.conv.weight - torch.Size([1536, 3200, 1, 1]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.psp_modules.2.1.bn.weight - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.psp_modules.2.1.bn.bias - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.psp_modules.3.1.conv.weight - torch.Size([1536, 3200, 1, 1]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.psp_modules.3.1.bn.weight - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.psp_modules.3.1.bn.bias - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.bottleneck.conv.weight - torch.Size([1536, 9344, 3, 3]): Initialized by user-defined `init_weights` in ConvModule decode_head.bottleneck.bn.weight - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.bottleneck.bn.bias - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.lateral_convs.0.conv.weight - torch.Size([1536, 3200, 1, 1]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.lateral_convs.0.bn.weight - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.lateral_convs.0.bn.bias - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.lateral_convs.1.conv.weight - torch.Size([1536, 3200, 1, 1]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.lateral_convs.1.bn.weight - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.lateral_convs.1.bn.bias - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.lateral_convs.2.conv.weight - torch.Size([1536, 3200, 1, 1]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.lateral_convs.2.bn.weight - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.lateral_convs.2.bn.bias - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.fpn_convs.0.conv.weight - torch.Size([1536, 1536, 3, 3]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.fpn_convs.0.bn.weight - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.fpn_convs.0.bn.bias - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.fpn_convs.1.conv.weight - torch.Size([1536, 1536, 3, 3]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.fpn_convs.1.bn.weight - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.fpn_convs.1.bn.bias - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.fpn_convs.2.conv.weight - torch.Size([1536, 1536, 3, 3]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.fpn_convs.2.bn.weight - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.fpn_convs.2.bn.bias - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.fpn_bottleneck.conv.weight - torch.Size([1536, 6144, 3, 3]): Initialized by user-defined `init_weights` in ConvModule decode_head.fpn_bottleneck.bn.weight - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder decode_head.fpn_bottleneck.bn.bias - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder auxiliary_head.conv_seg.weight - torch.Size([150, 1536, 1, 1]): NormalInit: mean=0, std=0.01, bias=0 auxiliary_head.conv_seg.bias - torch.Size([150]): NormalInit: mean=0, std=0.01, bias=0 auxiliary_head.convs.0.conv.weight - torch.Size([1536, 3200, 3, 3]): The value is the same before and after calling `init_weights` of EncoderDecoder auxiliary_head.convs.0.bn.weight - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder auxiliary_head.convs.0.bn.bias - torch.Size([1536]): The value is the same before and after calling `init_weights` of EncoderDecoder 2024-06-15 20:37:32,669 - mmseg - INFO - EncoderDecoder( (backbone): InternViT6B( (patch_embed): PatchEmbed( (proj): Conv2d(3, 3200, kernel_size=(16, 16), stride=(16, 16)) (norm): Identity() ) (pos_drop): Identity() (blocks): ModuleList( (0): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): Identity() (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): Identity() ) (1): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.009) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.009) ) (2): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.017) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.017) ) (3): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.026) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.026) ) (4): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.034) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.034) ) (5): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.043) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.043) ) (6): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.051) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.051) ) (7): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.060) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.060) ) (8): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.068) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.068) ) (9): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.077) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.077) ) (10): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.085) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.085) ) (11): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.094) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.094) ) (12): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.102) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.102) ) (13): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.111) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.111) ) (14): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.119) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.119) ) (15): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.128) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.128) ) (16): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.136) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.136) ) (17): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.145) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.145) ) (18): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.153) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.153) ) (19): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.162) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.162) ) (20): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.170) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.170) ) (21): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.179) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.179) ) (22): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.187) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.187) ) (23): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.196) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.196) ) (24): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.204) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.204) ) (25): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.213) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.213) ) (26): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.221) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.221) ) (27): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.230) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.230) ) (28): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.238) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.238) ) (29): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.247) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.247) ) (30): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.255) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.255) ) (31): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.264) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.264) ) (32): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.272) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.272) ) (33): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.281) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.281) ) (34): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.289) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.289) ) (35): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.298) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.298) ) (36): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.306) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.306) ) (37): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.315) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.315) ) (38): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.323) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.323) ) (39): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.332) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.332) ) (40): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.340) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.340) ) (41): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.349) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.349) ) (42): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.357) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.357) ) (43): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.366) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.366) ) (44): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.374) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.374) ) (45): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.383) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.383) ) (46): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.391) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.391) ) (47): Block( (norm1): RMSNorm() (attn): Attention( (qkv): Linear(in_features=3200, out_features=9600, bias=False) (attn_drop): Dropout(p=0.0, inplace=False) (proj): Linear(in_features=3200, out_features=3200, bias=True) (proj_drop): Dropout(p=0.0, inplace=False) (inner_attn): FlashAttention() (q_norm): RMSNorm() (k_norm): RMSNorm() ) (ls1): LayerScale() (drop_path1): DropPath(drop_prob=0.400) (norm2): RMSNorm() (mlp): FusedMLP( (fc1): Linear(in_features=3200, out_features=12800, bias=True) (fc2): Linear(in_features=12800, out_features=3200, bias=True) ) (ls2): LayerScale() (drop_path2): DropPath(drop_prob=0.400) ) ) (up1): Sequential( (0): ConvTranspose2d(3200, 3200, kernel_size=(2, 2), stride=(2, 2)) (1): LayerNorm() (2): GELU(approximate=none) (3): ConvTranspose2d(3200, 3200, kernel_size=(2, 2), stride=(2, 2)) (4): Identity() ) (up2): Sequential( (0): ConvTranspose2d(3200, 3200, kernel_size=(2, 2), stride=(2, 2)) (1): Identity() ) (up3): Sequential( (0): Identity() (1): Identity() ) (up4): Sequential( (0): MaxPool2d(kernel_size=2, stride=2, padding=0, dilation=1, ceil_mode=False) (1): Identity() ) ) (decode_head): UPerHead( input_transform=multiple_select, ignore_index=255, align_corners=False (loss_decode): CrossEntropyLoss(avg_non_ignore=False) (conv_seg): Conv2d(1536, 150, kernel_size=(1, 1), stride=(1, 1)) (dropout): Dropout2d(p=0.1, inplace=False) (psp_modules): PPM( (0): Sequential( (0): AdaptiveAvgPool2d(output_size=1) (1): ConvModule( (conv): Conv2d(3200, 1536, kernel_size=(1, 1), stride=(1, 1), bias=False) (bn): SyncBatchNorm(1536, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True) (activate): ReLU(inplace=True) ) ) (1): Sequential( (0): AdaptiveAvgPool2d(output_size=2) (1): ConvModule( (conv): Conv2d(3200, 1536, kernel_size=(1, 1), stride=(1, 1), bias=False) (bn): SyncBatchNorm(1536, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True) (activate): ReLU(inplace=True) ) ) (2): Sequential( (0): AdaptiveAvgPool2d(output_size=3) (1): ConvModule( (conv): Conv2d(3200, 1536, kernel_size=(1, 1), stride=(1, 1), bias=False) (bn): SyncBatchNorm(1536, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True) (activate): ReLU(inplace=True) ) ) (3): Sequential( (0): AdaptiveAvgPool2d(output_size=6) (1): ConvModule( (conv): Conv2d(3200, 1536, kernel_size=(1, 1), stride=(1, 1), bias=False) (bn): SyncBatchNorm(1536, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True) (activate): ReLU(inplace=True) ) ) ) (bottleneck): ConvModule( (conv): Conv2d(9344, 1536, kernel_size=(3, 3), stride=(1, 1), padding=(1, 1), bias=False) (bn): SyncBatchNorm(1536, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True) (activate): ReLU(inplace=True) ) (lateral_convs): ModuleList( (0): ConvModule( (conv): Conv2d(3200, 1536, kernel_size=(1, 1), stride=(1, 1), bias=False) (bn): SyncBatchNorm(1536, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True) (activate): ReLU() ) (1): ConvModule( (conv): Conv2d(3200, 1536, kernel_size=(1, 1), stride=(1, 1), bias=False) (bn): SyncBatchNorm(1536, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True) (activate): ReLU() ) (2): ConvModule( (conv): Conv2d(3200, 1536, kernel_size=(1, 1), stride=(1, 1), bias=False) (bn): SyncBatchNorm(1536, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True) (activate): ReLU() ) ) (fpn_convs): ModuleList( (0): ConvModule( (conv): Conv2d(1536, 1536, kernel_size=(3, 3), stride=(1, 1), padding=(1, 1), bias=False) (bn): SyncBatchNorm(1536, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True) (activate): ReLU() ) (1): ConvModule( (conv): Conv2d(1536, 1536, kernel_size=(3, 3), stride=(1, 1), padding=(1, 1), bias=False) (bn): SyncBatchNorm(1536, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True) (activate): ReLU() ) (2): ConvModule( (conv): Conv2d(1536, 1536, kernel_size=(3, 3), stride=(1, 1), padding=(1, 1), bias=False) (bn): SyncBatchNorm(1536, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True) (activate): ReLU() ) ) (fpn_bottleneck): ConvModule( (conv): Conv2d(6144, 1536, kernel_size=(3, 3), stride=(1, 1), padding=(1, 1), bias=False) (bn): SyncBatchNorm(1536, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True) (activate): ReLU(inplace=True) ) ) init_cfg={'type': 'Normal', 'std': 0.01, 'override': {'name': 'conv_seg'}} (auxiliary_head): FCNHead( input_transform=None, ignore_index=255, align_corners=False (loss_decode): CrossEntropyLoss(avg_non_ignore=False) (conv_seg): Conv2d(1536, 150, kernel_size=(1, 1), stride=(1, 1)) (dropout): Dropout2d(p=0.1, inplace=False) (convs): Sequential( (0): ConvModule( (conv): Conv2d(3200, 1536, kernel_size=(3, 3), stride=(1, 1), padding=(1, 1), bias=False) (bn): SyncBatchNorm(1536, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True) (activate): ReLU(inplace=True) ) ) (norm): Identity() ) init_cfg={'type': 'Normal', 'std': 0.01, 'override': {'name': 'conv_seg'}} ) 2024-06-15 20:37:33,236 - mmseg - INFO - Loaded 20210 images 2024-06-15 20:37:34,268 - mmseg - INFO - {'num_layers': 48, 'layer_decay_rate': 0.95} 2024-06-15 20:37:34,268 - mmseg - INFO - Build LayerDecayOptimizerConstructor 0.950000 - 50 2024-06-15 20:37:34,275 - mmseg - INFO - Param groups = { "layer_0_decay": { "param_names": [ "backbone.pos_embed", "backbone.patch_embed.proj.weight" ], "lr_scale": 0.0809947108175928, "lr": 3.2397884327037123e-06, "weight_decay": 0.05 }, "layer_0_no_decay": { "param_names": [ "backbone.patch_embed.proj.bias" ], "lr_scale": 0.0809947108175928, "lr": 3.2397884327037123e-06, "weight_decay": 0.0 }, "layer_1_no_decay": { "param_names": [ "backbone.blocks.0.norm1.weight", "backbone.blocks.0.attn.proj.bias", "backbone.blocks.0.attn.q_norm.weight", "backbone.blocks.0.attn.k_norm.weight", "backbone.blocks.0.ls1.gamma", "backbone.blocks.0.norm2.weight", "backbone.blocks.0.mlp.fc1.bias", "backbone.blocks.0.mlp.fc2.bias", "backbone.blocks.0.ls2.gamma" ], "lr_scale": 0.0852575903343082, "lr": 3.4103036133723282e-06, "weight_decay": 0.0 }, "layer_1_decay": { "param_names": [ "backbone.blocks.0.attn.qkv.weight", "backbone.blocks.0.attn.proj.weight", "backbone.blocks.0.mlp.fc1.weight", "backbone.blocks.0.mlp.fc2.weight" ], "lr_scale": 0.0852575903343082, "lr": 3.4103036133723282e-06, "weight_decay": 0.05 }, "layer_2_no_decay": { "param_names": [ "backbone.blocks.1.norm1.weight", "backbone.blocks.1.attn.proj.bias", "backbone.blocks.1.attn.q_norm.weight", "backbone.blocks.1.attn.k_norm.weight", "backbone.blocks.1.ls1.gamma", "backbone.blocks.1.norm2.weight", "backbone.blocks.1.mlp.fc1.bias", "backbone.blocks.1.mlp.fc2.bias", "backbone.blocks.1.ls2.gamma" ], "lr_scale": 0.08974483193085075, "lr": 3.5897932772340305e-06, "weight_decay": 0.0 }, "layer_2_decay": { "param_names": [ "backbone.blocks.1.attn.qkv.weight", "backbone.blocks.1.attn.proj.weight", "backbone.blocks.1.mlp.fc1.weight", "backbone.blocks.1.mlp.fc2.weight" ], "lr_scale": 0.08974483193085075, "lr": 3.5897932772340305e-06, "weight_decay": 0.05 }, "layer_3_no_decay": { "param_names": [ "backbone.blocks.2.norm1.weight", "backbone.blocks.2.attn.proj.bias", "backbone.blocks.2.attn.q_norm.weight", "backbone.blocks.2.attn.k_norm.weight", "backbone.blocks.2.ls1.gamma", "backbone.blocks.2.norm2.weight", "backbone.blocks.2.mlp.fc1.bias", "backbone.blocks.2.mlp.fc2.bias", "backbone.blocks.2.ls2.gamma" ], "lr_scale": 0.09446824413773763, "lr": 3.7787297655095058e-06, "weight_decay": 0.0 }, "layer_3_decay": { "param_names": [ "backbone.blocks.2.attn.qkv.weight", "backbone.blocks.2.attn.proj.weight", "backbone.blocks.2.mlp.fc1.weight", "backbone.blocks.2.mlp.fc2.weight" ], "lr_scale": 0.09446824413773763, "lr": 3.7787297655095058e-06, "weight_decay": 0.05 }, "layer_4_no_decay": { "param_names": [ "backbone.blocks.3.norm1.weight", "backbone.blocks.3.attn.proj.bias", "backbone.blocks.3.attn.q_norm.weight", "backbone.blocks.3.attn.k_norm.weight", "backbone.blocks.3.ls1.gamma", "backbone.blocks.3.norm2.weight", "backbone.blocks.3.mlp.fc1.bias", "backbone.blocks.3.mlp.fc2.bias", "backbone.blocks.3.ls2.gamma" ], "lr_scale": 0.09944025698709225, "lr": 3.97761027948369e-06, "weight_decay": 0.0 }, "layer_4_decay": { "param_names": [ "backbone.blocks.3.attn.qkv.weight", "backbone.blocks.3.attn.proj.weight", "backbone.blocks.3.mlp.fc1.weight", "backbone.blocks.3.mlp.fc2.weight" ], "lr_scale": 0.09944025698709225, "lr": 3.97761027948369e-06, "weight_decay": 0.05 }, "layer_5_no_decay": { "param_names": [ "backbone.blocks.4.norm1.weight", "backbone.blocks.4.attn.proj.bias", "backbone.blocks.4.attn.q_norm.weight", "backbone.blocks.4.attn.k_norm.weight", "backbone.blocks.4.ls1.gamma", "backbone.blocks.4.norm2.weight", "backbone.blocks.4.mlp.fc1.bias", "backbone.blocks.4.mlp.fc2.bias", "backbone.blocks.4.ls2.gamma" ], "lr_scale": 0.10467395472325501, "lr": 4.186958188930201e-06, "weight_decay": 0.0 }, "layer_5_decay": { "param_names": [ "backbone.blocks.4.attn.qkv.weight", "backbone.blocks.4.attn.proj.weight", "backbone.blocks.4.mlp.fc1.weight", "backbone.blocks.4.mlp.fc2.weight" ], "lr_scale": 0.10467395472325501, "lr": 4.186958188930201e-06, "weight_decay": 0.05 }, "layer_6_no_decay": { "param_names": [ "backbone.blocks.5.norm1.weight", "backbone.blocks.5.attn.proj.bias", "backbone.blocks.5.attn.q_norm.weight", "backbone.blocks.5.attn.k_norm.weight", "backbone.blocks.5.ls1.gamma", "backbone.blocks.5.norm2.weight", "backbone.blocks.5.mlp.fc1.bias", "backbone.blocks.5.mlp.fc2.bias", "backbone.blocks.5.ls2.gamma" ], "lr_scale": 0.11018311023500528, "lr": 4.407324409400211e-06, "weight_decay": 0.0 }, "layer_6_decay": { "param_names": [ "backbone.blocks.5.attn.qkv.weight", "backbone.blocks.5.attn.proj.weight", "backbone.blocks.5.mlp.fc1.weight", "backbone.blocks.5.mlp.fc2.weight" ], "lr_scale": 0.11018311023500528, "lr": 4.407324409400211e-06, "weight_decay": 0.05 }, "layer_7_no_decay": { "param_names": [ "backbone.blocks.6.norm1.weight", "backbone.blocks.6.attn.proj.bias", "backbone.blocks.6.attn.q_norm.weight", "backbone.blocks.6.attn.k_norm.weight", "backbone.blocks.6.ls1.gamma", "backbone.blocks.6.norm2.weight", "backbone.blocks.6.mlp.fc1.bias", "backbone.blocks.6.mlp.fc2.bias", "backbone.blocks.6.ls2.gamma" ], "lr_scale": 0.11598222130000556, "lr": 4.639288852000222e-06, "weight_decay": 0.0 }, "layer_7_decay": { "param_names": [ "backbone.blocks.6.attn.qkv.weight", "backbone.blocks.6.attn.proj.weight", "backbone.blocks.6.mlp.fc1.weight", "backbone.blocks.6.mlp.fc2.weight" ], "lr_scale": 0.11598222130000556, "lr": 4.639288852000222e-06, "weight_decay": 0.05 }, "layer_8_no_decay": { "param_names": [ "backbone.blocks.7.norm1.weight", "backbone.blocks.7.attn.proj.bias", "backbone.blocks.7.attn.q_norm.weight", "backbone.blocks.7.attn.k_norm.weight", "backbone.blocks.7.ls1.gamma", "backbone.blocks.7.norm2.weight", "backbone.blocks.7.mlp.fc1.bias", "backbone.blocks.7.mlp.fc2.bias", "backbone.blocks.7.ls2.gamma" ], "lr_scale": 0.12208654873684796, "lr": 4.883461949473919e-06, "weight_decay": 0.0 }, "layer_8_decay": { "param_names": [ "backbone.blocks.7.attn.qkv.weight", "backbone.blocks.7.attn.proj.weight", "backbone.blocks.7.mlp.fc1.weight", "backbone.blocks.7.mlp.fc2.weight" ], "lr_scale": 0.12208654873684796, "lr": 4.883461949473919e-06, "weight_decay": 0.05 }, "layer_9_no_decay": { "param_names": [ "backbone.blocks.8.norm1.weight", "backbone.blocks.8.attn.proj.bias", "backbone.blocks.8.attn.q_norm.weight", "backbone.blocks.8.attn.k_norm.weight", "backbone.blocks.8.ls1.gamma", "backbone.blocks.8.norm2.weight", "backbone.blocks.8.mlp.fc1.bias", "backbone.blocks.8.mlp.fc2.bias", "backbone.blocks.8.ls2.gamma" ], "lr_scale": 0.12851215656510312, "lr": 5.140486262604126e-06, "weight_decay": 0.0 }, "layer_9_decay": { "param_names": [ "backbone.blocks.8.attn.qkv.weight", "backbone.blocks.8.attn.proj.weight", "backbone.blocks.8.mlp.fc1.weight", "backbone.blocks.8.mlp.fc2.weight" ], "lr_scale": 0.12851215656510312, "lr": 5.140486262604126e-06, "weight_decay": 0.05 }, "layer_10_no_decay": { "param_names": [ "backbone.blocks.9.norm1.weight", "backbone.blocks.9.attn.proj.bias", "backbone.blocks.9.attn.q_norm.weight", "backbone.blocks.9.attn.k_norm.weight", "backbone.blocks.9.ls1.gamma", "backbone.blocks.9.norm2.weight", "backbone.blocks.9.mlp.fc1.bias", "backbone.blocks.9.mlp.fc2.bias", "backbone.blocks.9.ls2.gamma" ], "lr_scale": 0.13527595427905592, "lr": 5.411038171162237e-06, "weight_decay": 0.0 }, "layer_10_decay": { "param_names": [ "backbone.blocks.9.attn.qkv.weight", "backbone.blocks.9.attn.proj.weight", "backbone.blocks.9.mlp.fc1.weight", "backbone.blocks.9.mlp.fc2.weight" ], "lr_scale": 0.13527595427905592, "lr": 5.411038171162237e-06, "weight_decay": 0.05 }, "layer_11_no_decay": { "param_names": [ "backbone.blocks.10.norm1.weight", "backbone.blocks.10.attn.proj.bias", "backbone.blocks.10.attn.q_norm.weight", "backbone.blocks.10.attn.k_norm.weight", "backbone.blocks.10.ls1.gamma", "backbone.blocks.10.norm2.weight", "backbone.blocks.10.mlp.fc1.bias", "backbone.blocks.10.mlp.fc2.bias", "backbone.blocks.10.ls2.gamma" ], "lr_scale": 0.14239574134637467, "lr": 5.695829653854987e-06, "weight_decay": 0.0 }, "layer_11_decay": { "param_names": [ "backbone.blocks.10.attn.qkv.weight", "backbone.blocks.10.attn.proj.weight", "backbone.blocks.10.mlp.fc1.weight", "backbone.blocks.10.mlp.fc2.weight" ], "lr_scale": 0.14239574134637467, "lr": 5.695829653854987e-06, "weight_decay": 0.05 }, "layer_12_no_decay": { "param_names": [ "backbone.blocks.11.norm1.weight", "backbone.blocks.11.attn.proj.bias", "backbone.blocks.11.attn.q_norm.weight", "backbone.blocks.11.attn.k_norm.weight", "backbone.blocks.11.ls1.gamma", "backbone.blocks.11.norm2.weight", "backbone.blocks.11.mlp.fc1.bias", "backbone.blocks.11.mlp.fc2.bias", "backbone.blocks.11.ls2.gamma" ], "lr_scale": 0.14989025404881545, "lr": 5.995610161952619e-06, "weight_decay": 0.0 }, "layer_12_decay": { "param_names": [ "backbone.blocks.11.attn.qkv.weight", "backbone.blocks.11.attn.proj.weight", "backbone.blocks.11.mlp.fc1.weight", "backbone.blocks.11.mlp.fc2.weight" ], "lr_scale": 0.14989025404881545, "lr": 5.995610161952619e-06, "weight_decay": 0.05 }, "layer_13_no_decay": { "param_names": [ "backbone.blocks.12.norm1.weight", "backbone.blocks.12.attn.proj.bias", "backbone.blocks.12.attn.q_norm.weight", "backbone.blocks.12.attn.k_norm.weight", "backbone.blocks.12.ls1.gamma", "backbone.blocks.12.norm2.weight", "backbone.blocks.12.mlp.fc1.bias", "backbone.blocks.12.mlp.fc2.bias", "backbone.blocks.12.ls2.gamma" ], "lr_scale": 0.1577792147882268, "lr": 6.311168591529072e-06, "weight_decay": 0.0 }, "layer_13_decay": { "param_names": [ "backbone.blocks.12.attn.qkv.weight", "backbone.blocks.12.attn.proj.weight", "backbone.blocks.12.mlp.fc1.weight", "backbone.blocks.12.mlp.fc2.weight" ], "lr_scale": 0.1577792147882268, "lr": 6.311168591529072e-06, "weight_decay": 0.05 }, "layer_14_no_decay": { "param_names": [ "backbone.blocks.13.norm1.weight", "backbone.blocks.13.attn.proj.bias", "backbone.blocks.13.attn.q_norm.weight", "backbone.blocks.13.attn.k_norm.weight", "backbone.blocks.13.ls1.gamma", "backbone.blocks.13.norm2.weight", "backbone.blocks.13.mlp.fc1.bias", "backbone.blocks.13.mlp.fc2.bias", "backbone.blocks.13.ls2.gamma" ], "lr_scale": 0.16608338398760716, "lr": 6.6433353595042875e-06, "weight_decay": 0.0 }, "layer_14_decay": { "param_names": [ "backbone.blocks.13.attn.qkv.weight", "backbone.blocks.13.attn.proj.weight", "backbone.blocks.13.mlp.fc1.weight", "backbone.blocks.13.mlp.fc2.weight" ], "lr_scale": 0.16608338398760716, "lr": 6.6433353595042875e-06, "weight_decay": 0.05 }, "layer_15_no_decay": { "param_names": [ "backbone.blocks.14.norm1.weight", "backbone.blocks.14.attn.proj.bias", "backbone.blocks.14.attn.q_norm.weight", "backbone.blocks.14.attn.k_norm.weight", "backbone.blocks.14.ls1.gamma", "backbone.blocks.14.norm2.weight", "backbone.blocks.14.mlp.fc1.bias", "backbone.blocks.14.mlp.fc2.bias", "backbone.blocks.14.ls2.gamma" ], "lr_scale": 0.174824614723797, "lr": 6.9929845889518814e-06, "weight_decay": 0.0 }, "layer_15_decay": { "param_names": [ "backbone.blocks.14.attn.qkv.weight", "backbone.blocks.14.attn.proj.weight", "backbone.blocks.14.mlp.fc1.weight", "backbone.blocks.14.mlp.fc2.weight" ], "lr_scale": 0.174824614723797, "lr": 6.9929845889518814e-06, "weight_decay": 0.05 }, "layer_16_no_decay": { "param_names": [ "backbone.blocks.15.norm1.weight", "backbone.blocks.15.attn.proj.bias", "backbone.blocks.15.attn.q_norm.weight", "backbone.blocks.15.attn.k_norm.weight", "backbone.blocks.15.ls1.gamma", "backbone.blocks.15.norm2.weight", "backbone.blocks.15.mlp.fc1.bias", "backbone.blocks.15.mlp.fc2.bias", "backbone.blocks.15.ls2.gamma" ], "lr_scale": 0.18402591023557582, "lr": 7.361036409423033e-06, "weight_decay": 0.0 }, "layer_16_decay": { "param_names": [ "backbone.blocks.15.attn.qkv.weight", "backbone.blocks.15.attn.proj.weight", "backbone.blocks.15.mlp.fc1.weight", "backbone.blocks.15.mlp.fc2.weight" ], "lr_scale": 0.18402591023557582, "lr": 7.361036409423033e-06, "weight_decay": 0.05 }, "layer_17_no_decay": { "param_names": [ "backbone.blocks.16.norm1.weight", "backbone.blocks.16.attn.proj.bias", "backbone.blocks.16.attn.q_norm.weight", "backbone.blocks.16.attn.k_norm.weight", "backbone.blocks.16.ls1.gamma", "backbone.blocks.16.norm2.weight", "backbone.blocks.16.mlp.fc1.bias", "backbone.blocks.16.mlp.fc2.bias", "backbone.blocks.16.ls2.gamma" ], "lr_scale": 0.19371148445850087, "lr": 7.748459378340036e-06, "weight_decay": 0.0 }, "layer_17_decay": { "param_names": [ "backbone.blocks.16.attn.qkv.weight", "backbone.blocks.16.attn.proj.weight", "backbone.blocks.16.mlp.fc1.weight", "backbone.blocks.16.mlp.fc2.weight" ], "lr_scale": 0.19371148445850087, "lr": 7.748459378340036e-06, "weight_decay": 0.05 }, "layer_18_no_decay": { "param_names": [ "backbone.blocks.17.norm1.weight", "backbone.blocks.17.attn.proj.bias", "backbone.blocks.17.attn.q_norm.weight", "backbone.blocks.17.attn.k_norm.weight", "backbone.blocks.17.ls1.gamma", "backbone.blocks.17.norm2.weight", "backbone.blocks.17.mlp.fc1.bias", "backbone.blocks.17.mlp.fc2.bias", "backbone.blocks.17.ls2.gamma" ], "lr_scale": 0.2039068257457904, "lr": 8.156273029831616e-06, "weight_decay": 0.0 }, "layer_18_decay": { "param_names": [ "backbone.blocks.17.attn.qkv.weight", "backbone.blocks.17.attn.proj.weight", "backbone.blocks.17.mlp.fc1.weight", "backbone.blocks.17.mlp.fc2.weight" ], "lr_scale": 0.2039068257457904, "lr": 8.156273029831616e-06, "weight_decay": 0.05 }, "layer_19_no_decay": { "param_names": [ "backbone.blocks.18.norm1.weight", "backbone.blocks.18.attn.proj.bias", "backbone.blocks.18.attn.q_norm.weight", "backbone.blocks.18.attn.k_norm.weight", "backbone.blocks.18.ls1.gamma", "backbone.blocks.18.norm2.weight", "backbone.blocks.18.mlp.fc1.bias", "backbone.blocks.18.mlp.fc2.bias", "backbone.blocks.18.ls2.gamma" ], "lr_scale": 0.21463876394293727, "lr": 8.585550557717492e-06, "weight_decay": 0.0 }, "layer_19_decay": { "param_names": [ "backbone.blocks.18.attn.qkv.weight", "backbone.blocks.18.attn.proj.weight", "backbone.blocks.18.mlp.fc1.weight", "backbone.blocks.18.mlp.fc2.weight" ], "lr_scale": 0.21463876394293727, "lr": 8.585550557717492e-06, "weight_decay": 0.05 }, "layer_20_no_decay": { "param_names": [ "backbone.blocks.19.norm1.weight", "backbone.blocks.19.attn.proj.bias", "backbone.blocks.19.attn.q_norm.weight", "backbone.blocks.19.attn.k_norm.weight", "backbone.blocks.19.ls1.gamma", "backbone.blocks.19.norm2.weight", "backbone.blocks.19.mlp.fc1.bias", "backbone.blocks.19.mlp.fc2.bias", "backbone.blocks.19.ls2.gamma" ], "lr_scale": 0.22593554099256555, "lr": 9.037421639702623e-06, "weight_decay": 0.0 }, "layer_20_decay": { "param_names": [ "backbone.blocks.19.attn.qkv.weight", "backbone.blocks.19.attn.proj.weight", "backbone.blocks.19.mlp.fc1.weight", "backbone.blocks.19.mlp.fc2.weight" ], "lr_scale": 0.22593554099256555, "lr": 9.037421639702623e-06, "weight_decay": 0.05 }, "layer_21_no_decay": { "param_names": [ "backbone.blocks.20.norm1.weight", "backbone.blocks.20.attn.proj.bias", "backbone.blocks.20.attn.q_norm.weight", "backbone.blocks.20.attn.k_norm.weight", "backbone.blocks.20.ls1.gamma", "backbone.blocks.20.norm2.weight", "backbone.blocks.20.mlp.fc1.bias", "backbone.blocks.20.mlp.fc2.bias", "backbone.blocks.20.ls2.gamma" ], "lr_scale": 0.23782688525533216, "lr": 9.513075410213288e-06, "weight_decay": 0.0 }, "layer_21_decay": { "param_names": [ "backbone.blocks.20.attn.qkv.weight", "backbone.blocks.20.attn.proj.weight", "backbone.blocks.20.mlp.fc1.weight", "backbone.blocks.20.mlp.fc2.weight" ], "lr_scale": 0.23782688525533216, "lr": 9.513075410213288e-06, "weight_decay": 0.05 }, "layer_22_no_decay": { "param_names": [ "backbone.blocks.21.norm1.weight", "backbone.blocks.21.attn.proj.bias", "backbone.blocks.21.attn.q_norm.weight", "backbone.blocks.21.attn.k_norm.weight", "backbone.blocks.21.ls1.gamma", "backbone.blocks.21.norm2.weight", "backbone.blocks.21.mlp.fc1.bias", "backbone.blocks.21.mlp.fc2.bias", "backbone.blocks.21.ls2.gamma" ], "lr_scale": 0.2503440897424549, "lr": 1.0013763589698198e-05, "weight_decay": 0.0 }, "layer_22_decay": { "param_names": [ "backbone.blocks.21.attn.qkv.weight", "backbone.blocks.21.attn.proj.weight", "backbone.blocks.21.mlp.fc1.weight", "backbone.blocks.21.mlp.fc2.weight" ], "lr_scale": 0.2503440897424549, "lr": 1.0013763589698198e-05, "weight_decay": 0.05 }, "layer_23_no_decay": { "param_names": [ "backbone.blocks.22.norm1.weight", "backbone.blocks.22.attn.proj.bias", "backbone.blocks.22.attn.q_norm.weight", "backbone.blocks.22.attn.k_norm.weight", "backbone.blocks.22.ls1.gamma", "backbone.blocks.22.norm2.weight", "backbone.blocks.22.mlp.fc1.bias", "backbone.blocks.22.mlp.fc2.bias", "backbone.blocks.22.ls2.gamma" ], "lr_scale": 0.26352009446574204, "lr": 1.0540803778629682e-05, "weight_decay": 0.0 }, "layer_23_decay": { "param_names": [ "backbone.blocks.22.attn.qkv.weight", "backbone.blocks.22.attn.proj.weight", "backbone.blocks.22.mlp.fc1.weight", "backbone.blocks.22.mlp.fc2.weight" ], "lr_scale": 0.26352009446574204, "lr": 1.0540803778629682e-05, "weight_decay": 0.05 }, "layer_24_no_decay": { "param_names": [ "backbone.blocks.23.norm1.weight", "backbone.blocks.23.attn.proj.bias", "backbone.blocks.23.attn.q_norm.weight", "backbone.blocks.23.attn.k_norm.weight", "backbone.blocks.23.ls1.gamma", "backbone.blocks.23.norm2.weight", "backbone.blocks.23.mlp.fc1.bias", "backbone.blocks.23.mlp.fc2.bias", "backbone.blocks.23.ls2.gamma" ], "lr_scale": 0.27738957312183377, "lr": 1.109558292487335e-05, "weight_decay": 0.0 }, "layer_24_decay": { "param_names": [ "backbone.blocks.23.attn.qkv.weight", "backbone.blocks.23.attn.proj.weight", "backbone.blocks.23.mlp.fc1.weight", "backbone.blocks.23.mlp.fc2.weight" ], "lr_scale": 0.27738957312183377, "lr": 1.109558292487335e-05, "weight_decay": 0.05 }, "layer_25_no_decay": { "param_names": [ "backbone.blocks.24.norm1.weight", "backbone.blocks.24.attn.proj.bias", "backbone.blocks.24.attn.q_norm.weight", "backbone.blocks.24.attn.k_norm.weight", "backbone.blocks.24.ls1.gamma", "backbone.blocks.24.norm2.weight", "backbone.blocks.24.mlp.fc1.bias", "backbone.blocks.24.mlp.fc2.bias", "backbone.blocks.24.ls2.gamma" ], "lr_scale": 0.2919890243387724, "lr": 1.1679560973550896e-05, "weight_decay": 0.0 }, "layer_25_decay": { "param_names": [ "backbone.blocks.24.attn.qkv.weight", "backbone.blocks.24.attn.proj.weight", "backbone.blocks.24.mlp.fc1.weight", "backbone.blocks.24.mlp.fc2.weight" ], "lr_scale": 0.2919890243387724, "lr": 1.1679560973550896e-05, "weight_decay": 0.05 }, "layer_26_no_decay": { "param_names": [ "backbone.blocks.25.norm1.weight", "backbone.blocks.25.attn.proj.bias", "backbone.blocks.25.attn.q_norm.weight", "backbone.blocks.25.attn.k_norm.weight", "backbone.blocks.25.ls1.gamma", "backbone.blocks.25.norm2.weight", "backbone.blocks.25.mlp.fc1.bias", "backbone.blocks.25.mlp.fc2.bias", "backbone.blocks.25.ls2.gamma" ], "lr_scale": 0.3073568677250236, "lr": 1.2294274709000943e-05, "weight_decay": 0.0 }, "layer_26_decay": { "param_names": [ "backbone.blocks.25.attn.qkv.weight", "backbone.blocks.25.attn.proj.weight", "backbone.blocks.25.mlp.fc1.weight", "backbone.blocks.25.mlp.fc2.weight" ], "lr_scale": 0.3073568677250236, "lr": 1.2294274709000943e-05, "weight_decay": 0.05 }, "layer_27_no_decay": { "param_names": [ "backbone.blocks.26.norm1.weight", "backbone.blocks.26.attn.proj.bias", "backbone.blocks.26.attn.q_norm.weight", "backbone.blocks.26.attn.k_norm.weight", "backbone.blocks.26.ls1.gamma", "backbone.blocks.26.norm2.weight", "backbone.blocks.26.mlp.fc1.bias", "backbone.blocks.26.mlp.fc2.bias", "backbone.blocks.26.ls2.gamma" ], "lr_scale": 0.323533544973709, "lr": 1.2941341798948362e-05, "weight_decay": 0.0 }, "layer_27_decay": { "param_names": [ "backbone.blocks.26.attn.qkv.weight", "backbone.blocks.26.attn.proj.weight", "backbone.blocks.26.mlp.fc1.weight", "backbone.blocks.26.mlp.fc2.weight" ], "lr_scale": 0.323533544973709, "lr": 1.2941341798948362e-05, "weight_decay": 0.05 }, "layer_28_no_decay": { "param_names": [ "backbone.blocks.27.norm1.weight", "backbone.blocks.27.attn.proj.bias", "backbone.blocks.27.attn.q_norm.weight", "backbone.blocks.27.attn.k_norm.weight", "backbone.blocks.27.ls1.gamma", "backbone.blocks.27.norm2.weight", "backbone.blocks.27.mlp.fc1.bias", "backbone.blocks.27.mlp.fc2.bias", "backbone.blocks.27.ls2.gamma" ], "lr_scale": 0.3405616262881148, "lr": 1.3622465051524594e-05, "weight_decay": 0.0 }, "layer_28_decay": { "param_names": [ "backbone.blocks.27.attn.qkv.weight", "backbone.blocks.27.attn.proj.weight", "backbone.blocks.27.mlp.fc1.weight", "backbone.blocks.27.mlp.fc2.weight" ], "lr_scale": 0.3405616262881148, "lr": 1.3622465051524594e-05, "weight_decay": 0.05 }, "layer_29_no_decay": { "param_names": [ "backbone.blocks.28.norm1.weight", "backbone.blocks.28.attn.proj.bias", "backbone.blocks.28.attn.q_norm.weight", "backbone.blocks.28.attn.k_norm.weight", "backbone.blocks.28.ls1.gamma", "backbone.blocks.28.norm2.weight", "backbone.blocks.28.mlp.fc1.bias", "backbone.blocks.28.mlp.fc2.bias", "backbone.blocks.28.ls2.gamma" ], "lr_scale": 0.3584859224085419, "lr": 1.4339436896341676e-05, "weight_decay": 0.0 }, "layer_29_decay": { "param_names": [ "backbone.blocks.28.attn.qkv.weight", "backbone.blocks.28.attn.proj.weight", "backbone.blocks.28.mlp.fc1.weight", "backbone.blocks.28.mlp.fc2.weight" ], "lr_scale": 0.3584859224085419, "lr": 1.4339436896341676e-05, "weight_decay": 0.05 }, "layer_30_no_decay": { "param_names": [ "backbone.blocks.29.norm1.weight", "backbone.blocks.29.attn.proj.bias", "backbone.blocks.29.attn.q_norm.weight", "backbone.blocks.29.attn.k_norm.weight", "backbone.blocks.29.ls1.gamma", "backbone.blocks.29.norm2.weight", "backbone.blocks.29.mlp.fc1.bias", "backbone.blocks.29.mlp.fc2.bias", "backbone.blocks.29.ls2.gamma" ], "lr_scale": 0.37735360253530725, "lr": 1.509414410141229e-05, "weight_decay": 0.0 }, "layer_30_decay": { "param_names": [ "backbone.blocks.29.attn.qkv.weight", "backbone.blocks.29.attn.proj.weight", "backbone.blocks.29.mlp.fc1.weight", "backbone.blocks.29.mlp.fc2.weight" ], "lr_scale": 0.37735360253530725, "lr": 1.509414410141229e-05, "weight_decay": 0.05 }, "layer_31_no_decay": { "param_names": [ "backbone.blocks.30.norm1.weight", "backbone.blocks.30.attn.proj.bias", "backbone.blocks.30.attn.q_norm.weight", "backbone.blocks.30.attn.k_norm.weight", "backbone.blocks.30.ls1.gamma", "backbone.blocks.30.norm2.weight", "backbone.blocks.30.mlp.fc1.bias", "backbone.blocks.30.mlp.fc2.bias", "backbone.blocks.30.ls2.gamma" ], "lr_scale": 0.3972143184582182, "lr": 1.588857273832873e-05, "weight_decay": 0.0 }, "layer_31_decay": { "param_names": [ "backbone.blocks.30.attn.qkv.weight", "backbone.blocks.30.attn.proj.weight", "backbone.blocks.30.mlp.fc1.weight", "backbone.blocks.30.mlp.fc2.weight" ], "lr_scale": 0.3972143184582182, "lr": 1.588857273832873e-05, "weight_decay": 0.05 }, "layer_32_no_decay": { "param_names": [ "backbone.blocks.31.norm1.weight", "backbone.blocks.31.attn.proj.bias", "backbone.blocks.31.attn.q_norm.weight", "backbone.blocks.31.attn.k_norm.weight", "backbone.blocks.31.ls1.gamma", "backbone.blocks.31.norm2.weight", "backbone.blocks.31.mlp.fc1.bias", "backbone.blocks.31.mlp.fc2.bias", "backbone.blocks.31.ls2.gamma" ], "lr_scale": 0.4181203352191771, "lr": 1.6724813408767084e-05, "weight_decay": 0.0 }, "layer_32_decay": { "param_names": [ "backbone.blocks.31.attn.qkv.weight", "backbone.blocks.31.attn.proj.weight", "backbone.blocks.31.mlp.fc1.weight", "backbone.blocks.31.mlp.fc2.weight" ], "lr_scale": 0.4181203352191771, "lr": 1.6724813408767084e-05, "weight_decay": 0.05 }, "layer_33_no_decay": { "param_names": [ "backbone.blocks.32.norm1.weight", "backbone.blocks.32.attn.proj.bias", "backbone.blocks.32.attn.q_norm.weight", "backbone.blocks.32.attn.k_norm.weight", "backbone.blocks.32.ls1.gamma", "backbone.blocks.32.norm2.weight", "backbone.blocks.32.mlp.fc1.bias", "backbone.blocks.32.mlp.fc2.bias", "backbone.blocks.32.ls2.gamma" ], "lr_scale": 0.44012666865176536, "lr": 1.7605066746070617e-05, "weight_decay": 0.0 }, "layer_33_decay": { "param_names": [ "backbone.blocks.32.attn.qkv.weight", "backbone.blocks.32.attn.proj.weight", "backbone.blocks.32.mlp.fc1.weight", "backbone.blocks.32.mlp.fc2.weight" ], "lr_scale": 0.44012666865176536, "lr": 1.7605066746070617e-05, "weight_decay": 0.05 }, "layer_34_no_decay": { "param_names": [ "backbone.blocks.33.norm1.weight", "backbone.blocks.33.attn.proj.bias", "backbone.blocks.33.attn.q_norm.weight", "backbone.blocks.33.attn.k_norm.weight", "backbone.blocks.33.ls1.gamma", "backbone.blocks.33.norm2.weight", "backbone.blocks.33.mlp.fc1.bias", "backbone.blocks.33.mlp.fc2.bias", "backbone.blocks.33.ls2.gamma" ], "lr_scale": 0.46329123015975304, "lr": 1.8531649206390123e-05, "weight_decay": 0.0 }, "layer_34_decay": { "param_names": [ "backbone.blocks.33.attn.qkv.weight", "backbone.blocks.33.attn.proj.weight", "backbone.blocks.33.mlp.fc1.weight", "backbone.blocks.33.mlp.fc2.weight" ], "lr_scale": 0.46329123015975304, "lr": 1.8531649206390123e-05, "weight_decay": 0.05 }, "layer_35_no_decay": { "param_names": [ "backbone.blocks.34.norm1.weight", "backbone.blocks.34.attn.proj.bias", "backbone.blocks.34.attn.q_norm.weight", "backbone.blocks.34.attn.k_norm.weight", "backbone.blocks.34.ls1.gamma", "backbone.blocks.34.norm2.weight", "backbone.blocks.34.mlp.fc1.bias", "backbone.blocks.34.mlp.fc2.bias", "backbone.blocks.34.ls2.gamma" ], "lr_scale": 0.48767497911552954, "lr": 1.9506999164621184e-05, "weight_decay": 0.0 }, "layer_35_decay": { "param_names": [ "backbone.blocks.34.attn.qkv.weight", "backbone.blocks.34.attn.proj.weight", "backbone.blocks.34.mlp.fc1.weight", "backbone.blocks.34.mlp.fc2.weight" ], "lr_scale": 0.48767497911552954, "lr": 1.9506999164621184e-05, "weight_decay": 0.05 }, "layer_36_no_decay": { "param_names": [ "backbone.blocks.35.norm1.weight", "backbone.blocks.35.attn.proj.bias", "backbone.blocks.35.attn.q_norm.weight", "backbone.blocks.35.attn.k_norm.weight", "backbone.blocks.35.ls1.gamma", "backbone.blocks.35.norm2.weight", "backbone.blocks.35.mlp.fc1.bias", "backbone.blocks.35.mlp.fc2.bias", "backbone.blocks.35.ls2.gamma" ], "lr_scale": 0.5133420832795048, "lr": 2.0533683331180195e-05, "weight_decay": 0.0 }, "layer_36_decay": { "param_names": [ "backbone.blocks.35.attn.qkv.weight", "backbone.blocks.35.attn.proj.weight", "backbone.blocks.35.mlp.fc1.weight", "backbone.blocks.35.mlp.fc2.weight" ], "lr_scale": 0.5133420832795048, "lr": 2.0533683331180195e-05, "weight_decay": 0.05 }, "layer_37_no_decay": { "param_names": [ "backbone.blocks.36.norm1.weight", "backbone.blocks.36.attn.proj.bias", "backbone.blocks.36.attn.q_norm.weight", "backbone.blocks.36.attn.k_norm.weight", "backbone.blocks.36.ls1.gamma", "backbone.blocks.36.norm2.weight", "backbone.blocks.36.mlp.fc1.bias", "backbone.blocks.36.mlp.fc2.bias", "backbone.blocks.36.ls2.gamma" ], "lr_scale": 0.5403600876626367, "lr": 2.1614403506505468e-05, "weight_decay": 0.0 }, "layer_37_decay": { "param_names": [ "backbone.blocks.36.attn.qkv.weight", "backbone.blocks.36.attn.proj.weight", "backbone.blocks.36.mlp.fc1.weight", "backbone.blocks.36.mlp.fc2.weight" ], "lr_scale": 0.5403600876626367, "lr": 2.1614403506505468e-05, "weight_decay": 0.05 }, "layer_38_no_decay": { "param_names": [ "backbone.blocks.37.norm1.weight", "backbone.blocks.37.attn.proj.bias", "backbone.blocks.37.attn.q_norm.weight", "backbone.blocks.37.attn.k_norm.weight", "backbone.blocks.37.ls1.gamma", "backbone.blocks.37.norm2.weight", "backbone.blocks.37.mlp.fc1.bias", "backbone.blocks.37.mlp.fc2.bias", "backbone.blocks.37.ls2.gamma" ], "lr_scale": 0.5688000922764597, "lr": 2.275200369105839e-05, "weight_decay": 0.0 }, "layer_38_decay": { "param_names": [ "backbone.blocks.37.attn.qkv.weight", "backbone.blocks.37.attn.proj.weight", "backbone.blocks.37.mlp.fc1.weight", "backbone.blocks.37.mlp.fc2.weight" ], "lr_scale": 0.5688000922764597, "lr": 2.275200369105839e-05, "weight_decay": 0.05 }, "layer_39_no_decay": { "param_names": [ "backbone.blocks.38.norm1.weight", "backbone.blocks.38.attn.proj.bias", "backbone.blocks.38.attn.q_norm.weight", "backbone.blocks.38.attn.k_norm.weight", "backbone.blocks.38.ls1.gamma", "backbone.blocks.38.norm2.weight", "backbone.blocks.38.mlp.fc1.bias", "backbone.blocks.38.mlp.fc2.bias", "backbone.blocks.38.ls2.gamma" ], "lr_scale": 0.5987369392383787, "lr": 2.394947756953515e-05, "weight_decay": 0.0 }, "layer_39_decay": { "param_names": [ "backbone.blocks.38.attn.qkv.weight", "backbone.blocks.38.attn.proj.weight", "backbone.blocks.38.mlp.fc1.weight", "backbone.blocks.38.mlp.fc2.weight" ], "lr_scale": 0.5987369392383787, "lr": 2.394947756953515e-05, "weight_decay": 0.05 }, "layer_40_no_decay": { "param_names": [ "backbone.blocks.39.norm1.weight", "backbone.blocks.39.attn.proj.bias", "backbone.blocks.39.attn.q_norm.weight", "backbone.blocks.39.attn.k_norm.weight", "backbone.blocks.39.ls1.gamma", "backbone.blocks.39.norm2.weight", "backbone.blocks.39.mlp.fc1.bias", "backbone.blocks.39.mlp.fc2.bias", "backbone.blocks.39.ls2.gamma" ], "lr_scale": 0.6302494097246091, "lr": 2.5209976388984365e-05, "weight_decay": 0.0 }, "layer_40_decay": { "param_names": [ "backbone.blocks.39.attn.qkv.weight", "backbone.blocks.39.attn.proj.weight", "backbone.blocks.39.mlp.fc1.weight", "backbone.blocks.39.mlp.fc2.weight" ], "lr_scale": 0.6302494097246091, "lr": 2.5209976388984365e-05, "weight_decay": 0.05 }, "layer_41_no_decay": { "param_names": [ "backbone.blocks.40.norm1.weight", "backbone.blocks.40.attn.proj.bias", "backbone.blocks.40.attn.q_norm.weight", "backbone.blocks.40.attn.k_norm.weight", "backbone.blocks.40.ls1.gamma", "backbone.blocks.40.norm2.weight", "backbone.blocks.40.mlp.fc1.bias", "backbone.blocks.40.mlp.fc2.bias", "backbone.blocks.40.ls2.gamma" ], "lr_scale": 0.6634204312890623, "lr": 2.6536817251562493e-05, "weight_decay": 0.0 }, "layer_41_decay": { "param_names": [ "backbone.blocks.40.attn.qkv.weight", "backbone.blocks.40.attn.proj.weight", "backbone.blocks.40.mlp.fc1.weight", "backbone.blocks.40.mlp.fc2.weight" ], "lr_scale": 0.6634204312890623, "lr": 2.6536817251562493e-05, "weight_decay": 0.05 }, "layer_42_no_decay": { "param_names": [ "backbone.blocks.41.norm1.weight", "backbone.blocks.41.attn.proj.bias", "backbone.blocks.41.attn.q_norm.weight", "backbone.blocks.41.attn.k_norm.weight", "backbone.blocks.41.ls1.gamma", "backbone.blocks.41.norm2.weight", "backbone.blocks.41.mlp.fc1.bias", "backbone.blocks.41.mlp.fc2.bias", "backbone.blocks.41.ls2.gamma" ], "lr_scale": 0.6983372960937497, "lr": 2.793349184374999e-05, "weight_decay": 0.0 }, "layer_42_decay": { "param_names": [ "backbone.blocks.41.attn.qkv.weight", "backbone.blocks.41.attn.proj.weight", "backbone.blocks.41.mlp.fc1.weight", "backbone.blocks.41.mlp.fc2.weight" ], "lr_scale": 0.6983372960937497, "lr": 2.793349184374999e-05, "weight_decay": 0.05 }, "layer_43_no_decay": { "param_names": [ "backbone.blocks.42.norm1.weight", "backbone.blocks.42.attn.proj.bias", "backbone.blocks.42.attn.q_norm.weight", "backbone.blocks.42.attn.k_norm.weight", "backbone.blocks.42.ls1.gamma", "backbone.blocks.42.norm2.weight", "backbone.blocks.42.mlp.fc1.bias", "backbone.blocks.42.mlp.fc2.bias", "backbone.blocks.42.ls2.gamma" ], "lr_scale": 0.7350918906249998, "lr": 2.9403675624999993e-05, "weight_decay": 0.0 }, "layer_43_decay": { "param_names": [ "backbone.blocks.42.attn.qkv.weight", "backbone.blocks.42.attn.proj.weight", "backbone.blocks.42.mlp.fc1.weight", "backbone.blocks.42.mlp.fc2.weight" ], "lr_scale": 0.7350918906249998, "lr": 2.9403675624999993e-05, "weight_decay": 0.05 }, "layer_44_no_decay": { "param_names": [ "backbone.blocks.43.norm1.weight", "backbone.blocks.43.attn.proj.bias", "backbone.blocks.43.attn.q_norm.weight", "backbone.blocks.43.attn.k_norm.weight", "backbone.blocks.43.ls1.gamma", "backbone.blocks.43.norm2.weight", "backbone.blocks.43.mlp.fc1.bias", "backbone.blocks.43.mlp.fc2.bias", "backbone.blocks.43.ls2.gamma" ], "lr_scale": 0.7737809374999998, "lr": 3.0951237499999995e-05, "weight_decay": 0.0 }, "layer_44_decay": { "param_names": [ "backbone.blocks.43.attn.qkv.weight", "backbone.blocks.43.attn.proj.weight", "backbone.blocks.43.mlp.fc1.weight", "backbone.blocks.43.mlp.fc2.weight" ], "lr_scale": 0.7737809374999998, "lr": 3.0951237499999995e-05, "weight_decay": 0.05 }, "layer_45_no_decay": { "param_names": [ "backbone.blocks.44.norm1.weight", "backbone.blocks.44.attn.proj.bias", "backbone.blocks.44.attn.q_norm.weight", "backbone.blocks.44.attn.k_norm.weight", "backbone.blocks.44.ls1.gamma", "backbone.blocks.44.norm2.weight", "backbone.blocks.44.mlp.fc1.bias", "backbone.blocks.44.mlp.fc2.bias", "backbone.blocks.44.ls2.gamma" ], "lr_scale": 0.8145062499999999, "lr": 3.258025e-05, "weight_decay": 0.0 }, "layer_45_decay": { "param_names": [ "backbone.blocks.44.attn.qkv.weight", "backbone.blocks.44.attn.proj.weight", "backbone.blocks.44.mlp.fc1.weight", "backbone.blocks.44.mlp.fc2.weight" ], "lr_scale": 0.8145062499999999, "lr": 3.258025e-05, "weight_decay": 0.05 }, "layer_46_no_decay": { "param_names": [ "backbone.blocks.45.norm1.weight", "backbone.blocks.45.attn.proj.bias", "backbone.blocks.45.attn.q_norm.weight", "backbone.blocks.45.attn.k_norm.weight", "backbone.blocks.45.ls1.gamma", "backbone.blocks.45.norm2.weight", "backbone.blocks.45.mlp.fc1.bias", "backbone.blocks.45.mlp.fc2.bias", "backbone.blocks.45.ls2.gamma" ], "lr_scale": 0.8573749999999999, "lr": 3.4294999999999996e-05, "weight_decay": 0.0 }, "layer_46_decay": { "param_names": [ "backbone.blocks.45.attn.qkv.weight", "backbone.blocks.45.attn.proj.weight", "backbone.blocks.45.mlp.fc1.weight", "backbone.blocks.45.mlp.fc2.weight" ], "lr_scale": 0.8573749999999999, "lr": 3.4294999999999996e-05, "weight_decay": 0.05 }, "layer_47_no_decay": { "param_names": [ "backbone.blocks.46.norm1.weight", "backbone.blocks.46.attn.proj.bias", "backbone.blocks.46.attn.q_norm.weight", "backbone.blocks.46.attn.k_norm.weight", "backbone.blocks.46.ls1.gamma", "backbone.blocks.46.norm2.weight", "backbone.blocks.46.mlp.fc1.bias", "backbone.blocks.46.mlp.fc2.bias", "backbone.blocks.46.ls2.gamma" ], "lr_scale": 0.9025, "lr": 3.61e-05, "weight_decay": 0.0 }, "layer_47_decay": { "param_names": [ "backbone.blocks.46.attn.qkv.weight", "backbone.blocks.46.attn.proj.weight", "backbone.blocks.46.mlp.fc1.weight", "backbone.blocks.46.mlp.fc2.weight" ], "lr_scale": 0.9025, "lr": 3.61e-05, "weight_decay": 0.05 }, "layer_48_no_decay": { "param_names": [ "backbone.blocks.47.norm1.weight", "backbone.blocks.47.attn.proj.bias", "backbone.blocks.47.attn.q_norm.weight", "backbone.blocks.47.attn.k_norm.weight", "backbone.blocks.47.ls1.gamma", "backbone.blocks.47.norm2.weight", "backbone.blocks.47.mlp.fc1.bias", "backbone.blocks.47.mlp.fc2.bias", "backbone.blocks.47.ls2.gamma" ], "lr_scale": 0.95, "lr": 3.8e-05, "weight_decay": 0.0 }, "layer_48_decay": { "param_names": [ "backbone.blocks.47.attn.qkv.weight", "backbone.blocks.47.attn.proj.weight", "backbone.blocks.47.mlp.fc1.weight", "backbone.blocks.47.mlp.fc2.weight" ], "lr_scale": 0.95, "lr": 3.8e-05, "weight_decay": 0.05 }, "layer_49_decay": { "param_names": [ "backbone.up1.0.weight", "backbone.up1.3.weight", "backbone.up2.0.weight", "decode_head.conv_seg.weight", "decode_head.psp_modules.0.1.conv.weight", "decode_head.psp_modules.1.1.conv.weight", "decode_head.psp_modules.2.1.conv.weight", "decode_head.psp_modules.3.1.conv.weight", "decode_head.bottleneck.conv.weight", "decode_head.lateral_convs.0.conv.weight", "decode_head.lateral_convs.1.conv.weight", "decode_head.lateral_convs.2.conv.weight", "decode_head.fpn_convs.0.conv.weight", "decode_head.fpn_convs.1.conv.weight", "decode_head.fpn_convs.2.conv.weight", "decode_head.fpn_bottleneck.conv.weight", "auxiliary_head.conv_seg.weight", "auxiliary_head.convs.0.conv.weight" ], "lr_scale": 1.0, "lr": 4e-05, "weight_decay": 0.05 }, "layer_49_no_decay": { "param_names": [ "backbone.up1.0.bias", "backbone.up1.1.weight", "backbone.up1.1.bias", "backbone.up1.3.bias", "backbone.up2.0.bias", "decode_head.conv_seg.bias", "decode_head.psp_modules.0.1.bn.weight", "decode_head.psp_modules.0.1.bn.bias", "decode_head.psp_modules.1.1.bn.weight", "decode_head.psp_modules.1.1.bn.bias", "decode_head.psp_modules.2.1.bn.weight", "decode_head.psp_modules.2.1.bn.bias", "decode_head.psp_modules.3.1.bn.weight", "decode_head.psp_modules.3.1.bn.bias", "decode_head.bottleneck.bn.weight", "decode_head.bottleneck.bn.bias", "decode_head.lateral_convs.0.bn.weight", "decode_head.lateral_convs.0.bn.bias", "decode_head.lateral_convs.1.bn.weight", "decode_head.lateral_convs.1.bn.bias", "decode_head.lateral_convs.2.bn.weight", "decode_head.lateral_convs.2.bn.bias", "decode_head.fpn_convs.0.bn.weight", "decode_head.fpn_convs.0.bn.bias", "decode_head.fpn_convs.1.bn.weight", "decode_head.fpn_convs.1.bn.bias", "decode_head.fpn_convs.2.bn.weight", "decode_head.fpn_convs.2.bn.bias", "decode_head.fpn_bottleneck.bn.weight", "decode_head.fpn_bottleneck.bn.bias", "auxiliary_head.conv_seg.bias", "auxiliary_head.convs.0.bn.weight", "auxiliary_head.convs.0.bn.bias" ], "lr_scale": 1.0, "lr": 4e-05, "weight_decay": 0.0 } } 2024-06-15 20:38:03,671 - mmseg - INFO - trainable parameters: 6341200918 2024-06-15 20:38:03,673 - mmseg - INFO - total parameters: 6341200918 2024-06-15 20:38:03,730 - mmseg - INFO - Loaded 2000 images 2024-06-15 20:38:03,731 - mmseg - INFO - Start running, work_dir: /mnt/petrelfs/PIIP/mmsegmentation/work_dirs/upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5 2024-06-15 20:38:03,731 - mmseg - INFO - Hooks will be executed in the following order: before_run: (VERY_HIGH ) PolyLrUpdaterHook (49 ) ToBFloat16Hook (49 ) ToBFloat16Hook (NORMAL ) DeepspeedCheckpointHook (LOW ) DeepspeedDistEvalHook (VERY_LOW ) TextLoggerHook (VERY_LOW ) TensorboardLoggerHook -------------------- before_train_epoch: (VERY_HIGH ) PolyLrUpdaterHook (LOW ) IterTimerHook (LOW ) DeepspeedDistEvalHook (VERY_LOW ) TextLoggerHook (VERY_LOW ) TensorboardLoggerHook -------------------- before_train_iter: (VERY_HIGH ) PolyLrUpdaterHook (LOW ) IterTimerHook (LOW ) DeepspeedDistEvalHook -------------------- after_train_iter: (ABOVE_NORMAL) OptimizerHook (NORMAL ) DeepspeedCheckpointHook (LOW ) IterTimerHook (LOW ) DeepspeedDistEvalHook (VERY_LOW ) TextLoggerHook (VERY_LOW ) TensorboardLoggerHook -------------------- after_train_epoch: (NORMAL ) DeepspeedCheckpointHook (LOW ) DeepspeedDistEvalHook (VERY_LOW ) TextLoggerHook (VERY_LOW ) TensorboardLoggerHook -------------------- before_val_epoch: (LOW ) IterTimerHook (VERY_LOW ) TextLoggerHook (VERY_LOW ) TensorboardLoggerHook -------------------- before_val_iter: (LOW ) IterTimerHook -------------------- after_val_iter: (LOW ) IterTimerHook -------------------- after_val_epoch: (VERY_LOW ) TextLoggerHook (VERY_LOW ) TensorboardLoggerHook -------------------- after_run: (VERY_LOW ) TextLoggerHook (VERY_LOW ) TensorboardLoggerHook -------------------- 2024-06-15 20:38:03,731 - mmseg - INFO - workflow: [('train', 1)], max: 80000 iters 2024-06-15 20:38:03,748 - mmseg - INFO - Checkpoints will be saved to /mnt/petrelfs/PIIP/mmsegmentation/work_dirs/upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5 by HardDiskBackend. 2024-06-15 20:40:46,153 - mmseg - INFO - Iter [50/80000] lr: 1.058e-07, eta: 1 day, 18:01:02, time: 1.892, data_time: 0.009, memory: 65790, decode.loss_ce: 4.1803, decode.acc_seg: 0.4504, aux.loss_ce: 1.6545, aux.acc_seg: 2.6754, loss: 5.8348 2024-06-15 20:42:06,509 - mmseg - INFO - Iter [100/80000] lr: 2.136e-07, eta: 1 day, 14:49:48, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 4.0041, decode.acc_seg: 3.2412, aux.loss_ce: 1.5990, aux.acc_seg: 5.0272, loss: 5.6032 2024-06-15 20:43:26,931 - mmseg - INFO - Iter [150/80000] lr: 3.212e-07, eta: 1 day, 13:45:45, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 3.9323, decode.acc_seg: 13.3014, aux.loss_ce: 1.6033, aux.acc_seg: 8.6651, loss: 5.5356 2024-06-15 20:44:47,375 - mmseg - INFO - Iter [200/80000] lr: 4.287e-07, eta: 1 day, 13:13:11, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 3.5487, decode.acc_seg: 28.8820, aux.loss_ce: 1.5362, aux.acc_seg: 20.6087, loss: 5.0848 2024-06-15 20:46:07,944 - mmseg - INFO - Iter [250/80000] lr: 5.361e-07, eta: 1 day, 12:53:47, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 2.7828, decode.acc_seg: 40.0097, aux.loss_ce: 1.4101, aux.acc_seg: 33.3428, loss: 4.1930 2024-06-15 20:47:28,731 - mmseg - INFO - Iter [300/80000] lr: 6.434e-07, eta: 1 day, 12:41:22, time: 1.616, data_time: 0.007, memory: 65790, decode.loss_ce: 2.2250, decode.acc_seg: 48.1609, aux.loss_ce: 1.1867, aux.acc_seg: 39.1081, loss: 3.4117 2024-06-15 20:48:49,201 - mmseg - INFO - Iter [350/80000] lr: 7.505e-07, eta: 1 day, 12:30:55, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 1.8718, decode.acc_seg: 55.4797, aux.loss_ce: 0.9896, aux.acc_seg: 46.2916, loss: 2.8614 2024-06-15 20:50:09,648 - mmseg - INFO - Iter [400/80000] lr: 8.575e-07, eta: 1 day, 12:22:39, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 1.6815, decode.acc_seg: 59.2748, aux.loss_ce: 0.8582, aux.acc_seg: 51.3671, loss: 2.5396 2024-06-15 20:51:30,117 - mmseg - INFO - Iter [450/80000] lr: 9.643e-07, eta: 1 day, 12:16:00, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 1.4680, decode.acc_seg: 62.4709, aux.loss_ce: 0.7315, aux.acc_seg: 56.8585, loss: 2.1996 2024-06-15 20:52:50,618 - mmseg - INFO - Iter [500/80000] lr: 1.071e-06, eta: 1 day, 12:10:30, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 1.3177, decode.acc_seg: 65.5227, aux.loss_ce: 0.6368, aux.acc_seg: 61.0734, loss: 1.9545 2024-06-15 20:54:11,129 - mmseg - INFO - Iter [550/80000] lr: 1.178e-06, eta: 1 day, 12:05:47, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 1.2729, decode.acc_seg: 65.6132, aux.loss_ce: 0.6077, aux.acc_seg: 61.7036, loss: 1.8806 2024-06-15 20:55:31,933 - mmseg - INFO - Iter [600/80000] lr: 1.284e-06, eta: 1 day, 12:02:16, time: 1.616, data_time: 0.007, memory: 65790, decode.loss_ce: 1.1920, decode.acc_seg: 67.4670, aux.loss_ce: 0.5632, aux.acc_seg: 64.2987, loss: 1.7552 2024-06-15 20:56:52,487 - mmseg - INFO - Iter [650/80000] lr: 1.390e-06, eta: 1 day, 11:58:34, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 1.0858, decode.acc_seg: 69.6303, aux.loss_ce: 0.5044, aux.acc_seg: 67.0333, loss: 1.5902 2024-06-15 20:58:13,054 - mmseg - INFO - Iter [700/80000] lr: 1.497e-06, eta: 1 day, 11:55:15, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 1.0424, decode.acc_seg: 69.9149, aux.loss_ce: 0.4805, aux.acc_seg: 67.9645, loss: 1.5229 2024-06-15 20:59:33,629 - mmseg - INFO - Iter [750/80000] lr: 1.603e-06, eta: 1 day, 11:52:11, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.9011, decode.acc_seg: 71.9879, aux.loss_ce: 0.4160, aux.acc_seg: 70.4761, loss: 1.3171 2024-06-15 21:00:54,190 - mmseg - INFO - Iter [800/80000] lr: 1.708e-06, eta: 1 day, 11:49:20, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.9552, decode.acc_seg: 71.0843, aux.loss_ce: 0.4380, aux.acc_seg: 69.1947, loss: 1.3932 2024-06-15 21:02:14,736 - mmseg - INFO - Iter [850/80000] lr: 1.814e-06, eta: 1 day, 11:46:38, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.9077, decode.acc_seg: 72.3392, aux.loss_ce: 0.4136, aux.acc_seg: 70.7752, loss: 1.3213 2024-06-15 21:03:35,356 - mmseg - INFO - Iter [900/80000] lr: 1.920e-06, eta: 1 day, 11:44:11, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.8871, decode.acc_seg: 72.7838, aux.loss_ce: 0.3980, aux.acc_seg: 71.2252, loss: 1.2852 2024-06-15 21:04:55,925 - mmseg - INFO - Iter [950/80000] lr: 2.025e-06, eta: 1 day, 11:41:47, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.8265, decode.acc_seg: 74.0508, aux.loss_ce: 0.3718, aux.acc_seg: 72.8944, loss: 1.1984 2024-06-15 21:06:16,505 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-15 21:06:16,505 - mmseg - INFO - Iter [1000/80000] lr: 2.131e-06, eta: 1 day, 11:39:30, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.8190, decode.acc_seg: 74.1132, aux.loss_ce: 0.3571, aux.acc_seg: 73.6714, loss: 1.1762 2024-06-15 21:08:54,233 - mmseg - INFO - per class results: 2024-06-15 21:08:54,295 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 70.67 | 86.03 | | building | 76.87 | 95.24 | | sky | 90.98 | 95.45 | | floor | 77.64 | 88.66 | | tree | 69.84 | 83.33 | | ceiling | 79.49 | 92.87 | | road | 80.04 | 89.39 | | bed | 86.21 | 93.72 | | windowpane | 55.85 | 82.57 | | grass | 58.75 | 74.63 | | cabinet | 56.16 | 73.95 | | sidewalk | 54.22 | 70.85 | | person | 74.32 | 90.05 | | earth | 28.96 | 32.84 | | door | 45.6 | 54.52 | | table | 53.84 | 66.72 | | mountain | 54.99 | 77.83 | | plant | 49.69 | 58.1 | | curtain | 66.22 | 84.47 | | chair | 47.53 | 60.18 | | car | 75.31 | 92.91 | | water | 45.84 | 68.23 | | painting | 64.11 | 85.03 | | sofa | 63.8 | 72.7 | | shelf | 25.27 | 37.68 | | house | 13.89 | 15.13 | | sea | 44.18 | 75.83 | | mirror | 53.59 | 61.95 | | rug | 55.72 | 60.67 | | field | 26.56 | 60.14 | | armchair | 37.49 | 77.59 | | seat | 59.12 | 85.48 | | fence | 20.64 | 23.11 | | desk | 34.92 | 65.65 | | rock | 41.66 | 59.0 | | wardrobe | 50.55 | 66.16 | | lamp | 50.76 | 60.69 | | bathtub | 62.23 | 85.15 | | railing | 23.84 | 27.12 | | cushion | 43.29 | 46.09 | | base | 10.3 | 11.03 | | box | 16.34 | 18.1 | | column | 28.51 | 29.27 | | signboard | 13.78 | 14.39 | | chest of drawers | 43.61 | 60.95 | | counter | 46.65 | 64.31 | | sand | 56.62 | 70.68 | | sink | 53.6 | 78.21 | | skyscraper | 41.01 | 67.87 | | fireplace | 62.89 | 91.13 | | refrigerator | 64.97 | 79.74 | | grandstand | 41.42 | 72.85 | | path | 5.1 | 5.27 | | stairs | 34.43 | 54.76 | | runway | 68.68 | 92.54 | | case | 58.44 | 83.04 | | pool table | 75.13 | 98.59 | | pillow | 50.75 | 67.36 | | screen door | 51.96 | 57.41 | | stairway | 34.79 | 46.69 | | river | 20.34 | 25.34 | | bridge | 35.5 | 39.3 | | bookcase | 25.06 | 39.01 | | blind | 0.0 | 0.0 | | coffee table | 53.31 | 81.32 | | toilet | 78.97 | 94.28 | | flower | 23.18 | 40.05 | | book | 40.33 | 57.83 | | hill | 0.21 | 0.21 | | bench | 46.61 | 49.63 | | countertop | 13.77 | 13.86 | | stove | 66.77 | 78.63 | | palm | 48.91 | 60.42 | | kitchen island | 33.73 | 46.49 | | computer | 63.26 | 90.81 | | swivel chair | 18.39 | 22.1 | | boat | 41.81 | 50.13 | | bar | 50.42 | 66.93 | | arcade machine | 79.07 | 86.11 | | hovel | 0.0 | 0.0 | | bus | 84.3 | 88.04 | | towel | 45.25 | 48.78 | | light | 0.0 | 0.0 | | truck | 27.57 | 29.23 | | tower | 0.0 | 0.0 | | chandelier | 53.9 | 78.37 | | awning | 8.36 | 8.48 | | streetlight | 0.0 | 0.0 | | booth | 0.05 | 0.05 | | television receiver | 63.92 | 69.82 | | airplane | 46.63 | 52.66 | | dirt track | 0.0 | 0.0 | | apparel | 35.71 | 56.67 | | pole | 0.0 | 0.0 | | land | 0.0 | 0.0 | | bannister | 0.0 | 0.0 | | escalator | 0.0 | 0.0 | | ottoman | 0.05 | 0.05 | | bottle | 4.21 | 4.3 | | buffet | 0.0 | 0.0 | | poster | 0.0 | 0.0 | | stage | 0.0 | 0.0 | | van | 1.45 | 1.47 | | ship | 0.0 | 0.0 | | fountain | 0.27 | 0.27 | | conveyer belt | 83.5 | 90.04 | | canopy | 0.0 | 0.0 | | washer | 66.27 | 99.54 | | plaything | 0.0 | 0.0 | | swimming pool | 52.17 | 54.8 | | stool | 0.0 | 0.0 | | barrel | 7.65 | 7.65 | | basket | 0.0 | 0.0 | | waterfall | 38.06 | 97.42 | | tent | 90.6 | 98.64 | | bag | 0.0 | 0.0 | | minibike | 9.26 | 9.27 | | cradle | 70.56 | 93.48 | | oven | 0.0 | 0.0 | | ball | 49.19 | 62.67 | | food | 0.0 | 0.0 | | step | 0.0 | 0.0 | | tank | 0.0 | 0.0 | | trade name | 0.0 | 0.0 | | microwave | 35.04 | 35.26 | | pot | 0.0 | 0.0 | | animal | 0.0 | 0.0 | | bicycle | 27.2 | 28.29 | | lake | 0.0 | 0.0 | | dishwasher | 37.9 | 39.91 | | screen | 22.71 | 23.4 | | blanket | 0.0 | 0.0 | | sculpture | 0.0 | 0.0 | | hood | 0.0 | 0.0 | | sconce | 0.0 | 0.0 | | vase | 0.0 | 0.0 | | traffic light | 0.0 | 0.0 | | tray | 0.0 | 0.0 | | ashcan | 0.0 | 0.0 | | fan | 0.0 | 0.0 | | pier | 0.0 | 0.0 | | crt screen | 0.0 | 0.0 | | plate | 0.0 | 0.0 | | monitor | 0.0 | 0.0 | | bulletin board | 0.0 | 0.0 | | shower | 0.0 | 0.0 | | radiator | 0.0 | 0.0 | | glass | 0.0 | 0.0 | | clock | 0.0 | 0.0 | | flag | 0.0 | 0.0 | +---------------------+-------+-------+ 2024-06-15 21:08:54,295 - mmseg - INFO - Summary: 2024-06-15 21:08:54,296 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 78.68 | 31.54 | 40.42 | +-------+-------+-------+ 2024-06-15 21:08:54,297 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-15 21:08:54,297 - mmseg - INFO - Iter(val) [250] aAcc: 0.7868, mIoU: 0.3154, mAcc: 0.4042, IoU.wall: 0.7067, IoU.building: 0.7687, IoU.sky: 0.9098, IoU.floor: 0.7764, IoU.tree: 0.6984, IoU.ceiling: 0.7949, IoU.road: 0.8004, IoU.bed : 0.8621, IoU.windowpane: 0.5585, IoU.grass: 0.5875, IoU.cabinet: 0.5616, IoU.sidewalk: 0.5422, IoU.person: 0.7432, IoU.earth: 0.2896, IoU.door: 0.4560, IoU.table: 0.5384, IoU.mountain: 0.5499, IoU.plant: 0.4969, IoU.curtain: 0.6622, IoU.chair: 0.4753, IoU.car: 0.7531, IoU.water: 0.4584, IoU.painting: 0.6411, IoU.sofa: 0.6380, IoU.shelf: 0.2527, IoU.house: 0.1389, IoU.sea: 0.4418, IoU.mirror: 0.5359, IoU.rug: 0.5572, IoU.field: 0.2656, IoU.armchair: 0.3749, IoU.seat: 0.5912, IoU.fence: 0.2064, IoU.desk: 0.3492, IoU.rock: 0.4166, IoU.wardrobe: 0.5055, IoU.lamp: 0.5076, IoU.bathtub: 0.6223, IoU.railing: 0.2384, IoU.cushion: 0.4329, IoU.base: 0.1030, IoU.box: 0.1634, IoU.column: 0.2851, IoU.signboard: 0.1378, IoU.chest of drawers: 0.4361, IoU.counter: 0.4665, IoU.sand: 0.5662, IoU.sink: 0.5360, IoU.skyscraper: 0.4101, IoU.fireplace: 0.6289, IoU.refrigerator: 0.6497, IoU.grandstand: 0.4142, IoU.path: 0.0510, IoU.stairs: 0.3443, IoU.runway: 0.6868, IoU.case: 0.5844, IoU.pool table: 0.7513, IoU.pillow: 0.5075, IoU.screen door: 0.5196, IoU.stairway: 0.3479, IoU.river: 0.2034, IoU.bridge: 0.3550, IoU.bookcase: 0.2506, IoU.blind: 0.0000, IoU.coffee table: 0.5331, IoU.toilet: 0.7897, IoU.flower: 0.2318, IoU.book: 0.4033, IoU.hill: 0.0021, IoU.bench: 0.4661, IoU.countertop: 0.1377, IoU.stove: 0.6677, IoU.palm: 0.4891, IoU.kitchen island: 0.3373, IoU.computer: 0.6326, IoU.swivel chair: 0.1839, IoU.boat: 0.4181, IoU.bar: 0.5042, IoU.arcade machine: 0.7907, IoU.hovel: 0.0000, IoU.bus: 0.8430, IoU.towel: 0.4525, IoU.light: 0.0000, IoU.truck: 0.2757, IoU.tower: 0.0000, IoU.chandelier: 0.5390, IoU.awning: 0.0836, IoU.streetlight: 0.0000, IoU.booth: 0.0005, IoU.television receiver: 0.6392, IoU.airplane: 0.4663, IoU.dirt track: 0.0000, IoU.apparel: 0.3571, IoU.pole: 0.0000, IoU.land: 0.0000, IoU.bannister: 0.0000, IoU.escalator: 0.0000, IoU.ottoman: 0.0005, IoU.bottle: 0.0421, IoU.buffet: 0.0000, IoU.poster: 0.0000, IoU.stage: 0.0000, IoU.van: 0.0145, IoU.ship: 0.0000, IoU.fountain: 0.0027, IoU.conveyer belt: 0.8350, IoU.canopy: 0.0000, IoU.washer: 0.6627, IoU.plaything: 0.0000, IoU.swimming pool: 0.5217, IoU.stool: 0.0000, IoU.barrel: 0.0765, IoU.basket: 0.0000, IoU.waterfall: 0.3806, IoU.tent: 0.9060, IoU.bag: 0.0000, IoU.minibike: 0.0926, IoU.cradle: 0.7056, IoU.oven: 0.0000, IoU.ball: 0.4919, IoU.food: 0.0000, IoU.step: 0.0000, IoU.tank: 0.0000, IoU.trade name: 0.0000, IoU.microwave: 0.3504, IoU.pot: 0.0000, IoU.animal: 0.0000, IoU.bicycle: 0.2720, IoU.lake: 0.0000, IoU.dishwasher: 0.3790, IoU.screen: 0.2271, IoU.blanket: 0.0000, IoU.sculpture: 0.0000, IoU.hood: 0.0000, IoU.sconce: 0.0000, IoU.vase: 0.0000, IoU.traffic light: 0.0000, IoU.tray: 0.0000, IoU.ashcan: 0.0000, IoU.fan: 0.0000, IoU.pier: 0.0000, IoU.crt screen: 0.0000, IoU.plate: 0.0000, IoU.monitor: 0.0000, IoU.bulletin board: 0.0000, IoU.shower: 0.0000, IoU.radiator: 0.0000, IoU.glass: 0.0000, IoU.clock: 0.0000, IoU.flag: 0.0000, Acc.wall: 0.8603, Acc.building: 0.9524, Acc.sky: 0.9545, Acc.floor: 0.8866, Acc.tree: 0.8333, Acc.ceiling: 0.9287, Acc.road: 0.8939, Acc.bed : 0.9372, Acc.windowpane: 0.8257, Acc.grass: 0.7463, Acc.cabinet: 0.7395, Acc.sidewalk: 0.7085, Acc.person: 0.9005, Acc.earth: 0.3284, Acc.door: 0.5452, Acc.table: 0.6672, Acc.mountain: 0.7783, Acc.plant: 0.5810, Acc.curtain: 0.8447, Acc.chair: 0.6018, Acc.car: 0.9291, Acc.water: 0.6823, Acc.painting: 0.8503, Acc.sofa: 0.7270, Acc.shelf: 0.3768, Acc.house: 0.1513, Acc.sea: 0.7583, Acc.mirror: 0.6195, Acc.rug: 0.6067, Acc.field: 0.6014, Acc.armchair: 0.7759, Acc.seat: 0.8548, Acc.fence: 0.2311, Acc.desk: 0.6565, Acc.rock: 0.5900, Acc.wardrobe: 0.6616, Acc.lamp: 0.6069, Acc.bathtub: 0.8515, Acc.railing: 0.2712, Acc.cushion: 0.4609, Acc.base: 0.1103, Acc.box: 0.1810, Acc.column: 0.2927, Acc.signboard: 0.1439, Acc.chest of drawers: 0.6095, Acc.counter: 0.6431, Acc.sand: 0.7068, Acc.sink: 0.7821, Acc.skyscraper: 0.6787, Acc.fireplace: 0.9113, Acc.refrigerator: 0.7974, Acc.grandstand: 0.7285, Acc.path: 0.0527, Acc.stairs: 0.5476, Acc.runway: 0.9254, Acc.case: 0.8304, Acc.pool table: 0.9859, Acc.pillow: 0.6736, Acc.screen door: 0.5741, Acc.stairway: 0.4669, Acc.river: 0.2534, Acc.bridge: 0.3930, Acc.bookcase: 0.3901, Acc.blind: 0.0000, Acc.coffee table: 0.8132, Acc.toilet: 0.9428, Acc.flower: 0.4005, Acc.book: 0.5783, Acc.hill: 0.0021, Acc.bench: 0.4963, Acc.countertop: 0.1386, Acc.stove: 0.7863, Acc.palm: 0.6042, Acc.kitchen island: 0.4649, Acc.computer: 0.9081, Acc.swivel chair: 0.2210, Acc.boat: 0.5013, Acc.bar: 0.6693, Acc.arcade machine: 0.8611, Acc.hovel: 0.0000, Acc.bus: 0.8804, Acc.towel: 0.4878, Acc.light: 0.0000, Acc.truck: 0.2923, Acc.tower: 0.0000, Acc.chandelier: 0.7837, Acc.awning: 0.0848, Acc.streetlight: 0.0000, Acc.booth: 0.0005, Acc.television receiver: 0.6982, Acc.airplane: 0.5266, Acc.dirt track: 0.0000, Acc.apparel: 0.5667, Acc.pole: 0.0000, Acc.land: 0.0000, Acc.bannister: 0.0000, Acc.escalator: 0.0000, Acc.ottoman: 0.0005, Acc.bottle: 0.0430, Acc.buffet: 0.0000, Acc.poster: 0.0000, Acc.stage: 0.0000, Acc.van: 0.0147, Acc.ship: 0.0000, Acc.fountain: 0.0027, Acc.conveyer belt: 0.9004, Acc.canopy: 0.0000, Acc.washer: 0.9954, Acc.plaything: 0.0000, Acc.swimming pool: 0.5480, Acc.stool: 0.0000, Acc.barrel: 0.0765, Acc.basket: 0.0000, Acc.waterfall: 0.9742, Acc.tent: 0.9864, Acc.bag: 0.0000, Acc.minibike: 0.0927, Acc.cradle: 0.9348, Acc.oven: 0.0000, Acc.ball: 0.6267, Acc.food: 0.0000, Acc.step: 0.0000, Acc.tank: 0.0000, Acc.trade name: 0.0000, Acc.microwave: 0.3526, Acc.pot: 0.0000, Acc.animal: 0.0000, Acc.bicycle: 0.2829, Acc.lake: 0.0000, Acc.dishwasher: 0.3991, Acc.screen: 0.2340, Acc.blanket: 0.0000, Acc.sculpture: 0.0000, Acc.hood: 0.0000, Acc.sconce: 0.0000, Acc.vase: 0.0000, Acc.traffic light: 0.0000, Acc.tray: 0.0000, Acc.ashcan: 0.0000, Acc.fan: 0.0000, Acc.pier: 0.0000, Acc.crt screen: 0.0000, Acc.plate: 0.0000, Acc.monitor: 0.0000, Acc.bulletin board: 0.0000, Acc.shower: 0.0000, Acc.radiator: 0.0000, Acc.glass: 0.0000, Acc.clock: 0.0000, Acc.flag: 0.0000 2024-06-15 21:10:15,193 - mmseg - INFO - Iter [1050/80000] lr: 2.236e-06, eta: 1 day, 14:55:27, time: 4.774, data_time: 3.169, memory: 65790, decode.loss_ce: 0.7586, decode.acc_seg: 75.6196, aux.loss_ce: 0.3302, aux.acc_seg: 74.9583, loss: 1.0888 2024-06-15 21:11:35,775 - mmseg - INFO - Iter [1100/80000] lr: 2.341e-06, eta: 1 day, 14:44:13, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.7732, decode.acc_seg: 74.6426, aux.loss_ce: 0.3358, aux.acc_seg: 74.1952, loss: 1.1091 2024-06-15 21:12:56,342 - mmseg - INFO - Iter [1150/80000] lr: 2.446e-06, eta: 1 day, 14:33:49, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.7345, decode.acc_seg: 75.2426, aux.loss_ce: 0.3161, aux.acc_seg: 75.0373, loss: 1.0506 2024-06-15 21:14:17,128 - mmseg - INFO - Iter [1200/80000] lr: 2.551e-06, eta: 1 day, 14:24:25, time: 1.616, data_time: 0.007, memory: 65790, decode.loss_ce: 0.7536, decode.acc_seg: 75.2192, aux.loss_ce: 0.3216, aux.acc_seg: 75.0958, loss: 1.0752 2024-06-15 21:15:37,730 - mmseg - INFO - Iter [1250/80000] lr: 2.656e-06, eta: 1 day, 14:15:28, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.7371, decode.acc_seg: 75.4651, aux.loss_ce: 0.3150, aux.acc_seg: 75.1633, loss: 1.0521 2024-06-15 21:17:00,979 - mmseg - INFO - Iter [1300/80000] lr: 2.760e-06, eta: 1 day, 14:09:46, time: 1.665, data_time: 0.058, memory: 65790, decode.loss_ce: 0.6672, decode.acc_seg: 77.1437, aux.loss_ce: 0.2821, aux.acc_seg: 77.3297, loss: 0.9493 2024-06-15 21:18:21,503 - mmseg - INFO - Iter [1350/80000] lr: 2.865e-06, eta: 1 day, 14:01:45, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.6841, decode.acc_seg: 76.0694, aux.loss_ce: 0.2875, aux.acc_seg: 76.0823, loss: 0.9716 2024-06-15 21:19:42,061 - mmseg - INFO - Iter [1400/80000] lr: 2.969e-06, eta: 1 day, 13:54:14, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.6797, decode.acc_seg: 77.0180, aux.loss_ce: 0.2870, aux.acc_seg: 76.6742, loss: 0.9667 2024-06-15 21:21:02,635 - mmseg - INFO - Iter [1450/80000] lr: 3.073e-06, eta: 1 day, 13:47:10, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.6820, decode.acc_seg: 76.0141, aux.loss_ce: 0.2830, aux.acc_seg: 76.5674, loss: 0.9650 2024-06-15 21:22:23,411 - mmseg - INFO - Iter [1500/80000] lr: 3.177e-06, eta: 1 day, 13:40:39, time: 1.616, data_time: 0.007, memory: 65790, decode.loss_ce: 0.7073, decode.acc_seg: 75.1904, aux.loss_ce: 0.2952, aux.acc_seg: 75.6227, loss: 1.0025 2024-06-15 21:23:44,015 - mmseg - INFO - Iter [1550/80000] lr: 3.177e-06, eta: 1 day, 13:34:20, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.6582, decode.acc_seg: 77.1097, aux.loss_ce: 0.2720, aux.acc_seg: 77.3770, loss: 0.9303 2024-06-15 21:25:04,590 - mmseg - INFO - Iter [1600/80000] lr: 3.175e-06, eta: 1 day, 13:28:18, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.6370, decode.acc_seg: 77.3392, aux.loss_ce: 0.2609, aux.acc_seg: 77.8087, loss: 0.8979 2024-06-15 21:26:25,177 - mmseg - INFO - Iter [1650/80000] lr: 3.173e-06, eta: 1 day, 13:22:33, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.6719, decode.acc_seg: 76.4190, aux.loss_ce: 0.2763, aux.acc_seg: 76.4784, loss: 0.9482 2024-06-15 21:27:45,776 - mmseg - INFO - Iter [1700/80000] lr: 3.171e-06, eta: 1 day, 13:17:04, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.6482, decode.acc_seg: 76.4205, aux.loss_ce: 0.2655, aux.acc_seg: 76.8487, loss: 0.9137 2024-06-15 21:29:06,370 - mmseg - INFO - Iter [1750/80000] lr: 3.169e-06, eta: 1 day, 13:11:50, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.6713, decode.acc_seg: 76.1392, aux.loss_ce: 0.2755, aux.acc_seg: 76.2986, loss: 0.9468 2024-06-15 21:30:26,962 - mmseg - INFO - Iter [1800/80000] lr: 3.167e-06, eta: 1 day, 13:06:48, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.6014, decode.acc_seg: 77.8911, aux.loss_ce: 0.2461, aux.acc_seg: 78.2679, loss: 0.8475 2024-06-15 21:31:47,723 - mmseg - INFO - Iter [1850/80000] lr: 3.165e-06, eta: 1 day, 13:02:06, time: 1.615, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5828, decode.acc_seg: 78.3449, aux.loss_ce: 0.2383, aux.acc_seg: 78.7469, loss: 0.8211 2024-06-15 21:33:08,307 - mmseg - INFO - Iter [1900/80000] lr: 3.163e-06, eta: 1 day, 12:57:26, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.6232, decode.acc_seg: 77.2021, aux.loss_ce: 0.2539, aux.acc_seg: 77.6101, loss: 0.8772 2024-06-15 21:34:28,900 - mmseg - INFO - Iter [1950/80000] lr: 3.161e-06, eta: 1 day, 12:52:58, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.6312, decode.acc_seg: 77.6517, aux.loss_ce: 0.2536, aux.acc_seg: 78.2920, loss: 0.8849 2024-06-15 21:35:49,479 - mmseg - INFO - Saving checkpoint at 2000 iterations 2024-06-15 21:36:54,601 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-15 21:36:54,601 - mmseg - INFO - Iter [2000/80000] lr: 3.159e-06, eta: 1 day, 13:30:58, time: 2.914, data_time: 0.007, memory: 65790, decode.loss_ce: 0.6101, decode.acc_seg: 77.9397, aux.loss_ce: 0.2479, aux.acc_seg: 78.3824, loss: 0.8580 2024-06-15 21:38:17,867 - mmseg - INFO - per class results: 2024-06-15 21:38:17,874 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 74.78 | 83.11 | | building | 79.9 | 93.54 | | sky | 92.54 | 95.56 | | floor | 79.53 | 86.4 | | tree | 72.3 | 86.02 | | ceiling | 81.99 | 89.54 | | road | 82.12 | 91.4 | | bed | 86.71 | 97.14 | | windowpane | 60.07 | 80.37 | | grass | 67.31 | 86.02 | | cabinet | 60.58 | 71.52 | | sidewalk | 61.21 | 76.94 | | person | 77.17 | 92.53 | | earth | 32.56 | 43.18 | | door | 52.36 | 72.79 | | table | 53.91 | 64.17 | | mountain | 56.79 | 71.47 | | plant | 52.57 | 62.64 | | curtain | 70.46 | 87.51 | | chair | 49.5 | 57.96 | | car | 80.93 | 92.41 | | water | 28.27 | 30.95 | | painting | 67.46 | 86.24 | | sofa | 75.41 | 86.63 | | shelf | 38.28 | 58.3 | | house | 38.92 | 54.52 | | sea | 64.7 | 86.59 | | mirror | 67.79 | 81.3 | | rug | 67.97 | 80.12 | | field | 23.28 | 37.24 | | armchair | 53.57 | 75.71 | | seat | 56.83 | 91.16 | | fence | 49.27 | 63.62 | | desk | 40.57 | 67.13 | | rock | 51.71 | 85.0 | | wardrobe | 48.81 | 70.38 | | lamp | 56.87 | 80.14 | | bathtub | 79.14 | 88.1 | | railing | 32.76 | 57.67 | | cushion | 59.07 | 77.0 | | base | 31.32 | 44.66 | | box | 9.4 | 9.53 | | column | 48.99 | 56.33 | | signboard | 33.66 | 45.48 | | chest of drawers | 39.6 | 69.43 | | counter | 49.11 | 55.81 | | sand | 43.81 | 59.16 | | sink | 65.74 | 82.41 | | skyscraper | 45.61 | 50.19 | | fireplace | 63.73 | 92.57 | | refrigerator | 70.67 | 86.03 | | grandstand | 38.14 | 79.63 | | path | 21.4 | 26.87 | | stairs | 20.51 | 22.44 | | runway | 65.64 | 96.37 | | case | 60.24 | 76.5 | | pool table | 87.52 | 96.43 | | pillow | 54.7 | 60.83 | | screen door | 65.49 | 70.2 | | stairway | 34.06 | 50.77 | | river | 13.57 | 84.29 | | bridge | 61.01 | 67.96 | | bookcase | 31.09 | 58.96 | | blind | 13.38 | 13.45 | | coffee table | 53.56 | 83.25 | | toilet | 83.51 | 95.4 | | flower | 39.26 | 53.98 | | book | 43.34 | 65.25 | | hill | 4.82 | 6.55 | | bench | 53.5 | 58.81 | | countertop | 57.13 | 71.36 | | stove | 74.86 | 86.34 | | palm | 50.8 | 77.16 | | kitchen island | 21.41 | 32.81 | | computer | 51.1 | 61.69 | | swivel chair | 32.43 | 92.95 | | boat | 36.09 | 94.74 | | bar | 60.09 | 67.1 | | arcade machine | 76.6 | 81.09 | | hovel | 15.5 | 16.84 | | bus | 87.89 | 95.73 | | towel | 61.57 | 82.01 | | light | 36.37 | 65.61 | | truck | 40.61 | 51.55 | | tower | 22.51 | 42.71 | | chandelier | 60.85 | 83.57 | | awning | 27.53 | 32.03 | | streetlight | 16.7 | 26.03 | | booth | 27.41 | 31.45 | | television receiver | 71.07 | 83.07 | | airplane | 65.87 | 91.3 | | dirt track | 2.17 | 2.18 | | apparel | 36.58 | 69.04 | | pole | 7.79 | 8.81 | | land | 0.0 | 0.0 | | bannister | 6.83 | 16.26 | | escalator | 62.27 | 82.06 | | ottoman | 44.79 | 74.59 | | bottle | 39.28 | 68.11 | | buffet | 47.94 | 66.58 | | poster | 14.53 | 17.42 | | stage | 15.82 | 20.4 | | van | 29.69 | 37.75 | | ship | 8.43 | 8.84 | | fountain | 46.51 | 49.84 | | conveyer belt | 56.93 | 99.41 | | canopy | 48.19 | 70.85 | | washer | 73.53 | 98.06 | | plaything | 21.64 | 80.04 | | swimming pool | 44.33 | 89.92 | | stool | 27.12 | 44.28 | | barrel | 45.86 | 65.02 | | basket | 36.71 | 57.73 | | waterfall | 50.17 | 69.65 | | tent | 93.14 | 98.81 | | bag | 1.7 | 1.7 | | minibike | 67.26 | 87.96 | | cradle | 69.25 | 98.99 | | oven | 44.78 | 61.84 | | ball | 33.82 | 67.98 | | food | 54.47 | 70.05 | | step | 0.0 | 0.0 | | tank | 43.85 | 45.16 | | trade name | 0.58 | 0.58 | | microwave | 76.37 | 96.57 | | pot | 49.95 | 59.08 | | animal | 67.46 | 71.74 | | bicycle | 53.78 | 73.43 | | lake | 0.0 | 0.0 | | dishwasher | 55.82 | 59.8 | | screen | 56.78 | 89.98 | | blanket | 0.02 | 0.02 | | sculpture | 50.44 | 59.36 | | hood | 56.97 | 66.92 | | sconce | 12.32 | 13.41 | | vase | 29.42 | 40.8 | | traffic light | 10.11 | 10.9 | | tray | 1.25 | 1.29 | | ashcan | 40.12 | 45.1 | | fan | 49.13 | 80.4 | | pier | 29.94 | 32.91 | | crt screen | 3.61 | 8.95 | | plate | 46.05 | 51.59 | | monitor | 14.8 | 34.42 | | bulletin board | 39.04 | 39.96 | | shower | 0.0 | 0.0 | | radiator | 36.22 | 36.24 | | glass | 2.41 | 2.42 | | clock | 0.96 | 0.96 | | flag | 29.46 | 29.9 | +---------------------+-------+-------+ 2024-06-15 21:38:17,874 - mmseg - INFO - Summary: 2024-06-15 21:38:17,874 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 81.23 | 45.03 | 59.75 | +-------+-------+-------+ 2024-06-15 21:38:17,875 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-15 21:38:17,875 - mmseg - INFO - Iter(val) [250] aAcc: 0.8123, mIoU: 0.4503, mAcc: 0.5975, IoU.wall: 0.7478, IoU.building: 0.7990, IoU.sky: 0.9254, IoU.floor: 0.7953, IoU.tree: 0.7230, IoU.ceiling: 0.8199, IoU.road: 0.8212, IoU.bed : 0.8671, IoU.windowpane: 0.6007, IoU.grass: 0.6731, IoU.cabinet: 0.6058, IoU.sidewalk: 0.6121, IoU.person: 0.7717, IoU.earth: 0.3256, IoU.door: 0.5236, IoU.table: 0.5391, IoU.mountain: 0.5679, IoU.plant: 0.5257, IoU.curtain: 0.7046, IoU.chair: 0.4950, IoU.car: 0.8093, IoU.water: 0.2827, IoU.painting: 0.6746, IoU.sofa: 0.7541, IoU.shelf: 0.3828, IoU.house: 0.3892, IoU.sea: 0.6470, IoU.mirror: 0.6779, IoU.rug: 0.6797, IoU.field: 0.2328, IoU.armchair: 0.5357, IoU.seat: 0.5683, IoU.fence: 0.4927, IoU.desk: 0.4057, IoU.rock: 0.5171, IoU.wardrobe: 0.4881, IoU.lamp: 0.5687, IoU.bathtub: 0.7914, IoU.railing: 0.3276, IoU.cushion: 0.5907, IoU.base: 0.3132, IoU.box: 0.0940, IoU.column: 0.4899, IoU.signboard: 0.3366, IoU.chest of drawers: 0.3960, IoU.counter: 0.4911, IoU.sand: 0.4381, IoU.sink: 0.6574, IoU.skyscraper: 0.4561, IoU.fireplace: 0.6373, IoU.refrigerator: 0.7067, IoU.grandstand: 0.3814, IoU.path: 0.2140, IoU.stairs: 0.2051, IoU.runway: 0.6564, IoU.case: 0.6024, IoU.pool table: 0.8752, IoU.pillow: 0.5470, IoU.screen door: 0.6549, IoU.stairway: 0.3406, IoU.river: 0.1357, IoU.bridge: 0.6101, IoU.bookcase: 0.3109, IoU.blind: 0.1338, IoU.coffee table: 0.5356, IoU.toilet: 0.8351, IoU.flower: 0.3926, IoU.book: 0.4334, IoU.hill: 0.0482, IoU.bench: 0.5350, IoU.countertop: 0.5713, IoU.stove: 0.7486, IoU.palm: 0.5080, IoU.kitchen island: 0.2141, IoU.computer: 0.5110, IoU.swivel chair: 0.3243, IoU.boat: 0.3609, IoU.bar: 0.6009, IoU.arcade machine: 0.7660, IoU.hovel: 0.1550, IoU.bus: 0.8789, IoU.towel: 0.6157, IoU.light: 0.3637, IoU.truck: 0.4061, IoU.tower: 0.2251, IoU.chandelier: 0.6085, IoU.awning: 0.2753, IoU.streetlight: 0.1670, IoU.booth: 0.2741, IoU.television receiver: 0.7107, IoU.airplane: 0.6587, IoU.dirt track: 0.0217, IoU.apparel: 0.3658, IoU.pole: 0.0779, IoU.land: 0.0000, IoU.bannister: 0.0683, IoU.escalator: 0.6227, IoU.ottoman: 0.4479, IoU.bottle: 0.3928, IoU.buffet: 0.4794, IoU.poster: 0.1453, IoU.stage: 0.1582, IoU.van: 0.2969, IoU.ship: 0.0843, IoU.fountain: 0.4651, IoU.conveyer belt: 0.5693, IoU.canopy: 0.4819, IoU.washer: 0.7353, IoU.plaything: 0.2164, IoU.swimming pool: 0.4433, IoU.stool: 0.2712, IoU.barrel: 0.4586, IoU.basket: 0.3671, IoU.waterfall: 0.5017, IoU.tent: 0.9314, IoU.bag: 0.0170, IoU.minibike: 0.6726, IoU.cradle: 0.6925, IoU.oven: 0.4478, IoU.ball: 0.3382, IoU.food: 0.5447, IoU.step: 0.0000, IoU.tank: 0.4385, IoU.trade name: 0.0058, IoU.microwave: 0.7637, IoU.pot: 0.4995, IoU.animal: 0.6746, IoU.bicycle: 0.5378, IoU.lake: 0.0000, IoU.dishwasher: 0.5582, IoU.screen: 0.5678, IoU.blanket: 0.0002, IoU.sculpture: 0.5044, IoU.hood: 0.5697, IoU.sconce: 0.1232, IoU.vase: 0.2942, IoU.traffic light: 0.1011, IoU.tray: 0.0125, IoU.ashcan: 0.4012, IoU.fan: 0.4913, IoU.pier: 0.2994, IoU.crt screen: 0.0361, IoU.plate: 0.4605, IoU.monitor: 0.1480, IoU.bulletin board: 0.3904, IoU.shower: 0.0000, IoU.radiator: 0.3622, IoU.glass: 0.0241, IoU.clock: 0.0096, IoU.flag: 0.2946, Acc.wall: 0.8311, Acc.building: 0.9354, Acc.sky: 0.9556, Acc.floor: 0.8640, Acc.tree: 0.8602, Acc.ceiling: 0.8954, Acc.road: 0.9140, Acc.bed : 0.9714, Acc.windowpane: 0.8037, Acc.grass: 0.8602, Acc.cabinet: 0.7152, Acc.sidewalk: 0.7694, Acc.person: 0.9253, Acc.earth: 0.4318, Acc.door: 0.7279, Acc.table: 0.6417, Acc.mountain: 0.7147, Acc.plant: 0.6264, Acc.curtain: 0.8751, Acc.chair: 0.5796, Acc.car: 0.9241, Acc.water: 0.3095, Acc.painting: 0.8624, Acc.sofa: 0.8663, Acc.shelf: 0.5830, Acc.house: 0.5452, Acc.sea: 0.8659, Acc.mirror: 0.8130, Acc.rug: 0.8012, Acc.field: 0.3724, Acc.armchair: 0.7571, Acc.seat: 0.9116, Acc.fence: 0.6362, Acc.desk: 0.6713, Acc.rock: 0.8500, Acc.wardrobe: 0.7038, Acc.lamp: 0.8014, Acc.bathtub: 0.8810, Acc.railing: 0.5767, Acc.cushion: 0.7700, Acc.base: 0.4466, Acc.box: 0.0953, Acc.column: 0.5633, Acc.signboard: 0.4548, Acc.chest of drawers: 0.6943, Acc.counter: 0.5581, Acc.sand: 0.5916, Acc.sink: 0.8241, Acc.skyscraper: 0.5019, Acc.fireplace: 0.9257, Acc.refrigerator: 0.8603, Acc.grandstand: 0.7963, Acc.path: 0.2687, Acc.stairs: 0.2244, Acc.runway: 0.9637, Acc.case: 0.7650, Acc.pool table: 0.9643, Acc.pillow: 0.6083, Acc.screen door: 0.7020, Acc.stairway: 0.5077, Acc.river: 0.8429, Acc.bridge: 0.6796, Acc.bookcase: 0.5896, Acc.blind: 0.1345, Acc.coffee table: 0.8325, Acc.toilet: 0.9540, Acc.flower: 0.5398, Acc.book: 0.6525, Acc.hill: 0.0655, Acc.bench: 0.5881, Acc.countertop: 0.7136, Acc.stove: 0.8634, Acc.palm: 0.7716, Acc.kitchen island: 0.3281, Acc.computer: 0.6169, Acc.swivel chair: 0.9295, Acc.boat: 0.9474, Acc.bar: 0.6710, Acc.arcade machine: 0.8109, Acc.hovel: 0.1684, Acc.bus: 0.9573, Acc.towel: 0.8201, Acc.light: 0.6561, Acc.truck: 0.5155, Acc.tower: 0.4271, Acc.chandelier: 0.8357, Acc.awning: 0.3203, Acc.streetlight: 0.2603, Acc.booth: 0.3145, Acc.television receiver: 0.8307, Acc.airplane: 0.9130, Acc.dirt track: 0.0218, Acc.apparel: 0.6904, Acc.pole: 0.0881, Acc.land: 0.0000, Acc.bannister: 0.1626, Acc.escalator: 0.8206, Acc.ottoman: 0.7459, Acc.bottle: 0.6811, Acc.buffet: 0.6658, Acc.poster: 0.1742, Acc.stage: 0.2040, Acc.van: 0.3775, Acc.ship: 0.0884, Acc.fountain: 0.4984, Acc.conveyer belt: 0.9941, Acc.canopy: 0.7085, Acc.washer: 0.9806, Acc.plaything: 0.8004, Acc.swimming pool: 0.8992, Acc.stool: 0.4428, Acc.barrel: 0.6502, Acc.basket: 0.5773, Acc.waterfall: 0.6965, Acc.tent: 0.9881, Acc.bag: 0.0170, Acc.minibike: 0.8796, Acc.cradle: 0.9899, Acc.oven: 0.6184, Acc.ball: 0.6798, Acc.food: 0.7005, Acc.step: 0.0000, Acc.tank: 0.4516, Acc.trade name: 0.0058, Acc.microwave: 0.9657, Acc.pot: 0.5908, Acc.animal: 0.7174, Acc.bicycle: 0.7343, Acc.lake: 0.0000, Acc.dishwasher: 0.5980, Acc.screen: 0.8998, Acc.blanket: 0.0002, Acc.sculpture: 0.5936, Acc.hood: 0.6692, Acc.sconce: 0.1341, Acc.vase: 0.4080, Acc.traffic light: 0.1090, Acc.tray: 0.0129, Acc.ashcan: 0.4510, Acc.fan: 0.8040, Acc.pier: 0.3291, Acc.crt screen: 0.0895, Acc.plate: 0.5159, Acc.monitor: 0.3442, Acc.bulletin board: 0.3996, Acc.shower: 0.0000, Acc.radiator: 0.3624, Acc.glass: 0.0242, Acc.clock: 0.0096, Acc.flag: 0.2990 2024-06-15 21:39:38,819 - mmseg - INFO - Iter [2050/80000] lr: 3.157e-06, eta: 1 day, 14:18:43, time: 3.284, data_time: 1.679, memory: 65790, decode.loss_ce: 0.6108, decode.acc_seg: 78.5679, aux.loss_ce: 0.2461, aux.acc_seg: 78.5112, loss: 0.8569 2024-06-15 21:40:59,519 - mmseg - INFO - Iter [2100/80000] lr: 3.155e-06, eta: 1 day, 14:12:27, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5797, decode.acc_seg: 78.8964, aux.loss_ce: 0.2347, aux.acc_seg: 79.1810, loss: 0.8144 2024-06-15 21:42:20,274 - mmseg - INFO - Iter [2150/80000] lr: 3.153e-06, eta: 1 day, 14:06:26, time: 1.615, data_time: 0.007, memory: 65790, decode.loss_ce: 0.6282, decode.acc_seg: 77.7393, aux.loss_ce: 0.2526, aux.acc_seg: 78.1875, loss: 0.8808 2024-06-15 21:43:40,874 - mmseg - INFO - Iter [2200/80000] lr: 3.151e-06, eta: 1 day, 14:00:32, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5928, decode.acc_seg: 78.7106, aux.loss_ce: 0.2399, aux.acc_seg: 78.8267, loss: 0.8327 2024-06-15 21:45:01,496 - mmseg - INFO - Iter [2250/80000] lr: 3.149e-06, eta: 1 day, 13:54:51, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.6118, decode.acc_seg: 78.1853, aux.loss_ce: 0.2445, aux.acc_seg: 78.5383, loss: 0.8563 2024-06-15 21:46:22,067 - mmseg - INFO - Iter [2300/80000] lr: 3.147e-06, eta: 1 day, 13:49:20, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.6037, decode.acc_seg: 78.6749, aux.loss_ce: 0.2406, aux.acc_seg: 79.0919, loss: 0.8443 2024-06-15 21:47:42,617 - mmseg - INFO - Iter [2350/80000] lr: 3.145e-06, eta: 1 day, 13:43:59, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5939, decode.acc_seg: 78.1213, aux.loss_ce: 0.2372, aux.acc_seg: 78.1932, loss: 0.8311 2024-06-15 21:49:03,178 - mmseg - INFO - Iter [2400/80000] lr: 3.143e-06, eta: 1 day, 13:38:48, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5548, decode.acc_seg: 78.8582, aux.loss_ce: 0.2240, aux.acc_seg: 79.1763, loss: 0.7788 2024-06-15 21:50:24,130 - mmseg - INFO - Iter [2450/80000] lr: 3.141e-06, eta: 1 day, 13:33:59, time: 1.619, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5711, decode.acc_seg: 78.9677, aux.loss_ce: 0.2279, aux.acc_seg: 79.4571, loss: 0.7991 2024-06-15 21:51:44,833 - mmseg - INFO - Iter [2500/80000] lr: 3.139e-06, eta: 1 day, 13:29:10, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5922, decode.acc_seg: 78.5682, aux.loss_ce: 0.2377, aux.acc_seg: 78.8443, loss: 0.8299 2024-06-15 21:53:07,694 - mmseg - INFO - Iter [2550/80000] lr: 3.137e-06, eta: 1 day, 13:25:36, time: 1.657, data_time: 0.052, memory: 65790, decode.loss_ce: 0.5914, decode.acc_seg: 78.0691, aux.loss_ce: 0.2352, aux.acc_seg: 78.5139, loss: 0.8266 2024-06-15 21:54:28,261 - mmseg - INFO - Iter [2600/80000] lr: 3.135e-06, eta: 1 day, 13:20:58, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5390, decode.acc_seg: 80.1473, aux.loss_ce: 0.2201, aux.acc_seg: 80.0699, loss: 0.7591 2024-06-15 21:55:48,870 - mmseg - INFO - Iter [2650/80000] lr: 3.133e-06, eta: 1 day, 13:16:28, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5414, decode.acc_seg: 79.3502, aux.loss_ce: 0.2184, aux.acc_seg: 79.5155, loss: 0.7598 2024-06-15 21:57:09,454 - mmseg - INFO - Iter [2700/80000] lr: 3.130e-06, eta: 1 day, 13:12:05, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5679, decode.acc_seg: 78.9157, aux.loss_ce: 0.2267, aux.acc_seg: 79.2269, loss: 0.7946 2024-06-15 21:58:30,407 - mmseg - INFO - Iter [2750/80000] lr: 3.128e-06, eta: 1 day, 13:07:59, time: 1.619, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5525, decode.acc_seg: 79.5782, aux.loss_ce: 0.2196, aux.acc_seg: 79.7828, loss: 0.7720 2024-06-15 21:59:50,957 - mmseg - INFO - Iter [2800/80000] lr: 3.126e-06, eta: 1 day, 13:03:48, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5432, decode.acc_seg: 79.5669, aux.loss_ce: 0.2158, aux.acc_seg: 80.1967, loss: 0.7590 2024-06-15 22:01:11,647 - mmseg - INFO - Iter [2850/80000] lr: 3.124e-06, eta: 1 day, 12:59:47, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5308, decode.acc_seg: 79.4231, aux.loss_ce: 0.2133, aux.acc_seg: 79.9845, loss: 0.7441 2024-06-15 22:02:32,212 - mmseg - INFO - Iter [2900/80000] lr: 3.122e-06, eta: 1 day, 12:55:47, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5726, decode.acc_seg: 79.4955, aux.loss_ce: 0.2301, aux.acc_seg: 79.6212, loss: 0.8028 2024-06-15 22:03:52,718 - mmseg - INFO - Iter [2950/80000] lr: 3.120e-06, eta: 1 day, 12:51:52, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5449, decode.acc_seg: 79.8100, aux.loss_ce: 0.2167, aux.acc_seg: 80.1006, loss: 0.7616 2024-06-15 22:05:13,271 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-15 22:05:13,271 - mmseg - INFO - Iter [3000/80000] lr: 3.118e-06, eta: 1 day, 12:48:03, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5425, decode.acc_seg: 79.5803, aux.loss_ce: 0.2160, aux.acc_seg: 80.1795, loss: 0.7586 2024-06-15 22:06:33,543 - mmseg - INFO - per class results: 2024-06-15 22:06:33,549 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 75.64 | 86.49 | | building | 81.82 | 92.61 | | sky | 93.1 | 96.57 | | floor | 80.4 | 85.3 | | tree | 73.43 | 83.65 | | ceiling | 81.56 | 85.76 | | road | 82.67 | 91.41 | | bed | 89.04 | 95.76 | | windowpane | 62.39 | 81.22 | | grass | 56.75 | 67.53 | | cabinet | 58.75 | 74.56 | | sidewalk | 63.43 | 80.4 | | person | 78.56 | 88.18 | | earth | 33.63 | 40.95 | | door | 50.56 | 71.09 | | table | 58.28 | 72.48 | | mountain | 56.48 | 74.83 | | plant | 55.75 | 69.48 | | curtain | 75.08 | 85.2 | | chair | 57.26 | 70.89 | | car | 81.25 | 88.89 | | water | 55.72 | 69.3 | | painting | 69.92 | 85.54 | | sofa | 64.54 | 92.41 | | shelf | 37.38 | 49.54 | | house | 47.16 | 70.06 | | sea | 62.68 | 96.02 | | mirror | 70.9 | 82.56 | | rug | 68.75 | 78.68 | | field | 24.81 | 82.77 | | armchair | 35.74 | 42.41 | | seat | 65.45 | 86.46 | | fence | 39.26 | 49.75 | | desk | 38.18 | 82.67 | | rock | 61.65 | 80.07 | | wardrobe | 47.9 | 85.1 | | lamp | 59.71 | 71.78 | | bathtub | 77.02 | 79.38 | | railing | 37.59 | 47.36 | | cushion | 60.77 | 74.67 | | base | 38.81 | 67.83 | | box | 25.91 | 28.97 | | column | 43.0 | 47.26 | | signboard | 36.15 | 47.17 | | chest of drawers | 52.07 | 67.69 | | counter | 33.69 | 35.7 | | sand | 66.26 | 80.72 | | sink | 68.23 | 75.93 | | skyscraper | 51.72 | 64.85 | | fireplace | 66.2 | 91.58 | | refrigerator | 72.26 | 87.26 | | grandstand | 34.79 | 93.25 | | path | 9.65 | 10.71 | | stairs | 35.22 | 41.78 | | runway | 71.11 | 94.4 | | case | 56.73 | 88.19 | | pool table | 87.94 | 97.86 | | pillow | 62.92 | 76.44 | | screen door | 72.8 | 89.01 | | stairway | 37.42 | 46.5 | | river | 33.02 | 44.31 | | bridge | 64.45 | 85.11 | | bookcase | 30.75 | 48.31 | | blind | 44.47 | 52.08 | | coffee table | 56.08 | 86.58 | | toilet | 85.19 | 95.94 | | flower | 37.95 | 51.81 | | book | 46.98 | 67.26 | | hill | 2.54 | 2.76 | | bench | 49.57 | 62.36 | | countertop | 60.81 | 85.33 | | stove | 75.95 | 83.15 | | palm | 47.25 | 74.37 | | kitchen island | 39.11 | 88.1 | | computer | 72.61 | 83.04 | | swivel chair | 44.79 | 65.87 | | boat | 30.51 | 92.92 | | bar | 62.59 | 79.97 | | arcade machine | 77.28 | 97.91 | | hovel | 13.01 | 13.9 | | bus | 72.19 | 98.71 | | towel | 68.93 | 80.53 | | light | 41.24 | 49.33 | | truck | 28.32 | 47.41 | | tower | 8.73 | 11.44 | | chandelier | 61.21 | 81.64 | | awning | 29.36 | 40.47 | | streetlight | 16.78 | 23.97 | | booth | 37.53 | 39.45 | | television receiver | 67.84 | 84.88 | | airplane | 54.35 | 66.82 | | dirt track | 0.02 | 0.02 | | apparel | 35.35 | 59.53 | | pole | 11.56 | 13.18 | | land | 0.24 | 0.24 | | bannister | 8.02 | 8.87 | | escalator | 62.97 | 87.02 | | ottoman | 47.79 | 65.51 | | bottle | 34.2 | 42.39 | | buffet | 9.12 | 9.26 | | poster | 6.66 | 6.88 | | stage | 18.9 | 45.49 | | van | 42.28 | 58.86 | | ship | 0.0 | 0.0 | | fountain | 25.8 | 26.05 | | conveyer belt | 62.58 | 99.6 | | canopy | 33.76 | 48.25 | | washer | 84.87 | 90.49 | | plaything | 26.56 | 73.87 | | swimming pool | 52.81 | 84.84 | | stool | 28.89 | 32.01 | | barrel | 40.06 | 64.74 | | basket | 36.93 | 42.95 | | waterfall | 63.97 | 92.54 | | tent | 92.62 | 99.24 | | bag | 13.87 | 14.32 | | minibike | 70.48 | 86.72 | | cradle | 71.54 | 99.17 | | oven | 46.82 | 55.86 | | ball | 38.08 | 69.45 | | food | 50.11 | 56.69 | | step | 0.04 | 0.04 | | tank | 48.35 | 58.69 | | trade name | 20.84 | 22.25 | | microwave | 81.66 | 94.75 | | pot | 51.11 | 60.27 | | animal | 69.48 | 74.15 | | bicycle | 55.0 | 83.3 | | lake | 0.0 | 0.0 | | dishwasher | 63.08 | 71.81 | | screen | 64.93 | 85.28 | | blanket | 2.81 | 2.92 | | sculpture | 61.02 | 69.85 | | hood | 61.96 | 78.26 | | sconce | 40.93 | 52.72 | | vase | 35.92 | 51.44 | | traffic light | 23.01 | 31.35 | | tray | 7.7 | 12.66 | | ashcan | 42.42 | 51.85 | | fan | 53.19 | 77.01 | | pier | 68.9 | 75.92 | | crt screen | 3.18 | 9.69 | | plate | 49.59 | 82.0 | | monitor | 0.33 | 0.33 | | bulletin board | 42.73 | 44.93 | | shower | 0.0 | 0.0 | | radiator | 63.26 | 74.27 | | glass | 6.75 | 6.84 | | clock | 25.89 | 26.68 | | flag | 61.62 | 66.38 | +---------------------+-------+-------+ 2024-06-15 22:06:33,549 - mmseg - INFO - Summary: 2024-06-15 22:06:33,550 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 82.11 | 47.85 | 62.06 | +-------+-------+-------+ 2024-06-15 22:06:33,550 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-15 22:06:33,550 - mmseg - INFO - Iter(val) [250] aAcc: 0.8211, mIoU: 0.4785, mAcc: 0.6206, IoU.wall: 0.7564, IoU.building: 0.8182, IoU.sky: 0.9310, IoU.floor: 0.8040, IoU.tree: 0.7343, IoU.ceiling: 0.8156, IoU.road: 0.8267, IoU.bed : 0.8904, IoU.windowpane: 0.6239, IoU.grass: 0.5675, IoU.cabinet: 0.5875, IoU.sidewalk: 0.6343, IoU.person: 0.7856, IoU.earth: 0.3363, IoU.door: 0.5056, IoU.table: 0.5828, IoU.mountain: 0.5648, IoU.plant: 0.5575, IoU.curtain: 0.7508, IoU.chair: 0.5726, IoU.car: 0.8125, IoU.water: 0.5572, IoU.painting: 0.6992, IoU.sofa: 0.6454, IoU.shelf: 0.3738, IoU.house: 0.4716, IoU.sea: 0.6268, IoU.mirror: 0.7090, IoU.rug: 0.6875, IoU.field: 0.2481, IoU.armchair: 0.3574, IoU.seat: 0.6545, IoU.fence: 0.3926, IoU.desk: 0.3818, IoU.rock: 0.6165, IoU.wardrobe: 0.4790, IoU.lamp: 0.5971, IoU.bathtub: 0.7702, IoU.railing: 0.3759, IoU.cushion: 0.6077, IoU.base: 0.3881, IoU.box: 0.2591, IoU.column: 0.4300, IoU.signboard: 0.3615, IoU.chest of drawers: 0.5207, IoU.counter: 0.3369, IoU.sand: 0.6626, IoU.sink: 0.6823, IoU.skyscraper: 0.5172, IoU.fireplace: 0.6620, IoU.refrigerator: 0.7226, IoU.grandstand: 0.3479, IoU.path: 0.0965, IoU.stairs: 0.3522, IoU.runway: 0.7111, IoU.case: 0.5673, IoU.pool table: 0.8794, IoU.pillow: 0.6292, IoU.screen door: 0.7280, IoU.stairway: 0.3742, IoU.river: 0.3302, IoU.bridge: 0.6445, IoU.bookcase: 0.3075, IoU.blind: 0.4447, IoU.coffee table: 0.5608, IoU.toilet: 0.8519, IoU.flower: 0.3795, IoU.book: 0.4698, IoU.hill: 0.0254, IoU.bench: 0.4957, IoU.countertop: 0.6081, IoU.stove: 0.7595, IoU.palm: 0.4725, IoU.kitchen island: 0.3911, IoU.computer: 0.7261, IoU.swivel chair: 0.4479, IoU.boat: 0.3051, IoU.bar: 0.6259, IoU.arcade machine: 0.7728, IoU.hovel: 0.1301, IoU.bus: 0.7219, IoU.towel: 0.6893, IoU.light: 0.4124, IoU.truck: 0.2832, IoU.tower: 0.0873, IoU.chandelier: 0.6121, IoU.awning: 0.2936, IoU.streetlight: 0.1678, IoU.booth: 0.3753, IoU.television receiver: 0.6784, IoU.airplane: 0.5435, IoU.dirt track: 0.0002, IoU.apparel: 0.3535, IoU.pole: 0.1156, IoU.land: 0.0024, IoU.bannister: 0.0802, IoU.escalator: 0.6297, IoU.ottoman: 0.4779, IoU.bottle: 0.3420, IoU.buffet: 0.0912, IoU.poster: 0.0666, IoU.stage: 0.1890, IoU.van: 0.4228, IoU.ship: 0.0000, IoU.fountain: 0.2580, IoU.conveyer belt: 0.6258, IoU.canopy: 0.3376, IoU.washer: 0.8487, IoU.plaything: 0.2656, IoU.swimming pool: 0.5281, IoU.stool: 0.2889, IoU.barrel: 0.4006, IoU.basket: 0.3693, IoU.waterfall: 0.6397, IoU.tent: 0.9262, IoU.bag: 0.1387, IoU.minibike: 0.7048, IoU.cradle: 0.7154, IoU.oven: 0.4682, IoU.ball: 0.3808, IoU.food: 0.5011, IoU.step: 0.0004, IoU.tank: 0.4835, IoU.trade name: 0.2084, IoU.microwave: 0.8166, IoU.pot: 0.5111, IoU.animal: 0.6948, IoU.bicycle: 0.5500, IoU.lake: 0.0000, IoU.dishwasher: 0.6308, IoU.screen: 0.6493, IoU.blanket: 0.0281, IoU.sculpture: 0.6102, IoU.hood: 0.6196, IoU.sconce: 0.4093, IoU.vase: 0.3592, IoU.traffic light: 0.2301, IoU.tray: 0.0770, IoU.ashcan: 0.4242, IoU.fan: 0.5319, IoU.pier: 0.6890, IoU.crt screen: 0.0318, IoU.plate: 0.4959, IoU.monitor: 0.0033, IoU.bulletin board: 0.4273, IoU.shower: 0.0000, IoU.radiator: 0.6326, IoU.glass: 0.0675, IoU.clock: 0.2589, IoU.flag: 0.6162, Acc.wall: 0.8649, Acc.building: 0.9261, Acc.sky: 0.9657, Acc.floor: 0.8530, Acc.tree: 0.8365, Acc.ceiling: 0.8576, Acc.road: 0.9141, Acc.bed : 0.9576, Acc.windowpane: 0.8122, Acc.grass: 0.6753, Acc.cabinet: 0.7456, Acc.sidewalk: 0.8040, Acc.person: 0.8818, Acc.earth: 0.4095, Acc.door: 0.7109, Acc.table: 0.7248, Acc.mountain: 0.7483, Acc.plant: 0.6948, Acc.curtain: 0.8520, Acc.chair: 0.7089, Acc.car: 0.8889, Acc.water: 0.6930, Acc.painting: 0.8554, Acc.sofa: 0.9241, Acc.shelf: 0.4954, Acc.house: 0.7006, Acc.sea: 0.9602, Acc.mirror: 0.8256, Acc.rug: 0.7868, Acc.field: 0.8277, Acc.armchair: 0.4241, Acc.seat: 0.8646, Acc.fence: 0.4975, Acc.desk: 0.8267, Acc.rock: 0.8007, Acc.wardrobe: 0.8510, Acc.lamp: 0.7178, Acc.bathtub: 0.7938, Acc.railing: 0.4736, Acc.cushion: 0.7467, Acc.base: 0.6783, Acc.box: 0.2897, Acc.column: 0.4726, Acc.signboard: 0.4717, Acc.chest of drawers: 0.6769, Acc.counter: 0.3570, Acc.sand: 0.8072, Acc.sink: 0.7593, Acc.skyscraper: 0.6485, Acc.fireplace: 0.9158, Acc.refrigerator: 0.8726, Acc.grandstand: 0.9325, Acc.path: 0.1071, Acc.stairs: 0.4178, Acc.runway: 0.9440, Acc.case: 0.8819, Acc.pool table: 0.9786, Acc.pillow: 0.7644, Acc.screen door: 0.8901, Acc.stairway: 0.4650, Acc.river: 0.4431, Acc.bridge: 0.8511, Acc.bookcase: 0.4831, Acc.blind: 0.5208, Acc.coffee table: 0.8658, Acc.toilet: 0.9594, Acc.flower: 0.5181, Acc.book: 0.6726, Acc.hill: 0.0276, Acc.bench: 0.6236, Acc.countertop: 0.8533, Acc.stove: 0.8315, Acc.palm: 0.7437, Acc.kitchen island: 0.8810, Acc.computer: 0.8304, Acc.swivel chair: 0.6587, Acc.boat: 0.9292, Acc.bar: 0.7997, Acc.arcade machine: 0.9791, Acc.hovel: 0.1390, Acc.bus: 0.9871, Acc.towel: 0.8053, Acc.light: 0.4933, Acc.truck: 0.4741, Acc.tower: 0.1144, Acc.chandelier: 0.8164, Acc.awning: 0.4047, Acc.streetlight: 0.2397, Acc.booth: 0.3945, Acc.television receiver: 0.8488, Acc.airplane: 0.6682, Acc.dirt track: 0.0002, Acc.apparel: 0.5953, Acc.pole: 0.1318, Acc.land: 0.0024, Acc.bannister: 0.0887, Acc.escalator: 0.8702, Acc.ottoman: 0.6551, Acc.bottle: 0.4239, Acc.buffet: 0.0926, Acc.poster: 0.0688, Acc.stage: 0.4549, Acc.van: 0.5886, Acc.ship: 0.0000, Acc.fountain: 0.2605, Acc.conveyer belt: 0.9960, Acc.canopy: 0.4825, Acc.washer: 0.9049, Acc.plaything: 0.7387, Acc.swimming pool: 0.8484, Acc.stool: 0.3201, Acc.barrel: 0.6474, Acc.basket: 0.4295, Acc.waterfall: 0.9254, Acc.tent: 0.9924, Acc.bag: 0.1432, Acc.minibike: 0.8672, Acc.cradle: 0.9917, Acc.oven: 0.5586, Acc.ball: 0.6945, Acc.food: 0.5669, Acc.step: 0.0004, Acc.tank: 0.5869, Acc.trade name: 0.2225, Acc.microwave: 0.9475, Acc.pot: 0.6027, Acc.animal: 0.7415, Acc.bicycle: 0.8330, Acc.lake: 0.0000, Acc.dishwasher: 0.7181, Acc.screen: 0.8528, Acc.blanket: 0.0292, Acc.sculpture: 0.6985, Acc.hood: 0.7826, Acc.sconce: 0.5272, Acc.vase: 0.5144, Acc.traffic light: 0.3135, Acc.tray: 0.1266, Acc.ashcan: 0.5185, Acc.fan: 0.7701, Acc.pier: 0.7592, Acc.crt screen: 0.0969, Acc.plate: 0.8200, Acc.monitor: 0.0033, Acc.bulletin board: 0.4493, Acc.shower: 0.0000, Acc.radiator: 0.7427, Acc.glass: 0.0684, Acc.clock: 0.2668, Acc.flag: 0.6638 2024-06-15 22:07:54,784 - mmseg - INFO - Iter [3050/80000] lr: 3.116e-06, eta: 1 day, 13:18:21, time: 3.230, data_time: 1.620, memory: 65790, decode.loss_ce: 0.5319, decode.acc_seg: 80.0262, aux.loss_ce: 0.2154, aux.acc_seg: 80.3667, loss: 0.7473 2024-06-15 22:09:15,339 - mmseg - INFO - Iter [3100/80000] lr: 3.114e-06, eta: 1 day, 13:14:08, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5244, decode.acc_seg: 80.0999, aux.loss_ce: 0.2086, aux.acc_seg: 80.4175, loss: 0.7330 2024-06-15 22:10:35,883 - mmseg - INFO - Iter [3150/80000] lr: 3.112e-06, eta: 1 day, 13:09:59, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4848, decode.acc_seg: 81.1037, aux.loss_ce: 0.1918, aux.acc_seg: 81.6384, loss: 0.6766 2024-06-15 22:11:56,444 - mmseg - INFO - Iter [3200/80000] lr: 3.110e-06, eta: 1 day, 13:05:56, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5435, decode.acc_seg: 79.7581, aux.loss_ce: 0.2144, aux.acc_seg: 80.3296, loss: 0.7579 2024-06-15 22:13:16,991 - mmseg - INFO - Iter [3250/80000] lr: 3.108e-06, eta: 1 day, 13:01:58, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5291, decode.acc_seg: 80.2209, aux.loss_ce: 0.2117, aux.acc_seg: 80.6068, loss: 0.7408 2024-06-15 22:14:37,511 - mmseg - INFO - Iter [3300/80000] lr: 3.106e-06, eta: 1 day, 12:58:04, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5796, decode.acc_seg: 78.8720, aux.loss_ce: 0.2307, aux.acc_seg: 79.1123, loss: 0.8103 2024-06-15 22:15:58,247 - mmseg - INFO - Iter [3350/80000] lr: 3.104e-06, eta: 1 day, 12:54:19, time: 1.615, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5490, decode.acc_seg: 79.0343, aux.loss_ce: 0.2185, aux.acc_seg: 79.6362, loss: 0.7676 2024-06-15 22:17:18,782 - mmseg - INFO - Iter [3400/80000] lr: 3.102e-06, eta: 1 day, 12:50:35, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5833, decode.acc_seg: 77.9661, aux.loss_ce: 0.2307, aux.acc_seg: 78.4883, loss: 0.8141 2024-06-15 22:18:39,336 - mmseg - INFO - Iter [3450/80000] lr: 3.100e-06, eta: 1 day, 12:46:54, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5134, decode.acc_seg: 79.9805, aux.loss_ce: 0.2036, aux.acc_seg: 80.5246, loss: 0.7171 2024-06-15 22:19:59,876 - mmseg - INFO - Iter [3500/80000] lr: 3.098e-06, eta: 1 day, 12:43:18, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5279, decode.acc_seg: 79.7295, aux.loss_ce: 0.2100, aux.acc_seg: 80.3509, loss: 0.7379 2024-06-15 22:21:20,414 - mmseg - INFO - Iter [3550/80000] lr: 3.096e-06, eta: 1 day, 12:39:45, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5410, decode.acc_seg: 79.6186, aux.loss_ce: 0.2162, aux.acc_seg: 79.8568, loss: 0.7572 2024-06-15 22:22:40,979 - mmseg - INFO - Iter [3600/80000] lr: 3.094e-06, eta: 1 day, 12:36:17, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5506, decode.acc_seg: 79.4891, aux.loss_ce: 0.2154, aux.acc_seg: 80.1130, loss: 0.7660 2024-06-15 22:24:01,476 - mmseg - INFO - Iter [3650/80000] lr: 3.092e-06, eta: 1 day, 12:32:50, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5624, decode.acc_seg: 79.4512, aux.loss_ce: 0.2219, aux.acc_seg: 79.8802, loss: 0.7844 2024-06-15 22:25:22,314 - mmseg - INFO - Iter [3700/80000] lr: 3.090e-06, eta: 1 day, 12:29:34, time: 1.617, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5130, decode.acc_seg: 80.4545, aux.loss_ce: 0.2040, aux.acc_seg: 80.8236, loss: 0.7171 2024-06-15 22:26:42,954 - mmseg - INFO - Iter [3750/80000] lr: 3.088e-06, eta: 1 day, 12:26:17, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5233, decode.acc_seg: 80.0699, aux.loss_ce: 0.2082, aux.acc_seg: 80.5248, loss: 0.7315 2024-06-15 22:28:05,979 - mmseg - INFO - Iter [3800/80000] lr: 3.086e-06, eta: 1 day, 12:23:51, time: 1.660, data_time: 0.055, memory: 65790, decode.loss_ce: 0.5322, decode.acc_seg: 79.7636, aux.loss_ce: 0.2115, aux.acc_seg: 79.9837, loss: 0.7437 2024-06-15 22:29:26,565 - mmseg - INFO - Iter [3850/80000] lr: 3.084e-06, eta: 1 day, 12:20:39, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4583, decode.acc_seg: 82.1298, aux.loss_ce: 0.1835, aux.acc_seg: 82.4605, loss: 0.6419 2024-06-15 22:30:47,260 - mmseg - INFO - Iter [3900/80000] lr: 3.082e-06, eta: 1 day, 12:17:31, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4835, decode.acc_seg: 81.5176, aux.loss_ce: 0.1932, aux.acc_seg: 81.8256, loss: 0.6768 2024-06-15 22:32:08,006 - mmseg - INFO - Iter [3950/80000] lr: 3.080e-06, eta: 1 day, 12:14:27, time: 1.615, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4720, decode.acc_seg: 82.0883, aux.loss_ce: 0.1889, aux.acc_seg: 82.2408, loss: 0.6609 2024-06-15 22:33:29,057 - mmseg - INFO - Saving checkpoint at 4000 iterations 2024-06-15 22:34:40,302 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-15 22:34:40,302 - mmseg - INFO - Iter [4000/80000] lr: 3.078e-06, eta: 1 day, 12:34:05, time: 3.046, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4848, decode.acc_seg: 81.6246, aux.loss_ce: 0.1936, aux.acc_seg: 81.8934, loss: 0.6783 2024-06-15 22:36:01,419 - mmseg - INFO - per class results: 2024-06-15 22:36:01,425 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 77.27 | 86.52 | | building | 82.92 | 92.82 | | sky | 93.25 | 95.92 | | floor | 82.16 | 90.11 | | tree | 74.61 | 89.03 | | ceiling | 83.3 | 88.67 | | road | 83.95 | 88.12 | | bed | 89.94 | 95.13 | | windowpane | 61.66 | 83.02 | | grass | 64.18 | 94.08 | | cabinet | 62.03 | 72.79 | | sidewalk | 65.78 | 78.07 | | person | 80.05 | 89.95 | | earth | 26.42 | 32.4 | | door | 53.14 | 63.36 | | table | 57.51 | 65.11 | | mountain | 53.75 | 81.62 | | plant | 52.87 | 65.88 | | curtain | 70.76 | 82.1 | | chair | 53.07 | 61.81 | | car | 82.88 | 92.54 | | water | 13.27 | 14.51 | | painting | 68.84 | 85.3 | | sofa | 75.78 | 89.83 | | shelf | 44.03 | 59.07 | | house | 39.44 | 44.94 | | sea | 56.18 | 92.26 | | mirror | 68.28 | 91.88 | | rug | 69.74 | 78.44 | | field | 20.52 | 24.93 | | armchair | 53.64 | 77.66 | | seat | 64.39 | 83.32 | | fence | 46.53 | 65.76 | | desk | 40.53 | 75.12 | | rock | 45.43 | 65.45 | | wardrobe | 53.54 | 84.27 | | lamp | 60.86 | 68.8 | | bathtub | 81.52 | 89.56 | | railing | 39.35 | 61.73 | | cushion | 62.78 | 72.96 | | base | 40.35 | 57.25 | | box | 33.11 | 42.3 | | column | 51.44 | 61.26 | | signboard | 33.44 | 43.85 | | chest of drawers | 49.43 | 70.08 | | counter | 45.18 | 51.38 | | sand | 48.83 | 78.09 | | sink | 71.06 | 83.87 | | skyscraper | 54.04 | 75.27 | | fireplace | 66.73 | 89.26 | | refrigerator | 67.9 | 88.81 | | grandstand | 41.18 | 90.16 | | path | 23.67 | 35.71 | | stairs | 29.47 | 33.54 | | runway | 67.96 | 89.81 | | case | 54.37 | 93.98 | | pool table | 89.54 | 97.75 | | pillow | 64.9 | 79.21 | | screen door | 69.21 | 89.02 | | stairway | 47.94 | 64.68 | | river | 13.88 | 76.91 | | bridge | 53.17 | 93.38 | | bookcase | 28.2 | 34.37 | | blind | 45.57 | 55.76 | | coffee table | 52.34 | 88.33 | | toilet | 86.47 | 93.06 | | flower | 35.86 | 54.06 | | book | 47.77 | 78.49 | | hill | 4.14 | 6.1 | | bench | 60.62 | 70.39 | | countertop | 57.79 | 70.42 | | stove | 74.56 | 91.41 | | palm | 49.86 | 79.54 | | kitchen island | 34.28 | 79.46 | | computer | 71.74 | 93.11 | | swivel chair | 41.36 | 90.5 | | boat | 55.65 | 84.02 | | bar | 59.19 | 85.49 | | arcade machine | 83.71 | 99.33 | | hovel | 18.74 | 19.72 | | bus | 87.8 | 96.65 | | towel | 65.86 | 83.32 | | light | 42.55 | 53.67 | | truck | 41.54 | 52.06 | | tower | 15.45 | 27.02 | | chandelier | 61.9 | 80.71 | | awning | 40.13 | 64.04 | | streetlight | 19.69 | 25.87 | | booth | 44.41 | 73.23 | | television receiver | 69.23 | 82.47 | | airplane | 80.66 | 89.3 | | dirt track | 9.5 | 24.84 | | apparel | 39.97 | 54.62 | | pole | 19.62 | 24.45 | | land | 0.07 | 0.08 | | bannister | 11.62 | 14.79 | | escalator | 56.96 | 87.84 | | ottoman | 49.21 | 67.63 | | bottle | 32.3 | 39.09 | | buffet | 50.19 | 65.19 | | poster | 16.78 | 17.15 | | stage | 18.88 | 32.64 | | van | 46.77 | 69.33 | | ship | 79.92 | 86.64 | | fountain | 20.7 | 20.84 | | conveyer belt | 71.35 | 98.91 | | canopy | 39.6 | 44.19 | | washer | 86.35 | 94.49 | | plaything | 19.9 | 33.23 | | swimming pool | 53.34 | 82.95 | | stool | 36.93 | 52.28 | | barrel | 48.4 | 64.75 | | basket | 40.52 | 52.28 | | waterfall | 41.05 | 57.41 | | tent | 87.96 | 98.94 | | bag | 16.13 | 17.02 | | minibike | 69.91 | 87.95 | | cradle | 79.3 | 98.07 | | oven | 47.08 | 61.28 | | ball | 7.36 | 7.38 | | food | 52.99 | 60.78 | | step | 5.04 | 5.61 | | tank | 50.49 | 72.45 | | trade name | 28.74 | 38.83 | | microwave | 80.72 | 95.93 | | pot | 49.77 | 56.64 | | animal | 65.89 | 67.5 | | bicycle | 55.03 | 82.99 | | lake | 30.07 | 45.65 | | dishwasher | 48.47 | 50.71 | | screen | 53.46 | 95.14 | | blanket | 20.76 | 24.11 | | sculpture | 63.02 | 77.55 | | hood | 69.38 | 84.79 | | sconce | 41.44 | 55.66 | | vase | 37.36 | 50.28 | | traffic light | 27.4 | 44.94 | | tray | 6.31 | 6.96 | | ashcan | 45.68 | 58.53 | | fan | 55.9 | 80.39 | | pier | 35.08 | 39.98 | | crt screen | 3.38 | 10.21 | | plate | 54.37 | 68.78 | | monitor | 3.26 | 3.33 | | bulletin board | 49.46 | 53.02 | | shower | 0.0 | 0.0 | | radiator | 63.35 | 72.0 | | glass | 13.8 | 14.46 | | clock | 38.29 | 40.55 | | flag | 64.61 | 71.27 | +---------------------+-------+-------+ 2024-06-15 22:36:01,426 - mmseg - INFO - Summary: 2024-06-15 22:36:01,427 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 82.65 | 49.74 | 64.58 | +-------+-------+-------+ 2024-06-15 22:36:01,428 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-15 22:36:01,428 - mmseg - INFO - Iter(val) [250] aAcc: 0.8265, mIoU: 0.4974, mAcc: 0.6458, IoU.wall: 0.7727, IoU.building: 0.8292, IoU.sky: 0.9325, IoU.floor: 0.8216, IoU.tree: 0.7461, IoU.ceiling: 0.8330, IoU.road: 0.8395, IoU.bed : 0.8994, IoU.windowpane: 0.6166, IoU.grass: 0.6418, IoU.cabinet: 0.6203, IoU.sidewalk: 0.6578, IoU.person: 0.8005, IoU.earth: 0.2642, IoU.door: 0.5314, IoU.table: 0.5751, IoU.mountain: 0.5375, IoU.plant: 0.5287, IoU.curtain: 0.7076, IoU.chair: 0.5307, IoU.car: 0.8288, IoU.water: 0.1327, IoU.painting: 0.6884, IoU.sofa: 0.7578, IoU.shelf: 0.4403, IoU.house: 0.3944, IoU.sea: 0.5618, IoU.mirror: 0.6828, IoU.rug: 0.6974, IoU.field: 0.2052, IoU.armchair: 0.5364, IoU.seat: 0.6439, IoU.fence: 0.4653, IoU.desk: 0.4053, IoU.rock: 0.4543, IoU.wardrobe: 0.5354, IoU.lamp: 0.6086, IoU.bathtub: 0.8152, IoU.railing: 0.3935, IoU.cushion: 0.6278, IoU.base: 0.4035, IoU.box: 0.3311, IoU.column: 0.5144, IoU.signboard: 0.3344, IoU.chest of drawers: 0.4943, IoU.counter: 0.4518, IoU.sand: 0.4883, IoU.sink: 0.7106, IoU.skyscraper: 0.5404, IoU.fireplace: 0.6673, IoU.refrigerator: 0.6790, IoU.grandstand: 0.4118, IoU.path: 0.2367, IoU.stairs: 0.2947, IoU.runway: 0.6796, IoU.case: 0.5437, IoU.pool table: 0.8954, IoU.pillow: 0.6490, IoU.screen door: 0.6921, IoU.stairway: 0.4794, IoU.river: 0.1388, IoU.bridge: 0.5317, IoU.bookcase: 0.2820, IoU.blind: 0.4557, IoU.coffee table: 0.5234, IoU.toilet: 0.8647, IoU.flower: 0.3586, IoU.book: 0.4777, IoU.hill: 0.0414, IoU.bench: 0.6062, IoU.countertop: 0.5779, IoU.stove: 0.7456, IoU.palm: 0.4986, IoU.kitchen island: 0.3428, IoU.computer: 0.7174, IoU.swivel chair: 0.4136, IoU.boat: 0.5565, IoU.bar: 0.5919, IoU.arcade machine: 0.8371, IoU.hovel: 0.1874, IoU.bus: 0.8780, IoU.towel: 0.6586, IoU.light: 0.4255, IoU.truck: 0.4154, IoU.tower: 0.1545, IoU.chandelier: 0.6190, IoU.awning: 0.4013, IoU.streetlight: 0.1969, IoU.booth: 0.4441, IoU.television receiver: 0.6923, IoU.airplane: 0.8066, IoU.dirt track: 0.0950, IoU.apparel: 0.3997, IoU.pole: 0.1962, IoU.land: 0.0007, IoU.bannister: 0.1162, IoU.escalator: 0.5696, IoU.ottoman: 0.4921, IoU.bottle: 0.3230, IoU.buffet: 0.5019, IoU.poster: 0.1678, IoU.stage: 0.1888, IoU.van: 0.4677, IoU.ship: 0.7992, IoU.fountain: 0.2070, IoU.conveyer belt: 0.7135, IoU.canopy: 0.3960, IoU.washer: 0.8635, IoU.plaything: 0.1990, IoU.swimming pool: 0.5334, IoU.stool: 0.3693, IoU.barrel: 0.4840, IoU.basket: 0.4052, IoU.waterfall: 0.4105, IoU.tent: 0.8796, IoU.bag: 0.1613, IoU.minibike: 0.6991, IoU.cradle: 0.7930, IoU.oven: 0.4708, IoU.ball: 0.0736, IoU.food: 0.5299, IoU.step: 0.0504, IoU.tank: 0.5049, IoU.trade name: 0.2874, IoU.microwave: 0.8072, IoU.pot: 0.4977, IoU.animal: 0.6589, IoU.bicycle: 0.5503, IoU.lake: 0.3007, IoU.dishwasher: 0.4847, IoU.screen: 0.5346, IoU.blanket: 0.2076, IoU.sculpture: 0.6302, IoU.hood: 0.6938, IoU.sconce: 0.4144, IoU.vase: 0.3736, IoU.traffic light: 0.2740, IoU.tray: 0.0631, IoU.ashcan: 0.4568, IoU.fan: 0.5590, IoU.pier: 0.3508, IoU.crt screen: 0.0338, IoU.plate: 0.5437, IoU.monitor: 0.0326, IoU.bulletin board: 0.4946, IoU.shower: 0.0000, IoU.radiator: 0.6335, IoU.glass: 0.1380, IoU.clock: 0.3829, IoU.flag: 0.6461, Acc.wall: 0.8652, Acc.building: 0.9282, Acc.sky: 0.9592, Acc.floor: 0.9011, Acc.tree: 0.8903, Acc.ceiling: 0.8867, Acc.road: 0.8812, Acc.bed : 0.9513, Acc.windowpane: 0.8302, Acc.grass: 0.9408, Acc.cabinet: 0.7279, Acc.sidewalk: 0.7807, Acc.person: 0.8995, Acc.earth: 0.3240, Acc.door: 0.6336, Acc.table: 0.6511, Acc.mountain: 0.8162, Acc.plant: 0.6588, Acc.curtain: 0.8210, Acc.chair: 0.6181, Acc.car: 0.9254, Acc.water: 0.1451, Acc.painting: 0.8530, Acc.sofa: 0.8983, Acc.shelf: 0.5907, Acc.house: 0.4494, Acc.sea: 0.9226, Acc.mirror: 0.9188, Acc.rug: 0.7844, Acc.field: 0.2493, Acc.armchair: 0.7766, Acc.seat: 0.8332, Acc.fence: 0.6576, Acc.desk: 0.7512, Acc.rock: 0.6545, Acc.wardrobe: 0.8427, Acc.lamp: 0.6880, Acc.bathtub: 0.8956, Acc.railing: 0.6173, Acc.cushion: 0.7296, Acc.base: 0.5725, Acc.box: 0.4230, Acc.column: 0.6126, Acc.signboard: 0.4385, Acc.chest of drawers: 0.7008, Acc.counter: 0.5138, Acc.sand: 0.7809, Acc.sink: 0.8387, Acc.skyscraper: 0.7527, Acc.fireplace: 0.8926, Acc.refrigerator: 0.8881, Acc.grandstand: 0.9016, Acc.path: 0.3571, Acc.stairs: 0.3354, Acc.runway: 0.8981, Acc.case: 0.9398, Acc.pool table: 0.9775, Acc.pillow: 0.7921, Acc.screen door: 0.8902, Acc.stairway: 0.6468, Acc.river: 0.7691, Acc.bridge: 0.9338, Acc.bookcase: 0.3437, Acc.blind: 0.5576, Acc.coffee table: 0.8833, Acc.toilet: 0.9306, Acc.flower: 0.5406, Acc.book: 0.7849, Acc.hill: 0.0610, Acc.bench: 0.7039, Acc.countertop: 0.7042, Acc.stove: 0.9141, Acc.palm: 0.7954, Acc.kitchen island: 0.7946, Acc.computer: 0.9311, Acc.swivel chair: 0.9050, Acc.boat: 0.8402, Acc.bar: 0.8549, Acc.arcade machine: 0.9933, Acc.hovel: 0.1972, Acc.bus: 0.9665, Acc.towel: 0.8332, Acc.light: 0.5367, Acc.truck: 0.5206, Acc.tower: 0.2702, Acc.chandelier: 0.8071, Acc.awning: 0.6404, Acc.streetlight: 0.2587, Acc.booth: 0.7323, Acc.television receiver: 0.8247, Acc.airplane: 0.8930, Acc.dirt track: 0.2484, Acc.apparel: 0.5462, Acc.pole: 0.2445, Acc.land: 0.0008, Acc.bannister: 0.1479, Acc.escalator: 0.8784, Acc.ottoman: 0.6763, Acc.bottle: 0.3909, Acc.buffet: 0.6519, Acc.poster: 0.1715, Acc.stage: 0.3264, Acc.van: 0.6933, Acc.ship: 0.8664, Acc.fountain: 0.2084, Acc.conveyer belt: 0.9891, Acc.canopy: 0.4419, Acc.washer: 0.9449, Acc.plaything: 0.3323, Acc.swimming pool: 0.8295, Acc.stool: 0.5228, Acc.barrel: 0.6475, Acc.basket: 0.5228, Acc.waterfall: 0.5741, Acc.tent: 0.9894, Acc.bag: 0.1702, Acc.minibike: 0.8795, Acc.cradle: 0.9807, Acc.oven: 0.6128, Acc.ball: 0.0738, Acc.food: 0.6078, Acc.step: 0.0561, Acc.tank: 0.7245, Acc.trade name: 0.3883, Acc.microwave: 0.9593, Acc.pot: 0.5664, Acc.animal: 0.6750, Acc.bicycle: 0.8299, Acc.lake: 0.4565, Acc.dishwasher: 0.5071, Acc.screen: 0.9514, Acc.blanket: 0.2411, Acc.sculpture: 0.7755, Acc.hood: 0.8479, Acc.sconce: 0.5566, Acc.vase: 0.5028, Acc.traffic light: 0.4494, Acc.tray: 0.0696, Acc.ashcan: 0.5853, Acc.fan: 0.8039, Acc.pier: 0.3998, Acc.crt screen: 0.1021, Acc.plate: 0.6878, Acc.monitor: 0.0333, Acc.bulletin board: 0.5302, Acc.shower: 0.0000, Acc.radiator: 0.7200, Acc.glass: 0.1446, Acc.clock: 0.4055, Acc.flag: 0.7127 2024-06-15 22:37:22,331 - mmseg - INFO - Iter [4050/80000] lr: 3.076e-06, eta: 1 day, 12:56:13, time: 3.241, data_time: 1.636, memory: 65790, decode.loss_ce: 0.4724, decode.acc_seg: 81.6107, aux.loss_ce: 0.1874, aux.acc_seg: 82.1265, loss: 0.6598 2024-06-15 22:38:42,871 - mmseg - INFO - Iter [4100/80000] lr: 3.074e-06, eta: 1 day, 12:52:36, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4722, decode.acc_seg: 81.7187, aux.loss_ce: 0.1873, aux.acc_seg: 82.1452, loss: 0.6595 2024-06-15 22:40:03,489 - mmseg - INFO - Iter [4150/80000] lr: 3.072e-06, eta: 1 day, 12:49:03, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4764, decode.acc_seg: 81.0833, aux.loss_ce: 0.1905, aux.acc_seg: 81.6317, loss: 0.6669 2024-06-15 22:41:24,063 - mmseg - INFO - Iter [4200/80000] lr: 3.070e-06, eta: 1 day, 12:45:33, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4835, decode.acc_seg: 80.8973, aux.loss_ce: 0.1927, aux.acc_seg: 81.0315, loss: 0.6761 2024-06-15 22:42:44,855 - mmseg - INFO - Iter [4250/80000] lr: 3.068e-06, eta: 1 day, 12:42:10, time: 1.616, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4767, decode.acc_seg: 81.0879, aux.loss_ce: 0.1906, aux.acc_seg: 81.6304, loss: 0.6673 2024-06-15 22:44:05,669 - mmseg - INFO - Iter [4300/80000] lr: 3.066e-06, eta: 1 day, 12:38:50, time: 1.616, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5034, decode.acc_seg: 80.3877, aux.loss_ce: 0.2001, aux.acc_seg: 80.8228, loss: 0.7034 2024-06-15 22:45:26,310 - mmseg - INFO - Iter [4350/80000] lr: 3.064e-06, eta: 1 day, 12:35:30, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4868, decode.acc_seg: 80.7774, aux.loss_ce: 0.1938, aux.acc_seg: 81.1664, loss: 0.6806 2024-06-15 22:46:46,904 - mmseg - INFO - Iter [4400/80000] lr: 3.062e-06, eta: 1 day, 12:32:12, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4866, decode.acc_seg: 81.1038, aux.loss_ce: 0.1930, aux.acc_seg: 81.8402, loss: 0.6796 2024-06-15 22:48:07,541 - mmseg - INFO - Iter [4450/80000] lr: 3.060e-06, eta: 1 day, 12:28:57, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5105, decode.acc_seg: 80.4075, aux.loss_ce: 0.2004, aux.acc_seg: 80.8902, loss: 0.7110 2024-06-15 22:49:28,153 - mmseg - INFO - Iter [4500/80000] lr: 3.058e-06, eta: 1 day, 12:25:44, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4754, decode.acc_seg: 80.9283, aux.loss_ce: 0.1904, aux.acc_seg: 81.2407, loss: 0.6658 2024-06-15 22:50:48,820 - mmseg - INFO - Iter [4550/80000] lr: 3.056e-06, eta: 1 day, 12:22:35, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4956, decode.acc_seg: 80.6289, aux.loss_ce: 0.1970, aux.acc_seg: 81.2600, loss: 0.6925 2024-06-15 22:52:09,790 - mmseg - INFO - Iter [4600/80000] lr: 3.054e-06, eta: 1 day, 12:19:33, time: 1.619, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4706, decode.acc_seg: 81.9391, aux.loss_ce: 0.1864, aux.acc_seg: 82.1226, loss: 0.6570 2024-06-15 22:53:30,366 - mmseg - INFO - Iter [4650/80000] lr: 3.052e-06, eta: 1 day, 12:16:26, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4812, decode.acc_seg: 81.0554, aux.loss_ce: 0.1908, aux.acc_seg: 81.4103, loss: 0.6720 2024-06-15 22:54:50,976 - mmseg - INFO - Iter [4700/80000] lr: 3.049e-06, eta: 1 day, 12:13:23, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4942, decode.acc_seg: 80.8878, aux.loss_ce: 0.1966, aux.acc_seg: 81.2166, loss: 0.6908 2024-06-15 22:56:11,547 - mmseg - INFO - Iter [4750/80000] lr: 3.047e-06, eta: 1 day, 12:10:21, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5386, decode.acc_seg: 79.0257, aux.loss_ce: 0.2135, aux.acc_seg: 79.6185, loss: 0.7521 2024-06-15 22:57:32,206 - mmseg - INFO - Iter [4800/80000] lr: 3.045e-06, eta: 1 day, 12:07:22, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4928, decode.acc_seg: 80.8469, aux.loss_ce: 0.1946, aux.acc_seg: 81.4176, loss: 0.6875 2024-06-15 22:58:52,821 - mmseg - INFO - Iter [4850/80000] lr: 3.043e-06, eta: 1 day, 12:04:25, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5286, decode.acc_seg: 79.5335, aux.loss_ce: 0.2098, aux.acc_seg: 80.1486, loss: 0.7384 2024-06-15 23:00:13,818 - mmseg - INFO - Iter [4900/80000] lr: 3.041e-06, eta: 1 day, 12:01:36, time: 1.620, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4983, decode.acc_seg: 81.1115, aux.loss_ce: 0.1958, aux.acc_seg: 81.4985, loss: 0.6941 2024-06-15 23:01:34,462 - mmseg - INFO - Iter [4950/80000] lr: 3.039e-06, eta: 1 day, 11:58:43, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5040, decode.acc_seg: 80.6589, aux.loss_ce: 0.2009, aux.acc_seg: 80.8078, loss: 0.7049 2024-06-15 23:02:55,128 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-15 23:02:55,128 - mmseg - INFO - Iter [5000/80000] lr: 3.037e-06, eta: 1 day, 11:55:52, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.5079, decode.acc_seg: 80.0598, aux.loss_ce: 0.1990, aux.acc_seg: 80.8020, loss: 0.7069 2024-06-15 23:04:15,808 - mmseg - INFO - per class results: 2024-06-15 23:04:15,814 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 76.99 | 84.88 | | building | 81.32 | 94.15 | | sky | 93.01 | 97.55 | | floor | 81.6 | 88.02 | | tree | 72.95 | 82.44 | | ceiling | 83.05 | 93.7 | | road | 82.43 | 87.24 | | bed | 88.95 | 95.77 | | windowpane | 62.94 | 74.88 | | grass | 63.5 | 78.02 | | cabinet | 59.98 | 68.12 | | sidewalk | 64.3 | 88.5 | | person | 80.73 | 92.31 | | earth | 34.98 | 47.17 | | door | 51.92 | 78.88 | | table | 59.83 | 74.47 | | mountain | 61.32 | 74.99 | | plant | 55.82 | 68.98 | | curtain | 74.94 | 87.12 | | chair | 59.38 | 75.33 | | car | 82.82 | 92.1 | | water | 40.66 | 44.67 | | painting | 71.56 | 88.9 | | sofa | 72.04 | 91.78 | | shelf | 42.54 | 56.17 | | house | 46.63 | 66.87 | | sea | 74.75 | 88.94 | | mirror | 76.77 | 87.33 | | rug | 68.09 | 85.54 | | field | 31.74 | 68.62 | | armchair | 49.21 | 58.55 | | seat | 62.46 | 78.4 | | fence | 47.52 | 77.69 | | desk | 49.87 | 63.62 | | rock | 61.1 | 74.21 | | wardrobe | 56.52 | 83.1 | | lamp | 60.26 | 69.58 | | bathtub | 83.24 | 88.36 | | railing | 38.44 | 59.83 | | cushion | 62.48 | 79.28 | | base | 31.26 | 50.45 | | box | 27.04 | 31.51 | | column | 50.39 | 60.31 | | signboard | 32.0 | 39.06 | | chest of drawers | 43.75 | 71.31 | | counter | 46.84 | 51.42 | | sand | 44.25 | 60.71 | | sink | 71.52 | 78.46 | | skyscraper | 50.75 | 59.18 | | fireplace | 64.02 | 95.21 | | refrigerator | 66.96 | 86.17 | | grandstand | 59.59 | 65.96 | | path | 25.68 | 30.94 | | stairs | 18.32 | 19.19 | | runway | 61.99 | 77.96 | | case | 64.85 | 80.07 | | pool table | 84.59 | 86.14 | | pillow | 63.92 | 76.41 | | screen door | 67.01 | 80.11 | | stairway | 30.42 | 44.39 | | river | 15.3 | 83.55 | | bridge | 35.52 | 49.27 | | bookcase | 35.51 | 58.53 | | blind | 37.1 | 41.67 | | coffee table | 56.32 | 85.55 | | toilet | 85.45 | 96.65 | | flower | 38.76 | 47.25 | | book | 46.51 | 73.0 | | hill | 3.78 | 5.44 | | bench | 55.32 | 82.84 | | countertop | 58.58 | 68.64 | | stove | 77.57 | 94.16 | | palm | 47.26 | 80.17 | | kitchen island | 37.09 | 84.12 | | computer | 63.43 | 73.78 | | swivel chair | 52.27 | 72.21 | | boat | 64.39 | 87.6 | | bar | 49.3 | 69.42 | | arcade machine | 88.71 | 95.75 | | hovel | 7.7 | 8.25 | | bus | 80.47 | 97.88 | | towel | 65.19 | 79.18 | | light | 39.49 | 44.73 | | truck | 27.36 | 32.16 | | tower | 19.76 | 32.69 | | chandelier | 62.26 | 84.99 | | awning | 34.45 | 46.08 | | streetlight | 20.68 | 27.79 | | booth | 62.76 | 81.33 | | television receiver | 71.5 | 85.1 | | airplane | 70.61 | 80.53 | | dirt track | 2.03 | 2.22 | | apparel | 41.63 | 53.58 | | pole | 18.65 | 23.97 | | land | 0.0 | 0.0 | | bannister | 2.81 | 3.15 | | escalator | 59.56 | 89.28 | | ottoman | 52.55 | 77.09 | | bottle | 39.43 | 67.7 | | buffet | 62.59 | 74.82 | | poster | 30.23 | 44.23 | | stage | 14.51 | 20.81 | | van | 46.7 | 65.01 | | ship | 3.53 | 3.53 | | fountain | 38.46 | 38.97 | | conveyer belt | 62.11 | 99.1 | | canopy | 61.87 | 66.93 | | washer | 84.84 | 89.29 | | plaything | 17.08 | 22.84 | | swimming pool | 54.1 | 78.07 | | stool | 38.54 | 64.23 | | barrel | 51.29 | 69.64 | | basket | 40.65 | 53.82 | | waterfall | 46.63 | 53.19 | | tent | 83.88 | 99.36 | | bag | 12.64 | 13.24 | | minibike | 70.73 | 85.83 | | cradle | 74.25 | 98.62 | | oven | 55.96 | 73.11 | | ball | 43.3 | 72.77 | | food | 56.8 | 68.85 | | step | 4.87 | 5.28 | | tank | 44.78 | 52.9 | | trade name | 5.59 | 5.61 | | microwave | 83.19 | 95.48 | | pot | 49.66 | 61.91 | | animal | 54.92 | 55.96 | | bicycle | 56.77 | 76.44 | | lake | 0.0 | 0.0 | | dishwasher | 60.54 | 76.82 | | screen | 57.54 | 89.38 | | blanket | 9.43 | 10.36 | | sculpture | 64.65 | 81.28 | | hood | 70.79 | 83.27 | | sconce | 46.72 | 62.96 | | vase | 38.51 | 52.19 | | traffic light | 26.83 | 38.42 | | tray | 5.78 | 6.98 | | ashcan | 47.41 | 58.67 | | fan | 55.85 | 77.5 | | pier | 37.68 | 39.57 | | crt screen | 0.64 | 0.64 | | plate | 43.2 | 84.6 | | monitor | 42.49 | 82.42 | | bulletin board | 54.99 | 74.42 | | shower | 0.0 | 0.0 | | radiator | 59.12 | 89.81 | | glass | 13.22 | 13.67 | | clock | 41.11 | 56.22 | | flag | 60.82 | 64.14 | +---------------------+-------+-------+ 2024-06-15 23:04:15,814 - mmseg - INFO - Summary: 2024-06-15 23:04:15,815 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 82.88 | 49.92 | 64.01 | +-------+-------+-------+ 2024-06-15 23:04:15,815 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-15 23:04:15,816 - mmseg - INFO - Iter(val) [250] aAcc: 0.8288, mIoU: 0.4992, mAcc: 0.6401, IoU.wall: 0.7699, IoU.building: 0.8132, IoU.sky: 0.9301, IoU.floor: 0.8160, IoU.tree: 0.7295, IoU.ceiling: 0.8305, IoU.road: 0.8243, IoU.bed : 0.8895, IoU.windowpane: 0.6294, IoU.grass: 0.6350, IoU.cabinet: 0.5998, IoU.sidewalk: 0.6430, IoU.person: 0.8073, IoU.earth: 0.3498, IoU.door: 0.5192, IoU.table: 0.5983, IoU.mountain: 0.6132, IoU.plant: 0.5582, IoU.curtain: 0.7494, IoU.chair: 0.5938, IoU.car: 0.8282, IoU.water: 0.4066, IoU.painting: 0.7156, IoU.sofa: 0.7204, IoU.shelf: 0.4254, IoU.house: 0.4663, IoU.sea: 0.7475, IoU.mirror: 0.7677, IoU.rug: 0.6809, IoU.field: 0.3174, IoU.armchair: 0.4921, IoU.seat: 0.6246, IoU.fence: 0.4752, IoU.desk: 0.4987, IoU.rock: 0.6110, IoU.wardrobe: 0.5652, IoU.lamp: 0.6026, IoU.bathtub: 0.8324, IoU.railing: 0.3844, IoU.cushion: 0.6248, IoU.base: 0.3126, IoU.box: 0.2704, IoU.column: 0.5039, IoU.signboard: 0.3200, IoU.chest of drawers: 0.4375, IoU.counter: 0.4684, IoU.sand: 0.4425, IoU.sink: 0.7152, IoU.skyscraper: 0.5075, IoU.fireplace: 0.6402, IoU.refrigerator: 0.6696, IoU.grandstand: 0.5959, IoU.path: 0.2568, IoU.stairs: 0.1832, IoU.runway: 0.6199, IoU.case: 0.6485, IoU.pool table: 0.8459, IoU.pillow: 0.6392, IoU.screen door: 0.6701, IoU.stairway: 0.3042, IoU.river: 0.1530, IoU.bridge: 0.3552, IoU.bookcase: 0.3551, IoU.blind: 0.3710, IoU.coffee table: 0.5632, IoU.toilet: 0.8545, IoU.flower: 0.3876, IoU.book: 0.4651, IoU.hill: 0.0378, IoU.bench: 0.5532, IoU.countertop: 0.5858, IoU.stove: 0.7757, IoU.palm: 0.4726, IoU.kitchen island: 0.3709, IoU.computer: 0.6343, IoU.swivel chair: 0.5227, IoU.boat: 0.6439, IoU.bar: 0.4930, IoU.arcade machine: 0.8871, IoU.hovel: 0.0770, IoU.bus: 0.8047, IoU.towel: 0.6519, IoU.light: 0.3949, IoU.truck: 0.2736, IoU.tower: 0.1976, IoU.chandelier: 0.6226, IoU.awning: 0.3445, IoU.streetlight: 0.2068, IoU.booth: 0.6276, IoU.television receiver: 0.7150, IoU.airplane: 0.7061, IoU.dirt track: 0.0203, IoU.apparel: 0.4163, IoU.pole: 0.1865, IoU.land: 0.0000, IoU.bannister: 0.0281, IoU.escalator: 0.5956, IoU.ottoman: 0.5255, IoU.bottle: 0.3943, IoU.buffet: 0.6259, IoU.poster: 0.3023, IoU.stage: 0.1451, IoU.van: 0.4670, IoU.ship: 0.0353, IoU.fountain: 0.3846, IoU.conveyer belt: 0.6211, IoU.canopy: 0.6187, IoU.washer: 0.8484, IoU.plaything: 0.1708, IoU.swimming pool: 0.5410, IoU.stool: 0.3854, IoU.barrel: 0.5129, IoU.basket: 0.4065, IoU.waterfall: 0.4663, IoU.tent: 0.8388, IoU.bag: 0.1264, IoU.minibike: 0.7073, IoU.cradle: 0.7425, IoU.oven: 0.5596, IoU.ball: 0.4330, IoU.food: 0.5680, IoU.step: 0.0487, IoU.tank: 0.4478, IoU.trade name: 0.0559, IoU.microwave: 0.8319, IoU.pot: 0.4966, IoU.animal: 0.5492, IoU.bicycle: 0.5677, IoU.lake: 0.0000, IoU.dishwasher: 0.6054, IoU.screen: 0.5754, IoU.blanket: 0.0943, IoU.sculpture: 0.6465, IoU.hood: 0.7079, IoU.sconce: 0.4672, IoU.vase: 0.3851, IoU.traffic light: 0.2683, IoU.tray: 0.0578, IoU.ashcan: 0.4741, IoU.fan: 0.5585, IoU.pier: 0.3768, IoU.crt screen: 0.0064, IoU.plate: 0.4320, IoU.monitor: 0.4249, IoU.bulletin board: 0.5499, IoU.shower: 0.0000, IoU.radiator: 0.5912, IoU.glass: 0.1322, IoU.clock: 0.4111, IoU.flag: 0.6082, Acc.wall: 0.8488, Acc.building: 0.9415, Acc.sky: 0.9755, Acc.floor: 0.8802, Acc.tree: 0.8244, Acc.ceiling: 0.9370, Acc.road: 0.8724, Acc.bed : 0.9577, Acc.windowpane: 0.7488, Acc.grass: 0.7802, Acc.cabinet: 0.6812, Acc.sidewalk: 0.8850, Acc.person: 0.9231, Acc.earth: 0.4717, Acc.door: 0.7888, Acc.table: 0.7447, Acc.mountain: 0.7499, Acc.plant: 0.6898, Acc.curtain: 0.8712, Acc.chair: 0.7533, Acc.car: 0.9210, Acc.water: 0.4467, Acc.painting: 0.8890, Acc.sofa: 0.9178, Acc.shelf: 0.5617, Acc.house: 0.6687, Acc.sea: 0.8894, Acc.mirror: 0.8733, Acc.rug: 0.8554, Acc.field: 0.6862, Acc.armchair: 0.5855, Acc.seat: 0.7840, Acc.fence: 0.7769, Acc.desk: 0.6362, Acc.rock: 0.7421, Acc.wardrobe: 0.8310, Acc.lamp: 0.6958, Acc.bathtub: 0.8836, Acc.railing: 0.5983, Acc.cushion: 0.7928, Acc.base: 0.5045, Acc.box: 0.3151, Acc.column: 0.6031, Acc.signboard: 0.3906, Acc.chest of drawers: 0.7131, Acc.counter: 0.5142, Acc.sand: 0.6071, Acc.sink: 0.7846, Acc.skyscraper: 0.5918, Acc.fireplace: 0.9521, Acc.refrigerator: 0.8617, Acc.grandstand: 0.6596, Acc.path: 0.3094, Acc.stairs: 0.1919, Acc.runway: 0.7796, Acc.case: 0.8007, Acc.pool table: 0.8614, Acc.pillow: 0.7641, Acc.screen door: 0.8011, Acc.stairway: 0.4439, Acc.river: 0.8355, Acc.bridge: 0.4927, Acc.bookcase: 0.5853, Acc.blind: 0.4167, Acc.coffee table: 0.8555, Acc.toilet: 0.9665, Acc.flower: 0.4725, Acc.book: 0.7300, Acc.hill: 0.0544, Acc.bench: 0.8284, Acc.countertop: 0.6864, Acc.stove: 0.9416, Acc.palm: 0.8017, Acc.kitchen island: 0.8412, Acc.computer: 0.7378, Acc.swivel chair: 0.7221, Acc.boat: 0.8760, Acc.bar: 0.6942, Acc.arcade machine: 0.9575, Acc.hovel: 0.0825, Acc.bus: 0.9788, Acc.towel: 0.7918, Acc.light: 0.4473, Acc.truck: 0.3216, Acc.tower: 0.3269, Acc.chandelier: 0.8499, Acc.awning: 0.4608, Acc.streetlight: 0.2779, Acc.booth: 0.8133, Acc.television receiver: 0.8510, Acc.airplane: 0.8053, Acc.dirt track: 0.0222, Acc.apparel: 0.5358, Acc.pole: 0.2397, Acc.land: 0.0000, Acc.bannister: 0.0315, Acc.escalator: 0.8928, Acc.ottoman: 0.7709, Acc.bottle: 0.6770, Acc.buffet: 0.7482, Acc.poster: 0.4423, Acc.stage: 0.2081, Acc.van: 0.6501, Acc.ship: 0.0353, Acc.fountain: 0.3897, Acc.conveyer belt: 0.9910, Acc.canopy: 0.6693, Acc.washer: 0.8929, Acc.plaything: 0.2284, Acc.swimming pool: 0.7807, Acc.stool: 0.6423, Acc.barrel: 0.6964, Acc.basket: 0.5382, Acc.waterfall: 0.5319, Acc.tent: 0.9936, Acc.bag: 0.1324, Acc.minibike: 0.8583, Acc.cradle: 0.9862, Acc.oven: 0.7311, Acc.ball: 0.7277, Acc.food: 0.6885, Acc.step: 0.0528, Acc.tank: 0.5290, Acc.trade name: 0.0561, Acc.microwave: 0.9548, Acc.pot: 0.6191, Acc.animal: 0.5596, Acc.bicycle: 0.7644, Acc.lake: 0.0000, Acc.dishwasher: 0.7682, Acc.screen: 0.8938, Acc.blanket: 0.1036, Acc.sculpture: 0.8128, Acc.hood: 0.8327, Acc.sconce: 0.6296, Acc.vase: 0.5219, Acc.traffic light: 0.3842, Acc.tray: 0.0698, Acc.ashcan: 0.5867, Acc.fan: 0.7750, Acc.pier: 0.3957, Acc.crt screen: 0.0064, Acc.plate: 0.8460, Acc.monitor: 0.8242, Acc.bulletin board: 0.7442, Acc.shower: 0.0000, Acc.radiator: 0.8981, Acc.glass: 0.1367, Acc.clock: 0.5622, Acc.flag: 0.6414 2024-06-15 23:05:36,787 - mmseg - INFO - Iter [5050/80000] lr: 3.035e-06, eta: 1 day, 12:13:06, time: 3.233, data_time: 1.627, memory: 65790, decode.loss_ce: 0.4736, decode.acc_seg: 81.2376, aux.loss_ce: 0.1903, aux.acc_seg: 81.3251, loss: 0.6639 2024-06-15 23:06:59,761 - mmseg - INFO - Iter [5100/80000] lr: 3.033e-06, eta: 1 day, 12:10:40, time: 1.659, data_time: 0.055, memory: 65790, decode.loss_ce: 0.4781, decode.acc_seg: 81.2648, aux.loss_ce: 0.1887, aux.acc_seg: 81.7784, loss: 0.6668 2024-06-15 23:08:20,323 - mmseg - INFO - Iter [5150/80000] lr: 3.031e-06, eta: 1 day, 12:07:40, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4348, decode.acc_seg: 83.4430, aux.loss_ce: 0.1747, aux.acc_seg: 83.5717, loss: 0.6095 2024-06-15 23:09:40,973 - mmseg - INFO - Iter [5200/80000] lr: 3.029e-06, eta: 1 day, 12:04:44, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4202, decode.acc_seg: 83.1667, aux.loss_ce: 0.1675, aux.acc_seg: 83.3700, loss: 0.5877 2024-06-15 23:11:01,520 - mmseg - INFO - Iter [5250/80000] lr: 3.027e-06, eta: 1 day, 12:01:47, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4558, decode.acc_seg: 82.1742, aux.loss_ce: 0.1808, aux.acc_seg: 82.7035, loss: 0.6366 2024-06-15 23:12:22,112 - mmseg - INFO - Iter [5300/80000] lr: 3.025e-06, eta: 1 day, 11:58:54, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4489, decode.acc_seg: 82.3544, aux.loss_ce: 0.1781, aux.acc_seg: 82.8530, loss: 0.6270 2024-06-15 23:13:42,668 - mmseg - INFO - Iter [5350/80000] lr: 3.023e-06, eta: 1 day, 11:56:01, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4649, decode.acc_seg: 82.0574, aux.loss_ce: 0.1847, aux.acc_seg: 82.3731, loss: 0.6496 2024-06-15 23:15:03,219 - mmseg - INFO - Iter [5400/80000] lr: 3.021e-06, eta: 1 day, 11:53:10, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4604, decode.acc_seg: 82.1045, aux.loss_ce: 0.1831, aux.acc_seg: 82.5412, loss: 0.6435 2024-06-15 23:16:23,749 - mmseg - INFO - Iter [5450/80000] lr: 3.019e-06, eta: 1 day, 11:50:21, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4732, decode.acc_seg: 81.3292, aux.loss_ce: 0.1860, aux.acc_seg: 81.8054, loss: 0.6593 2024-06-15 23:17:44,546 - mmseg - INFO - Iter [5500/80000] lr: 3.017e-06, eta: 1 day, 11:47:37, time: 1.616, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4465, decode.acc_seg: 82.2359, aux.loss_ce: 0.1771, aux.acc_seg: 82.5953, loss: 0.6236 2024-06-15 23:19:05,111 - mmseg - INFO - Iter [5550/80000] lr: 3.015e-06, eta: 1 day, 11:44:51, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4649, decode.acc_seg: 81.6739, aux.loss_ce: 0.1830, aux.acc_seg: 82.3936, loss: 0.6479 2024-06-15 23:20:25,628 - mmseg - INFO - Iter [5600/80000] lr: 3.013e-06, eta: 1 day, 11:42:06, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4434, decode.acc_seg: 82.3356, aux.loss_ce: 0.1752, aux.acc_seg: 82.5899, loss: 0.6186 2024-06-15 23:21:46,237 - mmseg - INFO - Iter [5650/80000] lr: 3.011e-06, eta: 1 day, 11:39:24, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4442, decode.acc_seg: 82.1967, aux.loss_ce: 0.1742, aux.acc_seg: 82.7958, loss: 0.6184 2024-06-15 23:23:06,772 - mmseg - INFO - Iter [5700/80000] lr: 3.009e-06, eta: 1 day, 11:36:42, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4501, decode.acc_seg: 81.4378, aux.loss_ce: 0.1777, aux.acc_seg: 82.1778, loss: 0.6278 2024-06-15 23:24:27,309 - mmseg - INFO - Iter [5750/80000] lr: 3.007e-06, eta: 1 day, 11:34:01, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4925, decode.acc_seg: 81.1067, aux.loss_ce: 0.1956, aux.acc_seg: 81.1331, loss: 0.6881 2024-06-15 23:25:48,167 - mmseg - INFO - Iter [5800/80000] lr: 3.005e-06, eta: 1 day, 11:31:27, time: 1.617, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4730, decode.acc_seg: 81.5518, aux.loss_ce: 0.1874, aux.acc_seg: 81.9134, loss: 0.6604 2024-06-15 23:27:08,762 - mmseg - INFO - Iter [5850/80000] lr: 3.003e-06, eta: 1 day, 11:28:50, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4405, decode.acc_seg: 82.7941, aux.loss_ce: 0.1744, aux.acc_seg: 83.2155, loss: 0.6149 2024-06-15 23:28:29,295 - mmseg - INFO - Iter [5900/80000] lr: 3.001e-06, eta: 1 day, 11:26:13, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4579, decode.acc_seg: 82.2177, aux.loss_ce: 0.1830, aux.acc_seg: 82.6147, loss: 0.6409 2024-06-15 23:29:49,787 - mmseg - INFO - Iter [5950/80000] lr: 2.999e-06, eta: 1 day, 11:23:38, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4732, decode.acc_seg: 81.1130, aux.loss_ce: 0.1874, aux.acc_seg: 81.2990, loss: 0.6606 2024-06-15 23:31:10,419 - mmseg - INFO - Saving checkpoint at 6000 iterations 2024-06-15 23:32:20,439 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-15 23:32:20,439 - mmseg - INFO - Iter [6000/80000] lr: 2.997e-06, eta: 1 day, 11:35:28, time: 3.013, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4871, decode.acc_seg: 81.2157, aux.loss_ce: 0.1919, aux.acc_seg: 81.7574, loss: 0.6790 2024-06-15 23:33:41,850 - mmseg - INFO - per class results: 2024-06-15 23:33:41,856 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 76.24 | 83.65 | | building | 81.26 | 90.64 | | sky | 93.7 | 96.77 | | floor | 79.9 | 91.61 | | tree | 74.18 | 86.04 | | ceiling | 83.0 | 93.6 | | road | 83.67 | 91.43 | | bed | 89.37 | 94.39 | | windowpane | 63.39 | 79.66 | | grass | 63.79 | 68.74 | | cabinet | 59.78 | 69.87 | | sidewalk | 67.41 | 83.03 | | person | 81.07 | 91.41 | | earth | 39.77 | 67.11 | | door | 50.4 | 61.46 | | table | 60.15 | 76.07 | | mountain | 56.25 | 64.03 | | plant | 54.24 | 68.3 | | curtain | 76.02 | 89.54 | | chair | 55.54 | 63.74 | | car | 82.73 | 91.92 | | water | 59.97 | 70.39 | | painting | 73.05 | 89.54 | | sofa | 76.99 | 86.82 | | shelf | 40.96 | 56.4 | | house | 52.7 | 84.37 | | sea | 64.68 | 92.17 | | mirror | 73.31 | 86.02 | | rug | 69.71 | 81.12 | | field | 33.02 | 55.07 | | armchair | 56.62 | 77.32 | | seat | 62.85 | 84.98 | | fence | 33.18 | 39.0 | | desk | 48.41 | 74.73 | | rock | 58.52 | 73.23 | | wardrobe | 50.46 | 84.98 | | lamp | 61.79 | 71.27 | | bathtub | 76.9 | 85.34 | | railing | 32.29 | 37.18 | | cushion | 63.39 | 76.91 | | base | 19.88 | 21.4 | | box | 33.18 | 44.1 | | column | 45.04 | 52.64 | | signboard | 35.76 | 54.45 | | chest of drawers | 38.95 | 79.38 | | counter | 36.44 | 40.77 | | sand | 46.31 | 87.33 | | sink | 71.5 | 79.48 | | skyscraper | 44.6 | 75.11 | | fireplace | 63.42 | 95.07 | | refrigerator | 69.95 | 93.52 | | grandstand | 40.49 | 86.12 | | path | 21.67 | 24.26 | | stairs | 14.52 | 15.88 | | runway | 69.58 | 95.81 | | case | 64.21 | 80.22 | | pool table | 91.29 | 95.07 | | pillow | 62.98 | 71.53 | | screen door | 69.97 | 96.72 | | stairway | 41.43 | 74.01 | | river | 17.33 | 18.92 | | bridge | 54.66 | 75.5 | | bookcase | 38.55 | 63.99 | | blind | 49.92 | 58.8 | | coffee table | 52.26 | 89.61 | | toilet | 85.52 | 91.12 | | flower | 37.11 | 40.23 | | book | 46.66 | 62.03 | | hill | 4.18 | 13.67 | | bench | 27.57 | 29.08 | | countertop | 59.81 | 85.87 | | stove | 81.4 | 91.51 | | palm | 48.73 | 74.59 | | kitchen island | 44.81 | 82.51 | | computer | 74.07 | 89.12 | | swivel chair | 49.36 | 66.83 | | boat | 66.19 | 83.5 | | bar | 61.81 | 74.46 | | arcade machine | 77.93 | 99.17 | | hovel | 38.3 | 45.44 | | bus | 91.62 | 94.89 | | towel | 57.64 | 68.49 | | light | 37.57 | 41.08 | | truck | 44.65 | 56.05 | | tower | 24.87 | 51.71 | | chandelier | 59.8 | 87.17 | | awning | 44.97 | 60.44 | | streetlight | 20.2 | 24.42 | | booth | 43.34 | 84.37 | | television receiver | 75.08 | 86.09 | | airplane | 77.52 | 85.98 | | dirt track | 13.04 | 14.85 | | apparel | 34.15 | 37.43 | | pole | 22.78 | 32.19 | | land | 8.95 | 13.8 | | bannister | 8.57 | 11.43 | | escalator | 61.19 | 83.51 | | ottoman | 50.01 | 68.96 | | bottle | 37.79 | 58.28 | | buffet | 52.9 | 85.01 | | poster | 28.79 | 36.13 | | stage | 13.38 | 57.3 | | van | 37.28 | 48.26 | | ship | 76.41 | 78.2 | | fountain | 39.43 | 40.25 | | conveyer belt | 71.07 | 97.63 | | canopy | 41.09 | 68.0 | | washer | 82.76 | 89.34 | | plaything | 26.39 | 46.51 | | swimming pool | 54.87 | 78.74 | | stool | 38.7 | 53.15 | | barrel | 50.45 | 64.73 | | basket | 39.14 | 50.73 | | waterfall | 62.2 | 95.07 | | tent | 71.95 | 99.5 | | bag | 22.02 | 26.4 | | minibike | 72.52 | 81.29 | | cradle | 82.28 | 95.41 | | oven | 63.87 | 75.92 | | ball | 52.65 | 71.26 | | food | 60.91 | 73.14 | | step | 0.19 | 0.2 | | tank | 55.84 | 67.68 | | trade name | 0.36 | 0.36 | | microwave | 87.36 | 93.45 | | pot | 51.99 | 59.88 | | animal | 66.13 | 68.38 | | bicycle | 59.09 | 79.19 | | lake | 40.24 | 73.69 | | dishwasher | 67.66 | 78.02 | | screen | 49.86 | 82.82 | | blanket | 17.53 | 19.38 | | sculpture | 63.22 | 84.03 | | hood | 73.9 | 79.07 | | sconce | 45.46 | 56.62 | | vase | 40.86 | 52.57 | | traffic light | 26.02 | 33.29 | | tray | 16.09 | 21.57 | | ashcan | 45.39 | 61.26 | | fan | 42.63 | 47.25 | | pier | 58.74 | 78.78 | | crt screen | 8.41 | 32.17 | | plate | 52.65 | 58.84 | | monitor | 1.25 | 1.39 | | bulletin board | 58.04 | 73.51 | | shower | 0.69 | 1.01 | | radiator | 63.9 | 86.5 | | glass | 10.97 | 11.27 | | clock | 42.47 | 49.64 | | flag | 63.12 | 70.8 | +---------------------+-------+-------+ 2024-06-15 23:33:41,856 - mmseg - INFO - Summary: 2024-06-15 23:33:41,856 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 82.95 | 51.49 | 66.03 | +-------+-------+-------+ 2024-06-15 23:33:41,857 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-15 23:33:41,858 - mmseg - INFO - Iter(val) [250] aAcc: 0.8295, mIoU: 0.5149, mAcc: 0.6603, IoU.wall: 0.7624, IoU.building: 0.8126, IoU.sky: 0.9370, IoU.floor: 0.7990, IoU.tree: 0.7418, IoU.ceiling: 0.8300, IoU.road: 0.8367, IoU.bed : 0.8937, IoU.windowpane: 0.6339, IoU.grass: 0.6379, IoU.cabinet: 0.5978, IoU.sidewalk: 0.6741, IoU.person: 0.8107, IoU.earth: 0.3977, IoU.door: 0.5040, IoU.table: 0.6015, IoU.mountain: 0.5625, IoU.plant: 0.5424, IoU.curtain: 0.7602, IoU.chair: 0.5554, IoU.car: 0.8273, IoU.water: 0.5997, IoU.painting: 0.7305, IoU.sofa: 0.7699, IoU.shelf: 0.4096, IoU.house: 0.5270, IoU.sea: 0.6468, IoU.mirror: 0.7331, IoU.rug: 0.6971, IoU.field: 0.3302, IoU.armchair: 0.5662, IoU.seat: 0.6285, IoU.fence: 0.3318, IoU.desk: 0.4841, IoU.rock: 0.5852, IoU.wardrobe: 0.5046, IoU.lamp: 0.6179, IoU.bathtub: 0.7690, IoU.railing: 0.3229, IoU.cushion: 0.6339, IoU.base: 0.1988, IoU.box: 0.3318, IoU.column: 0.4504, IoU.signboard: 0.3576, IoU.chest of drawers: 0.3895, IoU.counter: 0.3644, IoU.sand: 0.4631, IoU.sink: 0.7150, IoU.skyscraper: 0.4460, IoU.fireplace: 0.6342, IoU.refrigerator: 0.6995, IoU.grandstand: 0.4049, IoU.path: 0.2167, IoU.stairs: 0.1452, IoU.runway: 0.6958, IoU.case: 0.6421, IoU.pool table: 0.9129, IoU.pillow: 0.6298, IoU.screen door: 0.6997, IoU.stairway: 0.4143, IoU.river: 0.1733, IoU.bridge: 0.5466, IoU.bookcase: 0.3855, IoU.blind: 0.4992, IoU.coffee table: 0.5226, IoU.toilet: 0.8552, IoU.flower: 0.3711, IoU.book: 0.4666, IoU.hill: 0.0418, IoU.bench: 0.2757, IoU.countertop: 0.5981, IoU.stove: 0.8140, IoU.palm: 0.4873, IoU.kitchen island: 0.4481, IoU.computer: 0.7407, IoU.swivel chair: 0.4936, IoU.boat: 0.6619, IoU.bar: 0.6181, IoU.arcade machine: 0.7793, IoU.hovel: 0.3830, IoU.bus: 0.9162, IoU.towel: 0.5764, IoU.light: 0.3757, IoU.truck: 0.4465, IoU.tower: 0.2487, IoU.chandelier: 0.5980, IoU.awning: 0.4497, IoU.streetlight: 0.2020, IoU.booth: 0.4334, IoU.television receiver: 0.7508, IoU.airplane: 0.7752, IoU.dirt track: 0.1304, IoU.apparel: 0.3415, IoU.pole: 0.2278, IoU.land: 0.0895, IoU.bannister: 0.0857, IoU.escalator: 0.6119, IoU.ottoman: 0.5001, IoU.bottle: 0.3779, IoU.buffet: 0.5290, IoU.poster: 0.2879, IoU.stage: 0.1338, IoU.van: 0.3728, IoU.ship: 0.7641, IoU.fountain: 0.3943, IoU.conveyer belt: 0.7107, IoU.canopy: 0.4109, IoU.washer: 0.8276, IoU.plaything: 0.2639, IoU.swimming pool: 0.5487, IoU.stool: 0.3870, IoU.barrel: 0.5045, IoU.basket: 0.3914, IoU.waterfall: 0.6220, IoU.tent: 0.7195, IoU.bag: 0.2202, IoU.minibike: 0.7252, IoU.cradle: 0.8228, IoU.oven: 0.6387, IoU.ball: 0.5265, IoU.food: 0.6091, IoU.step: 0.0019, IoU.tank: 0.5584, IoU.trade name: 0.0036, IoU.microwave: 0.8736, IoU.pot: 0.5199, IoU.animal: 0.6613, IoU.bicycle: 0.5909, IoU.lake: 0.4024, IoU.dishwasher: 0.6766, IoU.screen: 0.4986, IoU.blanket: 0.1753, IoU.sculpture: 0.6322, IoU.hood: 0.7390, IoU.sconce: 0.4546, IoU.vase: 0.4086, IoU.traffic light: 0.2602, IoU.tray: 0.1609, IoU.ashcan: 0.4539, IoU.fan: 0.4263, IoU.pier: 0.5874, IoU.crt screen: 0.0841, IoU.plate: 0.5265, IoU.monitor: 0.0125, IoU.bulletin board: 0.5804, IoU.shower: 0.0069, IoU.radiator: 0.6390, IoU.glass: 0.1097, IoU.clock: 0.4247, IoU.flag: 0.6312, Acc.wall: 0.8365, Acc.building: 0.9064, Acc.sky: 0.9677, Acc.floor: 0.9161, Acc.tree: 0.8604, Acc.ceiling: 0.9360, Acc.road: 0.9143, Acc.bed : 0.9439, Acc.windowpane: 0.7966, Acc.grass: 0.6874, Acc.cabinet: 0.6987, Acc.sidewalk: 0.8303, Acc.person: 0.9141, Acc.earth: 0.6711, Acc.door: 0.6146, Acc.table: 0.7607, Acc.mountain: 0.6403, Acc.plant: 0.6830, Acc.curtain: 0.8954, Acc.chair: 0.6374, Acc.car: 0.9192, Acc.water: 0.7039, Acc.painting: 0.8954, Acc.sofa: 0.8682, Acc.shelf: 0.5640, Acc.house: 0.8437, Acc.sea: 0.9217, Acc.mirror: 0.8602, Acc.rug: 0.8112, Acc.field: 0.5507, Acc.armchair: 0.7732, Acc.seat: 0.8498, Acc.fence: 0.3900, Acc.desk: 0.7473, Acc.rock: 0.7323, Acc.wardrobe: 0.8498, Acc.lamp: 0.7127, Acc.bathtub: 0.8534, Acc.railing: 0.3718, Acc.cushion: 0.7691, Acc.base: 0.2140, Acc.box: 0.4410, Acc.column: 0.5264, Acc.signboard: 0.5445, Acc.chest of drawers: 0.7938, Acc.counter: 0.4077, Acc.sand: 0.8733, Acc.sink: 0.7948, Acc.skyscraper: 0.7511, Acc.fireplace: 0.9507, Acc.refrigerator: 0.9352, Acc.grandstand: 0.8612, Acc.path: 0.2426, Acc.stairs: 0.1588, Acc.runway: 0.9581, Acc.case: 0.8022, Acc.pool table: 0.9507, Acc.pillow: 0.7153, Acc.screen door: 0.9672, Acc.stairway: 0.7401, Acc.river: 0.1892, Acc.bridge: 0.7550, Acc.bookcase: 0.6399, Acc.blind: 0.5880, Acc.coffee table: 0.8961, Acc.toilet: 0.9112, Acc.flower: 0.4023, Acc.book: 0.6203, Acc.hill: 0.1367, Acc.bench: 0.2908, Acc.countertop: 0.8587, Acc.stove: 0.9151, Acc.palm: 0.7459, Acc.kitchen island: 0.8251, Acc.computer: 0.8912, Acc.swivel chair: 0.6683, Acc.boat: 0.8350, Acc.bar: 0.7446, Acc.arcade machine: 0.9917, Acc.hovel: 0.4544, Acc.bus: 0.9489, Acc.towel: 0.6849, Acc.light: 0.4108, Acc.truck: 0.5605, Acc.tower: 0.5171, Acc.chandelier: 0.8717, Acc.awning: 0.6044, Acc.streetlight: 0.2442, Acc.booth: 0.8437, Acc.television receiver: 0.8609, Acc.airplane: 0.8598, Acc.dirt track: 0.1485, Acc.apparel: 0.3743, Acc.pole: 0.3219, Acc.land: 0.1380, Acc.bannister: 0.1143, Acc.escalator: 0.8351, Acc.ottoman: 0.6896, Acc.bottle: 0.5828, Acc.buffet: 0.8501, Acc.poster: 0.3613, Acc.stage: 0.5730, Acc.van: 0.4826, Acc.ship: 0.7820, Acc.fountain: 0.4025, Acc.conveyer belt: 0.9763, Acc.canopy: 0.6800, Acc.washer: 0.8934, Acc.plaything: 0.4651, Acc.swimming pool: 0.7874, Acc.stool: 0.5315, Acc.barrel: 0.6473, Acc.basket: 0.5073, Acc.waterfall: 0.9507, Acc.tent: 0.9950, Acc.bag: 0.2640, Acc.minibike: 0.8129, Acc.cradle: 0.9541, Acc.oven: 0.7592, Acc.ball: 0.7126, Acc.food: 0.7314, Acc.step: 0.0020, Acc.tank: 0.6768, Acc.trade name: 0.0036, Acc.microwave: 0.9345, Acc.pot: 0.5988, Acc.animal: 0.6838, Acc.bicycle: 0.7919, Acc.lake: 0.7369, Acc.dishwasher: 0.7802, Acc.screen: 0.8282, Acc.blanket: 0.1938, Acc.sculpture: 0.8403, Acc.hood: 0.7907, Acc.sconce: 0.5662, Acc.vase: 0.5257, Acc.traffic light: 0.3329, Acc.tray: 0.2157, Acc.ashcan: 0.6126, Acc.fan: 0.4725, Acc.pier: 0.7878, Acc.crt screen: 0.3217, Acc.plate: 0.5884, Acc.monitor: 0.0139, Acc.bulletin board: 0.7351, Acc.shower: 0.0101, Acc.radiator: 0.8650, Acc.glass: 0.1127, Acc.clock: 0.4964, Acc.flag: 0.7080 2024-06-15 23:35:02,722 - mmseg - INFO - Iter [6050/80000] lr: 2.995e-06, eta: 1 day, 11:49:27, time: 3.246, data_time: 1.641, memory: 65790, decode.loss_ce: 0.4763, decode.acc_seg: 81.3670, aux.loss_ce: 0.1875, aux.acc_seg: 81.7619, loss: 0.6638 2024-06-15 23:36:23,473 - mmseg - INFO - Iter [6100/80000] lr: 2.993e-06, eta: 1 day, 11:46:42, time: 1.615, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4839, decode.acc_seg: 81.0559, aux.loss_ce: 0.1910, aux.acc_seg: 81.6389, loss: 0.6750 2024-06-15 23:37:44,010 - mmseg - INFO - Iter [6150/80000] lr: 2.991e-06, eta: 1 day, 11:43:55, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4517, decode.acc_seg: 81.9026, aux.loss_ce: 0.1787, aux.acc_seg: 82.4537, loss: 0.6304 2024-06-15 23:39:04,503 - mmseg - INFO - Iter [6200/80000] lr: 2.989e-06, eta: 1 day, 11:41:10, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4641, decode.acc_seg: 82.1939, aux.loss_ce: 0.1838, aux.acc_seg: 82.2902, loss: 0.6479 2024-06-15 23:40:25,040 - mmseg - INFO - Iter [6250/80000] lr: 2.987e-06, eta: 1 day, 11:38:26, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4341, decode.acc_seg: 83.2330, aux.loss_ce: 0.1720, aux.acc_seg: 83.4674, loss: 0.6060 2024-06-15 23:41:45,625 - mmseg - INFO - Iter [6300/80000] lr: 2.985e-06, eta: 1 day, 11:35:44, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4889, decode.acc_seg: 81.3566, aux.loss_ce: 0.1936, aux.acc_seg: 81.8223, loss: 0.6825 2024-06-15 23:43:08,612 - mmseg - INFO - Iter [6350/80000] lr: 2.983e-06, eta: 1 day, 11:33:31, time: 1.660, data_time: 0.054, memory: 65790, decode.loss_ce: 0.4470, decode.acc_seg: 82.3950, aux.loss_ce: 0.1759, aux.acc_seg: 82.9136, loss: 0.6229 2024-06-15 23:44:29,465 - mmseg - INFO - Iter [6400/80000] lr: 2.981e-06, eta: 1 day, 11:30:55, time: 1.617, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4238, decode.acc_seg: 82.9665, aux.loss_ce: 0.1696, aux.acc_seg: 82.8962, loss: 0.5935 2024-06-15 23:45:49,957 - mmseg - INFO - Iter [6450/80000] lr: 2.979e-06, eta: 1 day, 11:28:15, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4244, decode.acc_seg: 83.1867, aux.loss_ce: 0.1684, aux.acc_seg: 83.4577, loss: 0.5928 2024-06-15 23:47:10,538 - mmseg - INFO - Iter [6500/80000] lr: 2.977e-06, eta: 1 day, 11:25:38, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4157, decode.acc_seg: 83.0431, aux.loss_ce: 0.1657, aux.acc_seg: 83.3920, loss: 0.5814 2024-06-15 23:48:31,073 - mmseg - INFO - Iter [6550/80000] lr: 2.975e-06, eta: 1 day, 11:23:02, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4437, decode.acc_seg: 82.9491, aux.loss_ce: 0.1749, aux.acc_seg: 83.2332, loss: 0.6185 2024-06-15 23:49:51,627 - mmseg - INFO - Iter [6600/80000] lr: 2.973e-06, eta: 1 day, 11:20:26, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4350, decode.acc_seg: 81.9209, aux.loss_ce: 0.1716, aux.acc_seg: 82.2819, loss: 0.6066 2024-06-15 23:51:12,154 - mmseg - INFO - Iter [6650/80000] lr: 2.971e-06, eta: 1 day, 11:17:52, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4533, decode.acc_seg: 82.9266, aux.loss_ce: 0.1776, aux.acc_seg: 83.2604, loss: 0.6309 2024-06-15 23:52:32,927 - mmseg - INFO - Iter [6700/80000] lr: 2.968e-06, eta: 1 day, 11:15:21, time: 1.615, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4610, decode.acc_seg: 81.7478, aux.loss_ce: 0.1806, aux.acc_seg: 82.3345, loss: 0.6415 2024-06-15 23:53:53,708 - mmseg - INFO - Iter [6750/80000] lr: 2.966e-06, eta: 1 day, 11:12:52, time: 1.616, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4673, decode.acc_seg: 81.1584, aux.loss_ce: 0.1849, aux.acc_seg: 81.4744, loss: 0.6522 2024-06-15 23:55:14,405 - mmseg - INFO - Iter [6800/80000] lr: 2.964e-06, eta: 1 day, 11:10:22, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4290, decode.acc_seg: 83.0855, aux.loss_ce: 0.1693, aux.acc_seg: 83.4385, loss: 0.5983 2024-06-15 23:56:34,970 - mmseg - INFO - Iter [6850/80000] lr: 2.962e-06, eta: 1 day, 11:07:53, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4407, decode.acc_seg: 82.2832, aux.loss_ce: 0.1759, aux.acc_seg: 82.4269, loss: 0.6166 2024-06-15 23:57:55,526 - mmseg - INFO - Iter [6900/80000] lr: 2.960e-06, eta: 1 day, 11:05:24, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4329, decode.acc_seg: 82.5990, aux.loss_ce: 0.1708, aux.acc_seg: 83.0571, loss: 0.6037 2024-06-15 23:59:16,102 - mmseg - INFO - Iter [6950/80000] lr: 2.958e-06, eta: 1 day, 11:02:56, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4205, decode.acc_seg: 83.3505, aux.loss_ce: 0.1673, aux.acc_seg: 83.4740, loss: 0.5879 2024-06-16 00:00:36,647 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 00:00:36,647 - mmseg - INFO - Iter [7000/80000] lr: 2.956e-06, eta: 1 day, 11:00:29, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4072, decode.acc_seg: 84.1131, aux.loss_ce: 0.1614, aux.acc_seg: 84.1176, loss: 0.5686 2024-06-16 00:02:01,423 - mmseg - INFO - per class results: 2024-06-16 00:02:01,429 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 78.47 | 87.58 | | building | 82.64 | 92.2 | | sky | 93.81 | 96.9 | | floor | 83.0 | 91.89 | | tree | 75.64 | 88.11 | | ceiling | 84.13 | 90.8 | | road | 83.94 | 87.37 | | bed | 90.06 | 95.43 | | windowpane | 63.38 | 81.78 | | grass | 65.11 | 71.24 | | cabinet | 62.46 | 68.65 | | sidewalk | 67.23 | 83.62 | | person | 81.78 | 91.5 | | earth | 40.44 | 65.34 | | door | 52.54 | 68.96 | | table | 61.61 | 73.86 | | mountain | 61.9 | 78.79 | | plant | 55.19 | 64.27 | | curtain | 75.28 | 89.13 | | chair | 58.19 | 70.21 | | car | 83.66 | 92.23 | | water | 61.07 | 73.97 | | painting | 73.78 | 85.61 | | sofa | 75.63 | 91.11 | | shelf | 43.19 | 59.31 | | house | 46.1 | 59.41 | | sea | 64.47 | 85.7 | | mirror | 75.6 | 87.21 | | rug | 70.74 | 84.0 | | field | 29.28 | 47.55 | | armchair | 56.93 | 78.15 | | seat | 57.75 | 66.11 | | fence | 51.95 | 68.63 | | desk | 51.98 | 76.46 | | rock | 58.57 | 77.36 | | wardrobe | 55.74 | 82.18 | | lamp | 62.65 | 70.69 | | bathtub | 84.98 | 89.59 | | railing | 41.87 | 60.0 | | cushion | 64.8 | 74.84 | | base | 47.9 | 62.55 | | box | 37.93 | 52.31 | | column | 50.04 | 56.48 | | signboard | 34.75 | 40.89 | | chest of drawers | 51.3 | 70.96 | | counter | 49.78 | 58.82 | | sand | 37.05 | 50.54 | | sink | 72.02 | 78.5 | | skyscraper | 49.56 | 65.7 | | fireplace | 67.58 | 93.85 | | refrigerator | 72.15 | 89.77 | | grandstand | 48.53 | 85.41 | | path | 25.83 | 42.57 | | stairs | 37.62 | 47.21 | | runway | 69.47 | 99.08 | | case | 63.1 | 89.81 | | pool table | 82.09 | 84.26 | | pillow | 65.51 | 76.72 | | screen door | 68.17 | 88.1 | | stairway | 53.75 | 60.82 | | river | 18.28 | 37.77 | | bridge | 53.18 | 61.2 | | bookcase | 31.04 | 58.46 | | blind | 45.2 | 54.81 | | coffee table | 56.14 | 86.66 | | toilet | 87.6 | 91.81 | | flower | 41.87 | 54.32 | | book | 48.46 | 77.4 | | hill | 5.29 | 9.02 | | bench | 63.12 | 77.02 | | countertop | 59.37 | 69.94 | | stove | 76.58 | 82.39 | | palm | 54.3 | 82.12 | | kitchen island | 34.57 | 54.11 | | computer | 76.59 | 88.88 | | swivel chair | 51.76 | 80.75 | | boat | 73.01 | 86.55 | | bar | 63.33 | 91.04 | | arcade machine | 89.05 | 97.98 | | hovel | 34.11 | 37.88 | | bus | 88.45 | 97.41 | | towel | 66.59 | 76.19 | | light | 46.07 | 64.97 | | truck | 45.73 | 62.39 | | tower | 26.34 | 59.92 | | chandelier | 61.93 | 83.25 | | awning | 34.9 | 41.49 | | streetlight | 20.98 | 26.21 | | booth | 52.65 | 80.87 | | television receiver | 72.01 | 82.36 | | airplane | 80.34 | 90.95 | | dirt track | 0.77 | 2.22 | | apparel | 34.76 | 40.71 | | pole | 17.07 | 19.97 | | land | 9.29 | 13.1 | | bannister | 10.44 | 14.54 | | escalator | 63.92 | 85.85 | | ottoman | 51.83 | 72.65 | | bottle | 39.91 | 59.41 | | buffet | 57.3 | 85.1 | | poster | 30.93 | 37.84 | | stage | 28.33 | 38.7 | | van | 50.19 | 66.59 | | ship | 62.4 | 65.7 | | fountain | 46.47 | 48.98 | | conveyer belt | 83.6 | 96.34 | | canopy | 43.69 | 71.6 | | washer | 78.61 | 83.57 | | plaything | 21.76 | 24.8 | | swimming pool | 57.75 | 85.37 | | stool | 42.15 | 58.91 | | barrel | 58.25 | 61.19 | | basket | 41.56 | 58.21 | | waterfall | 66.46 | 89.96 | | tent | 89.2 | 99.24 | | bag | 19.97 | 21.87 | | minibike | 70.97 | 86.83 | | cradle | 78.88 | 96.7 | | oven | 47.24 | 66.3 | | ball | 50.22 | 54.73 | | food | 55.84 | 65.05 | | step | 4.97 | 5.15 | | tank | 57.93 | 66.57 | | trade name | 21.64 | 23.18 | | microwave | 83.88 | 95.49 | | pot | 52.99 | 64.3 | | animal | 61.03 | 63.0 | | bicycle | 58.62 | 76.36 | | lake | 49.08 | 49.08 | | dishwasher | 63.43 | 82.57 | | screen | 53.69 | 92.91 | | blanket | 10.66 | 11.51 | | sculpture | 72.5 | 77.04 | | hood | 70.99 | 88.82 | | sconce | 49.33 | 60.11 | | vase | 40.73 | 56.71 | | traffic light | 28.13 | 60.35 | | tray | 15.29 | 20.53 | | ashcan | 43.94 | 58.14 | | fan | 58.45 | 73.61 | | pier | 38.77 | 44.08 | | crt screen | 2.74 | 5.62 | | plate | 58.04 | 71.28 | | monitor | 21.51 | 25.79 | | bulletin board | 56.53 | 75.27 | | shower | 0.0 | 0.0 | | radiator | 61.58 | 88.77 | | glass | 15.63 | 16.55 | | clock | 42.7 | 45.67 | | flag | 65.49 | 72.45 | +---------------------+-------+-------+ 2024-06-16 00:02:01,429 - mmseg - INFO - Summary: 2024-06-16 00:02:01,429 - mmseg - INFO - +-------+------+-------+ | aAcc | mIoU | mAcc | +-------+------+-------+ | 84.16 | 53.6 | 66.87 | +-------+------+-------+ 2024-06-16 00:02:01,430 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 00:02:01,430 - mmseg - INFO - Iter(val) [250] aAcc: 0.8416, mIoU: 0.5360, mAcc: 0.6687, IoU.wall: 0.7847, IoU.building: 0.8264, IoU.sky: 0.9381, IoU.floor: 0.8300, IoU.tree: 0.7564, IoU.ceiling: 0.8413, IoU.road: 0.8394, IoU.bed : 0.9006, IoU.windowpane: 0.6338, IoU.grass: 0.6511, IoU.cabinet: 0.6246, IoU.sidewalk: 0.6723, IoU.person: 0.8178, IoU.earth: 0.4044, IoU.door: 0.5254, IoU.table: 0.6161, IoU.mountain: 0.6190, IoU.plant: 0.5519, IoU.curtain: 0.7528, IoU.chair: 0.5819, IoU.car: 0.8366, IoU.water: 0.6107, IoU.painting: 0.7378, IoU.sofa: 0.7563, IoU.shelf: 0.4319, IoU.house: 0.4610, IoU.sea: 0.6447, IoU.mirror: 0.7560, IoU.rug: 0.7074, IoU.field: 0.2928, IoU.armchair: 0.5693, IoU.seat: 0.5775, IoU.fence: 0.5195, IoU.desk: 0.5198, IoU.rock: 0.5857, IoU.wardrobe: 0.5574, IoU.lamp: 0.6265, IoU.bathtub: 0.8498, IoU.railing: 0.4187, IoU.cushion: 0.6480, IoU.base: 0.4790, IoU.box: 0.3793, IoU.column: 0.5004, IoU.signboard: 0.3475, IoU.chest of drawers: 0.5130, IoU.counter: 0.4978, IoU.sand: 0.3705, IoU.sink: 0.7202, IoU.skyscraper: 0.4956, IoU.fireplace: 0.6758, IoU.refrigerator: 0.7215, IoU.grandstand: 0.4853, IoU.path: 0.2583, IoU.stairs: 0.3762, IoU.runway: 0.6947, IoU.case: 0.6310, IoU.pool table: 0.8209, IoU.pillow: 0.6551, IoU.screen door: 0.6817, IoU.stairway: 0.5375, IoU.river: 0.1828, IoU.bridge: 0.5318, IoU.bookcase: 0.3104, IoU.blind: 0.4520, IoU.coffee table: 0.5614, IoU.toilet: 0.8760, IoU.flower: 0.4187, IoU.book: 0.4846, IoU.hill: 0.0529, IoU.bench: 0.6312, IoU.countertop: 0.5937, IoU.stove: 0.7658, IoU.palm: 0.5430, IoU.kitchen island: 0.3457, IoU.computer: 0.7659, IoU.swivel chair: 0.5176, IoU.boat: 0.7301, IoU.bar: 0.6333, IoU.arcade machine: 0.8905, IoU.hovel: 0.3411, IoU.bus: 0.8845, IoU.towel: 0.6659, IoU.light: 0.4607, IoU.truck: 0.4573, IoU.tower: 0.2634, IoU.chandelier: 0.6193, IoU.awning: 0.3490, IoU.streetlight: 0.2098, IoU.booth: 0.5265, IoU.television receiver: 0.7201, IoU.airplane: 0.8034, IoU.dirt track: 0.0077, IoU.apparel: 0.3476, IoU.pole: 0.1707, IoU.land: 0.0929, IoU.bannister: 0.1044, IoU.escalator: 0.6392, IoU.ottoman: 0.5183, IoU.bottle: 0.3991, IoU.buffet: 0.5730, IoU.poster: 0.3093, IoU.stage: 0.2833, IoU.van: 0.5019, IoU.ship: 0.6240, IoU.fountain: 0.4647, IoU.conveyer belt: 0.8360, IoU.canopy: 0.4369, IoU.washer: 0.7861, IoU.plaything: 0.2176, IoU.swimming pool: 0.5775, IoU.stool: 0.4215, IoU.barrel: 0.5825, IoU.basket: 0.4156, IoU.waterfall: 0.6646, IoU.tent: 0.8920, IoU.bag: 0.1997, IoU.minibike: 0.7097, IoU.cradle: 0.7888, IoU.oven: 0.4724, IoU.ball: 0.5022, IoU.food: 0.5584, IoU.step: 0.0497, IoU.tank: 0.5793, IoU.trade name: 0.2164, IoU.microwave: 0.8388, IoU.pot: 0.5299, IoU.animal: 0.6103, IoU.bicycle: 0.5862, IoU.lake: 0.4908, IoU.dishwasher: 0.6343, IoU.screen: 0.5369, IoU.blanket: 0.1066, IoU.sculpture: 0.7250, IoU.hood: 0.7099, IoU.sconce: 0.4933, IoU.vase: 0.4073, IoU.traffic light: 0.2813, IoU.tray: 0.1529, IoU.ashcan: 0.4394, IoU.fan: 0.5845, IoU.pier: 0.3877, IoU.crt screen: 0.0274, IoU.plate: 0.5804, IoU.monitor: 0.2151, IoU.bulletin board: 0.5653, IoU.shower: 0.0000, IoU.radiator: 0.6158, IoU.glass: 0.1563, IoU.clock: 0.4270, IoU.flag: 0.6549, Acc.wall: 0.8758, Acc.building: 0.9220, Acc.sky: 0.9690, Acc.floor: 0.9189, Acc.tree: 0.8811, Acc.ceiling: 0.9080, Acc.road: 0.8737, Acc.bed : 0.9543, Acc.windowpane: 0.8178, Acc.grass: 0.7124, Acc.cabinet: 0.6865, Acc.sidewalk: 0.8362, Acc.person: 0.9150, Acc.earth: 0.6534, Acc.door: 0.6896, Acc.table: 0.7386, Acc.mountain: 0.7879, Acc.plant: 0.6427, Acc.curtain: 0.8913, Acc.chair: 0.7021, Acc.car: 0.9223, Acc.water: 0.7397, Acc.painting: 0.8561, Acc.sofa: 0.9111, Acc.shelf: 0.5931, Acc.house: 0.5941, Acc.sea: 0.8570, Acc.mirror: 0.8721, Acc.rug: 0.8400, Acc.field: 0.4755, Acc.armchair: 0.7815, Acc.seat: 0.6611, Acc.fence: 0.6863, Acc.desk: 0.7646, Acc.rock: 0.7736, Acc.wardrobe: 0.8218, Acc.lamp: 0.7069, Acc.bathtub: 0.8959, Acc.railing: 0.6000, Acc.cushion: 0.7484, Acc.base: 0.6255, Acc.box: 0.5231, Acc.column: 0.5648, Acc.signboard: 0.4089, Acc.chest of drawers: 0.7096, Acc.counter: 0.5882, Acc.sand: 0.5054, Acc.sink: 0.7850, Acc.skyscraper: 0.6570, Acc.fireplace: 0.9385, Acc.refrigerator: 0.8977, Acc.grandstand: 0.8541, Acc.path: 0.4257, Acc.stairs: 0.4721, Acc.runway: 0.9908, Acc.case: 0.8981, Acc.pool table: 0.8426, Acc.pillow: 0.7672, Acc.screen door: 0.8810, Acc.stairway: 0.6082, Acc.river: 0.3777, Acc.bridge: 0.6120, Acc.bookcase: 0.5846, Acc.blind: 0.5481, Acc.coffee table: 0.8666, Acc.toilet: 0.9181, Acc.flower: 0.5432, Acc.book: 0.7740, Acc.hill: 0.0902, Acc.bench: 0.7702, Acc.countertop: 0.6994, Acc.stove: 0.8239, Acc.palm: 0.8212, Acc.kitchen island: 0.5411, Acc.computer: 0.8888, Acc.swivel chair: 0.8075, Acc.boat: 0.8655, Acc.bar: 0.9104, Acc.arcade machine: 0.9798, Acc.hovel: 0.3788, Acc.bus: 0.9741, Acc.towel: 0.7619, Acc.light: 0.6497, Acc.truck: 0.6239, Acc.tower: 0.5992, Acc.chandelier: 0.8325, Acc.awning: 0.4149, Acc.streetlight: 0.2621, Acc.booth: 0.8087, Acc.television receiver: 0.8236, Acc.airplane: 0.9095, Acc.dirt track: 0.0222, Acc.apparel: 0.4071, Acc.pole: 0.1997, Acc.land: 0.1310, Acc.bannister: 0.1454, Acc.escalator: 0.8585, Acc.ottoman: 0.7265, Acc.bottle: 0.5941, Acc.buffet: 0.8510, Acc.poster: 0.3784, Acc.stage: 0.3870, Acc.van: 0.6659, Acc.ship: 0.6570, Acc.fountain: 0.4898, Acc.conveyer belt: 0.9634, Acc.canopy: 0.7160, Acc.washer: 0.8357, Acc.plaything: 0.2480, Acc.swimming pool: 0.8537, Acc.stool: 0.5891, Acc.barrel: 0.6119, Acc.basket: 0.5821, Acc.waterfall: 0.8996, Acc.tent: 0.9924, Acc.bag: 0.2187, Acc.minibike: 0.8683, Acc.cradle: 0.9670, Acc.oven: 0.6630, Acc.ball: 0.5473, Acc.food: 0.6505, Acc.step: 0.0515, Acc.tank: 0.6657, Acc.trade name: 0.2318, Acc.microwave: 0.9549, Acc.pot: 0.6430, Acc.animal: 0.6300, Acc.bicycle: 0.7636, Acc.lake: 0.4908, Acc.dishwasher: 0.8257, Acc.screen: 0.9291, Acc.blanket: 0.1151, Acc.sculpture: 0.7704, Acc.hood: 0.8882, Acc.sconce: 0.6011, Acc.vase: 0.5671, Acc.traffic light: 0.6035, Acc.tray: 0.2053, Acc.ashcan: 0.5814, Acc.fan: 0.7361, Acc.pier: 0.4408, Acc.crt screen: 0.0562, Acc.plate: 0.7128, Acc.monitor: 0.2579, Acc.bulletin board: 0.7527, Acc.shower: 0.0000, Acc.radiator: 0.8877, Acc.glass: 0.1655, Acc.clock: 0.4567, Acc.flag: 0.7245 2024-06-16 00:03:22,399 - mmseg - INFO - Iter [7050/80000] lr: 2.954e-06, eta: 1 day, 11:12:45, time: 3.315, data_time: 1.709, memory: 65790, decode.loss_ce: 0.4326, decode.acc_seg: 82.8170, aux.loss_ce: 0.1718, aux.acc_seg: 83.0606, loss: 0.6044 2024-06-16 00:04:42,947 - mmseg - INFO - Iter [7100/80000] lr: 2.952e-06, eta: 1 day, 11:10:13, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4281, decode.acc_seg: 82.7698, aux.loss_ce: 0.1689, aux.acc_seg: 83.1338, loss: 0.5969 2024-06-16 00:06:03,535 - mmseg - INFO - Iter [7150/80000] lr: 2.950e-06, eta: 1 day, 11:07:42, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4665, decode.acc_seg: 81.7740, aux.loss_ce: 0.1860, aux.acc_seg: 82.0906, loss: 0.6526 2024-06-16 00:07:24,123 - mmseg - INFO - Iter [7200/80000] lr: 2.948e-06, eta: 1 day, 11:05:13, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4258, decode.acc_seg: 82.8597, aux.loss_ce: 0.1695, aux.acc_seg: 83.0486, loss: 0.5953 2024-06-16 00:08:44,671 - mmseg - INFO - Iter [7250/80000] lr: 2.946e-06, eta: 1 day, 11:02:44, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4340, decode.acc_seg: 83.1550, aux.loss_ce: 0.1711, aux.acc_seg: 83.4440, loss: 0.6051 2024-06-16 00:10:05,378 - mmseg - INFO - Iter [7300/80000] lr: 2.944e-06, eta: 1 day, 11:00:17, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4522, decode.acc_seg: 82.2585, aux.loss_ce: 0.1768, aux.acc_seg: 82.7769, loss: 0.6290 2024-06-16 00:11:25,999 - mmseg - INFO - Iter [7350/80000] lr: 2.942e-06, eta: 1 day, 10:57:51, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4254, decode.acc_seg: 82.9201, aux.loss_ce: 0.1686, aux.acc_seg: 83.3110, loss: 0.5940 2024-06-16 00:12:46,602 - mmseg - INFO - Iter [7400/80000] lr: 2.940e-06, eta: 1 day, 10:55:25, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4169, decode.acc_seg: 83.4468, aux.loss_ce: 0.1653, aux.acc_seg: 83.7337, loss: 0.5822 2024-06-16 00:14:07,206 - mmseg - INFO - Iter [7450/80000] lr: 2.938e-06, eta: 1 day, 10:53:00, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4425, decode.acc_seg: 82.2052, aux.loss_ce: 0.1764, aux.acc_seg: 82.4751, loss: 0.6189 2024-06-16 00:15:27,750 - mmseg - INFO - Iter [7500/80000] lr: 2.936e-06, eta: 1 day, 10:50:35, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4188, decode.acc_seg: 83.4304, aux.loss_ce: 0.1652, aux.acc_seg: 83.9019, loss: 0.5840 2024-06-16 00:16:48,318 - mmseg - INFO - Iter [7550/80000] lr: 2.934e-06, eta: 1 day, 10:48:12, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4402, decode.acc_seg: 82.6986, aux.loss_ce: 0.1740, aux.acc_seg: 82.8793, loss: 0.6143 2024-06-16 00:18:11,248 - mmseg - INFO - Iter [7600/80000] lr: 2.932e-06, eta: 1 day, 10:46:12, time: 1.659, data_time: 0.048, memory: 65790, decode.loss_ce: 0.4378, decode.acc_seg: 83.0003, aux.loss_ce: 0.1726, aux.acc_seg: 83.3326, loss: 0.6103 2024-06-16 00:19:32,054 - mmseg - INFO - Iter [7650/80000] lr: 2.930e-06, eta: 1 day, 10:43:52, time: 1.616, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3980, decode.acc_seg: 84.5090, aux.loss_ce: 0.1581, aux.acc_seg: 84.7941, loss: 0.5561 2024-06-16 00:20:52,633 - mmseg - INFO - Iter [7700/80000] lr: 2.928e-06, eta: 1 day, 10:41:31, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4143, decode.acc_seg: 83.8775, aux.loss_ce: 0.1651, aux.acc_seg: 84.1501, loss: 0.5794 2024-06-16 00:22:13,218 - mmseg - INFO - Iter [7750/80000] lr: 2.926e-06, eta: 1 day, 10:39:10, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4146, decode.acc_seg: 82.8163, aux.loss_ce: 0.1646, aux.acc_seg: 83.0232, loss: 0.5791 2024-06-16 00:23:33,811 - mmseg - INFO - Iter [7800/80000] lr: 2.924e-06, eta: 1 day, 10:36:51, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3931, decode.acc_seg: 84.4570, aux.loss_ce: 0.1579, aux.acc_seg: 84.4531, loss: 0.5510 2024-06-16 00:24:54,391 - mmseg - INFO - Iter [7850/80000] lr: 2.922e-06, eta: 1 day, 10:34:32, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3956, decode.acc_seg: 84.3798, aux.loss_ce: 0.1566, aux.acc_seg: 84.5451, loss: 0.5522 2024-06-16 00:26:15,120 - mmseg - INFO - Iter [7900/80000] lr: 2.920e-06, eta: 1 day, 10:32:15, time: 1.615, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3827, decode.acc_seg: 84.1822, aux.loss_ce: 0.1512, aux.acc_seg: 84.7471, loss: 0.5339 2024-06-16 00:27:36,030 - mmseg - INFO - Iter [7950/80000] lr: 2.918e-06, eta: 1 day, 10:30:01, time: 1.618, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4132, decode.acc_seg: 83.8178, aux.loss_ce: 0.1646, aux.acc_seg: 83.9385, loss: 0.5778 2024-06-16 00:28:56,568 - mmseg - INFO - Saving checkpoint at 8000 iterations 2024-06-16 00:30:09,877 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 00:30:09,878 - mmseg - INFO - Iter [8000/80000] lr: 2.916e-06, eta: 1 day, 10:38:44, time: 3.077, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4023, decode.acc_seg: 84.0077, aux.loss_ce: 0.1594, aux.acc_seg: 84.5090, loss: 0.5617 2024-06-16 00:31:31,040 - mmseg - INFO - per class results: 2024-06-16 00:31:31,046 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 79.08 | 87.05 | | building | 83.63 | 94.14 | | sky | 93.79 | 97.07 | | floor | 82.67 | 88.62 | | tree | 75.52 | 85.54 | | ceiling | 84.26 | 92.46 | | road | 85.13 | 90.26 | | bed | 89.14 | 97.35 | | windowpane | 63.45 | 77.25 | | grass | 62.86 | 86.25 | | cabinet | 63.79 | 73.71 | | sidewalk | 68.01 | 85.41 | | person | 81.28 | 90.46 | | earth | 38.7 | 51.85 | | door | 55.23 | 65.01 | | table | 63.52 | 76.05 | | mountain | 59.8 | 77.23 | | plant | 53.84 | 61.2 | | curtain | 75.56 | 90.36 | | chair | 62.86 | 76.36 | | car | 84.48 | 92.08 | | water | 60.1 | 73.21 | | painting | 72.23 | 88.25 | | sofa | 73.86 | 89.03 | | shelf | 41.05 | 54.98 | | house | 52.2 | 64.41 | | sea | 63.87 | 91.64 | | mirror | 75.13 | 90.95 | | rug | 70.39 | 87.25 | | field | 26.32 | 40.99 | | armchair | 53.97 | 63.85 | | seat | 69.58 | 88.36 | | fence | 49.05 | 62.02 | | desk | 53.52 | 66.95 | | rock | 61.45 | 76.61 | | wardrobe | 55.29 | 79.16 | | lamp | 63.83 | 79.56 | | bathtub | 82.88 | 86.48 | | railing | 39.65 | 60.85 | | cushion | 64.1 | 84.07 | | base | 38.16 | 71.59 | | box | 35.03 | 43.31 | | column | 50.56 | 56.68 | | signboard | 34.22 | 40.85 | | chest of drawers | 43.23 | 74.76 | | counter | 47.11 | 55.46 | | sand | 53.35 | 88.16 | | sink | 73.81 | 78.58 | | skyscraper | 50.66 | 63.99 | | fireplace | 63.48 | 97.81 | | refrigerator | 75.64 | 89.65 | | grandstand | 41.88 | 89.34 | | path | 27.71 | 34.13 | | stairs | 16.83 | 18.68 | | runway | 67.26 | 86.9 | | case | 72.17 | 86.0 | | pool table | 91.6 | 98.05 | | pillow | 49.82 | 52.28 | | screen door | 82.08 | 87.28 | | stairway | 31.42 | 48.87 | | river | 26.76 | 38.01 | | bridge | 41.73 | 68.08 | | bookcase | 31.84 | 64.13 | | blind | 39.83 | 47.07 | | coffee table | 52.92 | 91.09 | | toilet | 87.66 | 90.25 | | flower | 39.21 | 61.81 | | book | 46.7 | 64.77 | | hill | 5.38 | 13.05 | | bench | 58.48 | 78.84 | | countertop | 63.21 | 78.5 | | stove | 82.19 | 93.49 | | palm | 51.14 | 83.99 | | kitchen island | 40.91 | 60.73 | | computer | 77.51 | 89.98 | | swivel chair | 55.12 | 73.09 | | boat | 70.03 | 85.87 | | bar | 54.99 | 88.9 | | arcade machine | 83.47 | 91.34 | | hovel | 20.58 | 23.31 | | bus | 91.29 | 96.34 | | towel | 66.92 | 81.65 | | light | 47.44 | 66.16 | | truck | 45.97 | 62.12 | | tower | 24.6 | 41.96 | | chandelier | 65.43 | 85.35 | | awning | 44.34 | 63.62 | | streetlight | 24.41 | 33.1 | | booth | 43.5 | 76.22 | | television receiver | 77.3 | 91.53 | | airplane | 50.18 | 51.9 | | dirt track | 0.0 | 0.0 | | apparel | 43.99 | 69.53 | | pole | 18.93 | 24.16 | | land | 0.13 | 0.15 | | bannister | 12.95 | 20.48 | | escalator | 63.05 | 84.08 | | ottoman | 48.94 | 75.39 | | bottle | 26.51 | 34.97 | | buffet | 53.29 | 85.75 | | poster | 32.07 | 45.78 | | stage | 24.82 | 48.66 | | van | 49.43 | 64.35 | | ship | 30.78 | 32.26 | | fountain | 37.11 | 39.37 | | conveyer belt | 80.33 | 95.68 | | canopy | 43.14 | 62.01 | | washer | 84.64 | 91.7 | | plaything | 23.53 | 33.52 | | swimming pool | 52.47 | 76.39 | | stool | 37.52 | 66.95 | | barrel | 56.84 | 64.35 | | basket | 40.07 | 48.05 | | waterfall | 58.89 | 81.95 | | tent | 79.38 | 99.28 | | bag | 18.6 | 19.75 | | minibike | 70.43 | 85.73 | | cradle | 83.95 | 97.62 | | oven | 56.27 | 67.06 | | ball | 55.49 | 61.78 | | food | 56.29 | 61.5 | | step | 13.59 | 16.52 | | tank | 56.56 | 71.9 | | trade name | 6.03 | 6.12 | | microwave | 85.59 | 95.25 | | pot | 54.97 | 67.01 | | animal | 71.23 | 74.21 | | bicycle | 60.04 | 74.43 | | lake | 50.21 | 56.82 | | dishwasher | 65.49 | 83.78 | | screen | 56.26 | 80.61 | | blanket | 25.64 | 30.79 | | sculpture | 69.28 | 83.16 | | hood | 71.05 | 86.83 | | sconce | 50.1 | 63.19 | | vase | 40.5 | 64.42 | | traffic light | 30.57 | 54.0 | | tray | 18.65 | 24.53 | | ashcan | 47.86 | 59.73 | | fan | 58.63 | 82.97 | | pier | 56.29 | 66.46 | | crt screen | 5.23 | 10.48 | | plate | 58.0 | 76.14 | | monitor | 30.29 | 37.45 | | bulletin board | 54.8 | 74.54 | | shower | 0.0 | 0.0 | | radiator | 64.05 | 81.66 | | glass | 13.79 | 14.27 | | clock | 42.78 | 46.95 | | flag | 66.61 | 79.18 | +---------------------+-------+-------+ 2024-06-16 00:31:31,046 - mmseg - INFO - Summary: 2024-06-16 00:31:31,047 - mmseg - INFO - +-------+-------+------+ | aAcc | mIoU | mAcc | +-------+-------+------+ | 84.27 | 53.04 | 67.1 | +-------+-------+------+ 2024-06-16 00:31:31,047 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 00:31:31,048 - mmseg - INFO - Iter(val) [250] aAcc: 0.8427, mIoU: 0.5304, mAcc: 0.6710, IoU.wall: 0.7908, IoU.building: 0.8363, IoU.sky: 0.9379, IoU.floor: 0.8267, IoU.tree: 0.7552, IoU.ceiling: 0.8426, IoU.road: 0.8513, IoU.bed : 0.8914, IoU.windowpane: 0.6345, IoU.grass: 0.6286, IoU.cabinet: 0.6379, IoU.sidewalk: 0.6801, IoU.person: 0.8128, IoU.earth: 0.3870, IoU.door: 0.5523, IoU.table: 0.6352, IoU.mountain: 0.5980, IoU.plant: 0.5384, IoU.curtain: 0.7556, IoU.chair: 0.6286, IoU.car: 0.8448, IoU.water: 0.6010, IoU.painting: 0.7223, IoU.sofa: 0.7386, IoU.shelf: 0.4105, IoU.house: 0.5220, IoU.sea: 0.6387, IoU.mirror: 0.7513, IoU.rug: 0.7039, IoU.field: 0.2632, IoU.armchair: 0.5397, IoU.seat: 0.6958, IoU.fence: 0.4905, IoU.desk: 0.5352, IoU.rock: 0.6145, IoU.wardrobe: 0.5529, IoU.lamp: 0.6383, IoU.bathtub: 0.8288, IoU.railing: 0.3965, IoU.cushion: 0.6410, IoU.base: 0.3816, IoU.box: 0.3503, IoU.column: 0.5056, IoU.signboard: 0.3422, IoU.chest of drawers: 0.4323, IoU.counter: 0.4711, IoU.sand: 0.5335, IoU.sink: 0.7381, IoU.skyscraper: 0.5066, IoU.fireplace: 0.6348, IoU.refrigerator: 0.7564, IoU.grandstand: 0.4188, IoU.path: 0.2771, IoU.stairs: 0.1683, IoU.runway: 0.6726, IoU.case: 0.7217, IoU.pool table: 0.9160, IoU.pillow: 0.4982, IoU.screen door: 0.8208, IoU.stairway: 0.3142, IoU.river: 0.2676, IoU.bridge: 0.4173, IoU.bookcase: 0.3184, IoU.blind: 0.3983, IoU.coffee table: 0.5292, IoU.toilet: 0.8766, IoU.flower: 0.3921, IoU.book: 0.4670, IoU.hill: 0.0538, IoU.bench: 0.5848, IoU.countertop: 0.6321, IoU.stove: 0.8219, IoU.palm: 0.5114, IoU.kitchen island: 0.4091, IoU.computer: 0.7751, IoU.swivel chair: 0.5512, IoU.boat: 0.7003, IoU.bar: 0.5499, IoU.arcade machine: 0.8347, IoU.hovel: 0.2058, IoU.bus: 0.9129, IoU.towel: 0.6692, IoU.light: 0.4744, IoU.truck: 0.4597, IoU.tower: 0.2460, IoU.chandelier: 0.6543, IoU.awning: 0.4434, IoU.streetlight: 0.2441, IoU.booth: 0.4350, IoU.television receiver: 0.7730, IoU.airplane: 0.5018, IoU.dirt track: 0.0000, IoU.apparel: 0.4399, IoU.pole: 0.1893, IoU.land: 0.0013, IoU.bannister: 0.1295, IoU.escalator: 0.6305, IoU.ottoman: 0.4894, IoU.bottle: 0.2651, IoU.buffet: 0.5329, IoU.poster: 0.3207, IoU.stage: 0.2482, IoU.van: 0.4943, IoU.ship: 0.3078, IoU.fountain: 0.3711, IoU.conveyer belt: 0.8033, IoU.canopy: 0.4314, IoU.washer: 0.8464, IoU.plaything: 0.2353, IoU.swimming pool: 0.5247, IoU.stool: 0.3752, IoU.barrel: 0.5684, IoU.basket: 0.4007, IoU.waterfall: 0.5889, IoU.tent: 0.7938, IoU.bag: 0.1860, IoU.minibike: 0.7043, IoU.cradle: 0.8395, IoU.oven: 0.5627, IoU.ball: 0.5549, IoU.food: 0.5629, IoU.step: 0.1359, IoU.tank: 0.5656, IoU.trade name: 0.0603, IoU.microwave: 0.8559, IoU.pot: 0.5497, IoU.animal: 0.7123, IoU.bicycle: 0.6004, IoU.lake: 0.5021, IoU.dishwasher: 0.6549, IoU.screen: 0.5626, IoU.blanket: 0.2564, IoU.sculpture: 0.6928, IoU.hood: 0.7105, IoU.sconce: 0.5010, IoU.vase: 0.4050, IoU.traffic light: 0.3057, IoU.tray: 0.1865, IoU.ashcan: 0.4786, IoU.fan: 0.5863, IoU.pier: 0.5629, IoU.crt screen: 0.0523, IoU.plate: 0.5800, IoU.monitor: 0.3029, IoU.bulletin board: 0.5480, IoU.shower: 0.0000, IoU.radiator: 0.6405, IoU.glass: 0.1379, IoU.clock: 0.4278, IoU.flag: 0.6661, Acc.wall: 0.8705, Acc.building: 0.9414, Acc.sky: 0.9707, Acc.floor: 0.8862, Acc.tree: 0.8554, Acc.ceiling: 0.9246, Acc.road: 0.9026, Acc.bed : 0.9735, Acc.windowpane: 0.7725, Acc.grass: 0.8625, Acc.cabinet: 0.7371, Acc.sidewalk: 0.8541, Acc.person: 0.9046, Acc.earth: 0.5185, Acc.door: 0.6501, Acc.table: 0.7605, Acc.mountain: 0.7723, Acc.plant: 0.6120, Acc.curtain: 0.9036, Acc.chair: 0.7636, Acc.car: 0.9208, Acc.water: 0.7321, Acc.painting: 0.8825, Acc.sofa: 0.8903, Acc.shelf: 0.5498, Acc.house: 0.6441, Acc.sea: 0.9164, Acc.mirror: 0.9095, Acc.rug: 0.8725, Acc.field: 0.4099, Acc.armchair: 0.6385, Acc.seat: 0.8836, Acc.fence: 0.6202, Acc.desk: 0.6695, Acc.rock: 0.7661, Acc.wardrobe: 0.7916, Acc.lamp: 0.7956, Acc.bathtub: 0.8648, Acc.railing: 0.6085, Acc.cushion: 0.8407, Acc.base: 0.7159, Acc.box: 0.4331, Acc.column: 0.5668, Acc.signboard: 0.4085, Acc.chest of drawers: 0.7476, Acc.counter: 0.5546, Acc.sand: 0.8816, Acc.sink: 0.7858, Acc.skyscraper: 0.6399, Acc.fireplace: 0.9781, Acc.refrigerator: 0.8965, Acc.grandstand: 0.8934, Acc.path: 0.3413, Acc.stairs: 0.1868, Acc.runway: 0.8690, Acc.case: 0.8600, Acc.pool table: 0.9805, Acc.pillow: 0.5228, Acc.screen door: 0.8728, Acc.stairway: 0.4887, Acc.river: 0.3801, Acc.bridge: 0.6808, Acc.bookcase: 0.6413, Acc.blind: 0.4707, Acc.coffee table: 0.9109, Acc.toilet: 0.9025, Acc.flower: 0.6181, Acc.book: 0.6477, Acc.hill: 0.1305, Acc.bench: 0.7884, Acc.countertop: 0.7850, Acc.stove: 0.9349, Acc.palm: 0.8399, Acc.kitchen island: 0.6073, Acc.computer: 0.8998, Acc.swivel chair: 0.7309, Acc.boat: 0.8587, Acc.bar: 0.8890, Acc.arcade machine: 0.9134, Acc.hovel: 0.2331, Acc.bus: 0.9634, Acc.towel: 0.8165, Acc.light: 0.6616, Acc.truck: 0.6212, Acc.tower: 0.4196, Acc.chandelier: 0.8535, Acc.awning: 0.6362, Acc.streetlight: 0.3310, Acc.booth: 0.7622, Acc.television receiver: 0.9153, Acc.airplane: 0.5190, Acc.dirt track: 0.0000, Acc.apparel: 0.6953, Acc.pole: 0.2416, Acc.land: 0.0015, Acc.bannister: 0.2048, Acc.escalator: 0.8408, Acc.ottoman: 0.7539, Acc.bottle: 0.3497, Acc.buffet: 0.8575, Acc.poster: 0.4578, Acc.stage: 0.4866, Acc.van: 0.6435, Acc.ship: 0.3226, Acc.fountain: 0.3937, Acc.conveyer belt: 0.9568, Acc.canopy: 0.6201, Acc.washer: 0.9170, Acc.plaything: 0.3352, Acc.swimming pool: 0.7639, Acc.stool: 0.6695, Acc.barrel: 0.6435, Acc.basket: 0.4805, Acc.waterfall: 0.8195, Acc.tent: 0.9928, Acc.bag: 0.1975, Acc.minibike: 0.8573, Acc.cradle: 0.9762, Acc.oven: 0.6706, Acc.ball: 0.6178, Acc.food: 0.6150, Acc.step: 0.1652, Acc.tank: 0.7190, Acc.trade name: 0.0612, Acc.microwave: 0.9525, Acc.pot: 0.6701, Acc.animal: 0.7421, Acc.bicycle: 0.7443, Acc.lake: 0.5682, Acc.dishwasher: 0.8378, Acc.screen: 0.8061, Acc.blanket: 0.3079, Acc.sculpture: 0.8316, Acc.hood: 0.8683, Acc.sconce: 0.6319, Acc.vase: 0.6442, Acc.traffic light: 0.5400, Acc.tray: 0.2453, Acc.ashcan: 0.5973, Acc.fan: 0.8297, Acc.pier: 0.6646, Acc.crt screen: 0.1048, Acc.plate: 0.7614, Acc.monitor: 0.3745, Acc.bulletin board: 0.7454, Acc.shower: 0.0000, Acc.radiator: 0.8166, Acc.glass: 0.1427, Acc.clock: 0.4695, Acc.flag: 0.7918 2024-06-16 00:32:51,888 - mmseg - INFO - Iter [8050/80000] lr: 2.914e-06, eta: 1 day, 10:48:31, time: 3.240, data_time: 1.636, memory: 65790, decode.loss_ce: 0.4147, decode.acc_seg: 83.1553, aux.loss_ce: 0.1654, aux.acc_seg: 83.2679, loss: 0.5801 2024-06-16 00:34:12,430 - mmseg - INFO - Iter [8100/80000] lr: 2.912e-06, eta: 1 day, 10:46:06, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3869, decode.acc_seg: 84.7211, aux.loss_ce: 0.1544, aux.acc_seg: 84.9658, loss: 0.5413 2024-06-16 00:35:32,897 - mmseg - INFO - Iter [8150/80000] lr: 2.910e-06, eta: 1 day, 10:43:41, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4194, decode.acc_seg: 83.1983, aux.loss_ce: 0.1652, aux.acc_seg: 83.6312, loss: 0.5846 2024-06-16 00:36:53,532 - mmseg - INFO - Iter [8200/80000] lr: 2.908e-06, eta: 1 day, 10:41:18, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4055, decode.acc_seg: 83.5415, aux.loss_ce: 0.1599, aux.acc_seg: 83.8844, loss: 0.5653 2024-06-16 00:38:14,268 - mmseg - INFO - Iter [8250/80000] lr: 2.906e-06, eta: 1 day, 10:38:57, time: 1.615, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4159, decode.acc_seg: 83.4450, aux.loss_ce: 0.1641, aux.acc_seg: 83.9419, loss: 0.5800 2024-06-16 00:39:34,797 - mmseg - INFO - Iter [8300/80000] lr: 2.904e-06, eta: 1 day, 10:36:35, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3752, decode.acc_seg: 84.9185, aux.loss_ce: 0.1492, aux.acc_seg: 84.9999, loss: 0.5244 2024-06-16 00:40:55,347 - mmseg - INFO - Iter [8350/80000] lr: 2.902e-06, eta: 1 day, 10:34:14, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4064, decode.acc_seg: 84.3261, aux.loss_ce: 0.1626, aux.acc_seg: 84.4541, loss: 0.5690 2024-06-16 00:42:15,964 - mmseg - INFO - Iter [8400/80000] lr: 2.900e-06, eta: 1 day, 10:31:54, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3990, decode.acc_seg: 84.3536, aux.loss_ce: 0.1575, aux.acc_seg: 84.5381, loss: 0.5565 2024-06-16 00:43:36,479 - mmseg - INFO - Iter [8450/80000] lr: 2.898e-06, eta: 1 day, 10:29:33, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4121, decode.acc_seg: 83.3809, aux.loss_ce: 0.1623, aux.acc_seg: 83.7370, loss: 0.5744 2024-06-16 00:44:57,145 - mmseg - INFO - Iter [8500/80000] lr: 2.896e-06, eta: 1 day, 10:27:15, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4155, decode.acc_seg: 83.6623, aux.loss_ce: 0.1634, aux.acc_seg: 83.9636, loss: 0.5789 2024-06-16 00:46:17,808 - mmseg - INFO - Iter [8550/80000] lr: 2.894e-06, eta: 1 day, 10:24:58, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4139, decode.acc_seg: 83.7611, aux.loss_ce: 0.1649, aux.acc_seg: 84.1141, loss: 0.5787 2024-06-16 00:47:38,345 - mmseg - INFO - Iter [8600/80000] lr: 2.892e-06, eta: 1 day, 10:22:40, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4153, decode.acc_seg: 84.1809, aux.loss_ce: 0.1642, aux.acc_seg: 84.4314, loss: 0.5794 2024-06-16 00:48:58,885 - mmseg - INFO - Iter [8650/80000] lr: 2.890e-06, eta: 1 day, 10:20:23, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4225, decode.acc_seg: 82.9965, aux.loss_ce: 0.1677, aux.acc_seg: 83.4142, loss: 0.5902 2024-06-16 00:50:19,436 - mmseg - INFO - Iter [8700/80000] lr: 2.888e-06, eta: 1 day, 10:18:06, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3956, decode.acc_seg: 84.0515, aux.loss_ce: 0.1562, aux.acc_seg: 84.3548, loss: 0.5518 2024-06-16 00:51:39,996 - mmseg - INFO - Iter [8750/80000] lr: 2.885e-06, eta: 1 day, 10:15:50, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4346, decode.acc_seg: 82.9857, aux.loss_ce: 0.1711, aux.acc_seg: 82.9954, loss: 0.6057 2024-06-16 00:53:00,618 - mmseg - INFO - Iter [8800/80000] lr: 2.883e-06, eta: 1 day, 10:13:36, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4333, decode.acc_seg: 82.6503, aux.loss_ce: 0.1698, aux.acc_seg: 83.0609, loss: 0.6031 2024-06-16 00:54:23,909 - mmseg - INFO - Iter [8850/80000] lr: 2.881e-06, eta: 1 day, 10:11:43, time: 1.666, data_time: 0.057, memory: 65790, decode.loss_ce: 0.3692, decode.acc_seg: 84.8439, aux.loss_ce: 0.1478, aux.acc_seg: 85.0939, loss: 0.5170 2024-06-16 00:55:44,640 - mmseg - INFO - Iter [8900/80000] lr: 2.879e-06, eta: 1 day, 10:09:31, time: 1.615, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3681, decode.acc_seg: 85.4697, aux.loss_ce: 0.1461, aux.acc_seg: 85.7083, loss: 0.5142 2024-06-16 00:57:05,172 - mmseg - INFO - Iter [8950/80000] lr: 2.877e-06, eta: 1 day, 10:07:17, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3883, decode.acc_seg: 83.9560, aux.loss_ce: 0.1546, aux.acc_seg: 84.1298, loss: 0.5429 2024-06-16 00:58:25,684 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 00:58:25,684 - mmseg - INFO - Iter [9000/80000] lr: 2.875e-06, eta: 1 day, 10:05:04, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4077, decode.acc_seg: 83.7771, aux.loss_ce: 0.1623, aux.acc_seg: 84.0867, loss: 0.5700 2024-06-16 00:59:47,757 - mmseg - INFO - per class results: 2024-06-16 00:59:47,763 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 78.9 | 87.7 | | building | 82.97 | 94.22 | | sky | 92.55 | 93.8 | | floor | 82.61 | 89.91 | | tree | 74.39 | 92.34 | | ceiling | 85.37 | 91.37 | | road | 84.25 | 91.13 | | bed | 90.1 | 96.56 | | windowpane | 64.19 | 79.28 | | grass | 64.43 | 83.2 | | cabinet | 64.03 | 72.04 | | sidewalk | 68.47 | 84.45 | | person | 81.58 | 90.56 | | earth | 36.71 | 45.63 | | door | 56.89 | 77.59 | | table | 63.3 | 78.47 | | mountain | 56.01 | 68.26 | | plant | 53.79 | 65.05 | | curtain | 78.27 | 87.13 | | chair | 61.29 | 76.11 | | car | 84.34 | 93.3 | | water | 61.89 | 78.78 | | painting | 74.84 | 85.7 | | sofa | 77.61 | 87.68 | | shelf | 48.12 | 72.64 | | house | 48.42 | 56.77 | | sea | 70.93 | 84.52 | | mirror | 75.91 | 87.58 | | rug | 65.35 | 71.19 | | field | 24.91 | 40.33 | | armchair | 59.28 | 69.73 | | seat | 66.36 | 89.89 | | fence | 49.09 | 61.28 | | desk | 50.17 | 62.63 | | rock | 50.54 | 83.71 | | wardrobe | 62.23 | 78.92 | | lamp | 65.39 | 79.58 | | bathtub | 82.82 | 89.06 | | railing | 40.44 | 54.85 | | cushion | 63.84 | 79.7 | | base | 39.94 | 50.89 | | box | 34.65 | 46.39 | | column | 47.42 | 50.23 | | signboard | 38.46 | 53.29 | | chest of drawers | 42.88 | 75.2 | | counter | 50.97 | 63.44 | | sand | 50.77 | 77.99 | | sink | 72.33 | 80.48 | | skyscraper | 37.27 | 40.84 | | fireplace | 70.65 | 90.17 | | refrigerator | 74.0 | 88.42 | | grandstand | 47.65 | 86.53 | | path | 21.44 | 27.21 | | stairs | 14.57 | 16.13 | | runway | 62.72 | 96.92 | | case | 67.54 | 85.67 | | pool table | 91.69 | 98.13 | | pillow | 63.66 | 74.49 | | screen door | 77.13 | 85.35 | | stairway | 41.85 | 68.61 | | river | 20.97 | 31.51 | | bridge | 39.65 | 50.1 | | bookcase | 40.4 | 47.54 | | blind | 22.07 | 22.52 | | coffee table | 58.85 | 85.87 | | toilet | 87.25 | 95.82 | | flower | 35.6 | 55.44 | | book | 47.56 | 64.75 | | hill | 6.47 | 13.12 | | bench | 59.29 | 71.03 | | countertop | 60.09 | 78.39 | | stove | 81.48 | 90.78 | | palm | 51.13 | 60.14 | | kitchen island | 47.99 | 85.19 | | computer | 76.19 | 92.03 | | swivel chair | 54.29 | 79.35 | | boat | 54.29 | 68.27 | | bar | 60.02 | 81.96 | | arcade machine | 88.52 | 97.82 | | hovel | 45.02 | 54.56 | | bus | 91.35 | 93.82 | | towel | 65.74 | 88.09 | | light | 47.63 | 62.46 | | truck | 46.2 | 61.07 | | tower | 22.59 | 41.13 | | chandelier | 66.84 | 85.01 | | awning | 33.53 | 41.67 | | streetlight | 23.78 | 29.52 | | booth | 34.35 | 42.79 | | television receiver | 77.14 | 86.19 | | airplane | 82.42 | 90.84 | | dirt track | 0.0 | 0.0 | | apparel | 50.87 | 71.07 | | pole | 19.09 | 23.6 | | land | 0.02 | 0.03 | | bannister | 11.21 | 15.09 | | escalator | 62.86 | 88.24 | | ottoman | 53.52 | 79.35 | | bottle | 41.1 | 66.22 | | buffet | 56.8 | 66.86 | | poster | 31.79 | 44.93 | | stage | 33.08 | 71.32 | | van | 48.82 | 66.76 | | ship | 74.35 | 83.38 | | fountain | 41.21 | 42.22 | | conveyer belt | 76.88 | 97.98 | | canopy | 49.04 | 79.28 | | washer | 85.68 | 91.54 | | plaything | 30.93 | 43.0 | | swimming pool | 60.66 | 91.74 | | stool | 40.27 | 58.94 | | barrel | 62.94 | 75.21 | | basket | 43.3 | 60.84 | | waterfall | 55.8 | 66.26 | | tent | 72.51 | 99.61 | | bag | 25.7 | 30.87 | | minibike | 71.57 | 83.79 | | cradle | 68.12 | 99.2 | | oven | 60.71 | 69.97 | | ball | 60.02 | 68.13 | | food | 60.96 | 74.22 | | step | 16.74 | 23.48 | | tank | 59.48 | 71.85 | | trade name | 3.04 | 3.06 | | microwave | 82.4 | 96.89 | | pot | 57.6 | 71.46 | | animal | 67.63 | 69.51 | | bicycle | 56.56 | 72.71 | | lake | 62.91 | 63.03 | | dishwasher | 70.8 | 82.28 | | screen | 50.06 | 94.96 | | blanket | 15.67 | 17.81 | | sculpture | 71.46 | 77.81 | | hood | 73.1 | 87.09 | | sconce | 51.63 | 67.49 | | vase | 40.48 | 62.41 | | traffic light | 31.24 | 57.99 | | tray | 15.68 | 19.15 | | ashcan | 45.17 | 60.3 | | fan | 58.91 | 76.48 | | pier | 37.64 | 39.38 | | crt screen | 3.08 | 4.35 | | plate | 57.83 | 78.68 | | monitor | 44.46 | 61.93 | | bulletin board | 54.29 | 73.47 | | shower | 0.0 | 0.0 | | radiator | 62.82 | 79.51 | | glass | 19.05 | 21.29 | | clock | 46.4 | 55.96 | | flag | 64.33 | 70.13 | +---------------------+-------+-------+ 2024-06-16 00:59:47,763 - mmseg - INFO - Summary: 2024-06-16 00:59:47,763 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 84.29 | 53.93 | 67.52 | +-------+-------+-------+ 2024-06-16 00:59:47,764 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 00:59:47,764 - mmseg - INFO - Iter(val) [250] aAcc: 0.8429, mIoU: 0.5393, mAcc: 0.6752, IoU.wall: 0.7890, IoU.building: 0.8297, IoU.sky: 0.9255, IoU.floor: 0.8261, IoU.tree: 0.7439, IoU.ceiling: 0.8537, IoU.road: 0.8425, IoU.bed : 0.9010, IoU.windowpane: 0.6419, IoU.grass: 0.6443, IoU.cabinet: 0.6403, IoU.sidewalk: 0.6847, IoU.person: 0.8158, IoU.earth: 0.3671, IoU.door: 0.5689, IoU.table: 0.6330, IoU.mountain: 0.5601, IoU.plant: 0.5379, IoU.curtain: 0.7827, IoU.chair: 0.6129, IoU.car: 0.8434, IoU.water: 0.6189, IoU.painting: 0.7484, IoU.sofa: 0.7761, IoU.shelf: 0.4812, IoU.house: 0.4842, IoU.sea: 0.7093, IoU.mirror: 0.7591, IoU.rug: 0.6535, IoU.field: 0.2491, IoU.armchair: 0.5928, IoU.seat: 0.6636, IoU.fence: 0.4909, IoU.desk: 0.5017, IoU.rock: 0.5054, IoU.wardrobe: 0.6223, IoU.lamp: 0.6539, IoU.bathtub: 0.8282, IoU.railing: 0.4044, IoU.cushion: 0.6384, IoU.base: 0.3994, IoU.box: 0.3465, IoU.column: 0.4742, IoU.signboard: 0.3846, IoU.chest of drawers: 0.4288, IoU.counter: 0.5097, IoU.sand: 0.5077, IoU.sink: 0.7233, IoU.skyscraper: 0.3727, IoU.fireplace: 0.7065, IoU.refrigerator: 0.7400, IoU.grandstand: 0.4765, IoU.path: 0.2144, IoU.stairs: 0.1457, IoU.runway: 0.6272, IoU.case: 0.6754, IoU.pool table: 0.9169, IoU.pillow: 0.6366, IoU.screen door: 0.7713, IoU.stairway: 0.4185, IoU.river: 0.2097, IoU.bridge: 0.3965, IoU.bookcase: 0.4040, IoU.blind: 0.2207, IoU.coffee table: 0.5885, IoU.toilet: 0.8725, IoU.flower: 0.3560, IoU.book: 0.4756, IoU.hill: 0.0647, IoU.bench: 0.5929, IoU.countertop: 0.6009, IoU.stove: 0.8148, IoU.palm: 0.5113, IoU.kitchen island: 0.4799, IoU.computer: 0.7619, IoU.swivel chair: 0.5429, IoU.boat: 0.5429, IoU.bar: 0.6002, IoU.arcade machine: 0.8852, IoU.hovel: 0.4502, IoU.bus: 0.9135, IoU.towel: 0.6574, IoU.light: 0.4763, IoU.truck: 0.4620, IoU.tower: 0.2259, IoU.chandelier: 0.6684, IoU.awning: 0.3353, IoU.streetlight: 0.2378, IoU.booth: 0.3435, IoU.television receiver: 0.7714, IoU.airplane: 0.8242, IoU.dirt track: 0.0000, IoU.apparel: 0.5087, IoU.pole: 0.1909, IoU.land: 0.0002, IoU.bannister: 0.1121, IoU.escalator: 0.6286, IoU.ottoman: 0.5352, IoU.bottle: 0.4110, IoU.buffet: 0.5680, IoU.poster: 0.3179, IoU.stage: 0.3308, IoU.van: 0.4882, IoU.ship: 0.7435, IoU.fountain: 0.4121, IoU.conveyer belt: 0.7688, IoU.canopy: 0.4904, IoU.washer: 0.8568, IoU.plaything: 0.3093, IoU.swimming pool: 0.6066, IoU.stool: 0.4027, IoU.barrel: 0.6294, IoU.basket: 0.4330, IoU.waterfall: 0.5580, IoU.tent: 0.7251, IoU.bag: 0.2570, IoU.minibike: 0.7157, IoU.cradle: 0.6812, IoU.oven: 0.6071, IoU.ball: 0.6002, IoU.food: 0.6096, IoU.step: 0.1674, IoU.tank: 0.5948, IoU.trade name: 0.0304, IoU.microwave: 0.8240, IoU.pot: 0.5760, IoU.animal: 0.6763, IoU.bicycle: 0.5656, IoU.lake: 0.6291, IoU.dishwasher: 0.7080, IoU.screen: 0.5006, IoU.blanket: 0.1567, IoU.sculpture: 0.7146, IoU.hood: 0.7310, IoU.sconce: 0.5163, IoU.vase: 0.4048, IoU.traffic light: 0.3124, IoU.tray: 0.1568, IoU.ashcan: 0.4517, IoU.fan: 0.5891, IoU.pier: 0.3764, IoU.crt screen: 0.0308, IoU.plate: 0.5783, IoU.monitor: 0.4446, IoU.bulletin board: 0.5429, IoU.shower: 0.0000, IoU.radiator: 0.6282, IoU.glass: 0.1905, IoU.clock: 0.4640, IoU.flag: 0.6433, Acc.wall: 0.8770, Acc.building: 0.9422, Acc.sky: 0.9380, Acc.floor: 0.8991, Acc.tree: 0.9234, Acc.ceiling: 0.9137, Acc.road: 0.9113, Acc.bed : 0.9656, Acc.windowpane: 0.7928, Acc.grass: 0.8320, Acc.cabinet: 0.7204, Acc.sidewalk: 0.8445, Acc.person: 0.9056, Acc.earth: 0.4563, Acc.door: 0.7759, Acc.table: 0.7847, Acc.mountain: 0.6826, Acc.plant: 0.6505, Acc.curtain: 0.8713, Acc.chair: 0.7611, Acc.car: 0.9330, Acc.water: 0.7878, Acc.painting: 0.8570, Acc.sofa: 0.8768, Acc.shelf: 0.7264, Acc.house: 0.5677, Acc.sea: 0.8452, Acc.mirror: 0.8758, Acc.rug: 0.7119, Acc.field: 0.4033, Acc.armchair: 0.6973, Acc.seat: 0.8989, Acc.fence: 0.6128, Acc.desk: 0.6263, Acc.rock: 0.8371, Acc.wardrobe: 0.7892, Acc.lamp: 0.7958, Acc.bathtub: 0.8906, Acc.railing: 0.5485, Acc.cushion: 0.7970, Acc.base: 0.5089, Acc.box: 0.4639, Acc.column: 0.5023, Acc.signboard: 0.5329, Acc.chest of drawers: 0.7520, Acc.counter: 0.6344, Acc.sand: 0.7799, Acc.sink: 0.8048, Acc.skyscraper: 0.4084, Acc.fireplace: 0.9017, Acc.refrigerator: 0.8842, Acc.grandstand: 0.8653, Acc.path: 0.2721, Acc.stairs: 0.1613, Acc.runway: 0.9692, Acc.case: 0.8567, Acc.pool table: 0.9813, Acc.pillow: 0.7449, Acc.screen door: 0.8535, Acc.stairway: 0.6861, Acc.river: 0.3151, Acc.bridge: 0.5010, Acc.bookcase: 0.4754, Acc.blind: 0.2252, Acc.coffee table: 0.8587, Acc.toilet: 0.9582, Acc.flower: 0.5544, Acc.book: 0.6475, Acc.hill: 0.1312, Acc.bench: 0.7103, Acc.countertop: 0.7839, Acc.stove: 0.9078, Acc.palm: 0.6014, Acc.kitchen island: 0.8519, Acc.computer: 0.9203, Acc.swivel chair: 0.7935, Acc.boat: 0.6827, Acc.bar: 0.8196, Acc.arcade machine: 0.9782, Acc.hovel: 0.5456, Acc.bus: 0.9382, Acc.towel: 0.8809, Acc.light: 0.6246, Acc.truck: 0.6107, Acc.tower: 0.4113, Acc.chandelier: 0.8501, Acc.awning: 0.4167, Acc.streetlight: 0.2952, Acc.booth: 0.4279, Acc.television receiver: 0.8619, Acc.airplane: 0.9084, Acc.dirt track: 0.0000, Acc.apparel: 0.7107, Acc.pole: 0.2360, Acc.land: 0.0003, Acc.bannister: 0.1509, Acc.escalator: 0.8824, Acc.ottoman: 0.7935, Acc.bottle: 0.6622, Acc.buffet: 0.6686, Acc.poster: 0.4493, Acc.stage: 0.7132, Acc.van: 0.6676, Acc.ship: 0.8338, Acc.fountain: 0.4222, Acc.conveyer belt: 0.9798, Acc.canopy: 0.7928, Acc.washer: 0.9154, Acc.plaything: 0.4300, Acc.swimming pool: 0.9174, Acc.stool: 0.5894, Acc.barrel: 0.7521, Acc.basket: 0.6084, Acc.waterfall: 0.6626, Acc.tent: 0.9961, Acc.bag: 0.3087, Acc.minibike: 0.8379, Acc.cradle: 0.9920, Acc.oven: 0.6997, Acc.ball: 0.6813, Acc.food: 0.7422, Acc.step: 0.2348, Acc.tank: 0.7185, Acc.trade name: 0.0306, Acc.microwave: 0.9689, Acc.pot: 0.7146, Acc.animal: 0.6951, Acc.bicycle: 0.7271, Acc.lake: 0.6303, Acc.dishwasher: 0.8228, Acc.screen: 0.9496, Acc.blanket: 0.1781, Acc.sculpture: 0.7781, Acc.hood: 0.8709, Acc.sconce: 0.6749, Acc.vase: 0.6241, Acc.traffic light: 0.5799, Acc.tray: 0.1915, Acc.ashcan: 0.6030, Acc.fan: 0.7648, Acc.pier: 0.3938, Acc.crt screen: 0.0435, Acc.plate: 0.7868, Acc.monitor: 0.6193, Acc.bulletin board: 0.7347, Acc.shower: 0.0000, Acc.radiator: 0.7951, Acc.glass: 0.2129, Acc.clock: 0.5596, Acc.flag: 0.7013 2024-06-16 01:01:08,682 - mmseg - INFO - Iter [9050/80000] lr: 2.873e-06, eta: 1 day, 10:13:38, time: 3.260, data_time: 1.655, memory: 65790, decode.loss_ce: 0.3842, decode.acc_seg: 84.4527, aux.loss_ce: 0.1540, aux.acc_seg: 84.4809, loss: 0.5382 2024-06-16 01:02:29,358 - mmseg - INFO - Iter [9100/80000] lr: 2.871e-06, eta: 1 day, 10:11:23, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3814, decode.acc_seg: 84.7181, aux.loss_ce: 0.1516, aux.acc_seg: 85.0345, loss: 0.5330 2024-06-16 01:03:50,254 - mmseg - INFO - Iter [9150/80000] lr: 2.869e-06, eta: 1 day, 10:09:10, time: 1.618, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3845, decode.acc_seg: 84.4819, aux.loss_ce: 0.1521, aux.acc_seg: 84.7304, loss: 0.5366 2024-06-16 01:05:10,817 - mmseg - INFO - Iter [9200/80000] lr: 2.867e-06, eta: 1 day, 10:06:56, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3906, decode.acc_seg: 84.3457, aux.loss_ce: 0.1544, aux.acc_seg: 84.7170, loss: 0.5451 2024-06-16 01:06:31,404 - mmseg - INFO - Iter [9250/80000] lr: 2.865e-06, eta: 1 day, 10:04:42, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4003, decode.acc_seg: 83.9554, aux.loss_ce: 0.1571, aux.acc_seg: 84.3421, loss: 0.5574 2024-06-16 01:07:52,026 - mmseg - INFO - Iter [9300/80000] lr: 2.863e-06, eta: 1 day, 10:02:29, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4026, decode.acc_seg: 83.5527, aux.loss_ce: 0.1583, aux.acc_seg: 83.8949, loss: 0.5610 2024-06-16 01:09:12,606 - mmseg - INFO - Iter [9350/80000] lr: 2.861e-06, eta: 1 day, 10:00:16, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4020, decode.acc_seg: 83.4305, aux.loss_ce: 0.1592, aux.acc_seg: 83.8166, loss: 0.5613 2024-06-16 01:10:33,223 - mmseg - INFO - Iter [9400/80000] lr: 2.859e-06, eta: 1 day, 9:58:05, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3547, decode.acc_seg: 86.0961, aux.loss_ce: 0.1406, aux.acc_seg: 86.1649, loss: 0.4953 2024-06-16 01:11:54,148 - mmseg - INFO - Iter [9450/80000] lr: 2.857e-06, eta: 1 day, 9:55:56, time: 1.618, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3953, decode.acc_seg: 84.2039, aux.loss_ce: 0.1574, aux.acc_seg: 84.2924, loss: 0.5527 2024-06-16 01:13:14,891 - mmseg - INFO - Iter [9500/80000] lr: 2.855e-06, eta: 1 day, 9:53:46, time: 1.615, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3841, decode.acc_seg: 84.8877, aux.loss_ce: 0.1537, aux.acc_seg: 85.0132, loss: 0.5377 2024-06-16 01:14:35,488 - mmseg - INFO - Iter [9550/80000] lr: 2.853e-06, eta: 1 day, 9:51:35, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3855, decode.acc_seg: 84.1007, aux.loss_ce: 0.1540, aux.acc_seg: 84.2629, loss: 0.5394 2024-06-16 01:15:56,051 - mmseg - INFO - Iter [9600/80000] lr: 2.851e-06, eta: 1 day, 9:49:25, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3701, decode.acc_seg: 84.9451, aux.loss_ce: 0.1467, aux.acc_seg: 85.2209, loss: 0.5168 2024-06-16 01:17:16,684 - mmseg - INFO - Iter [9650/80000] lr: 2.849e-06, eta: 1 day, 9:47:16, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.4025, decode.acc_seg: 84.1906, aux.loss_ce: 0.1594, aux.acc_seg: 84.3430, loss: 0.5619 2024-06-16 01:18:37,325 - mmseg - INFO - Iter [9700/80000] lr: 2.847e-06, eta: 1 day, 9:45:07, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3928, decode.acc_seg: 84.4116, aux.loss_ce: 0.1542, aux.acc_seg: 84.6654, loss: 0.5471 2024-06-16 01:19:58,228 - mmseg - INFO - Iter [9750/80000] lr: 2.845e-06, eta: 1 day, 9:43:01, time: 1.618, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3845, decode.acc_seg: 84.3750, aux.loss_ce: 0.1522, aux.acc_seg: 84.6686, loss: 0.5367 2024-06-16 01:21:19,073 - mmseg - INFO - Iter [9800/80000] lr: 2.843e-06, eta: 1 day, 9:40:55, time: 1.617, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3757, decode.acc_seg: 85.1902, aux.loss_ce: 0.1496, aux.acc_seg: 85.4577, loss: 0.5254 2024-06-16 01:22:39,642 - mmseg - INFO - Iter [9850/80000] lr: 2.841e-06, eta: 1 day, 9:38:48, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3795, decode.acc_seg: 84.1498, aux.loss_ce: 0.1503, aux.acc_seg: 84.3926, loss: 0.5298 2024-06-16 01:24:00,331 - mmseg - INFO - Iter [9900/80000] lr: 2.839e-06, eta: 1 day, 9:36:41, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3844, decode.acc_seg: 84.7354, aux.loss_ce: 0.1532, aux.acc_seg: 84.9474, loss: 0.5376 2024-06-16 01:25:20,884 - mmseg - INFO - Iter [9950/80000] lr: 2.837e-06, eta: 1 day, 9:34:34, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3971, decode.acc_seg: 83.9062, aux.loss_ce: 0.1569, aux.acc_seg: 84.1491, loss: 0.5540 2024-06-16 01:26:41,476 - mmseg - INFO - Saving checkpoint at 10000 iterations 2024-06-16 01:27:52,453 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 01:27:52,454 - mmseg - INFO - Iter [10000/80000] lr: 2.835e-06, eta: 1 day, 9:40:45, time: 3.031, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3983, decode.acc_seg: 84.3880, aux.loss_ce: 0.1568, aux.acc_seg: 84.7168, loss: 0.5551 2024-06-16 01:29:27,428 - mmseg - INFO - per class results: 2024-06-16 01:29:27,435 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 79.21 | 88.2 | | building | 83.47 | 94.25 | | sky | 94.09 | 96.63 | | floor | 82.9 | 90.08 | | tree | 76.43 | 89.08 | | ceiling | 85.49 | 91.33 | | road | 84.59 | 92.73 | | bed | 90.15 | 96.08 | | windowpane | 64.32 | 77.79 | | grass | 60.2 | 64.95 | | cabinet | 62.26 | 69.74 | | sidewalk | 67.45 | 76.01 | | person | 82.36 | 92.04 | | earth | 39.11 | 71.16 | | door | 54.88 | 71.92 | | table | 62.27 | 72.06 | | mountain | 59.89 | 70.97 | | plant | 56.09 | 67.9 | | curtain | 76.98 | 88.51 | | chair | 60.85 | 72.57 | | car | 82.13 | 92.78 | | water | 54.06 | 62.72 | | painting | 73.52 | 91.47 | | sofa | 74.3 | 82.01 | | shelf | 40.28 | 56.87 | | house | 43.27 | 51.44 | | sea | 70.84 | 88.86 | | mirror | 73.01 | 77.94 | | rug | 69.96 | 85.78 | | field | 29.08 | 45.88 | | armchair | 53.83 | 83.1 | | seat | 67.11 | 86.43 | | fence | 50.09 | 61.33 | | desk | 54.16 | 69.89 | | rock | 59.4 | 78.98 | | wardrobe | 53.51 | 80.04 | | lamp | 64.49 | 74.73 | | bathtub | 85.52 | 91.39 | | railing | 37.45 | 58.82 | | cushion | 64.17 | 82.15 | | base | 48.52 | 65.91 | | box | 36.97 | 44.79 | | column | 52.37 | 63.94 | | signboard | 37.82 | 45.34 | | chest of drawers | 50.88 | 74.65 | | counter | 47.35 | 71.31 | | sand | 46.57 | 65.0 | | sink | 76.35 | 86.33 | | skyscraper | 52.87 | 65.2 | | fireplace | 72.63 | 89.82 | | refrigerator | 76.04 | 90.81 | | grandstand | 51.84 | 86.43 | | path | 26.6 | 31.61 | | stairs | 28.32 | 33.31 | | runway | 69.71 | 89.17 | | case | 59.03 | 74.15 | | pool table | 92.83 | 96.79 | | pillow | 61.05 | 66.3 | | screen door | 85.51 | 93.87 | | stairway | 42.29 | 66.78 | | river | 16.62 | 52.28 | | bridge | 63.4 | 72.48 | | bookcase | 25.0 | 36.79 | | blind | 43.22 | 50.3 | | coffee table | 55.86 | 85.04 | | toilet | 88.02 | 93.47 | | flower | 34.26 | 50.82 | | book | 45.27 | 86.81 | | hill | 5.16 | 7.29 | | bench | 54.39 | 62.07 | | countertop | 59.84 | 71.21 | | stove | 82.25 | 91.84 | | palm | 53.3 | 76.49 | | kitchen island | 43.14 | 87.25 | | computer | 71.67 | 93.19 | | swivel chair | 53.4 | 77.8 | | boat | 67.32 | 91.53 | | bar | 63.6 | 79.44 | | arcade machine | 81.02 | 85.94 | | hovel | 22.05 | 23.07 | | bus | 86.55 | 97.33 | | towel | 65.29 | 87.3 | | light | 38.66 | 42.7 | | truck | 32.97 | 44.67 | | tower | 3.48 | 4.38 | | chandelier | 65.58 | 81.9 | | awning | 44.9 | 63.37 | | streetlight | 21.65 | 28.44 | | booth | 43.58 | 67.78 | | television receiver | 76.05 | 89.91 | | airplane | 82.11 | 93.03 | | dirt track | 0.0 | 0.0 | | apparel | 53.72 | 69.81 | | pole | 20.02 | 26.41 | | land | 0.35 | 0.88 | | bannister | 25.53 | 35.19 | | escalator | 41.79 | 88.62 | | ottoman | 51.19 | 69.82 | | bottle | 39.27 | 72.48 | | buffet | 56.91 | 83.42 | | poster | 23.46 | 24.37 | | stage | 25.09 | 38.68 | | van | 5.8 | 5.95 | | ship | 20.31 | 20.96 | | fountain | 57.65 | 61.22 | | conveyer belt | 0.66 | 0.66 | | canopy | 41.33 | 52.47 | | washer | 87.05 | 95.12 | | plaything | 29.89 | 41.35 | | swimming pool | 53.12 | 75.76 | | stool | 41.78 | 55.14 | | barrel | 55.72 | 65.98 | | basket | 41.14 | 61.93 | | waterfall | 53.93 | 72.68 | | tent | 86.83 | 99.51 | | bag | 23.22 | 25.9 | | minibike | 68.03 | 91.04 | | cradle | 83.71 | 97.83 | | oven | 56.49 | 70.61 | | ball | 52.25 | 57.62 | | food | 54.45 | 65.32 | | step | 7.71 | 7.98 | | tank | 61.32 | 67.61 | | trade name | 32.24 | 41.98 | | microwave | 83.07 | 96.41 | | pot | 54.36 | 62.74 | | animal | 72.32 | 79.2 | | bicycle | 59.2 | 80.15 | | lake | 52.95 | 67.12 | | dishwasher | 70.77 | 83.77 | | screen | 54.98 | 91.64 | | blanket | 28.92 | 33.9 | | sculpture | 63.45 | 80.0 | | hood | 69.05 | 87.67 | | sconce | 53.54 | 68.4 | | vase | 41.33 | 54.21 | | traffic light | 30.88 | 54.0 | | tray | 17.19 | 24.96 | | ashcan | 46.12 | 66.64 | | fan | 59.12 | 72.03 | | pier | 43.82 | 49.95 | | crt screen | 1.18 | 2.89 | | plate | 54.86 | 79.15 | | monitor | 18.11 | 21.93 | | bulletin board | 59.3 | 74.63 | | shower | 0.0 | 0.0 | | radiator | 39.42 | 39.78 | | glass | 17.78 | 19.02 | | clock | 46.86 | 59.25 | | flag | 58.51 | 60.54 | +---------------------+-------+-------+ 2024-06-16 01:29:27,435 - mmseg - INFO - Summary: 2024-06-16 01:29:27,435 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 84.22 | 52.52 | 65.79 | +-------+-------+-------+ 2024-06-16 01:29:27,436 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 01:29:27,436 - mmseg - INFO - Iter(val) [250] aAcc: 0.8422, mIoU: 0.5252, mAcc: 0.6579, IoU.wall: 0.7921, IoU.building: 0.8347, IoU.sky: 0.9409, IoU.floor: 0.8290, IoU.tree: 0.7643, IoU.ceiling: 0.8549, IoU.road: 0.8459, IoU.bed : 0.9015, IoU.windowpane: 0.6432, IoU.grass: 0.6020, IoU.cabinet: 0.6226, IoU.sidewalk: 0.6745, IoU.person: 0.8236, IoU.earth: 0.3911, IoU.door: 0.5488, IoU.table: 0.6227, IoU.mountain: 0.5989, IoU.plant: 0.5609, IoU.curtain: 0.7698, IoU.chair: 0.6085, IoU.car: 0.8213, IoU.water: 0.5406, IoU.painting: 0.7352, IoU.sofa: 0.7430, IoU.shelf: 0.4028, IoU.house: 0.4327, IoU.sea: 0.7084, IoU.mirror: 0.7301, IoU.rug: 0.6996, IoU.field: 0.2908, IoU.armchair: 0.5383, IoU.seat: 0.6711, IoU.fence: 0.5009, IoU.desk: 0.5416, IoU.rock: 0.5940, IoU.wardrobe: 0.5351, IoU.lamp: 0.6449, IoU.bathtub: 0.8552, IoU.railing: 0.3745, IoU.cushion: 0.6417, IoU.base: 0.4852, IoU.box: 0.3697, IoU.column: 0.5237, IoU.signboard: 0.3782, IoU.chest of drawers: 0.5088, IoU.counter: 0.4735, IoU.sand: 0.4657, IoU.sink: 0.7635, IoU.skyscraper: 0.5287, IoU.fireplace: 0.7263, IoU.refrigerator: 0.7604, IoU.grandstand: 0.5184, IoU.path: 0.2660, IoU.stairs: 0.2832, IoU.runway: 0.6971, IoU.case: 0.5903, IoU.pool table: 0.9283, IoU.pillow: 0.6105, IoU.screen door: 0.8551, IoU.stairway: 0.4229, IoU.river: 0.1662, IoU.bridge: 0.6340, IoU.bookcase: 0.2500, IoU.blind: 0.4322, IoU.coffee table: 0.5586, IoU.toilet: 0.8802, IoU.flower: 0.3426, IoU.book: 0.4527, IoU.hill: 0.0516, IoU.bench: 0.5439, IoU.countertop: 0.5984, IoU.stove: 0.8225, IoU.palm: 0.5330, IoU.kitchen island: 0.4314, IoU.computer: 0.7167, IoU.swivel chair: 0.5340, IoU.boat: 0.6732, IoU.bar: 0.6360, IoU.arcade machine: 0.8102, IoU.hovel: 0.2205, IoU.bus: 0.8655, IoU.towel: 0.6529, IoU.light: 0.3866, IoU.truck: 0.3297, IoU.tower: 0.0348, IoU.chandelier: 0.6558, IoU.awning: 0.4490, IoU.streetlight: 0.2165, IoU.booth: 0.4358, IoU.television receiver: 0.7605, IoU.airplane: 0.8211, IoU.dirt track: 0.0000, IoU.apparel: 0.5372, IoU.pole: 0.2002, IoU.land: 0.0035, IoU.bannister: 0.2553, IoU.escalator: 0.4179, IoU.ottoman: 0.5119, IoU.bottle: 0.3927, IoU.buffet: 0.5691, IoU.poster: 0.2346, IoU.stage: 0.2509, IoU.van: 0.0580, IoU.ship: 0.2031, IoU.fountain: 0.5765, IoU.conveyer belt: 0.0066, IoU.canopy: 0.4133, IoU.washer: 0.8705, IoU.plaything: 0.2989, IoU.swimming pool: 0.5312, IoU.stool: 0.4178, IoU.barrel: 0.5572, IoU.basket: 0.4114, IoU.waterfall: 0.5393, IoU.tent: 0.8683, IoU.bag: 0.2322, IoU.minibike: 0.6803, IoU.cradle: 0.8371, IoU.oven: 0.5649, IoU.ball: 0.5225, IoU.food: 0.5445, IoU.step: 0.0771, IoU.tank: 0.6132, IoU.trade name: 0.3224, IoU.microwave: 0.8307, IoU.pot: 0.5436, IoU.animal: 0.7232, IoU.bicycle: 0.5920, IoU.lake: 0.5295, IoU.dishwasher: 0.7077, IoU.screen: 0.5498, IoU.blanket: 0.2892, IoU.sculpture: 0.6345, IoU.hood: 0.6905, IoU.sconce: 0.5354, IoU.vase: 0.4133, IoU.traffic light: 0.3088, IoU.tray: 0.1719, IoU.ashcan: 0.4612, IoU.fan: 0.5912, IoU.pier: 0.4382, IoU.crt screen: 0.0118, IoU.plate: 0.5486, IoU.monitor: 0.1811, IoU.bulletin board: 0.5930, IoU.shower: 0.0000, IoU.radiator: 0.3942, IoU.glass: 0.1778, IoU.clock: 0.4686, IoU.flag: 0.5851, Acc.wall: 0.8820, Acc.building: 0.9425, Acc.sky: 0.9663, Acc.floor: 0.9008, Acc.tree: 0.8908, Acc.ceiling: 0.9133, Acc.road: 0.9273, Acc.bed : 0.9608, Acc.windowpane: 0.7779, Acc.grass: 0.6495, Acc.cabinet: 0.6974, Acc.sidewalk: 0.7601, Acc.person: 0.9204, Acc.earth: 0.7116, Acc.door: 0.7192, Acc.table: 0.7206, Acc.mountain: 0.7097, Acc.plant: 0.6790, Acc.curtain: 0.8851, Acc.chair: 0.7257, Acc.car: 0.9278, Acc.water: 0.6272, Acc.painting: 0.9147, Acc.sofa: 0.8201, Acc.shelf: 0.5687, Acc.house: 0.5144, Acc.sea: 0.8886, Acc.mirror: 0.7794, Acc.rug: 0.8578, Acc.field: 0.4588, Acc.armchair: 0.8310, Acc.seat: 0.8643, Acc.fence: 0.6133, Acc.desk: 0.6989, Acc.rock: 0.7898, Acc.wardrobe: 0.8004, Acc.lamp: 0.7473, Acc.bathtub: 0.9139, Acc.railing: 0.5882, Acc.cushion: 0.8215, Acc.base: 0.6591, Acc.box: 0.4479, Acc.column: 0.6394, Acc.signboard: 0.4534, Acc.chest of drawers: 0.7465, Acc.counter: 0.7131, Acc.sand: 0.6500, Acc.sink: 0.8633, Acc.skyscraper: 0.6520, Acc.fireplace: 0.8982, Acc.refrigerator: 0.9081, Acc.grandstand: 0.8643, Acc.path: 0.3161, Acc.stairs: 0.3331, Acc.runway: 0.8917, Acc.case: 0.7415, Acc.pool table: 0.9679, Acc.pillow: 0.6630, Acc.screen door: 0.9387, Acc.stairway: 0.6678, Acc.river: 0.5228, Acc.bridge: 0.7248, Acc.bookcase: 0.3679, Acc.blind: 0.5030, Acc.coffee table: 0.8504, Acc.toilet: 0.9347, Acc.flower: 0.5082, Acc.book: 0.8681, Acc.hill: 0.0729, Acc.bench: 0.6207, Acc.countertop: 0.7121, Acc.stove: 0.9184, Acc.palm: 0.7649, Acc.kitchen island: 0.8725, Acc.computer: 0.9319, Acc.swivel chair: 0.7780, Acc.boat: 0.9153, Acc.bar: 0.7944, Acc.arcade machine: 0.8594, Acc.hovel: 0.2307, Acc.bus: 0.9733, Acc.towel: 0.8730, Acc.light: 0.4270, Acc.truck: 0.4467, Acc.tower: 0.0438, Acc.chandelier: 0.8190, Acc.awning: 0.6337, Acc.streetlight: 0.2844, Acc.booth: 0.6778, Acc.television receiver: 0.8991, Acc.airplane: 0.9303, Acc.dirt track: 0.0000, Acc.apparel: 0.6981, Acc.pole: 0.2641, Acc.land: 0.0088, Acc.bannister: 0.3519, Acc.escalator: 0.8862, Acc.ottoman: 0.6982, Acc.bottle: 0.7248, Acc.buffet: 0.8342, Acc.poster: 0.2437, Acc.stage: 0.3868, Acc.van: 0.0595, Acc.ship: 0.2096, Acc.fountain: 0.6122, Acc.conveyer belt: 0.0066, Acc.canopy: 0.5247, Acc.washer: 0.9512, Acc.plaything: 0.4135, Acc.swimming pool: 0.7576, Acc.stool: 0.5514, Acc.barrel: 0.6598, Acc.basket: 0.6193, Acc.waterfall: 0.7268, Acc.tent: 0.9951, Acc.bag: 0.2590, Acc.minibike: 0.9104, Acc.cradle: 0.9783, Acc.oven: 0.7061, Acc.ball: 0.5762, Acc.food: 0.6532, Acc.step: 0.0798, Acc.tank: 0.6761, Acc.trade name: 0.4198, Acc.microwave: 0.9641, Acc.pot: 0.6274, Acc.animal: 0.7920, Acc.bicycle: 0.8015, Acc.lake: 0.6712, Acc.dishwasher: 0.8377, Acc.screen: 0.9164, Acc.blanket: 0.3390, Acc.sculpture: 0.8000, Acc.hood: 0.8767, Acc.sconce: 0.6840, Acc.vase: 0.5421, Acc.traffic light: 0.5400, Acc.tray: 0.2496, Acc.ashcan: 0.6664, Acc.fan: 0.7203, Acc.pier: 0.4995, Acc.crt screen: 0.0289, Acc.plate: 0.7915, Acc.monitor: 0.2193, Acc.bulletin board: 0.7463, Acc.shower: 0.0000, Acc.radiator: 0.3978, Acc.glass: 0.1902, Acc.clock: 0.5925, Acc.flag: 0.6054 2024-06-16 01:30:48,473 - mmseg - INFO - Iter [10050/80000] lr: 2.833e-06, eta: 1 day, 9:49:41, time: 3.520, data_time: 1.912, memory: 65790, decode.loss_ce: 0.3832, decode.acc_seg: 84.2744, aux.loss_ce: 0.1520, aux.acc_seg: 84.2561, loss: 0.5352 2024-06-16 01:32:09,081 - mmseg - INFO - Iter [10100/80000] lr: 2.831e-06, eta: 1 day, 9:47:29, time: 1.612, data_time: 0.008, memory: 65790, decode.loss_ce: 0.3977, decode.acc_seg: 84.1016, aux.loss_ce: 0.1577, aux.acc_seg: 84.3102, loss: 0.5553 2024-06-16 01:33:32,594 - mmseg - INFO - Iter [10150/80000] lr: 2.829e-06, eta: 1 day, 9:45:38, time: 1.670, data_time: 0.060, memory: 65790, decode.loss_ce: 0.3473, decode.acc_seg: 85.8251, aux.loss_ce: 0.1384, aux.acc_seg: 86.0559, loss: 0.4857 2024-06-16 01:34:53,190 - mmseg - INFO - Iter [10200/80000] lr: 2.827e-06, eta: 1 day, 9:43:27, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3502, decode.acc_seg: 85.8272, aux.loss_ce: 0.1388, aux.acc_seg: 85.9056, loss: 0.4890 2024-06-16 01:36:13,723 - mmseg - INFO - Iter [10250/80000] lr: 2.825e-06, eta: 1 day, 9:41:17, time: 1.611, data_time: 0.008, memory: 65790, decode.loss_ce: 0.3788, decode.acc_seg: 85.1611, aux.loss_ce: 0.1509, aux.acc_seg: 85.4235, loss: 0.5297 2024-06-16 01:37:34,305 - mmseg - INFO - Iter [10300/80000] lr: 2.823e-06, eta: 1 day, 9:39:07, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3778, decode.acc_seg: 84.7604, aux.loss_ce: 0.1493, aux.acc_seg: 85.1443, loss: 0.5271 2024-06-16 01:38:55,084 - mmseg - INFO - Iter [10350/80000] lr: 2.821e-06, eta: 1 day, 9:36:58, time: 1.616, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3755, decode.acc_seg: 84.8023, aux.loss_ce: 0.1504, aux.acc_seg: 85.2024, loss: 0.5259 2024-06-16 01:40:15,906 - mmseg - INFO - Iter [10400/80000] lr: 2.819e-06, eta: 1 day, 9:34:51, time: 1.616, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3575, decode.acc_seg: 85.8233, aux.loss_ce: 0.1430, aux.acc_seg: 85.8900, loss: 0.5004 2024-06-16 01:41:36,529 - mmseg - INFO - Iter [10450/80000] lr: 2.817e-06, eta: 1 day, 9:32:43, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3845, decode.acc_seg: 85.3942, aux.loss_ce: 0.1534, aux.acc_seg: 85.3948, loss: 0.5379 2024-06-16 01:42:57,106 - mmseg - INFO - Iter [10500/80000] lr: 2.815e-06, eta: 1 day, 9:30:35, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3782, decode.acc_seg: 84.4047, aux.loss_ce: 0.1492, aux.acc_seg: 84.7143, loss: 0.5274 2024-06-16 01:44:17,644 - mmseg - INFO - Iter [10550/80000] lr: 2.813e-06, eta: 1 day, 9:28:27, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3798, decode.acc_seg: 84.5685, aux.loss_ce: 0.1507, aux.acc_seg: 84.8140, loss: 0.5304 2024-06-16 01:45:38,227 - mmseg - INFO - Iter [10600/80000] lr: 2.811e-06, eta: 1 day, 9:26:20, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3618, decode.acc_seg: 85.0333, aux.loss_ce: 0.1443, aux.acc_seg: 85.2182, loss: 0.5061 2024-06-16 01:46:58,914 - mmseg - INFO - Iter [10650/80000] lr: 2.809e-06, eta: 1 day, 9:24:13, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3814, decode.acc_seg: 84.4873, aux.loss_ce: 0.1518, aux.acc_seg: 84.5784, loss: 0.5332 2024-06-16 01:48:19,721 - mmseg - INFO - Iter [10700/80000] lr: 2.807e-06, eta: 1 day, 9:22:09, time: 1.616, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3837, decode.acc_seg: 83.9864, aux.loss_ce: 0.1521, aux.acc_seg: 84.2198, loss: 0.5357 2024-06-16 01:49:40,274 - mmseg - INFO - Iter [10750/80000] lr: 2.804e-06, eta: 1 day, 9:20:02, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3906, decode.acc_seg: 84.5481, aux.loss_ce: 0.1546, aux.acc_seg: 84.6691, loss: 0.5452 2024-06-16 01:51:00,854 - mmseg - INFO - Iter [10800/80000] lr: 2.802e-06, eta: 1 day, 9:17:57, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3831, decode.acc_seg: 85.3003, aux.loss_ce: 0.1512, aux.acc_seg: 85.3648, loss: 0.5342 2024-06-16 01:52:21,444 - mmseg - INFO - Iter [10850/80000] lr: 2.800e-06, eta: 1 day, 9:15:52, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3803, decode.acc_seg: 84.7973, aux.loss_ce: 0.1517, aux.acc_seg: 84.9898, loss: 0.5320 2024-06-16 01:53:41,964 - mmseg - INFO - Iter [10900/80000] lr: 2.798e-06, eta: 1 day, 9:13:47, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3964, decode.acc_seg: 85.1917, aux.loss_ce: 0.1576, aux.acc_seg: 85.4139, loss: 0.5539 2024-06-16 01:55:02,635 - mmseg - INFO - Iter [10950/80000] lr: 2.796e-06, eta: 1 day, 9:11:43, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3706, decode.acc_seg: 84.8207, aux.loss_ce: 0.1466, aux.acc_seg: 85.2381, loss: 0.5172 2024-06-16 01:56:23,484 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 01:56:23,484 - mmseg - INFO - Iter [11000/80000] lr: 2.794e-06, eta: 1 day, 9:09:41, time: 1.617, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3716, decode.acc_seg: 84.6246, aux.loss_ce: 0.1474, aux.acc_seg: 84.9295, loss: 0.5189 2024-06-16 01:57:45,797 - mmseg - INFO - per class results: 2024-06-16 01:57:45,803 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 78.89 | 87.98 | | building | 83.15 | 92.29 | | sky | 93.9 | 97.72 | | floor | 83.0 | 90.23 | | tree | 73.39 | 89.25 | | ceiling | 85.33 | 93.43 | | road | 84.17 | 93.3 | | bed | 89.84 | 97.19 | | windowpane | 63.83 | 81.09 | | grass | 67.44 | 82.11 | | cabinet | 63.35 | 70.45 | | sidewalk | 68.44 | 79.79 | | person | 82.36 | 90.13 | | earth | 34.84 | 44.3 | | door | 55.6 | 67.83 | | table | 61.51 | 75.81 | | mountain | 56.75 | 75.8 | | plant | 48.12 | 55.44 | | curtain | 77.67 | 89.14 | | chair | 60.3 | 69.75 | | car | 83.1 | 87.24 | | water | 58.78 | 69.83 | | painting | 74.71 | 88.15 | | sofa | 76.32 | 92.81 | | shelf | 45.36 | 60.86 | | house | 52.35 | 77.49 | | sea | 62.63 | 81.79 | | mirror | 74.44 | 84.64 | | rug | 70.27 | 83.69 | | field | 32.53 | 48.51 | | armchair | 55.22 | 67.27 | | seat | 66.09 | 86.85 | | fence | 48.47 | 59.67 | | desk | 54.6 | 67.55 | | rock | 50.09 | 74.12 | | wardrobe | 50.73 | 73.19 | | lamp | 67.5 | 80.98 | | bathtub | 87.48 | 90.7 | | railing | 32.28 | 40.64 | | cushion | 65.29 | 74.98 | | base | 44.52 | 53.61 | | box | 37.77 | 56.13 | | column | 51.37 | 62.17 | | signboard | 35.51 | 41.12 | | chest of drawers | 45.66 | 77.28 | | counter | 56.12 | 63.23 | | sand | 53.21 | 89.97 | | sink | 76.63 | 90.05 | | skyscraper | 51.42 | 59.91 | | fireplace | 75.24 | 91.63 | | refrigerator | 75.01 | 89.71 | | grandstand | 50.99 | 84.79 | | path | 23.94 | 31.14 | | stairs | 33.41 | 37.77 | | runway | 66.85 | 90.56 | | case | 72.06 | 86.4 | | pool table | 90.54 | 97.91 | | pillow | 60.76 | 66.67 | | screen door | 78.27 | 93.24 | | stairway | 49.39 | 66.05 | | river | 17.07 | 36.75 | | bridge | 70.4 | 84.14 | | bookcase | 36.75 | 65.38 | | blind | 37.53 | 38.69 | | coffee table | 54.57 | 89.14 | | toilet | 88.46 | 92.46 | | flower | 40.37 | 64.28 | | book | 48.52 | 73.01 | | hill | 4.34 | 7.08 | | bench | 51.54 | 56.89 | | countertop | 64.02 | 79.69 | | stove | 82.88 | 90.52 | | palm | 53.73 | 76.58 | | kitchen island | 43.88 | 91.83 | | computer | 71.49 | 93.2 | | swivel chair | 51.66 | 78.57 | | boat | 56.58 | 91.1 | | bar | 67.14 | 82.95 | | arcade machine | 89.97 | 96.86 | | hovel | 22.79 | 25.4 | | bus | 89.6 | 96.67 | | towel | 67.58 | 85.37 | | light | 43.37 | 50.1 | | truck | 45.06 | 69.15 | | tower | 23.61 | 49.3 | | chandelier | 65.8 | 73.15 | | awning | 37.29 | 47.76 | | streetlight | 22.02 | 27.49 | | booth | 43.69 | 84.86 | | television receiver | 76.07 | 82.95 | | airplane | 83.88 | 92.36 | | dirt track | 3.62 | 11.98 | | apparel | 55.14 | 77.96 | | pole | 26.2 | 41.29 | | land | 0.0 | 0.0 | | bannister | 9.18 | 11.12 | | escalator | 60.85 | 82.35 | | ottoman | 50.29 | 64.99 | | bottle | 39.79 | 64.9 | | buffet | 46.52 | 92.48 | | poster | 34.53 | 40.02 | | stage | 20.49 | 46.47 | | van | 45.83 | 77.68 | | ship | 77.67 | 92.52 | | fountain | 24.85 | 24.91 | | conveyer belt | 72.77 | 97.0 | | canopy | 48.74 | 72.73 | | washer | 87.3 | 96.51 | | plaything | 18.41 | 20.27 | | swimming pool | 60.66 | 88.3 | | stool | 42.18 | 55.81 | | barrel | 54.18 | 68.16 | | basket | 43.01 | 53.84 | | waterfall | 68.08 | 92.99 | | tent | 80.65 | 98.01 | | bag | 21.78 | 23.5 | | minibike | 72.72 | 88.85 | | cradle | 86.5 | 96.02 | | oven | 56.84 | 73.48 | | ball | 58.97 | 67.44 | | food | 60.98 | 68.67 | | step | 11.91 | 14.05 | | tank | 53.16 | 67.81 | | trade name | 18.03 | 19.41 | | microwave | 87.58 | 95.65 | | pot | 53.16 | 66.16 | | animal | 60.63 | 61.52 | | bicycle | 59.9 | 85.29 | | lake | 49.89 | 78.5 | | dishwasher | 74.5 | 81.59 | | screen | 47.49 | 70.43 | | blanket | 24.72 | 28.01 | | sculpture | 64.3 | 78.13 | | hood | 56.49 | 63.33 | | sconce | 52.28 | 64.45 | | vase | 40.23 | 62.07 | | traffic light | 34.92 | 55.71 | | tray | 8.35 | 9.2 | | ashcan | 49.01 | 60.72 | | fan | 56.79 | 66.82 | | pier | 64.89 | 78.9 | | crt screen | 7.97 | 23.8 | | plate | 53.89 | 78.38 | | monitor | 8.77 | 9.17 | | bulletin board | 56.4 | 73.14 | | shower | 0.0 | 0.0 | | radiator | 61.45 | 69.23 | | glass | 16.81 | 17.84 | | clock | 41.8 | 56.36 | | flag | 63.41 | 68.95 | +---------------------+-------+-------+ 2024-06-16 01:57:45,803 - mmseg - INFO - Summary: 2024-06-16 01:57:45,803 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 84.36 | 54.05 | 68.08 | +-------+-------+-------+ 2024-06-16 01:57:45,804 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 01:57:45,804 - mmseg - INFO - Iter(val) [250] aAcc: 0.8436, mIoU: 0.5405, mAcc: 0.6808, IoU.wall: 0.7889, IoU.building: 0.8315, IoU.sky: 0.9390, IoU.floor: 0.8300, IoU.tree: 0.7339, IoU.ceiling: 0.8533, IoU.road: 0.8417, IoU.bed : 0.8984, IoU.windowpane: 0.6383, IoU.grass: 0.6744, IoU.cabinet: 0.6335, IoU.sidewalk: 0.6844, IoU.person: 0.8236, IoU.earth: 0.3484, IoU.door: 0.5560, IoU.table: 0.6151, IoU.mountain: 0.5675, IoU.plant: 0.4812, IoU.curtain: 0.7767, IoU.chair: 0.6030, IoU.car: 0.8310, IoU.water: 0.5878, IoU.painting: 0.7471, IoU.sofa: 0.7632, IoU.shelf: 0.4536, IoU.house: 0.5235, IoU.sea: 0.6263, IoU.mirror: 0.7444, IoU.rug: 0.7027, IoU.field: 0.3253, IoU.armchair: 0.5522, IoU.seat: 0.6609, IoU.fence: 0.4847, IoU.desk: 0.5460, IoU.rock: 0.5009, IoU.wardrobe: 0.5073, IoU.lamp: 0.6750, IoU.bathtub: 0.8748, IoU.railing: 0.3228, IoU.cushion: 0.6529, IoU.base: 0.4452, IoU.box: 0.3777, IoU.column: 0.5137, IoU.signboard: 0.3551, IoU.chest of drawers: 0.4566, IoU.counter: 0.5612, IoU.sand: 0.5321, IoU.sink: 0.7663, IoU.skyscraper: 0.5142, IoU.fireplace: 0.7524, IoU.refrigerator: 0.7501, IoU.grandstand: 0.5099, IoU.path: 0.2394, IoU.stairs: 0.3341, IoU.runway: 0.6685, IoU.case: 0.7206, IoU.pool table: 0.9054, IoU.pillow: 0.6076, IoU.screen door: 0.7827, IoU.stairway: 0.4939, IoU.river: 0.1707, IoU.bridge: 0.7040, IoU.bookcase: 0.3675, IoU.blind: 0.3753, IoU.coffee table: 0.5457, IoU.toilet: 0.8846, IoU.flower: 0.4037, IoU.book: 0.4852, IoU.hill: 0.0434, IoU.bench: 0.5154, IoU.countertop: 0.6402, IoU.stove: 0.8288, IoU.palm: 0.5373, IoU.kitchen island: 0.4388, IoU.computer: 0.7149, IoU.swivel chair: 0.5166, IoU.boat: 0.5658, IoU.bar: 0.6714, IoU.arcade machine: 0.8997, IoU.hovel: 0.2279, IoU.bus: 0.8960, IoU.towel: 0.6758, IoU.light: 0.4337, IoU.truck: 0.4506, IoU.tower: 0.2361, IoU.chandelier: 0.6580, IoU.awning: 0.3729, IoU.streetlight: 0.2202, IoU.booth: 0.4369, IoU.television receiver: 0.7607, IoU.airplane: 0.8388, IoU.dirt track: 0.0362, IoU.apparel: 0.5514, IoU.pole: 0.2620, IoU.land: 0.0000, IoU.bannister: 0.0918, IoU.escalator: 0.6085, IoU.ottoman: 0.5029, IoU.bottle: 0.3979, IoU.buffet: 0.4652, IoU.poster: 0.3453, IoU.stage: 0.2049, IoU.van: 0.4583, IoU.ship: 0.7767, IoU.fountain: 0.2485, IoU.conveyer belt: 0.7277, IoU.canopy: 0.4874, IoU.washer: 0.8730, IoU.plaything: 0.1841, IoU.swimming pool: 0.6066, IoU.stool: 0.4218, IoU.barrel: 0.5418, IoU.basket: 0.4301, IoU.waterfall: 0.6808, IoU.tent: 0.8065, IoU.bag: 0.2178, IoU.minibike: 0.7272, IoU.cradle: 0.8650, IoU.oven: 0.5684, IoU.ball: 0.5897, IoU.food: 0.6098, IoU.step: 0.1191, IoU.tank: 0.5316, IoU.trade name: 0.1803, IoU.microwave: 0.8758, IoU.pot: 0.5316, IoU.animal: 0.6063, IoU.bicycle: 0.5990, IoU.lake: 0.4989, IoU.dishwasher: 0.7450, IoU.screen: 0.4749, IoU.blanket: 0.2472, IoU.sculpture: 0.6430, IoU.hood: 0.5649, IoU.sconce: 0.5228, IoU.vase: 0.4023, IoU.traffic light: 0.3492, IoU.tray: 0.0835, IoU.ashcan: 0.4901, IoU.fan: 0.5679, IoU.pier: 0.6489, IoU.crt screen: 0.0797, IoU.plate: 0.5389, IoU.monitor: 0.0877, IoU.bulletin board: 0.5640, IoU.shower: 0.0000, IoU.radiator: 0.6145, IoU.glass: 0.1681, IoU.clock: 0.4180, IoU.flag: 0.6341, Acc.wall: 0.8798, Acc.building: 0.9229, Acc.sky: 0.9772, Acc.floor: 0.9023, Acc.tree: 0.8925, Acc.ceiling: 0.9343, Acc.road: 0.9330, Acc.bed : 0.9719, Acc.windowpane: 0.8109, Acc.grass: 0.8211, Acc.cabinet: 0.7045, Acc.sidewalk: 0.7979, Acc.person: 0.9013, Acc.earth: 0.4430, Acc.door: 0.6783, Acc.table: 0.7581, Acc.mountain: 0.7580, Acc.plant: 0.5544, Acc.curtain: 0.8914, Acc.chair: 0.6975, Acc.car: 0.8724, Acc.water: 0.6983, Acc.painting: 0.8815, Acc.sofa: 0.9281, Acc.shelf: 0.6086, Acc.house: 0.7749, Acc.sea: 0.8179, Acc.mirror: 0.8464, Acc.rug: 0.8369, Acc.field: 0.4851, Acc.armchair: 0.6727, Acc.seat: 0.8685, Acc.fence: 0.5967, Acc.desk: 0.6755, Acc.rock: 0.7412, Acc.wardrobe: 0.7319, Acc.lamp: 0.8098, Acc.bathtub: 0.9070, Acc.railing: 0.4064, Acc.cushion: 0.7498, Acc.base: 0.5361, Acc.box: 0.5613, Acc.column: 0.6217, Acc.signboard: 0.4112, Acc.chest of drawers: 0.7728, Acc.counter: 0.6323, Acc.sand: 0.8997, Acc.sink: 0.9005, Acc.skyscraper: 0.5991, Acc.fireplace: 0.9163, Acc.refrigerator: 0.8971, Acc.grandstand: 0.8479, Acc.path: 0.3114, Acc.stairs: 0.3777, Acc.runway: 0.9056, Acc.case: 0.8640, Acc.pool table: 0.9791, Acc.pillow: 0.6667, Acc.screen door: 0.9324, Acc.stairway: 0.6605, Acc.river: 0.3675, Acc.bridge: 0.8414, Acc.bookcase: 0.6538, Acc.blind: 0.3869, Acc.coffee table: 0.8914, Acc.toilet: 0.9246, Acc.flower: 0.6428, Acc.book: 0.7301, Acc.hill: 0.0708, Acc.bench: 0.5689, Acc.countertop: 0.7969, Acc.stove: 0.9052, Acc.palm: 0.7658, Acc.kitchen island: 0.9183, Acc.computer: 0.9320, Acc.swivel chair: 0.7857, Acc.boat: 0.9110, Acc.bar: 0.8295, Acc.arcade machine: 0.9686, Acc.hovel: 0.2540, Acc.bus: 0.9667, Acc.towel: 0.8537, Acc.light: 0.5010, Acc.truck: 0.6915, Acc.tower: 0.4930, Acc.chandelier: 0.7315, Acc.awning: 0.4776, Acc.streetlight: 0.2749, Acc.booth: 0.8486, Acc.television receiver: 0.8295, Acc.airplane: 0.9236, Acc.dirt track: 0.1198, Acc.apparel: 0.7796, Acc.pole: 0.4129, Acc.land: 0.0000, Acc.bannister: 0.1112, Acc.escalator: 0.8235, Acc.ottoman: 0.6499, Acc.bottle: 0.6490, Acc.buffet: 0.9248, Acc.poster: 0.4002, Acc.stage: 0.4647, Acc.van: 0.7768, Acc.ship: 0.9252, Acc.fountain: 0.2491, Acc.conveyer belt: 0.9700, Acc.canopy: 0.7273, Acc.washer: 0.9651, Acc.plaything: 0.2027, Acc.swimming pool: 0.8830, Acc.stool: 0.5581, Acc.barrel: 0.6816, Acc.basket: 0.5384, Acc.waterfall: 0.9299, Acc.tent: 0.9801, Acc.bag: 0.2350, Acc.minibike: 0.8885, Acc.cradle: 0.9602, Acc.oven: 0.7348, Acc.ball: 0.6744, Acc.food: 0.6867, Acc.step: 0.1405, Acc.tank: 0.6781, Acc.trade name: 0.1941, Acc.microwave: 0.9565, Acc.pot: 0.6616, Acc.animal: 0.6152, Acc.bicycle: 0.8529, Acc.lake: 0.7850, Acc.dishwasher: 0.8159, Acc.screen: 0.7043, Acc.blanket: 0.2801, Acc.sculpture: 0.7813, Acc.hood: 0.6333, Acc.sconce: 0.6445, Acc.vase: 0.6207, Acc.traffic light: 0.5571, Acc.tray: 0.0920, Acc.ashcan: 0.6072, Acc.fan: 0.6682, Acc.pier: 0.7890, Acc.crt screen: 0.2380, Acc.plate: 0.7838, Acc.monitor: 0.0917, Acc.bulletin board: 0.7314, Acc.shower: 0.0000, Acc.radiator: 0.6923, Acc.glass: 0.1784, Acc.clock: 0.5636, Acc.flag: 0.6895 2024-06-16 01:59:06,673 - mmseg - INFO - Iter [11050/80000] lr: 2.792e-06, eta: 1 day, 9:16:13, time: 3.264, data_time: 1.659, memory: 65790, decode.loss_ce: 0.3775, decode.acc_seg: 84.7699, aux.loss_ce: 0.1512, aux.acc_seg: 84.8488, loss: 0.5287 2024-06-16 02:00:27,215 - mmseg - INFO - Iter [11100/80000] lr: 2.790e-06, eta: 1 day, 9:14:07, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3617, decode.acc_seg: 85.0114, aux.loss_ce: 0.1437, aux.acc_seg: 85.3383, loss: 0.5055 2024-06-16 02:01:47,700 - mmseg - INFO - Iter [11150/80000] lr: 2.788e-06, eta: 1 day, 9:12:01, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3460, decode.acc_seg: 85.9444, aux.loss_ce: 0.1384, aux.acc_seg: 86.1265, loss: 0.4844 2024-06-16 02:03:08,217 - mmseg - INFO - Iter [11200/80000] lr: 2.786e-06, eta: 1 day, 9:09:56, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3585, decode.acc_seg: 85.2005, aux.loss_ce: 0.1412, aux.acc_seg: 85.5263, loss: 0.4997 2024-06-16 02:04:28,886 - mmseg - INFO - Iter [11250/80000] lr: 2.784e-06, eta: 1 day, 9:07:51, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3841, decode.acc_seg: 84.8007, aux.loss_ce: 0.1510, aux.acc_seg: 84.9597, loss: 0.5350 2024-06-16 02:05:49,657 - mmseg - INFO - Iter [11300/80000] lr: 2.782e-06, eta: 1 day, 9:05:48, time: 1.615, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3593, decode.acc_seg: 84.4732, aux.loss_ce: 0.1426, aux.acc_seg: 84.8532, loss: 0.5019 2024-06-16 02:07:10,172 - mmseg - INFO - Iter [11350/80000] lr: 2.780e-06, eta: 1 day, 9:03:44, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3877, decode.acc_seg: 85.0786, aux.loss_ce: 0.1527, aux.acc_seg: 85.3176, loss: 0.5404 2024-06-16 02:08:33,765 - mmseg - INFO - Iter [11400/80000] lr: 2.778e-06, eta: 1 day, 9:01:59, time: 1.672, data_time: 0.070, memory: 65790, decode.loss_ce: 0.3662, decode.acc_seg: 85.3895, aux.loss_ce: 0.1462, aux.acc_seg: 85.4672, loss: 0.5124 2024-06-16 02:09:54,238 - mmseg - INFO - Iter [11450/80000] lr: 2.776e-06, eta: 1 day, 8:59:55, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3596, decode.acc_seg: 85.1326, aux.loss_ce: 0.1434, aux.acc_seg: 85.3939, loss: 0.5030 2024-06-16 02:11:14,704 - mmseg - INFO - Iter [11500/80000] lr: 2.774e-06, eta: 1 day, 8:57:52, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3527, decode.acc_seg: 85.6946, aux.loss_ce: 0.1418, aux.acc_seg: 85.6675, loss: 0.4945 2024-06-16 02:12:35,349 - mmseg - INFO - Iter [11550/80000] lr: 2.772e-06, eta: 1 day, 8:55:50, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3338, decode.acc_seg: 86.5095, aux.loss_ce: 0.1342, aux.acc_seg: 86.6955, loss: 0.4680 2024-06-16 02:13:55,930 - mmseg - INFO - Iter [11600/80000] lr: 2.770e-06, eta: 1 day, 8:53:47, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3403, decode.acc_seg: 86.0917, aux.loss_ce: 0.1351, aux.acc_seg: 86.4096, loss: 0.4754 2024-06-16 02:15:16,513 - mmseg - INFO - Iter [11650/80000] lr: 2.768e-06, eta: 1 day, 8:51:46, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3601, decode.acc_seg: 85.3032, aux.loss_ce: 0.1428, aux.acc_seg: 85.6523, loss: 0.5029 2024-06-16 02:16:37,007 - mmseg - INFO - Iter [11700/80000] lr: 2.766e-06, eta: 1 day, 8:49:44, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3377, decode.acc_seg: 86.3453, aux.loss_ce: 0.1346, aux.acc_seg: 86.5466, loss: 0.4723 2024-06-16 02:17:57,532 - mmseg - INFO - Iter [11750/80000] lr: 2.764e-06, eta: 1 day, 8:47:43, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3571, decode.acc_seg: 85.9156, aux.loss_ce: 0.1429, aux.acc_seg: 85.8586, loss: 0.5000 2024-06-16 02:19:18,022 - mmseg - INFO - Iter [11800/80000] lr: 2.762e-06, eta: 1 day, 8:45:41, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3430, decode.acc_seg: 86.0213, aux.loss_ce: 0.1371, aux.acc_seg: 86.1882, loss: 0.4801 2024-06-16 02:20:38,528 - mmseg - INFO - Iter [11850/80000] lr: 2.760e-06, eta: 1 day, 8:43:41, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3480, decode.acc_seg: 85.6168, aux.loss_ce: 0.1390, aux.acc_seg: 85.8906, loss: 0.4870 2024-06-16 02:21:59,201 - mmseg - INFO - Iter [11900/80000] lr: 2.758e-06, eta: 1 day, 8:41:41, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3693, decode.acc_seg: 84.4640, aux.loss_ce: 0.1447, aux.acc_seg: 85.0219, loss: 0.5140 2024-06-16 02:23:19,799 - mmseg - INFO - Iter [11950/80000] lr: 2.756e-06, eta: 1 day, 8:39:42, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3684, decode.acc_seg: 85.1774, aux.loss_ce: 0.1455, aux.acc_seg: 85.6190, loss: 0.5139 2024-06-16 02:24:40,313 - mmseg - INFO - Saving checkpoint at 12000 iterations 2024-06-16 02:25:50,891 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 02:25:50,892 - mmseg - INFO - Iter [12000/80000] lr: 2.754e-06, eta: 1 day, 8:44:22, time: 3.022, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3746, decode.acc_seg: 85.2360, aux.loss_ce: 0.1478, aux.acc_seg: 85.5166, loss: 0.5224 2024-06-16 02:27:13,199 - mmseg - INFO - per class results: 2024-06-16 02:27:13,205 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 79.5 | 88.66 | | building | 82.63 | 92.64 | | sky | 93.95 | 97.19 | | floor | 82.8 | 89.79 | | tree | 75.4 | 88.34 | | ceiling | 84.93 | 89.89 | | road | 84.2 | 87.87 | | bed | 90.13 | 94.18 | | windowpane | 65.04 | 81.88 | | grass | 67.65 | 84.45 | | cabinet | 64.45 | 73.52 | | sidewalk | 66.61 | 88.61 | | person | 82.2 | 90.88 | | earth | 34.11 | 42.08 | | door | 57.71 | 70.96 | | table | 65.2 | 77.87 | | mountain | 60.26 | 76.18 | | plant | 56.14 | 66.42 | | curtain | 74.28 | 89.78 | | chair | 62.06 | 73.82 | | car | 85.08 | 93.25 | | water | 56.03 | 69.25 | | painting | 74.66 | 84.15 | | sofa | 76.83 | 92.28 | | shelf | 38.69 | 46.95 | | house | 52.29 | 79.55 | | sea | 60.71 | 75.22 | | mirror | 75.04 | 80.44 | | rug | 69.95 | 80.54 | | field | 36.92 | 56.66 | | armchair | 56.62 | 65.7 | | seat | 63.04 | 89.65 | | fence | 48.13 | 58.71 | | desk | 52.55 | 76.8 | | rock | 52.16 | 77.34 | | wardrobe | 57.52 | 67.95 | | lamp | 63.42 | 75.1 | | bathtub | 85.27 | 87.51 | | railing | 40.86 | 58.39 | | cushion | 64.49 | 85.65 | | base | 42.8 | 73.42 | | box | 35.71 | 46.74 | | column | 49.25 | 56.04 | | signboard | 35.52 | 41.38 | | chest of drawers | 43.7 | 73.87 | | counter | 51.03 | 66.84 | | sand | 59.08 | 88.01 | | sink | 78.2 | 85.17 | | skyscraper | 49.36 | 65.45 | | fireplace | 69.49 | 96.34 | | refrigerator | 75.25 | 96.37 | | grandstand | 52.57 | 88.82 | | path | 29.36 | 47.13 | | stairs | 33.04 | 37.14 | | runway | 71.1 | 95.43 | | case | 68.94 | 85.91 | | pool table | 91.01 | 98.65 | | pillow | 63.57 | 76.28 | | screen door | 84.78 | 90.21 | | stairway | 51.36 | 59.88 | | river | 11.3 | 20.49 | | bridge | 43.96 | 51.44 | | bookcase | 34.39 | 55.02 | | blind | 25.7 | 26.33 | | coffee table | 59.2 | 89.7 | | toilet | 86.95 | 93.85 | | flower | 36.65 | 50.12 | | book | 49.44 | 76.64 | | hill | 6.52 | 13.76 | | bench | 56.37 | 68.61 | | countertop | 65.68 | 83.76 | | stove | 81.73 | 92.8 | | palm | 50.79 | 86.72 | | kitchen island | 51.33 | 91.29 | | computer | 73.81 | 91.19 | | swivel chair | 51.81 | 71.46 | | boat | 55.13 | 89.99 | | bar | 59.56 | 86.41 | | arcade machine | 87.76 | 97.75 | | hovel | 33.86 | 41.5 | | bus | 91.27 | 96.73 | | towel | 72.18 | 82.79 | | light | 42.45 | 49.61 | | truck | 45.13 | 59.88 | | tower | 13.59 | 21.15 | | chandelier | 66.27 | 88.32 | | awning | 43.7 | 62.76 | | streetlight | 23.61 | 30.97 | | booth | 46.34 | 92.75 | | television receiver | 78.07 | 85.04 | | airplane | 69.59 | 76.24 | | dirt track | 5.03 | 5.09 | | apparel | 47.94 | 66.03 | | pole | 21.58 | 28.78 | | land | 1.04 | 1.44 | | bannister | 11.76 | 17.09 | | escalator | 63.26 | 84.35 | | ottoman | 56.36 | 71.75 | | bottle | 39.41 | 68.85 | | buffet | 52.12 | 90.1 | | poster | 35.79 | 46.88 | | stage | 24.59 | 54.73 | | van | 50.11 | 78.04 | | ship | 82.61 | 98.5 | | fountain | 23.68 | 23.7 | | conveyer belt | 71.99 | 97.12 | | canopy | 43.75 | 75.48 | | washer | 87.1 | 95.25 | | plaything | 22.8 | 40.74 | | swimming pool | 56.37 | 81.48 | | stool | 43.2 | 57.27 | | barrel | 56.99 | 69.55 | | basket | 42.17 | 56.59 | | waterfall | 69.33 | 94.33 | | tent | 79.47 | 98.35 | | bag | 24.8 | 29.86 | | minibike | 71.9 | 89.2 | | cradle | 84.33 | 96.9 | | oven | 59.17 | 82.66 | | ball | 58.41 | 72.4 | | food | 64.63 | 74.04 | | step | 9.2 | 11.03 | | tank | 70.57 | 90.41 | | trade name | 11.06 | 11.28 | | microwave | 86.51 | 96.63 | | pot | 55.85 | 64.87 | | animal | 69.13 | 72.49 | | bicycle | 55.48 | 67.38 | | lake | 41.41 | 87.72 | | dishwasher | 72.04 | 83.27 | | screen | 48.22 | 75.78 | | blanket | 19.63 | 21.83 | | sculpture | 67.82 | 80.96 | | hood | 61.6 | 74.19 | | sconce | 52.67 | 66.46 | | vase | 41.06 | 54.9 | | traffic light | 32.94 | 60.71 | | tray | 19.75 | 28.2 | | ashcan | 48.48 | 58.28 | | fan | 61.1 | 77.32 | | pier | 40.13 | 48.81 | | crt screen | 14.04 | 40.72 | | plate | 60.71 | 76.53 | | monitor | 14.13 | 15.33 | | bulletin board | 56.77 | 71.87 | | shower | 0.0 | 0.0 | | radiator | 65.87 | 74.37 | | glass | 11.79 | 12.15 | | clock | 45.08 | 54.64 | | flag | 65.77 | 79.94 | +---------------------+-------+-------+ 2024-06-16 02:27:13,205 - mmseg - INFO - Summary: 2024-06-16 02:27:13,206 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 84.52 | 54.26 | 68.97 | +-------+-------+-------+ 2024-06-16 02:27:13,207 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 02:27:13,207 - mmseg - INFO - Iter(val) [250] aAcc: 0.8452, mIoU: 0.5426, mAcc: 0.6897, IoU.wall: 0.7950, IoU.building: 0.8263, IoU.sky: 0.9395, IoU.floor: 0.8280, IoU.tree: 0.7540, IoU.ceiling: 0.8493, IoU.road: 0.8420, IoU.bed : 0.9013, IoU.windowpane: 0.6504, IoU.grass: 0.6765, IoU.cabinet: 0.6445, IoU.sidewalk: 0.6661, IoU.person: 0.8220, IoU.earth: 0.3411, IoU.door: 0.5771, IoU.table: 0.6520, IoU.mountain: 0.6026, IoU.plant: 0.5614, IoU.curtain: 0.7428, IoU.chair: 0.6206, IoU.car: 0.8508, IoU.water: 0.5603, IoU.painting: 0.7466, IoU.sofa: 0.7683, IoU.shelf: 0.3869, IoU.house: 0.5229, IoU.sea: 0.6071, IoU.mirror: 0.7504, IoU.rug: 0.6995, IoU.field: 0.3692, IoU.armchair: 0.5662, IoU.seat: 0.6304, IoU.fence: 0.4813, IoU.desk: 0.5255, IoU.rock: 0.5216, IoU.wardrobe: 0.5752, IoU.lamp: 0.6342, IoU.bathtub: 0.8527, IoU.railing: 0.4086, IoU.cushion: 0.6449, IoU.base: 0.4280, IoU.box: 0.3571, IoU.column: 0.4925, IoU.signboard: 0.3552, IoU.chest of drawers: 0.4370, IoU.counter: 0.5103, IoU.sand: 0.5908, IoU.sink: 0.7820, IoU.skyscraper: 0.4936, IoU.fireplace: 0.6949, IoU.refrigerator: 0.7525, IoU.grandstand: 0.5257, IoU.path: 0.2936, IoU.stairs: 0.3304, IoU.runway: 0.7110, IoU.case: 0.6894, IoU.pool table: 0.9101, IoU.pillow: 0.6357, IoU.screen door: 0.8478, IoU.stairway: 0.5136, IoU.river: 0.1130, IoU.bridge: 0.4396, IoU.bookcase: 0.3439, IoU.blind: 0.2570, IoU.coffee table: 0.5920, IoU.toilet: 0.8695, IoU.flower: 0.3665, IoU.book: 0.4944, IoU.hill: 0.0652, IoU.bench: 0.5637, IoU.countertop: 0.6568, IoU.stove: 0.8173, IoU.palm: 0.5079, IoU.kitchen island: 0.5133, IoU.computer: 0.7381, IoU.swivel chair: 0.5181, IoU.boat: 0.5513, IoU.bar: 0.5956, IoU.arcade machine: 0.8776, IoU.hovel: 0.3386, IoU.bus: 0.9127, IoU.towel: 0.7218, IoU.light: 0.4245, IoU.truck: 0.4513, IoU.tower: 0.1359, IoU.chandelier: 0.6627, IoU.awning: 0.4370, IoU.streetlight: 0.2361, IoU.booth: 0.4634, IoU.television receiver: 0.7807, IoU.airplane: 0.6959, IoU.dirt track: 0.0503, IoU.apparel: 0.4794, IoU.pole: 0.2158, IoU.land: 0.0104, IoU.bannister: 0.1176, IoU.escalator: 0.6326, IoU.ottoman: 0.5636, IoU.bottle: 0.3941, IoU.buffet: 0.5212, IoU.poster: 0.3579, IoU.stage: 0.2459, IoU.van: 0.5011, IoU.ship: 0.8261, IoU.fountain: 0.2368, IoU.conveyer belt: 0.7199, IoU.canopy: 0.4375, IoU.washer: 0.8710, IoU.plaything: 0.2280, IoU.swimming pool: 0.5637, IoU.stool: 0.4320, IoU.barrel: 0.5699, IoU.basket: 0.4217, IoU.waterfall: 0.6933, IoU.tent: 0.7947, IoU.bag: 0.2480, IoU.minibike: 0.7190, IoU.cradle: 0.8433, IoU.oven: 0.5917, IoU.ball: 0.5841, IoU.food: 0.6463, IoU.step: 0.0920, IoU.tank: 0.7057, IoU.trade name: 0.1106, IoU.microwave: 0.8651, IoU.pot: 0.5585, IoU.animal: 0.6913, IoU.bicycle: 0.5548, IoU.lake: 0.4141, IoU.dishwasher: 0.7204, IoU.screen: 0.4822, IoU.blanket: 0.1963, IoU.sculpture: 0.6782, IoU.hood: 0.6160, IoU.sconce: 0.5267, IoU.vase: 0.4106, IoU.traffic light: 0.3294, IoU.tray: 0.1975, IoU.ashcan: 0.4848, IoU.fan: 0.6110, IoU.pier: 0.4013, IoU.crt screen: 0.1404, IoU.plate: 0.6071, IoU.monitor: 0.1413, IoU.bulletin board: 0.5677, IoU.shower: 0.0000, IoU.radiator: 0.6587, IoU.glass: 0.1179, IoU.clock: 0.4508, IoU.flag: 0.6577, Acc.wall: 0.8866, Acc.building: 0.9264, Acc.sky: 0.9719, Acc.floor: 0.8979, Acc.tree: 0.8834, Acc.ceiling: 0.8989, Acc.road: 0.8787, Acc.bed : 0.9418, Acc.windowpane: 0.8188, Acc.grass: 0.8445, Acc.cabinet: 0.7352, Acc.sidewalk: 0.8861, Acc.person: 0.9088, Acc.earth: 0.4208, Acc.door: 0.7096, Acc.table: 0.7787, Acc.mountain: 0.7618, Acc.plant: 0.6642, Acc.curtain: 0.8978, Acc.chair: 0.7382, Acc.car: 0.9325, Acc.water: 0.6925, Acc.painting: 0.8415, Acc.sofa: 0.9228, Acc.shelf: 0.4695, Acc.house: 0.7955, Acc.sea: 0.7522, Acc.mirror: 0.8044, Acc.rug: 0.8054, Acc.field: 0.5666, Acc.armchair: 0.6570, Acc.seat: 0.8965, Acc.fence: 0.5871, Acc.desk: 0.7680, Acc.rock: 0.7734, Acc.wardrobe: 0.6795, Acc.lamp: 0.7510, Acc.bathtub: 0.8751, Acc.railing: 0.5839, Acc.cushion: 0.8565, Acc.base: 0.7342, Acc.box: 0.4674, Acc.column: 0.5604, Acc.signboard: 0.4138, Acc.chest of drawers: 0.7387, Acc.counter: 0.6684, Acc.sand: 0.8801, Acc.sink: 0.8517, Acc.skyscraper: 0.6545, Acc.fireplace: 0.9634, Acc.refrigerator: 0.9637, Acc.grandstand: 0.8882, Acc.path: 0.4713, Acc.stairs: 0.3714, Acc.runway: 0.9543, Acc.case: 0.8591, Acc.pool table: 0.9865, Acc.pillow: 0.7628, Acc.screen door: 0.9021, Acc.stairway: 0.5988, Acc.river: 0.2049, Acc.bridge: 0.5144, Acc.bookcase: 0.5502, Acc.blind: 0.2633, Acc.coffee table: 0.8970, Acc.toilet: 0.9385, Acc.flower: 0.5012, Acc.book: 0.7664, Acc.hill: 0.1376, Acc.bench: 0.6861, Acc.countertop: 0.8376, Acc.stove: 0.9280, Acc.palm: 0.8672, Acc.kitchen island: 0.9129, Acc.computer: 0.9119, Acc.swivel chair: 0.7146, Acc.boat: 0.8999, Acc.bar: 0.8641, Acc.arcade machine: 0.9775, Acc.hovel: 0.4150, Acc.bus: 0.9673, Acc.towel: 0.8279, Acc.light: 0.4961, Acc.truck: 0.5988, Acc.tower: 0.2115, Acc.chandelier: 0.8832, Acc.awning: 0.6276, Acc.streetlight: 0.3097, Acc.booth: 0.9275, Acc.television receiver: 0.8504, Acc.airplane: 0.7624, Acc.dirt track: 0.0509, Acc.apparel: 0.6603, Acc.pole: 0.2878, Acc.land: 0.0144, Acc.bannister: 0.1709, Acc.escalator: 0.8435, Acc.ottoman: 0.7175, Acc.bottle: 0.6885, Acc.buffet: 0.9010, Acc.poster: 0.4688, Acc.stage: 0.5473, Acc.van: 0.7804, Acc.ship: 0.9850, Acc.fountain: 0.2370, Acc.conveyer belt: 0.9712, Acc.canopy: 0.7548, Acc.washer: 0.9525, Acc.plaything: 0.4074, Acc.swimming pool: 0.8148, Acc.stool: 0.5727, Acc.barrel: 0.6955, Acc.basket: 0.5659, Acc.waterfall: 0.9433, Acc.tent: 0.9835, Acc.bag: 0.2986, Acc.minibike: 0.8920, Acc.cradle: 0.9690, Acc.oven: 0.8266, Acc.ball: 0.7240, Acc.food: 0.7404, Acc.step: 0.1103, Acc.tank: 0.9041, Acc.trade name: 0.1128, Acc.microwave: 0.9663, Acc.pot: 0.6487, Acc.animal: 0.7249, Acc.bicycle: 0.6738, Acc.lake: 0.8772, Acc.dishwasher: 0.8327, Acc.screen: 0.7578, Acc.blanket: 0.2183, Acc.sculpture: 0.8096, Acc.hood: 0.7419, Acc.sconce: 0.6646, Acc.vase: 0.5490, Acc.traffic light: 0.6071, Acc.tray: 0.2820, Acc.ashcan: 0.5828, Acc.fan: 0.7732, Acc.pier: 0.4881, Acc.crt screen: 0.4072, Acc.plate: 0.7653, Acc.monitor: 0.1533, Acc.bulletin board: 0.7187, Acc.shower: 0.0000, Acc.radiator: 0.7437, Acc.glass: 0.1215, Acc.clock: 0.5464, Acc.flag: 0.7994 2024-06-16 02:28:34,144 - mmseg - INFO - Iter [12050/80000] lr: 2.752e-06, eta: 1 day, 8:50:07, time: 3.265, data_time: 1.659, memory: 65790, decode.loss_ce: 0.3400, decode.acc_seg: 86.2391, aux.loss_ce: 0.1357, aux.acc_seg: 86.3893, loss: 0.4756 2024-06-16 02:29:54,631 - mmseg - INFO - Iter [12100/80000] lr: 2.750e-06, eta: 1 day, 8:48:04, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3542, decode.acc_seg: 85.8551, aux.loss_ce: 0.1430, aux.acc_seg: 85.8661, loss: 0.4972 2024-06-16 02:31:15,191 - mmseg - INFO - Iter [12150/80000] lr: 2.748e-06, eta: 1 day, 8:46:01, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3392, decode.acc_seg: 86.3336, aux.loss_ce: 0.1357, aux.acc_seg: 86.3547, loss: 0.4748 2024-06-16 02:32:35,918 - mmseg - INFO - Iter [12200/80000] lr: 2.746e-06, eta: 1 day, 8:44:00, time: 1.615, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3695, decode.acc_seg: 84.8732, aux.loss_ce: 0.1486, aux.acc_seg: 85.0209, loss: 0.5181 2024-06-16 02:33:56,451 - mmseg - INFO - Iter [12250/80000] lr: 2.744e-06, eta: 1 day, 8:41:57, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3498, decode.acc_seg: 85.8398, aux.loss_ce: 0.1385, aux.acc_seg: 86.0026, loss: 0.4884 2024-06-16 02:35:16,960 - mmseg - INFO - Iter [12300/80000] lr: 2.742e-06, eta: 1 day, 8:39:55, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3694, decode.acc_seg: 84.7657, aux.loss_ce: 0.1471, aux.acc_seg: 84.9298, loss: 0.5165 2024-06-16 02:36:37,612 - mmseg - INFO - Iter [12350/80000] lr: 2.740e-06, eta: 1 day, 8:37:55, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3562, decode.acc_seg: 85.3394, aux.loss_ce: 0.1410, aux.acc_seg: 85.7658, loss: 0.4972 2024-06-16 02:37:58,131 - mmseg - INFO - Iter [12400/80000] lr: 2.738e-06, eta: 1 day, 8:35:53, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3708, decode.acc_seg: 85.0815, aux.loss_ce: 0.1452, aux.acc_seg: 85.4403, loss: 0.5159 2024-06-16 02:39:18,656 - mmseg - INFO - Iter [12450/80000] lr: 2.736e-06, eta: 1 day, 8:33:53, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3408, decode.acc_seg: 86.0365, aux.loss_ce: 0.1352, aux.acc_seg: 86.3652, loss: 0.4760 2024-06-16 02:40:39,411 - mmseg - INFO - Iter [12500/80000] lr: 2.734e-06, eta: 1 day, 8:31:53, time: 1.615, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3700, decode.acc_seg: 85.2720, aux.loss_ce: 0.1467, aux.acc_seg: 85.3494, loss: 0.5167 2024-06-16 02:42:00,050 - mmseg - INFO - Iter [12550/80000] lr: 2.732e-06, eta: 1 day, 8:29:54, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3620, decode.acc_seg: 85.4083, aux.loss_ce: 0.1418, aux.acc_seg: 85.8170, loss: 0.5038 2024-06-16 02:43:20,564 - mmseg - INFO - Iter [12600/80000] lr: 2.730e-06, eta: 1 day, 8:27:54, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3997, decode.acc_seg: 83.9869, aux.loss_ce: 0.1563, aux.acc_seg: 84.3654, loss: 0.5560 2024-06-16 02:44:44,177 - mmseg - INFO - Iter [12650/80000] lr: 2.728e-06, eta: 1 day, 8:26:11, time: 1.672, data_time: 0.066, memory: 65790, decode.loss_ce: 0.3660, decode.acc_seg: 85.1305, aux.loss_ce: 0.1441, aux.acc_seg: 85.4210, loss: 0.5101 2024-06-16 02:46:04,711 - mmseg - INFO - Iter [12700/80000] lr: 2.726e-06, eta: 1 day, 8:24:11, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3522, decode.acc_seg: 85.5267, aux.loss_ce: 0.1396, aux.acc_seg: 85.7560, loss: 0.4918 2024-06-16 02:47:25,234 - mmseg - INFO - Iter [12750/80000] lr: 2.723e-06, eta: 1 day, 8:22:12, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3410, decode.acc_seg: 85.8697, aux.loss_ce: 0.1366, aux.acc_seg: 85.8737, loss: 0.4777 2024-06-16 02:48:45,853 - mmseg - INFO - Iter [12800/80000] lr: 2.721e-06, eta: 1 day, 8:20:14, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3200, decode.acc_seg: 86.6715, aux.loss_ce: 0.1292, aux.acc_seg: 86.7785, loss: 0.4493 2024-06-16 02:50:06,552 - mmseg - INFO - Iter [12850/80000] lr: 2.719e-06, eta: 1 day, 8:18:16, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3114, decode.acc_seg: 87.1682, aux.loss_ce: 0.1263, aux.acc_seg: 87.1984, loss: 0.4377 2024-06-16 02:51:27,107 - mmseg - INFO - Iter [12900/80000] lr: 2.717e-06, eta: 1 day, 8:16:18, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3455, decode.acc_seg: 85.7663, aux.loss_ce: 0.1370, aux.acc_seg: 85.8938, loss: 0.4824 2024-06-16 02:52:47,680 - mmseg - INFO - Iter [12950/80000] lr: 2.715e-06, eta: 1 day, 8:14:21, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3003, decode.acc_seg: 87.5272, aux.loss_ce: 0.1194, aux.acc_seg: 87.6142, loss: 0.4196 2024-06-16 02:54:08,215 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 02:54:08,215 - mmseg - INFO - Iter [13000/80000] lr: 2.713e-06, eta: 1 day, 8:12:23, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3279, decode.acc_seg: 86.6521, aux.loss_ce: 0.1317, aux.acc_seg: 86.6647, loss: 0.4596 2024-06-16 02:55:29,981 - mmseg - INFO - per class results: 2024-06-16 02:55:29,987 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 79.46 | 88.26 | | building | 83.62 | 92.76 | | sky | 94.21 | 96.76 | | floor | 82.19 | 87.54 | | tree | 76.29 | 89.48 | | ceiling | 85.82 | 93.4 | | road | 85.8 | 91.89 | | bed | 90.21 | 96.19 | | windowpane | 65.15 | 80.13 | | grass | 70.15 | 84.26 | | cabinet | 61.79 | 67.68 | | sidewalk | 69.03 | 83.77 | | person | 82.29 | 88.83 | | earth | 40.06 | 56.06 | | door | 57.2 | 72.24 | | table | 65.24 | 79.04 | | mountain | 60.6 | 71.15 | | plant | 56.88 | 73.1 | | curtain | 78.2 | 86.89 | | chair | 61.5 | 75.12 | | car | 85.36 | 93.99 | | water | 62.19 | 71.69 | | painting | 76.9 | 85.68 | | sofa | 77.94 | 93.19 | | shelf | 42.72 | 57.19 | | house | 57.34 | 80.99 | | sea | 70.12 | 83.05 | | mirror | 77.21 | 87.4 | | rug | 69.84 | 83.71 | | field | 34.62 | 55.51 | | armchair | 63.17 | 81.29 | | seat | 64.86 | 87.25 | | fence | 51.62 | 60.39 | | desk | 48.15 | 81.41 | | rock | 54.42 | 73.98 | | wardrobe | 54.58 | 75.12 | | lamp | 66.71 | 82.08 | | bathtub | 88.28 | 92.63 | | railing | 41.19 | 55.98 | | cushion | 60.63 | 65.58 | | base | 39.41 | 59.62 | | box | 40.67 | 54.52 | | column | 49.1 | 58.94 | | signboard | 40.19 | 54.22 | | chest of drawers | 43.22 | 86.31 | | counter | 59.78 | 70.63 | | sand | 55.71 | 83.89 | | sink | 75.51 | 81.81 | | skyscraper | 48.52 | 57.63 | | fireplace | 70.48 | 85.82 | | refrigerator | 83.34 | 93.95 | | grandstand | 50.09 | 74.33 | | path | 30.17 | 38.08 | | stairs | 10.88 | 11.34 | | runway | 69.32 | 86.88 | | case | 60.81 | 88.35 | | pool table | 91.09 | 98.45 | | pillow | 62.18 | 70.27 | | screen door | 83.65 | 94.24 | | stairway | 29.49 | 51.72 | | river | 16.82 | 42.56 | | bridge | 54.58 | 64.75 | | bookcase | 34.64 | 59.4 | | blind | 41.37 | 47.2 | | coffee table | 62.82 | 89.07 | | toilet | 89.02 | 94.72 | | flower | 40.67 | 53.72 | | book | 49.79 | 79.22 | | hill | 6.69 | 9.08 | | bench | 61.91 | 70.91 | | countertop | 63.2 | 81.55 | | stove | 81.98 | 91.17 | | palm | 50.9 | 87.13 | | kitchen island | 49.35 | 84.5 | | computer | 73.76 | 91.04 | | swivel chair | 49.75 | 81.84 | | boat | 72.9 | 90.5 | | bar | 60.66 | 68.78 | | arcade machine | 88.2 | 96.63 | | hovel | 23.26 | 26.52 | | bus | 91.51 | 96.54 | | towel | 69.29 | 82.52 | | light | 48.08 | 61.37 | | truck | 45.8 | 64.03 | | tower | 31.94 | 54.07 | | chandelier | 67.99 | 85.5 | | awning | 43.59 | 62.69 | | streetlight | 24.89 | 31.54 | | booth | 45.47 | 87.16 | | television receiver | 77.83 | 84.57 | | airplane | 73.68 | 81.14 | | dirt track | 2.44 | 3.25 | | apparel | 55.0 | 67.64 | | pole | 25.98 | 40.16 | | land | 1.42 | 2.06 | | bannister | 15.42 | 19.44 | | escalator | 62.42 | 82.84 | | ottoman | 51.95 | 72.83 | | bottle | 40.02 | 68.97 | | buffet | 61.09 | 81.38 | | poster | 30.4 | 40.99 | | stage | 18.14 | 54.07 | | van | 52.82 | 69.54 | | ship | 55.5 | 76.46 | | fountain | 33.87 | 34.66 | | conveyer belt | 78.88 | 96.74 | | canopy | 59.85 | 73.82 | | washer | 85.88 | 91.72 | | plaything | 26.19 | 55.24 | | swimming pool | 59.92 | 91.36 | | stool | 44.32 | 56.76 | | barrel | 60.59 | 67.25 | | basket | 39.72 | 52.21 | | waterfall | 78.85 | 90.73 | | tent | 93.06 | 99.24 | | bag | 27.89 | 32.86 | | minibike | 72.41 | 83.62 | | cradle | 80.82 | 97.98 | | oven | 64.65 | 79.1 | | ball | 58.38 | 65.55 | | food | 51.48 | 56.19 | | step | 11.53 | 14.43 | | tank | 60.44 | 66.46 | | trade name | 35.62 | 48.72 | | microwave | 88.3 | 95.94 | | pot | 55.15 | 65.04 | | animal | 68.49 | 70.86 | | bicycle | 52.92 | 63.23 | | lake | 55.04 | 91.98 | | dishwasher | 66.44 | 83.92 | | screen | 52.74 | 92.81 | | blanket | 19.15 | 20.23 | | sculpture | 71.5 | 76.65 | | hood | 58.59 | 60.13 | | sconce | 52.87 | 72.86 | | vase | 42.42 | 58.52 | | traffic light | 32.36 | 63.43 | | tray | 14.82 | 17.91 | | ashcan | 47.88 | 69.56 | | fan | 58.48 | 69.73 | | pier | 43.04 | 49.78 | | crt screen | 0.7 | 1.71 | | plate | 60.78 | 75.26 | | monitor | 16.42 | 20.24 | | bulletin board | 59.26 | 74.13 | | shower | 0.0 | 0.0 | | radiator | 64.49 | 81.46 | | glass | 15.8 | 16.57 | | clock | 44.42 | 56.91 | | flag | 65.33 | 70.75 | +---------------------+-------+-------+ 2024-06-16 02:55:29,987 - mmseg - INFO - Summary: 2024-06-16 02:55:29,987 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 84.94 | 55.23 | 69.06 | +-------+-------+-------+ 2024-06-16 02:55:29,988 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 02:55:29,988 - mmseg - INFO - Iter(val) [250] aAcc: 0.8494, mIoU: 0.5523, mAcc: 0.6906, IoU.wall: 0.7946, IoU.building: 0.8362, IoU.sky: 0.9421, IoU.floor: 0.8219, IoU.tree: 0.7629, IoU.ceiling: 0.8582, IoU.road: 0.8580, IoU.bed : 0.9021, IoU.windowpane: 0.6515, IoU.grass: 0.7015, IoU.cabinet: 0.6179, IoU.sidewalk: 0.6903, IoU.person: 0.8229, IoU.earth: 0.4006, IoU.door: 0.5720, IoU.table: 0.6524, IoU.mountain: 0.6060, IoU.plant: 0.5688, IoU.curtain: 0.7820, IoU.chair: 0.6150, IoU.car: 0.8536, IoU.water: 0.6219, IoU.painting: 0.7690, IoU.sofa: 0.7794, IoU.shelf: 0.4272, IoU.house: 0.5734, IoU.sea: 0.7012, IoU.mirror: 0.7721, IoU.rug: 0.6984, IoU.field: 0.3462, IoU.armchair: 0.6317, IoU.seat: 0.6486, IoU.fence: 0.5162, IoU.desk: 0.4815, IoU.rock: 0.5442, IoU.wardrobe: 0.5458, IoU.lamp: 0.6671, IoU.bathtub: 0.8828, IoU.railing: 0.4119, IoU.cushion: 0.6063, IoU.base: 0.3941, IoU.box: 0.4067, IoU.column: 0.4910, IoU.signboard: 0.4019, IoU.chest of drawers: 0.4322, IoU.counter: 0.5978, IoU.sand: 0.5571, IoU.sink: 0.7551, IoU.skyscraper: 0.4852, IoU.fireplace: 0.7048, IoU.refrigerator: 0.8334, IoU.grandstand: 0.5009, IoU.path: 0.3017, IoU.stairs: 0.1088, IoU.runway: 0.6932, IoU.case: 0.6081, IoU.pool table: 0.9109, IoU.pillow: 0.6218, IoU.screen door: 0.8365, IoU.stairway: 0.2949, IoU.river: 0.1682, IoU.bridge: 0.5458, IoU.bookcase: 0.3464, IoU.blind: 0.4137, IoU.coffee table: 0.6282, IoU.toilet: 0.8902, IoU.flower: 0.4067, IoU.book: 0.4979, IoU.hill: 0.0669, IoU.bench: 0.6191, IoU.countertop: 0.6320, IoU.stove: 0.8198, IoU.palm: 0.5090, IoU.kitchen island: 0.4935, IoU.computer: 0.7376, IoU.swivel chair: 0.4975, IoU.boat: 0.7290, IoU.bar: 0.6066, IoU.arcade machine: 0.8820, IoU.hovel: 0.2326, IoU.bus: 0.9151, IoU.towel: 0.6929, IoU.light: 0.4808, IoU.truck: 0.4580, IoU.tower: 0.3194, IoU.chandelier: 0.6799, IoU.awning: 0.4359, IoU.streetlight: 0.2489, IoU.booth: 0.4547, IoU.television receiver: 0.7783, IoU.airplane: 0.7368, IoU.dirt track: 0.0244, IoU.apparel: 0.5500, IoU.pole: 0.2598, IoU.land: 0.0142, IoU.bannister: 0.1542, IoU.escalator: 0.6242, IoU.ottoman: 0.5195, IoU.bottle: 0.4002, IoU.buffet: 0.6109, IoU.poster: 0.3040, IoU.stage: 0.1814, IoU.van: 0.5282, IoU.ship: 0.5550, IoU.fountain: 0.3387, IoU.conveyer belt: 0.7888, IoU.canopy: 0.5985, IoU.washer: 0.8588, IoU.plaything: 0.2619, IoU.swimming pool: 0.5992, IoU.stool: 0.4432, IoU.barrel: 0.6059, IoU.basket: 0.3972, IoU.waterfall: 0.7885, IoU.tent: 0.9306, IoU.bag: 0.2789, IoU.minibike: 0.7241, IoU.cradle: 0.8082, IoU.oven: 0.6465, IoU.ball: 0.5838, IoU.food: 0.5148, IoU.step: 0.1153, IoU.tank: 0.6044, IoU.trade name: 0.3562, IoU.microwave: 0.8830, IoU.pot: 0.5515, IoU.animal: 0.6849, IoU.bicycle: 0.5292, IoU.lake: 0.5504, IoU.dishwasher: 0.6644, IoU.screen: 0.5274, IoU.blanket: 0.1915, IoU.sculpture: 0.7150, IoU.hood: 0.5859, IoU.sconce: 0.5287, IoU.vase: 0.4242, IoU.traffic light: 0.3236, IoU.tray: 0.1482, IoU.ashcan: 0.4788, IoU.fan: 0.5848, IoU.pier: 0.4304, IoU.crt screen: 0.0070, IoU.plate: 0.6078, IoU.monitor: 0.1642, IoU.bulletin board: 0.5926, IoU.shower: 0.0000, IoU.radiator: 0.6449, IoU.glass: 0.1580, IoU.clock: 0.4442, IoU.flag: 0.6533, Acc.wall: 0.8826, Acc.building: 0.9276, Acc.sky: 0.9676, Acc.floor: 0.8754, Acc.tree: 0.8948, Acc.ceiling: 0.9340, Acc.road: 0.9189, Acc.bed : 0.9619, Acc.windowpane: 0.8013, Acc.grass: 0.8426, Acc.cabinet: 0.6768, Acc.sidewalk: 0.8377, Acc.person: 0.8883, Acc.earth: 0.5606, Acc.door: 0.7224, Acc.table: 0.7904, Acc.mountain: 0.7115, Acc.plant: 0.7310, Acc.curtain: 0.8689, Acc.chair: 0.7512, Acc.car: 0.9399, Acc.water: 0.7169, Acc.painting: 0.8568, Acc.sofa: 0.9319, Acc.shelf: 0.5719, Acc.house: 0.8099, Acc.sea: 0.8305, Acc.mirror: 0.8740, Acc.rug: 0.8371, Acc.field: 0.5551, Acc.armchair: 0.8129, Acc.seat: 0.8725, Acc.fence: 0.6039, Acc.desk: 0.8141, Acc.rock: 0.7398, Acc.wardrobe: 0.7512, Acc.lamp: 0.8208, Acc.bathtub: 0.9263, Acc.railing: 0.5598, Acc.cushion: 0.6558, Acc.base: 0.5962, Acc.box: 0.5452, Acc.column: 0.5894, Acc.signboard: 0.5422, Acc.chest of drawers: 0.8631, Acc.counter: 0.7063, Acc.sand: 0.8389, Acc.sink: 0.8181, Acc.skyscraper: 0.5763, Acc.fireplace: 0.8582, Acc.refrigerator: 0.9395, Acc.grandstand: 0.7433, Acc.path: 0.3808, Acc.stairs: 0.1134, Acc.runway: 0.8688, Acc.case: 0.8835, Acc.pool table: 0.9845, Acc.pillow: 0.7027, Acc.screen door: 0.9424, Acc.stairway: 0.5172, Acc.river: 0.4256, Acc.bridge: 0.6475, Acc.bookcase: 0.5940, Acc.blind: 0.4720, Acc.coffee table: 0.8907, Acc.toilet: 0.9472, Acc.flower: 0.5372, Acc.book: 0.7922, Acc.hill: 0.0908, Acc.bench: 0.7091, Acc.countertop: 0.8155, Acc.stove: 0.9117, Acc.palm: 0.8713, Acc.kitchen island: 0.8450, Acc.computer: 0.9104, Acc.swivel chair: 0.8184, Acc.boat: 0.9050, Acc.bar: 0.6878, Acc.arcade machine: 0.9663, Acc.hovel: 0.2652, Acc.bus: 0.9654, Acc.towel: 0.8252, Acc.light: 0.6137, Acc.truck: 0.6403, Acc.tower: 0.5407, Acc.chandelier: 0.8550, Acc.awning: 0.6269, Acc.streetlight: 0.3154, Acc.booth: 0.8716, Acc.television receiver: 0.8457, Acc.airplane: 0.8114, Acc.dirt track: 0.0325, Acc.apparel: 0.6764, Acc.pole: 0.4016, Acc.land: 0.0206, Acc.bannister: 0.1944, Acc.escalator: 0.8284, Acc.ottoman: 0.7283, Acc.bottle: 0.6897, Acc.buffet: 0.8138, Acc.poster: 0.4099, Acc.stage: 0.5407, Acc.van: 0.6954, Acc.ship: 0.7646, Acc.fountain: 0.3466, Acc.conveyer belt: 0.9674, Acc.canopy: 0.7382, Acc.washer: 0.9172, Acc.plaything: 0.5524, Acc.swimming pool: 0.9136, Acc.stool: 0.5676, Acc.barrel: 0.6725, Acc.basket: 0.5221, Acc.waterfall: 0.9073, Acc.tent: 0.9924, Acc.bag: 0.3286, Acc.minibike: 0.8362, Acc.cradle: 0.9798, Acc.oven: 0.7910, Acc.ball: 0.6555, Acc.food: 0.5619, Acc.step: 0.1443, Acc.tank: 0.6646, Acc.trade name: 0.4872, Acc.microwave: 0.9594, Acc.pot: 0.6504, Acc.animal: 0.7086, Acc.bicycle: 0.6323, Acc.lake: 0.9198, Acc.dishwasher: 0.8392, Acc.screen: 0.9281, Acc.blanket: 0.2023, Acc.sculpture: 0.7665, Acc.hood: 0.6013, Acc.sconce: 0.7286, Acc.vase: 0.5852, Acc.traffic light: 0.6343, Acc.tray: 0.1791, Acc.ashcan: 0.6956, Acc.fan: 0.6973, Acc.pier: 0.4978, Acc.crt screen: 0.0171, Acc.plate: 0.7526, Acc.monitor: 0.2024, Acc.bulletin board: 0.7413, Acc.shower: 0.0000, Acc.radiator: 0.8146, Acc.glass: 0.1657, Acc.clock: 0.5691, Acc.flag: 0.7075 2024-06-16 02:56:50,911 - mmseg - INFO - Iter [13050/80000] lr: 2.711e-06, eta: 1 day, 8:17:27, time: 3.254, data_time: 1.649, memory: 65790, decode.loss_ce: 0.3318, decode.acc_seg: 86.2401, aux.loss_ce: 0.1325, aux.acc_seg: 86.3703, loss: 0.4643 2024-06-16 02:58:11,732 - mmseg - INFO - Iter [13100/80000] lr: 2.709e-06, eta: 1 day, 8:15:30, time: 1.616, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3397, decode.acc_seg: 86.0981, aux.loss_ce: 0.1348, aux.acc_seg: 86.3396, loss: 0.4745 2024-06-16 02:59:32,186 - mmseg - INFO - Iter [13150/80000] lr: 2.707e-06, eta: 1 day, 8:13:31, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3487, decode.acc_seg: 86.3386, aux.loss_ce: 0.1394, aux.acc_seg: 86.4636, loss: 0.4881 2024-06-16 03:00:52,676 - mmseg - INFO - Iter [13200/80000] lr: 2.705e-06, eta: 1 day, 8:11:32, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3656, decode.acc_seg: 85.3808, aux.loss_ce: 0.1459, aux.acc_seg: 85.5133, loss: 0.5115 2024-06-16 03:02:13,176 - mmseg - INFO - Iter [13250/80000] lr: 2.703e-06, eta: 1 day, 8:09:34, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3428, decode.acc_seg: 85.5707, aux.loss_ce: 0.1374, aux.acc_seg: 85.8879, loss: 0.4802 2024-06-16 03:03:33,667 - mmseg - INFO - Iter [13300/80000] lr: 2.701e-06, eta: 1 day, 8:07:36, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3560, decode.acc_seg: 85.7833, aux.loss_ce: 0.1415, aux.acc_seg: 85.9066, loss: 0.4975 2024-06-16 03:04:54,278 - mmseg - INFO - Iter [13350/80000] lr: 2.699e-06, eta: 1 day, 8:05:39, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3312, decode.acc_seg: 86.6171, aux.loss_ce: 0.1330, aux.acc_seg: 86.8047, loss: 0.4642 2024-06-16 03:06:14,910 - mmseg - INFO - Iter [13400/80000] lr: 2.697e-06, eta: 1 day, 8:03:42, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3511, decode.acc_seg: 86.2656, aux.loss_ce: 0.1395, aux.acc_seg: 86.3708, loss: 0.4906 2024-06-16 03:07:35,610 - mmseg - INFO - Iter [13450/80000] lr: 2.695e-06, eta: 1 day, 8:01:46, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3285, decode.acc_seg: 86.5180, aux.loss_ce: 0.1331, aux.acc_seg: 86.5868, loss: 0.4617 2024-06-16 03:08:56,103 - mmseg - INFO - Iter [13500/80000] lr: 2.693e-06, eta: 1 day, 7:59:49, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3651, decode.acc_seg: 85.9169, aux.loss_ce: 0.1461, aux.acc_seg: 85.8982, loss: 0.5111 2024-06-16 03:10:16,613 - mmseg - INFO - Iter [13550/80000] lr: 2.691e-06, eta: 1 day, 7:57:53, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3466, decode.acc_seg: 85.9589, aux.loss_ce: 0.1390, aux.acc_seg: 85.9122, loss: 0.4855 2024-06-16 03:11:37,055 - mmseg - INFO - Iter [13600/80000] lr: 2.689e-06, eta: 1 day, 7:55:56, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3441, decode.acc_seg: 85.7083, aux.loss_ce: 0.1364, aux.acc_seg: 85.9066, loss: 0.4805 2024-06-16 03:12:57,587 - mmseg - INFO - Iter [13650/80000] lr: 2.687e-06, eta: 1 day, 7:54:00, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3241, decode.acc_seg: 86.4111, aux.loss_ce: 0.1299, aux.acc_seg: 86.7949, loss: 0.4541 2024-06-16 03:14:18,099 - mmseg - INFO - Iter [13700/80000] lr: 2.685e-06, eta: 1 day, 7:52:05, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3342, decode.acc_seg: 86.1977, aux.loss_ce: 0.1337, aux.acc_seg: 86.4715, loss: 0.4679 2024-06-16 03:15:38,952 - mmseg - INFO - Iter [13750/80000] lr: 2.683e-06, eta: 1 day, 7:50:11, time: 1.617, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3368, decode.acc_seg: 86.1673, aux.loss_ce: 0.1334, aux.acc_seg: 86.2374, loss: 0.4702 2024-06-16 03:16:59,405 - mmseg - INFO - Iter [13800/80000] lr: 2.681e-06, eta: 1 day, 7:48:15, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3478, decode.acc_seg: 85.7803, aux.loss_ce: 0.1386, aux.acc_seg: 85.9743, loss: 0.4865 2024-06-16 03:18:19,888 - mmseg - INFO - Iter [13850/80000] lr: 2.679e-06, eta: 1 day, 7:46:20, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3391, decode.acc_seg: 86.2485, aux.loss_ce: 0.1355, aux.acc_seg: 86.3071, loss: 0.4746 2024-06-16 03:19:43,476 - mmseg - INFO - Iter [13900/80000] lr: 2.677e-06, eta: 1 day, 7:44:40, time: 1.672, data_time: 0.068, memory: 65790, decode.loss_ce: 0.3394, decode.acc_seg: 86.0868, aux.loss_ce: 0.1359, aux.acc_seg: 86.2793, loss: 0.4753 2024-06-16 03:21:03,981 - mmseg - INFO - Iter [13950/80000] lr: 2.675e-06, eta: 1 day, 7:42:46, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3184, decode.acc_seg: 87.1028, aux.loss_ce: 0.1272, aux.acc_seg: 87.1932, loss: 0.4456 2024-06-16 03:22:24,550 - mmseg - INFO - Saving checkpoint at 14000 iterations 2024-06-16 03:23:34,850 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 03:23:34,850 - mmseg - INFO - Iter [14000/80000] lr: 2.673e-06, eta: 1 day, 7:46:23, time: 3.017, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3244, decode.acc_seg: 86.8680, aux.loss_ce: 0.1303, aux.acc_seg: 87.0174, loss: 0.4547 2024-06-16 03:24:57,366 - mmseg - INFO - per class results: 2024-06-16 03:24:57,372 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 79.46 | 88.31 | | building | 83.69 | 92.5 | | sky | 94.18 | 97.03 | | floor | 83.18 | 91.73 | | tree | 76.44 | 88.92 | | ceiling | 85.84 | 91.28 | | road | 83.55 | 87.76 | | bed | 90.87 | 96.39 | | windowpane | 66.22 | 79.51 | | grass | 66.81 | 83.78 | | cabinet | 64.32 | 71.49 | | sidewalk | 66.2 | 85.21 | | person | 82.2 | 90.48 | | earth | 39.79 | 51.0 | | door | 58.1 | 76.24 | | table | 64.0 | 74.91 | | mountain | 60.18 | 71.93 | | plant | 53.23 | 67.5 | | curtain | 76.52 | 90.69 | | chair | 61.29 | 71.27 | | car | 85.35 | 92.13 | | water | 63.53 | 79.96 | | painting | 73.93 | 85.75 | | sofa | 79.59 | 89.5 | | shelf | 40.82 | 54.7 | | house | 53.36 | 78.38 | | sea | 71.39 | 81.85 | | mirror | 75.36 | 83.95 | | rug | 73.0 | 85.61 | | field | 26.86 | 47.63 | | armchair | 60.9 | 81.07 | | seat | 65.75 | 90.2 | | fence | 48.38 | 66.0 | | desk | 52.51 | 77.12 | | rock | 54.14 | 77.9 | | wardrobe | 55.23 | 71.53 | | lamp | 67.4 | 78.92 | | bathtub | 82.42 | 86.4 | | railing | 39.07 | 55.17 | | cushion | 63.39 | 68.97 | | base | 44.35 | 61.4 | | box | 35.11 | 46.88 | | column | 53.47 | 64.13 | | signboard | 35.33 | 41.69 | | chest of drawers | 48.28 | 76.31 | | counter | 52.78 | 67.38 | | sand | 47.96 | 79.4 | | sink | 74.49 | 81.72 | | skyscraper | 48.12 | 65.25 | | fireplace | 66.75 | 96.91 | | refrigerator | 80.4 | 93.78 | | grandstand | 53.24 | 86.1 | | path | 30.38 | 40.82 | | stairs | 40.93 | 49.79 | | runway | 71.01 | 93.06 | | case | 61.27 | 71.95 | | pool table | 92.27 | 98.13 | | pillow | 63.31 | 73.28 | | screen door | 72.0 | 80.77 | | stairway | 34.94 | 38.67 | | river | 21.69 | 43.79 | | bridge | 43.01 | 49.34 | | bookcase | 33.73 | 67.64 | | blind | 43.5 | 48.77 | | coffee table | 56.18 | 87.67 | | toilet | 88.99 | 94.1 | | flower | 36.27 | 64.71 | | book | 48.99 | 69.71 | | hill | 5.44 | 10.68 | | bench | 54.11 | 64.58 | | countertop | 63.95 | 84.82 | | stove | 83.5 | 90.15 | | palm | 53.68 | 76.53 | | kitchen island | 42.92 | 86.29 | | computer | 77.49 | 86.92 | | swivel chair | 51.9 | 81.92 | | boat | 68.27 | 91.27 | | bar | 64.55 | 86.76 | | arcade machine | 88.98 | 97.46 | | hovel | 18.29 | 20.97 | | bus | 91.99 | 96.77 | | towel | 70.41 | 84.29 | | light | 44.26 | 50.67 | | truck | 45.86 | 62.0 | | tower | 23.83 | 46.65 | | chandelier | 68.07 | 79.57 | | awning | 41.78 | 50.04 | | streetlight | 23.91 | 28.77 | | booth | 43.87 | 46.33 | | television receiver | 76.37 | 83.3 | | airplane | 77.76 | 84.49 | | dirt track | 6.47 | 21.96 | | apparel | 55.56 | 82.31 | | pole | 20.35 | 26.4 | | land | 1.14 | 2.01 | | bannister | 12.63 | 15.8 | | escalator | 57.73 | 87.86 | | ottoman | 53.91 | 77.23 | | bottle | 39.84 | 66.51 | | buffet | 61.31 | 87.21 | | poster | 31.67 | 55.84 | | stage | 25.04 | 55.79 | | van | 44.11 | 72.72 | | ship | 48.73 | 50.9 | | fountain | 31.19 | 34.86 | | conveyer belt | 71.5 | 96.28 | | canopy | 51.85 | 73.64 | | washer | 86.05 | 97.15 | | plaything | 33.41 | 39.79 | | swimming pool | 78.93 | 84.7 | | stool | 41.09 | 48.02 | | barrel | 61.18 | 66.82 | | basket | 43.74 | 55.2 | | waterfall | 50.78 | 56.25 | | tent | 93.26 | 98.74 | | bag | 26.77 | 30.74 | | minibike | 72.79 | 85.2 | | cradle | 81.93 | 97.49 | | oven | 61.31 | 76.27 | | ball | 42.8 | 44.02 | | food | 59.72 | 74.87 | | step | 6.96 | 8.5 | | tank | 47.37 | 72.48 | | trade name | 13.88 | 14.42 | | microwave | 88.41 | 95.49 | | pot | 58.94 | 68.51 | | animal | 68.55 | 70.86 | | bicycle | 58.99 | 81.18 | | lake | 63.1 | 63.49 | | dishwasher | 71.16 | 83.84 | | screen | 55.57 | 93.45 | | blanket | 24.75 | 28.37 | | sculpture | 70.25 | 78.67 | | hood | 67.25 | 77.37 | | sconce | 51.42 | 63.47 | | vase | 40.02 | 50.88 | | traffic light | 30.92 | 48.91 | | tray | 15.33 | 17.77 | | ashcan | 49.92 | 59.28 | | fan | 57.51 | 67.51 | | pier | 37.7 | 39.54 | | crt screen | 8.61 | 10.7 | | plate | 58.22 | 75.39 | | monitor | 63.07 | 74.65 | | bulletin board | 58.87 | 65.71 | | shower | 0.35 | 2.23 | | radiator | 63.98 | 76.44 | | glass | 16.56 | 17.3 | | clock | 42.22 | 52.11 | | flag | 65.26 | 71.75 | +---------------------+-------+-------+ 2024-06-16 03:24:57,372 - mmseg - INFO - Summary: 2024-06-16 03:24:57,372 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 84.79 | 54.87 | 67.99 | +-------+-------+-------+ 2024-06-16 03:24:57,373 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 03:24:57,373 - mmseg - INFO - Iter(val) [250] aAcc: 0.8479, mIoU: 0.5487, mAcc: 0.6799, IoU.wall: 0.7946, IoU.building: 0.8369, IoU.sky: 0.9418, IoU.floor: 0.8318, IoU.tree: 0.7644, IoU.ceiling: 0.8584, IoU.road: 0.8355, IoU.bed : 0.9087, IoU.windowpane: 0.6622, IoU.grass: 0.6681, IoU.cabinet: 0.6432, IoU.sidewalk: 0.6620, IoU.person: 0.8220, IoU.earth: 0.3979, IoU.door: 0.5810, IoU.table: 0.6400, IoU.mountain: 0.6018, IoU.plant: 0.5323, IoU.curtain: 0.7652, IoU.chair: 0.6129, IoU.car: 0.8535, IoU.water: 0.6353, IoU.painting: 0.7393, IoU.sofa: 0.7959, IoU.shelf: 0.4082, IoU.house: 0.5336, IoU.sea: 0.7139, IoU.mirror: 0.7536, IoU.rug: 0.7300, IoU.field: 0.2686, IoU.armchair: 0.6090, IoU.seat: 0.6575, IoU.fence: 0.4838, IoU.desk: 0.5251, IoU.rock: 0.5414, IoU.wardrobe: 0.5523, IoU.lamp: 0.6740, IoU.bathtub: 0.8242, IoU.railing: 0.3907, IoU.cushion: 0.6339, IoU.base: 0.4435, IoU.box: 0.3511, IoU.column: 0.5347, IoU.signboard: 0.3533, IoU.chest of drawers: 0.4828, IoU.counter: 0.5278, IoU.sand: 0.4796, IoU.sink: 0.7449, IoU.skyscraper: 0.4812, IoU.fireplace: 0.6675, IoU.refrigerator: 0.8040, IoU.grandstand: 0.5324, IoU.path: 0.3038, IoU.stairs: 0.4093, IoU.runway: 0.7101, IoU.case: 0.6127, IoU.pool table: 0.9227, IoU.pillow: 0.6331, IoU.screen door: 0.7200, IoU.stairway: 0.3494, IoU.river: 0.2169, IoU.bridge: 0.4301, IoU.bookcase: 0.3373, IoU.blind: 0.4350, IoU.coffee table: 0.5618, IoU.toilet: 0.8899, IoU.flower: 0.3627, IoU.book: 0.4899, IoU.hill: 0.0544, IoU.bench: 0.5411, IoU.countertop: 0.6395, IoU.stove: 0.8350, IoU.palm: 0.5368, IoU.kitchen island: 0.4292, IoU.computer: 0.7749, IoU.swivel chair: 0.5190, IoU.boat: 0.6827, IoU.bar: 0.6455, IoU.arcade machine: 0.8898, IoU.hovel: 0.1829, IoU.bus: 0.9199, IoU.towel: 0.7041, IoU.light: 0.4426, IoU.truck: 0.4586, IoU.tower: 0.2383, IoU.chandelier: 0.6807, IoU.awning: 0.4178, IoU.streetlight: 0.2391, IoU.booth: 0.4387, IoU.television receiver: 0.7637, IoU.airplane: 0.7776, IoU.dirt track: 0.0647, IoU.apparel: 0.5556, IoU.pole: 0.2035, IoU.land: 0.0114, IoU.bannister: 0.1263, IoU.escalator: 0.5773, IoU.ottoman: 0.5391, IoU.bottle: 0.3984, IoU.buffet: 0.6131, IoU.poster: 0.3167, IoU.stage: 0.2504, IoU.van: 0.4411, IoU.ship: 0.4873, IoU.fountain: 0.3119, IoU.conveyer belt: 0.7150, IoU.canopy: 0.5185, IoU.washer: 0.8605, IoU.plaything: 0.3341, IoU.swimming pool: 0.7893, IoU.stool: 0.4109, IoU.barrel: 0.6118, IoU.basket: 0.4374, IoU.waterfall: 0.5078, IoU.tent: 0.9326, IoU.bag: 0.2677, IoU.minibike: 0.7279, IoU.cradle: 0.8193, IoU.oven: 0.6131, IoU.ball: 0.4280, IoU.food: 0.5972, IoU.step: 0.0696, IoU.tank: 0.4737, IoU.trade name: 0.1388, IoU.microwave: 0.8841, IoU.pot: 0.5894, IoU.animal: 0.6855, IoU.bicycle: 0.5899, IoU.lake: 0.6310, IoU.dishwasher: 0.7116, IoU.screen: 0.5557, IoU.blanket: 0.2475, IoU.sculpture: 0.7025, IoU.hood: 0.6725, IoU.sconce: 0.5142, IoU.vase: 0.4002, IoU.traffic light: 0.3092, IoU.tray: 0.1533, IoU.ashcan: 0.4992, IoU.fan: 0.5751, IoU.pier: 0.3770, IoU.crt screen: 0.0861, IoU.plate: 0.5822, IoU.monitor: 0.6307, IoU.bulletin board: 0.5887, IoU.shower: 0.0035, IoU.radiator: 0.6398, IoU.glass: 0.1656, IoU.clock: 0.4222, IoU.flag: 0.6526, Acc.wall: 0.8831, Acc.building: 0.9250, Acc.sky: 0.9703, Acc.floor: 0.9173, Acc.tree: 0.8892, Acc.ceiling: 0.9128, Acc.road: 0.8776, Acc.bed : 0.9639, Acc.windowpane: 0.7951, Acc.grass: 0.8378, Acc.cabinet: 0.7149, Acc.sidewalk: 0.8521, Acc.person: 0.9048, Acc.earth: 0.5100, Acc.door: 0.7624, Acc.table: 0.7491, Acc.mountain: 0.7193, Acc.plant: 0.6750, Acc.curtain: 0.9069, Acc.chair: 0.7127, Acc.car: 0.9213, Acc.water: 0.7996, Acc.painting: 0.8575, Acc.sofa: 0.8950, Acc.shelf: 0.5470, Acc.house: 0.7838, Acc.sea: 0.8185, Acc.mirror: 0.8395, Acc.rug: 0.8561, Acc.field: 0.4763, Acc.armchair: 0.8107, Acc.seat: 0.9020, Acc.fence: 0.6600, Acc.desk: 0.7712, Acc.rock: 0.7790, Acc.wardrobe: 0.7153, Acc.lamp: 0.7892, Acc.bathtub: 0.8640, Acc.railing: 0.5517, Acc.cushion: 0.6897, Acc.base: 0.6140, Acc.box: 0.4688, Acc.column: 0.6413, Acc.signboard: 0.4169, Acc.chest of drawers: 0.7631, Acc.counter: 0.6738, Acc.sand: 0.7940, Acc.sink: 0.8172, Acc.skyscraper: 0.6525, Acc.fireplace: 0.9691, Acc.refrigerator: 0.9378, Acc.grandstand: 0.8610, Acc.path: 0.4082, Acc.stairs: 0.4979, Acc.runway: 0.9306, Acc.case: 0.7195, Acc.pool table: 0.9813, Acc.pillow: 0.7328, Acc.screen door: 0.8077, Acc.stairway: 0.3867, Acc.river: 0.4379, Acc.bridge: 0.4934, Acc.bookcase: 0.6764, Acc.blind: 0.4877, Acc.coffee table: 0.8767, Acc.toilet: 0.9410, Acc.flower: 0.6471, Acc.book: 0.6971, Acc.hill: 0.1068, Acc.bench: 0.6458, Acc.countertop: 0.8482, Acc.stove: 0.9015, Acc.palm: 0.7653, Acc.kitchen island: 0.8629, Acc.computer: 0.8692, Acc.swivel chair: 0.8192, Acc.boat: 0.9127, Acc.bar: 0.8676, Acc.arcade machine: 0.9746, Acc.hovel: 0.2097, Acc.bus: 0.9677, Acc.towel: 0.8429, Acc.light: 0.5067, Acc.truck: 0.6200, Acc.tower: 0.4665, Acc.chandelier: 0.7957, Acc.awning: 0.5004, Acc.streetlight: 0.2877, Acc.booth: 0.4633, Acc.television receiver: 0.8330, Acc.airplane: 0.8449, Acc.dirt track: 0.2196, Acc.apparel: 0.8231, Acc.pole: 0.2640, Acc.land: 0.0201, Acc.bannister: 0.1580, Acc.escalator: 0.8786, Acc.ottoman: 0.7723, Acc.bottle: 0.6651, Acc.buffet: 0.8721, Acc.poster: 0.5584, Acc.stage: 0.5579, Acc.van: 0.7272, Acc.ship: 0.5090, Acc.fountain: 0.3486, Acc.conveyer belt: 0.9628, Acc.canopy: 0.7364, Acc.washer: 0.9715, Acc.plaything: 0.3979, Acc.swimming pool: 0.8470, Acc.stool: 0.4802, Acc.barrel: 0.6682, Acc.basket: 0.5520, Acc.waterfall: 0.5625, Acc.tent: 0.9874, Acc.bag: 0.3074, Acc.minibike: 0.8520, Acc.cradle: 0.9749, Acc.oven: 0.7627, Acc.ball: 0.4402, Acc.food: 0.7487, Acc.step: 0.0850, Acc.tank: 0.7248, Acc.trade name: 0.1442, Acc.microwave: 0.9549, Acc.pot: 0.6851, Acc.animal: 0.7086, Acc.bicycle: 0.8118, Acc.lake: 0.6349, Acc.dishwasher: 0.8384, Acc.screen: 0.9345, Acc.blanket: 0.2837, Acc.sculpture: 0.7867, Acc.hood: 0.7737, Acc.sconce: 0.6347, Acc.vase: 0.5088, Acc.traffic light: 0.4891, Acc.tray: 0.1777, Acc.ashcan: 0.5928, Acc.fan: 0.6751, Acc.pier: 0.3954, Acc.crt screen: 0.1070, Acc.plate: 0.7539, Acc.monitor: 0.7465, Acc.bulletin board: 0.6571, Acc.shower: 0.0223, Acc.radiator: 0.7644, Acc.glass: 0.1730, Acc.clock: 0.5211, Acc.flag: 0.7175 2024-06-16 03:26:18,278 - mmseg - INFO - Iter [14050/80000] lr: 2.671e-06, eta: 1 day, 7:50:57, time: 3.269, data_time: 1.664, memory: 65790, decode.loss_ce: 0.3275, decode.acc_seg: 86.7763, aux.loss_ce: 0.1298, aux.acc_seg: 87.0683, loss: 0.4573 2024-06-16 03:27:38,808 - mmseg - INFO - Iter [14100/80000] lr: 2.669e-06, eta: 1 day, 7:49:00, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3236, decode.acc_seg: 86.8345, aux.loss_ce: 0.1306, aux.acc_seg: 87.0489, loss: 0.4543 2024-06-16 03:28:59,306 - mmseg - INFO - Iter [14150/80000] lr: 2.667e-06, eta: 1 day, 7:47:03, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3143, decode.acc_seg: 87.6485, aux.loss_ce: 0.1244, aux.acc_seg: 87.9443, loss: 0.4387 2024-06-16 03:30:19,893 - mmseg - INFO - Iter [14200/80000] lr: 2.665e-06, eta: 1 day, 7:45:07, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3170, decode.acc_seg: 86.6587, aux.loss_ce: 0.1278, aux.acc_seg: 86.6273, loss: 0.4448 2024-06-16 03:31:40,465 - mmseg - INFO - Iter [14250/80000] lr: 2.663e-06, eta: 1 day, 7:43:11, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3002, decode.acc_seg: 87.8027, aux.loss_ce: 0.1206, aux.acc_seg: 87.9405, loss: 0.4209 2024-06-16 03:33:01,158 - mmseg - INFO - Iter [14300/80000] lr: 2.661e-06, eta: 1 day, 7:41:16, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3334, decode.acc_seg: 86.5285, aux.loss_ce: 0.1330, aux.acc_seg: 86.9566, loss: 0.4664 2024-06-16 03:34:21,958 - mmseg - INFO - Iter [14350/80000] lr: 2.659e-06, eta: 1 day, 7:39:22, time: 1.616, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3254, decode.acc_seg: 86.2815, aux.loss_ce: 0.1290, aux.acc_seg: 86.6711, loss: 0.4544 2024-06-16 03:35:42,465 - mmseg - INFO - Iter [14400/80000] lr: 2.657e-06, eta: 1 day, 7:37:26, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3055, decode.acc_seg: 87.4302, aux.loss_ce: 0.1226, aux.acc_seg: 87.4537, loss: 0.4281 2024-06-16 03:37:02,999 - mmseg - INFO - Iter [14450/80000] lr: 2.655e-06, eta: 1 day, 7:35:31, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3170, decode.acc_seg: 87.4547, aux.loss_ce: 0.1261, aux.acc_seg: 87.6181, loss: 0.4432 2024-06-16 03:38:23,525 - mmseg - INFO - Iter [14500/80000] lr: 2.653e-06, eta: 1 day, 7:33:36, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3211, decode.acc_seg: 86.5776, aux.loss_ce: 0.1289, aux.acc_seg: 86.6151, loss: 0.4500 2024-06-16 03:39:44,075 - mmseg - INFO - Iter [14550/80000] lr: 2.651e-06, eta: 1 day, 7:31:42, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3289, decode.acc_seg: 86.4615, aux.loss_ce: 0.1317, aux.acc_seg: 86.4910, loss: 0.4606 2024-06-16 03:41:04,657 - mmseg - INFO - Iter [14600/80000] lr: 2.649e-06, eta: 1 day, 7:29:48, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3190, decode.acc_seg: 86.6483, aux.loss_ce: 0.1281, aux.acc_seg: 86.8172, loss: 0.4471 2024-06-16 03:42:25,358 - mmseg - INFO - Iter [14650/80000] lr: 2.647e-06, eta: 1 day, 7:27:54, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3382, decode.acc_seg: 86.0520, aux.loss_ce: 0.1351, aux.acc_seg: 86.2325, loss: 0.4733 2024-06-16 03:43:45,873 - mmseg - INFO - Iter [14700/80000] lr: 2.645e-06, eta: 1 day, 7:26:00, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3131, decode.acc_seg: 86.9307, aux.loss_ce: 0.1243, aux.acc_seg: 87.0285, loss: 0.4374 2024-06-16 03:45:06,453 - mmseg - INFO - Iter [14750/80000] lr: 2.642e-06, eta: 1 day, 7:24:07, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3184, decode.acc_seg: 86.6972, aux.loss_ce: 0.1273, aux.acc_seg: 86.8050, loss: 0.4457 2024-06-16 03:46:26,973 - mmseg - INFO - Iter [14800/80000] lr: 2.640e-06, eta: 1 day, 7:22:13, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3322, decode.acc_seg: 86.5372, aux.loss_ce: 0.1331, aux.acc_seg: 86.6236, loss: 0.4653 2024-06-16 03:47:47,486 - mmseg - INFO - Iter [14850/80000] lr: 2.638e-06, eta: 1 day, 7:20:20, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3153, decode.acc_seg: 86.7064, aux.loss_ce: 0.1253, aux.acc_seg: 86.7398, loss: 0.4406 2024-06-16 03:49:08,132 - mmseg - INFO - Iter [14900/80000] lr: 2.636e-06, eta: 1 day, 7:18:27, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3204, decode.acc_seg: 87.0832, aux.loss_ce: 0.1293, aux.acc_seg: 87.2483, loss: 0.4497 2024-06-16 03:50:28,845 - mmseg - INFO - Iter [14950/80000] lr: 2.634e-06, eta: 1 day, 7:16:35, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3186, decode.acc_seg: 86.8708, aux.loss_ce: 0.1276, aux.acc_seg: 87.0951, loss: 0.4462 2024-06-16 03:51:49,431 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 03:51:49,431 - mmseg - INFO - Iter [15000/80000] lr: 2.632e-06, eta: 1 day, 7:14:43, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3311, decode.acc_seg: 86.1990, aux.loss_ce: 0.1311, aux.acc_seg: 86.4254, loss: 0.4623 2024-06-16 03:53:11,929 - mmseg - INFO - per class results: 2024-06-16 03:53:11,935 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 80.11 | 88.08 | | building | 83.31 | 91.84 | | sky | 94.24 | 97.0 | | floor | 83.37 | 90.04 | | tree | 75.79 | 90.22 | | ceiling | 85.77 | 92.79 | | road | 85.92 | 92.74 | | bed | 91.08 | 95.98 | | windowpane | 64.49 | 81.48 | | grass | 63.28 | 69.58 | | cabinet | 66.01 | 75.81 | | sidewalk | 68.28 | 80.39 | | person | 82.14 | 92.47 | | earth | 40.08 | 55.15 | | door | 54.07 | 71.78 | | table | 66.65 | 81.85 | | mountain | 62.51 | 75.2 | | plant | 56.32 | 68.22 | | curtain | 75.37 | 92.01 | | chair | 62.02 | 74.86 | | car | 84.76 | 93.93 | | water | 54.01 | 62.31 | | painting | 75.73 | 88.74 | | sofa | 78.87 | 88.72 | | shelf | 45.18 | 60.42 | | house | 51.98 | 84.53 | | sea | 69.28 | 95.81 | | mirror | 75.13 | 81.77 | | rug | 70.15 | 88.36 | | field | 30.54 | 63.92 | | armchair | 59.92 | 80.48 | | seat | 65.99 | 89.91 | | fence | 50.52 | 59.47 | | desk | 57.17 | 76.2 | | rock | 56.06 | 71.64 | | wardrobe | 55.36 | 66.08 | | lamp | 66.2 | 80.97 | | bathtub | 84.55 | 88.12 | | railing | 39.22 | 56.15 | | cushion | 65.05 | 74.78 | | base | 38.93 | 65.84 | | box | 38.59 | 50.68 | | column | 54.75 | 70.75 | | signboard | 40.07 | 57.37 | | chest of drawers | 45.98 | 75.9 | | counter | 51.97 | 58.82 | | sand | 50.86 | 72.82 | | sink | 79.03 | 87.53 | | skyscraper | 49.46 | 58.3 | | fireplace | 74.66 | 96.32 | | refrigerator | 73.6 | 77.68 | | grandstand | 49.46 | 89.88 | | path | 30.74 | 38.35 | | stairs | 34.03 | 43.21 | | runway | 73.45 | 97.43 | | case | 57.97 | 72.32 | | pool table | 92.94 | 97.79 | | pillow | 58.44 | 64.17 | | screen door | 83.15 | 86.51 | | stairway | 53.68 | 67.05 | | river | 12.48 | 22.86 | | bridge | 56.99 | 77.59 | | bookcase | 35.38 | 53.19 | | blind | 40.72 | 42.73 | | coffee table | 66.91 | 86.54 | | toilet | 88.37 | 92.46 | | flower | 41.21 | 56.26 | | book | 47.84 | 82.62 | | hill | 5.38 | 11.18 | | bench | 52.84 | 62.03 | | countertop | 61.5 | 79.11 | | stove | 83.71 | 92.81 | | palm | 53.05 | 73.83 | | kitchen island | 49.57 | 91.5 | | computer | 65.7 | 71.5 | | swivel chair | 49.03 | 67.31 | | boat | 72.06 | 88.38 | | bar | 65.71 | 69.41 | | arcade machine | 87.94 | 97.71 | | hovel | 32.62 | 37.76 | | bus | 91.9 | 96.47 | | towel | 69.41 | 83.85 | | light | 47.85 | 62.55 | | truck | 44.35 | 58.23 | | tower | 5.96 | 7.54 | | chandelier | 66.95 | 75.56 | | awning | 33.74 | 40.49 | | streetlight | 25.47 | 33.01 | | booth | 38.58 | 39.94 | | television receiver | 75.98 | 86.63 | | airplane | 75.69 | 84.69 | | dirt track | 0.0 | 0.0 | | apparel | 51.85 | 71.97 | | pole | 17.17 | 21.98 | | land | 4.32 | 9.15 | | bannister | 15.68 | 20.7 | | escalator | 61.01 | 83.84 | | ottoman | 56.67 | 78.53 | | bottle | 40.82 | 68.07 | | buffet | 56.73 | 66.92 | | poster | 30.02 | 40.61 | | stage | 13.45 | 34.35 | | van | 49.86 | 68.09 | | ship | 80.65 | 86.86 | | fountain | 63.02 | 65.02 | | conveyer belt | 84.14 | 95.52 | | canopy | 41.8 | 70.72 | | washer | 83.84 | 89.18 | | plaything | 40.85 | 60.53 | | swimming pool | 48.8 | 80.57 | | stool | 49.63 | 64.68 | | barrel | 58.69 | 64.98 | | basket | 45.37 | 53.53 | | waterfall | 61.1 | 90.96 | | tent | 94.12 | 98.27 | | bag | 17.06 | 19.24 | | minibike | 72.73 | 84.56 | | cradle | 79.13 | 96.7 | | oven | 64.0 | 78.41 | | ball | 58.42 | 75.56 | | food | 58.41 | 69.4 | | step | 11.38 | 13.96 | | tank | 57.5 | 72.39 | | trade name | 32.9 | 50.32 | | microwave | 87.58 | 95.56 | | pot | 55.75 | 65.62 | | animal | 73.62 | 77.31 | | bicycle | 60.92 | 82.79 | | lake | 58.0 | 63.34 | | dishwasher | 72.14 | 80.59 | | screen | 53.49 | 91.99 | | blanket | 25.27 | 28.55 | | sculpture | 71.85 | 79.3 | | hood | 59.67 | 68.71 | | sconce | 55.74 | 69.57 | | vase | 42.5 | 57.88 | | traffic light | 32.41 | 62.57 | | tray | 18.26 | 21.72 | | ashcan | 50.16 | 62.61 | | fan | 62.07 | 79.83 | | pier | 56.94 | 67.47 | | crt screen | 6.71 | 8.7 | | plate | 59.18 | 78.51 | | monitor | 41.23 | 74.25 | | bulletin board | 52.63 | 58.81 | | shower | 3.23 | 3.65 | | radiator | 67.39 | 78.35 | | glass | 17.29 | 18.08 | | clock | 45.53 | 56.7 | | flag | 66.34 | 74.63 | +---------------------+-------+-------+ 2024-06-16 03:53:11,935 - mmseg - INFO - Summary: 2024-06-16 03:53:11,935 - mmseg - INFO - +------+-------+-------+ | aAcc | mIoU | mAcc | +------+-------+-------+ | 84.9 | 55.67 | 68.78 | +------+-------+-------+ 2024-06-16 03:53:11,936 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 03:53:11,936 - mmseg - INFO - Iter(val) [250] aAcc: 0.8490, mIoU: 0.5567, mAcc: 0.6878, IoU.wall: 0.8011, IoU.building: 0.8331, IoU.sky: 0.9424, IoU.floor: 0.8337, IoU.tree: 0.7579, IoU.ceiling: 0.8577, IoU.road: 0.8592, IoU.bed : 0.9108, IoU.windowpane: 0.6449, IoU.grass: 0.6328, IoU.cabinet: 0.6601, IoU.sidewalk: 0.6828, IoU.person: 0.8214, IoU.earth: 0.4008, IoU.door: 0.5407, IoU.table: 0.6665, IoU.mountain: 0.6251, IoU.plant: 0.5632, IoU.curtain: 0.7537, IoU.chair: 0.6202, IoU.car: 0.8476, IoU.water: 0.5401, IoU.painting: 0.7573, IoU.sofa: 0.7887, IoU.shelf: 0.4518, IoU.house: 0.5198, IoU.sea: 0.6928, IoU.mirror: 0.7513, IoU.rug: 0.7015, IoU.field: 0.3054, IoU.armchair: 0.5992, IoU.seat: 0.6599, IoU.fence: 0.5052, IoU.desk: 0.5717, IoU.rock: 0.5606, IoU.wardrobe: 0.5536, IoU.lamp: 0.6620, IoU.bathtub: 0.8455, IoU.railing: 0.3922, IoU.cushion: 0.6505, IoU.base: 0.3893, IoU.box: 0.3859, IoU.column: 0.5475, IoU.signboard: 0.4007, IoU.chest of drawers: 0.4598, IoU.counter: 0.5197, IoU.sand: 0.5086, IoU.sink: 0.7903, IoU.skyscraper: 0.4946, IoU.fireplace: 0.7466, IoU.refrigerator: 0.7360, IoU.grandstand: 0.4946, IoU.path: 0.3074, IoU.stairs: 0.3403, IoU.runway: 0.7345, IoU.case: 0.5797, IoU.pool table: 0.9294, IoU.pillow: 0.5844, IoU.screen door: 0.8315, IoU.stairway: 0.5368, IoU.river: 0.1248, IoU.bridge: 0.5699, IoU.bookcase: 0.3538, IoU.blind: 0.4072, IoU.coffee table: 0.6691, IoU.toilet: 0.8837, IoU.flower: 0.4121, IoU.book: 0.4784, IoU.hill: 0.0538, IoU.bench: 0.5284, IoU.countertop: 0.6150, IoU.stove: 0.8371, IoU.palm: 0.5305, IoU.kitchen island: 0.4957, IoU.computer: 0.6570, IoU.swivel chair: 0.4903, IoU.boat: 0.7206, IoU.bar: 0.6571, IoU.arcade machine: 0.8794, IoU.hovel: 0.3262, IoU.bus: 0.9190, IoU.towel: 0.6941, IoU.light: 0.4785, IoU.truck: 0.4435, IoU.tower: 0.0596, IoU.chandelier: 0.6695, IoU.awning: 0.3374, IoU.streetlight: 0.2547, IoU.booth: 0.3858, IoU.television receiver: 0.7598, IoU.airplane: 0.7569, IoU.dirt track: 0.0000, IoU.apparel: 0.5185, IoU.pole: 0.1717, IoU.land: 0.0432, IoU.bannister: 0.1568, IoU.escalator: 0.6101, IoU.ottoman: 0.5667, IoU.bottle: 0.4082, IoU.buffet: 0.5673, IoU.poster: 0.3002, IoU.stage: 0.1345, IoU.van: 0.4986, IoU.ship: 0.8065, IoU.fountain: 0.6302, IoU.conveyer belt: 0.8414, IoU.canopy: 0.4180, IoU.washer: 0.8384, IoU.plaything: 0.4085, IoU.swimming pool: 0.4880, IoU.stool: 0.4963, IoU.barrel: 0.5869, IoU.basket: 0.4537, IoU.waterfall: 0.6110, IoU.tent: 0.9412, IoU.bag: 0.1706, IoU.minibike: 0.7273, IoU.cradle: 0.7913, IoU.oven: 0.6400, IoU.ball: 0.5842, IoU.food: 0.5841, IoU.step: 0.1138, IoU.tank: 0.5750, IoU.trade name: 0.3290, IoU.microwave: 0.8758, IoU.pot: 0.5575, IoU.animal: 0.7362, IoU.bicycle: 0.6092, IoU.lake: 0.5800, IoU.dishwasher: 0.7214, IoU.screen: 0.5349, IoU.blanket: 0.2527, IoU.sculpture: 0.7185, IoU.hood: 0.5967, IoU.sconce: 0.5574, IoU.vase: 0.4250, IoU.traffic light: 0.3241, IoU.tray: 0.1826, IoU.ashcan: 0.5016, IoU.fan: 0.6207, IoU.pier: 0.5694, IoU.crt screen: 0.0671, IoU.plate: 0.5918, IoU.monitor: 0.4123, IoU.bulletin board: 0.5263, IoU.shower: 0.0323, IoU.radiator: 0.6739, IoU.glass: 0.1729, IoU.clock: 0.4553, IoU.flag: 0.6634, Acc.wall: 0.8808, Acc.building: 0.9184, Acc.sky: 0.9700, Acc.floor: 0.9004, Acc.tree: 0.9022, Acc.ceiling: 0.9279, Acc.road: 0.9274, Acc.bed : 0.9598, Acc.windowpane: 0.8148, Acc.grass: 0.6958, Acc.cabinet: 0.7581, Acc.sidewalk: 0.8039, Acc.person: 0.9247, Acc.earth: 0.5515, Acc.door: 0.7178, Acc.table: 0.8185, Acc.mountain: 0.7520, Acc.plant: 0.6822, Acc.curtain: 0.9201, Acc.chair: 0.7486, Acc.car: 0.9393, Acc.water: 0.6231, Acc.painting: 0.8874, Acc.sofa: 0.8872, Acc.shelf: 0.6042, Acc.house: 0.8453, Acc.sea: 0.9581, Acc.mirror: 0.8177, Acc.rug: 0.8836, Acc.field: 0.6392, Acc.armchair: 0.8048, Acc.seat: 0.8991, Acc.fence: 0.5947, Acc.desk: 0.7620, Acc.rock: 0.7164, Acc.wardrobe: 0.6608, Acc.lamp: 0.8097, Acc.bathtub: 0.8812, Acc.railing: 0.5615, Acc.cushion: 0.7478, Acc.base: 0.6584, Acc.box: 0.5068, Acc.column: 0.7075, Acc.signboard: 0.5737, Acc.chest of drawers: 0.7590, Acc.counter: 0.5882, Acc.sand: 0.7282, Acc.sink: 0.8753, Acc.skyscraper: 0.5830, Acc.fireplace: 0.9632, Acc.refrigerator: 0.7768, Acc.grandstand: 0.8988, Acc.path: 0.3835, Acc.stairs: 0.4321, Acc.runway: 0.9743, Acc.case: 0.7232, Acc.pool table: 0.9779, Acc.pillow: 0.6417, Acc.screen door: 0.8651, Acc.stairway: 0.6705, Acc.river: 0.2286, Acc.bridge: 0.7759, Acc.bookcase: 0.5319, Acc.blind: 0.4273, Acc.coffee table: 0.8654, Acc.toilet: 0.9246, Acc.flower: 0.5626, Acc.book: 0.8262, Acc.hill: 0.1118, Acc.bench: 0.6203, Acc.countertop: 0.7911, Acc.stove: 0.9281, Acc.palm: 0.7383, Acc.kitchen island: 0.9150, Acc.computer: 0.7150, Acc.swivel chair: 0.6731, Acc.boat: 0.8838, Acc.bar: 0.6941, Acc.arcade machine: 0.9771, Acc.hovel: 0.3776, Acc.bus: 0.9647, Acc.towel: 0.8385, Acc.light: 0.6255, Acc.truck: 0.5823, Acc.tower: 0.0754, Acc.chandelier: 0.7556, Acc.awning: 0.4049, Acc.streetlight: 0.3301, Acc.booth: 0.3994, Acc.television receiver: 0.8663, Acc.airplane: 0.8469, Acc.dirt track: 0.0000, Acc.apparel: 0.7197, Acc.pole: 0.2198, Acc.land: 0.0915, Acc.bannister: 0.2070, Acc.escalator: 0.8384, Acc.ottoman: 0.7853, Acc.bottle: 0.6807, Acc.buffet: 0.6692, Acc.poster: 0.4061, Acc.stage: 0.3435, Acc.van: 0.6809, Acc.ship: 0.8686, Acc.fountain: 0.6502, Acc.conveyer belt: 0.9552, Acc.canopy: 0.7072, Acc.washer: 0.8918, Acc.plaything: 0.6053, Acc.swimming pool: 0.8057, Acc.stool: 0.6468, Acc.barrel: 0.6498, Acc.basket: 0.5353, Acc.waterfall: 0.9096, Acc.tent: 0.9827, Acc.bag: 0.1924, Acc.minibike: 0.8456, Acc.cradle: 0.9670, Acc.oven: 0.7841, Acc.ball: 0.7556, Acc.food: 0.6940, Acc.step: 0.1396, Acc.tank: 0.7239, Acc.trade name: 0.5032, Acc.microwave: 0.9556, Acc.pot: 0.6562, Acc.animal: 0.7731, Acc.bicycle: 0.8279, Acc.lake: 0.6334, Acc.dishwasher: 0.8059, Acc.screen: 0.9199, Acc.blanket: 0.2855, Acc.sculpture: 0.7930, Acc.hood: 0.6871, Acc.sconce: 0.6957, Acc.vase: 0.5788, Acc.traffic light: 0.6257, Acc.tray: 0.2172, Acc.ashcan: 0.6261, Acc.fan: 0.7983, Acc.pier: 0.6747, Acc.crt screen: 0.0870, Acc.plate: 0.7851, Acc.monitor: 0.7425, Acc.bulletin board: 0.5881, Acc.shower: 0.0365, Acc.radiator: 0.7835, Acc.glass: 0.1808, Acc.clock: 0.5670, Acc.flag: 0.7463 2024-06-16 03:54:32,912 - mmseg - INFO - Iter [15050/80000] lr: 2.630e-06, eta: 1 day, 7:18:49, time: 3.270, data_time: 1.664, memory: 65790, decode.loss_ce: 0.3364, decode.acc_seg: 86.5544, aux.loss_ce: 0.1356, aux.acc_seg: 86.6047, loss: 0.4720 2024-06-16 03:55:53,406 - mmseg - INFO - Iter [15100/80000] lr: 2.628e-06, eta: 1 day, 7:16:55, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3120, decode.acc_seg: 87.3620, aux.loss_ce: 0.1248, aux.acc_seg: 87.4791, loss: 0.4368 2024-06-16 03:57:13,923 - mmseg - INFO - Iter [15150/80000] lr: 2.626e-06, eta: 1 day, 7:15:01, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3373, decode.acc_seg: 86.2180, aux.loss_ce: 0.1350, aux.acc_seg: 86.4210, loss: 0.4723 2024-06-16 03:58:37,660 - mmseg - INFO - Iter [15200/80000] lr: 2.624e-06, eta: 1 day, 7:13:22, time: 1.675, data_time: 0.067, memory: 65790, decode.loss_ce: 0.3132, decode.acc_seg: 87.3668, aux.loss_ce: 0.1248, aux.acc_seg: 87.4134, loss: 0.4380 2024-06-16 03:59:58,366 - mmseg - INFO - Iter [15250/80000] lr: 2.622e-06, eta: 1 day, 7:11:29, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3203, decode.acc_seg: 86.9443, aux.loss_ce: 0.1274, aux.acc_seg: 87.0586, loss: 0.4477 2024-06-16 04:01:18,922 - mmseg - INFO - Iter [15300/80000] lr: 2.620e-06, eta: 1 day, 7:09:37, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3034, decode.acc_seg: 87.2058, aux.loss_ce: 0.1231, aux.acc_seg: 87.2156, loss: 0.4266 2024-06-16 04:02:39,430 - mmseg - INFO - Iter [15350/80000] lr: 2.618e-06, eta: 1 day, 7:07:44, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3146, decode.acc_seg: 87.1707, aux.loss_ce: 0.1261, aux.acc_seg: 87.1478, loss: 0.4407 2024-06-16 04:03:59,975 - mmseg - INFO - Iter [15400/80000] lr: 2.616e-06, eta: 1 day, 7:05:52, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3159, decode.acc_seg: 87.4396, aux.loss_ce: 0.1268, aux.acc_seg: 87.4378, loss: 0.4427 2024-06-16 04:05:20,549 - mmseg - INFO - Iter [15450/80000] lr: 2.614e-06, eta: 1 day, 7:04:00, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3327, decode.acc_seg: 86.3978, aux.loss_ce: 0.1327, aux.acc_seg: 86.5161, loss: 0.4655 2024-06-16 04:06:41,124 - mmseg - INFO - Iter [15500/80000] lr: 2.612e-06, eta: 1 day, 7:02:08, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3183, decode.acc_seg: 86.9205, aux.loss_ce: 0.1273, aux.acc_seg: 87.1696, loss: 0.4456 2024-06-16 04:08:01,721 - mmseg - INFO - Iter [15550/80000] lr: 2.610e-06, eta: 1 day, 7:00:16, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3115, decode.acc_seg: 87.3313, aux.loss_ce: 0.1249, aux.acc_seg: 87.4934, loss: 0.4364 2024-06-16 04:09:22,497 - mmseg - INFO - Iter [15600/80000] lr: 2.608e-06, eta: 1 day, 6:58:26, time: 1.616, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3214, decode.acc_seg: 86.8359, aux.loss_ce: 0.1289, aux.acc_seg: 86.9509, loss: 0.4503 2024-06-16 04:10:43,004 - mmseg - INFO - Iter [15650/80000] lr: 2.606e-06, eta: 1 day, 6:56:34, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3164, decode.acc_seg: 86.8149, aux.loss_ce: 0.1264, aux.acc_seg: 87.1356, loss: 0.4428 2024-06-16 04:12:03,460 - mmseg - INFO - Iter [15700/80000] lr: 2.604e-06, eta: 1 day, 6:54:43, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2908, decode.acc_seg: 88.1033, aux.loss_ce: 0.1157, aux.acc_seg: 88.4695, loss: 0.4065 2024-06-16 04:13:23,971 - mmseg - INFO - Iter [15750/80000] lr: 2.602e-06, eta: 1 day, 6:52:51, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3205, decode.acc_seg: 86.5280, aux.loss_ce: 0.1287, aux.acc_seg: 86.5429, loss: 0.4492 2024-06-16 04:14:44,599 - mmseg - INFO - Iter [15800/80000] lr: 2.600e-06, eta: 1 day, 6:51:01, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2955, decode.acc_seg: 87.7869, aux.loss_ce: 0.1184, aux.acc_seg: 87.8791, loss: 0.4139 2024-06-16 04:16:05,352 - mmseg - INFO - Iter [15850/80000] lr: 2.598e-06, eta: 1 day, 6:49:11, time: 1.615, data_time: 0.008, memory: 65790, decode.loss_ce: 0.3158, decode.acc_seg: 87.1843, aux.loss_ce: 0.1284, aux.acc_seg: 86.9635, loss: 0.4441 2024-06-16 04:17:26,001 - mmseg - INFO - Iter [15900/80000] lr: 2.596e-06, eta: 1 day, 6:47:21, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3062, decode.acc_seg: 87.1524, aux.loss_ce: 0.1226, aux.acc_seg: 87.3278, loss: 0.4288 2024-06-16 04:18:46,524 - mmseg - INFO - Iter [15950/80000] lr: 2.594e-06, eta: 1 day, 6:45:31, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3035, decode.acc_seg: 87.5269, aux.loss_ce: 0.1207, aux.acc_seg: 87.5379, loss: 0.4242 2024-06-16 04:20:07,078 - mmseg - INFO - Saving checkpoint at 16000 iterations 2024-06-16 04:21:20,580 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 04:21:20,580 - mmseg - INFO - Iter [16000/80000] lr: 2.592e-06, eta: 1 day, 6:48:35, time: 3.081, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2940, decode.acc_seg: 87.4341, aux.loss_ce: 0.1177, aux.acc_seg: 87.5273, loss: 0.4117 2024-06-16 04:22:41,841 - mmseg - INFO - per class results: 2024-06-16 04:22:41,847 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 79.53 | 86.0 | | building | 83.72 | 92.83 | | sky | 94.32 | 97.07 | | floor | 83.67 | 90.43 | | tree | 76.48 | 87.96 | | ceiling | 86.0 | 93.75 | | road | 84.91 | 90.42 | | bed | 91.04 | 96.66 | | windowpane | 65.1 | 80.89 | | grass | 69.22 | 78.83 | | cabinet | 63.97 | 73.7 | | sidewalk | 67.83 | 84.21 | | person | 82.85 | 93.47 | | earth | 40.79 | 58.38 | | door | 56.19 | 75.36 | | table | 61.54 | 73.21 | | mountain | 60.79 | 71.34 | | plant | 54.83 | 69.58 | | curtain | 77.03 | 90.42 | | chair | 62.13 | 75.4 | | car | 85.33 | 92.58 | | water | 70.1 | 88.11 | | painting | 75.84 | 88.72 | | sofa | 81.52 | 89.99 | | shelf | 45.59 | 61.14 | | house | 49.51 | 75.45 | | sea | 74.1 | 81.24 | | mirror | 75.52 | 85.27 | | rug | 71.79 | 83.82 | | field | 25.12 | 41.29 | | armchair | 61.42 | 81.64 | | seat | 66.1 | 90.03 | | fence | 49.71 | 73.58 | | desk | 49.75 | 71.93 | | rock | 50.87 | 85.29 | | wardrobe | 57.91 | 72.26 | | lamp | 65.42 | 77.33 | | bathtub | 87.22 | 92.32 | | railing | 38.08 | 60.25 | | cushion | 68.02 | 79.64 | | base | 47.77 | 65.76 | | box | 35.86 | 41.64 | | column | 53.82 | 71.51 | | signboard | 41.5 | 53.17 | | chest of drawers | 49.84 | 74.43 | | counter | 50.75 | 58.72 | | sand | 53.28 | 81.23 | | sink | 78.72 | 88.38 | | skyscraper | 46.57 | 54.6 | | fireplace | 68.86 | 96.27 | | refrigerator | 78.29 | 89.85 | | grandstand | 57.52 | 78.57 | | path | 31.68 | 40.37 | | stairs | 33.21 | 41.64 | | runway | 68.02 | 90.7 | | case | 63.63 | 90.01 | | pool table | 91.67 | 98.47 | | pillow | 67.76 | 81.46 | | screen door | 70.59 | 99.34 | | stairway | 21.49 | 27.28 | | river | 19.51 | 21.38 | | bridge | 55.69 | 69.6 | | bookcase | 32.83 | 49.24 | | blind | 42.73 | 50.59 | | coffee table | 50.92 | 92.36 | | toilet | 88.47 | 93.51 | | flower | 42.96 | 53.61 | | book | 50.85 | 75.82 | | hill | 4.66 | 11.0 | | bench | 56.7 | 67.74 | | countertop | 60.89 | 84.52 | | stove | 83.65 | 96.33 | | palm | 51.09 | 84.95 | | kitchen island | 45.75 | 93.09 | | computer | 77.3 | 92.97 | | swivel chair | 51.98 | 86.65 | | boat | 72.54 | 78.75 | | bar | 63.71 | 86.82 | | arcade machine | 89.37 | 97.07 | | hovel | 17.29 | 18.29 | | bus | 90.72 | 97.04 | | towel | 66.09 | 88.83 | | light | 48.39 | 59.84 | | truck | 45.86 | 58.45 | | tower | 26.45 | 41.71 | | chandelier | 63.93 | 87.6 | | awning | 37.82 | 49.69 | | streetlight | 21.64 | 26.64 | | booth | 41.26 | 48.48 | | television receiver | 73.47 | 87.19 | | airplane | 83.73 | 92.7 | | dirt track | 9.14 | 23.11 | | apparel | 53.84 | 76.11 | | pole | 19.48 | 24.19 | | land | 0.14 | 0.22 | | bannister | 18.16 | 22.12 | | escalator | 62.01 | 85.3 | | ottoman | 57.47 | 76.6 | | bottle | 41.32 | 73.37 | | buffet | 58.89 | 85.29 | | poster | 29.17 | 36.16 | | stage | 22.5 | 39.17 | | van | 44.44 | 71.72 | | ship | 20.98 | 21.37 | | fountain | 74.26 | 82.54 | | conveyer belt | 78.74 | 97.17 | | canopy | 39.11 | 55.62 | | washer | 88.47 | 94.41 | | plaything | 39.0 | 56.01 | | swimming pool | 60.65 | 93.04 | | stool | 45.85 | 53.55 | | barrel | 46.17 | 73.24 | | basket | 48.14 | 59.93 | | waterfall | 52.29 | 96.48 | | tent | 82.16 | 98.77 | | bag | 17.07 | 18.46 | | minibike | 72.75 | 84.72 | | cradle | 76.77 | 97.72 | | oven | 53.8 | 57.81 | | ball | 55.5 | 58.91 | | food | 58.59 | 70.54 | | step | 12.17 | 15.6 | | tank | 47.13 | 71.42 | | trade name | 24.08 | 26.95 | | microwave | 85.82 | 95.8 | | pot | 55.78 | 66.79 | | animal | 73.22 | 76.77 | | bicycle | 59.54 | 75.48 | | lake | 62.34 | 62.39 | | dishwasher | 63.6 | 85.45 | | screen | 58.17 | 93.01 | | blanket | 24.25 | 27.36 | | sculpture | 69.81 | 78.7 | | hood | 71.91 | 89.8 | | sconce | 54.14 | 67.41 | | vase | 44.0 | 64.23 | | traffic light | 34.82 | 55.3 | | tray | 12.89 | 15.95 | | ashcan | 51.62 | 68.85 | | fan | 61.39 | 76.49 | | pier | 36.49 | 40.26 | | crt screen | 3.23 | 7.73 | | plate | 59.33 | 76.16 | | monitor | 10.43 | 11.78 | | bulletin board | 61.23 | 70.99 | | shower | 3.15 | 3.16 | | radiator | 62.69 | 85.32 | | glass | 17.23 | 18.17 | | clock | 40.1 | 56.81 | | flag | 61.58 | 64.78 | +---------------------+-------+-------+ 2024-06-16 04:22:41,847 - mmseg - INFO - Summary: 2024-06-16 04:22:41,848 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 84.96 | 54.73 | 68.87 | +-------+-------+-------+ 2024-06-16 04:22:41,848 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 04:22:41,849 - mmseg - INFO - Iter(val) [250] aAcc: 0.8496, mIoU: 0.5473, mAcc: 0.6887, IoU.wall: 0.7953, IoU.building: 0.8372, IoU.sky: 0.9432, IoU.floor: 0.8367, IoU.tree: 0.7648, IoU.ceiling: 0.8600, IoU.road: 0.8491, IoU.bed : 0.9104, IoU.windowpane: 0.6510, IoU.grass: 0.6922, IoU.cabinet: 0.6397, IoU.sidewalk: 0.6783, IoU.person: 0.8285, IoU.earth: 0.4079, IoU.door: 0.5619, IoU.table: 0.6154, IoU.mountain: 0.6079, IoU.plant: 0.5483, IoU.curtain: 0.7703, IoU.chair: 0.6213, IoU.car: 0.8533, IoU.water: 0.7010, IoU.painting: 0.7584, IoU.sofa: 0.8152, IoU.shelf: 0.4559, IoU.house: 0.4951, IoU.sea: 0.7410, IoU.mirror: 0.7552, IoU.rug: 0.7179, IoU.field: 0.2512, IoU.armchair: 0.6142, IoU.seat: 0.6610, IoU.fence: 0.4971, IoU.desk: 0.4975, IoU.rock: 0.5087, IoU.wardrobe: 0.5791, IoU.lamp: 0.6542, IoU.bathtub: 0.8722, IoU.railing: 0.3808, IoU.cushion: 0.6802, IoU.base: 0.4777, IoU.box: 0.3586, IoU.column: 0.5382, IoU.signboard: 0.4150, IoU.chest of drawers: 0.4984, IoU.counter: 0.5075, IoU.sand: 0.5328, IoU.sink: 0.7872, IoU.skyscraper: 0.4657, IoU.fireplace: 0.6886, IoU.refrigerator: 0.7829, IoU.grandstand: 0.5752, IoU.path: 0.3168, IoU.stairs: 0.3321, IoU.runway: 0.6802, IoU.case: 0.6363, IoU.pool table: 0.9167, IoU.pillow: 0.6776, IoU.screen door: 0.7059, IoU.stairway: 0.2149, IoU.river: 0.1951, IoU.bridge: 0.5569, IoU.bookcase: 0.3283, IoU.blind: 0.4273, IoU.coffee table: 0.5092, IoU.toilet: 0.8847, IoU.flower: 0.4296, IoU.book: 0.5085, IoU.hill: 0.0466, IoU.bench: 0.5670, IoU.countertop: 0.6089, IoU.stove: 0.8365, IoU.palm: 0.5109, IoU.kitchen island: 0.4575, IoU.computer: 0.7730, IoU.swivel chair: 0.5198, IoU.boat: 0.7254, IoU.bar: 0.6371, IoU.arcade machine: 0.8937, IoU.hovel: 0.1729, IoU.bus: 0.9072, IoU.towel: 0.6609, IoU.light: 0.4839, IoU.truck: 0.4586, IoU.tower: 0.2645, IoU.chandelier: 0.6393, IoU.awning: 0.3782, IoU.streetlight: 0.2164, IoU.booth: 0.4126, IoU.television receiver: 0.7347, IoU.airplane: 0.8373, IoU.dirt track: 0.0914, IoU.apparel: 0.5384, IoU.pole: 0.1948, IoU.land: 0.0014, IoU.bannister: 0.1816, IoU.escalator: 0.6201, IoU.ottoman: 0.5747, IoU.bottle: 0.4132, IoU.buffet: 0.5889, IoU.poster: 0.2917, IoU.stage: 0.2250, IoU.van: 0.4444, IoU.ship: 0.2098, IoU.fountain: 0.7426, IoU.conveyer belt: 0.7874, IoU.canopy: 0.3911, IoU.washer: 0.8847, IoU.plaything: 0.3900, IoU.swimming pool: 0.6065, IoU.stool: 0.4585, IoU.barrel: 0.4617, IoU.basket: 0.4814, IoU.waterfall: 0.5229, IoU.tent: 0.8216, IoU.bag: 0.1707, IoU.minibike: 0.7275, IoU.cradle: 0.7677, IoU.oven: 0.5380, IoU.ball: 0.5550, IoU.food: 0.5859, IoU.step: 0.1217, IoU.tank: 0.4713, IoU.trade name: 0.2408, IoU.microwave: 0.8582, IoU.pot: 0.5578, IoU.animal: 0.7322, IoU.bicycle: 0.5954, IoU.lake: 0.6234, IoU.dishwasher: 0.6360, IoU.screen: 0.5817, IoU.blanket: 0.2425, IoU.sculpture: 0.6981, IoU.hood: 0.7191, IoU.sconce: 0.5414, IoU.vase: 0.4400, IoU.traffic light: 0.3482, IoU.tray: 0.1289, IoU.ashcan: 0.5162, IoU.fan: 0.6139, IoU.pier: 0.3649, IoU.crt screen: 0.0323, IoU.plate: 0.5933, IoU.monitor: 0.1043, IoU.bulletin board: 0.6123, IoU.shower: 0.0315, IoU.radiator: 0.6269, IoU.glass: 0.1723, IoU.clock: 0.4010, IoU.flag: 0.6158, Acc.wall: 0.8600, Acc.building: 0.9283, Acc.sky: 0.9707, Acc.floor: 0.9043, Acc.tree: 0.8796, Acc.ceiling: 0.9375, Acc.road: 0.9042, Acc.bed : 0.9666, Acc.windowpane: 0.8089, Acc.grass: 0.7883, Acc.cabinet: 0.7370, Acc.sidewalk: 0.8421, Acc.person: 0.9347, Acc.earth: 0.5838, Acc.door: 0.7536, Acc.table: 0.7321, Acc.mountain: 0.7134, Acc.plant: 0.6958, Acc.curtain: 0.9042, Acc.chair: 0.7540, Acc.car: 0.9258, Acc.water: 0.8811, Acc.painting: 0.8872, Acc.sofa: 0.8999, Acc.shelf: 0.6114, Acc.house: 0.7545, Acc.sea: 0.8124, Acc.mirror: 0.8527, Acc.rug: 0.8382, Acc.field: 0.4129, Acc.armchair: 0.8164, Acc.seat: 0.9003, Acc.fence: 0.7358, Acc.desk: 0.7193, Acc.rock: 0.8529, Acc.wardrobe: 0.7226, Acc.lamp: 0.7733, Acc.bathtub: 0.9232, Acc.railing: 0.6025, Acc.cushion: 0.7964, Acc.base: 0.6576, Acc.box: 0.4164, Acc.column: 0.7151, Acc.signboard: 0.5317, Acc.chest of drawers: 0.7443, Acc.counter: 0.5872, Acc.sand: 0.8123, Acc.sink: 0.8838, Acc.skyscraper: 0.5460, Acc.fireplace: 0.9627, Acc.refrigerator: 0.8985, Acc.grandstand: 0.7857, Acc.path: 0.4037, Acc.stairs: 0.4164, Acc.runway: 0.9070, Acc.case: 0.9001, Acc.pool table: 0.9847, Acc.pillow: 0.8146, Acc.screen door: 0.9934, Acc.stairway: 0.2728, Acc.river: 0.2138, Acc.bridge: 0.6960, Acc.bookcase: 0.4924, Acc.blind: 0.5059, Acc.coffee table: 0.9236, Acc.toilet: 0.9351, Acc.flower: 0.5361, Acc.book: 0.7582, Acc.hill: 0.1100, Acc.bench: 0.6774, Acc.countertop: 0.8452, Acc.stove: 0.9633, Acc.palm: 0.8495, Acc.kitchen island: 0.9309, Acc.computer: 0.9297, Acc.swivel chair: 0.8665, Acc.boat: 0.7875, Acc.bar: 0.8682, Acc.arcade machine: 0.9707, Acc.hovel: 0.1829, Acc.bus: 0.9704, Acc.towel: 0.8883, Acc.light: 0.5984, Acc.truck: 0.5845, Acc.tower: 0.4171, Acc.chandelier: 0.8760, Acc.awning: 0.4969, Acc.streetlight: 0.2664, Acc.booth: 0.4848, Acc.television receiver: 0.8719, Acc.airplane: 0.9270, Acc.dirt track: 0.2311, Acc.apparel: 0.7611, Acc.pole: 0.2419, Acc.land: 0.0022, Acc.bannister: 0.2212, Acc.escalator: 0.8530, Acc.ottoman: 0.7660, Acc.bottle: 0.7337, Acc.buffet: 0.8529, Acc.poster: 0.3616, Acc.stage: 0.3917, Acc.van: 0.7172, Acc.ship: 0.2137, Acc.fountain: 0.8254, Acc.conveyer belt: 0.9717, Acc.canopy: 0.5562, Acc.washer: 0.9441, Acc.plaything: 0.5601, Acc.swimming pool: 0.9304, Acc.stool: 0.5355, Acc.barrel: 0.7324, Acc.basket: 0.5993, Acc.waterfall: 0.9648, Acc.tent: 0.9877, Acc.bag: 0.1846, Acc.minibike: 0.8472, Acc.cradle: 0.9772, Acc.oven: 0.5781, Acc.ball: 0.5891, Acc.food: 0.7054, Acc.step: 0.1560, Acc.tank: 0.7142, Acc.trade name: 0.2695, Acc.microwave: 0.9580, Acc.pot: 0.6679, Acc.animal: 0.7677, Acc.bicycle: 0.7548, Acc.lake: 0.6239, Acc.dishwasher: 0.8545, Acc.screen: 0.9301, Acc.blanket: 0.2736, Acc.sculpture: 0.7870, Acc.hood: 0.8980, Acc.sconce: 0.6741, Acc.vase: 0.6423, Acc.traffic light: 0.5530, Acc.tray: 0.1595, Acc.ashcan: 0.6885, Acc.fan: 0.7649, Acc.pier: 0.4026, Acc.crt screen: 0.0773, Acc.plate: 0.7616, Acc.monitor: 0.1178, Acc.bulletin board: 0.7099, Acc.shower: 0.0316, Acc.radiator: 0.8532, Acc.glass: 0.1817, Acc.clock: 0.5681, Acc.flag: 0.6478 2024-06-16 04:24:02,628 - mmseg - INFO - Iter [16050/80000] lr: 2.590e-06, eta: 1 day, 6:52:09, time: 3.241, data_time: 1.639, memory: 65790, decode.loss_ce: 0.3355, decode.acc_seg: 86.6285, aux.loss_ce: 0.1333, aux.acc_seg: 86.6103, loss: 0.4688 2024-06-16 04:25:23,081 - mmseg - INFO - Iter [16100/80000] lr: 2.588e-06, eta: 1 day, 6:50:16, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2969, decode.acc_seg: 87.9064, aux.loss_ce: 0.1191, aux.acc_seg: 88.0575, loss: 0.4160 2024-06-16 04:26:43,579 - mmseg - INFO - Iter [16150/80000] lr: 2.586e-06, eta: 1 day, 6:48:24, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3081, decode.acc_seg: 87.1923, aux.loss_ce: 0.1224, aux.acc_seg: 87.2615, loss: 0.4305 2024-06-16 04:28:04,131 - mmseg - INFO - Iter [16200/80000] lr: 2.584e-06, eta: 1 day, 6:46:33, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3070, decode.acc_seg: 87.4591, aux.loss_ce: 0.1223, aux.acc_seg: 87.6115, loss: 0.4294 2024-06-16 04:29:24,596 - mmseg - INFO - Iter [16250/80000] lr: 2.582e-06, eta: 1 day, 6:44:41, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3093, decode.acc_seg: 87.0953, aux.loss_ce: 0.1246, aux.acc_seg: 87.1288, loss: 0.4339 2024-06-16 04:30:45,050 - mmseg - INFO - Iter [16300/80000] lr: 2.580e-06, eta: 1 day, 6:42:49, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3012, decode.acc_seg: 87.5048, aux.loss_ce: 0.1204, aux.acc_seg: 87.7020, loss: 0.4216 2024-06-16 04:32:05,568 - mmseg - INFO - Iter [16350/80000] lr: 2.578e-06, eta: 1 day, 6:40:58, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3017, decode.acc_seg: 86.9165, aux.loss_ce: 0.1219, aux.acc_seg: 87.0618, loss: 0.4236 2024-06-16 04:33:26,067 - mmseg - INFO - Iter [16400/80000] lr: 2.576e-06, eta: 1 day, 6:39:07, time: 1.610, data_time: 0.008, memory: 65790, decode.loss_ce: 0.3174, decode.acc_seg: 86.9545, aux.loss_ce: 0.1262, aux.acc_seg: 87.1829, loss: 0.4436 2024-06-16 04:34:49,254 - mmseg - INFO - Iter [16450/80000] lr: 2.574e-06, eta: 1 day, 6:37:26, time: 1.664, data_time: 0.059, memory: 65790, decode.loss_ce: 0.3002, decode.acc_seg: 87.5100, aux.loss_ce: 0.1200, aux.acc_seg: 87.5928, loss: 0.4202 2024-06-16 04:36:10,014 - mmseg - INFO - Iter [16500/80000] lr: 2.572e-06, eta: 1 day, 6:35:37, time: 1.615, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2946, decode.acc_seg: 87.9502, aux.loss_ce: 0.1194, aux.acc_seg: 87.9888, loss: 0.4140 2024-06-16 04:37:30,475 - mmseg - INFO - Iter [16550/80000] lr: 2.570e-06, eta: 1 day, 6:33:46, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2799, decode.acc_seg: 88.3248, aux.loss_ce: 0.1130, aux.acc_seg: 88.4285, loss: 0.3929 2024-06-16 04:38:50,937 - mmseg - INFO - Iter [16600/80000] lr: 2.568e-06, eta: 1 day, 6:31:55, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2973, decode.acc_seg: 87.7374, aux.loss_ce: 0.1192, aux.acc_seg: 87.7804, loss: 0.4164 2024-06-16 04:40:11,426 - mmseg - INFO - Iter [16650/80000] lr: 2.566e-06, eta: 1 day, 6:30:05, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2931, decode.acc_seg: 88.3209, aux.loss_ce: 0.1181, aux.acc_seg: 88.2664, loss: 0.4112 2024-06-16 04:41:31,993 - mmseg - INFO - Iter [16700/80000] lr: 2.564e-06, eta: 1 day, 6:28:15, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3182, decode.acc_seg: 86.5988, aux.loss_ce: 0.1272, aux.acc_seg: 86.8206, loss: 0.4454 2024-06-16 04:42:52,572 - mmseg - INFO - Iter [16750/80000] lr: 2.561e-06, eta: 1 day, 6:26:26, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2922, decode.acc_seg: 87.8822, aux.loss_ce: 0.1175, aux.acc_seg: 87.9776, loss: 0.4097 2024-06-16 04:44:13,132 - mmseg - INFO - Iter [16800/80000] lr: 2.559e-06, eta: 1 day, 6:24:36, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3037, decode.acc_seg: 87.3986, aux.loss_ce: 0.1227, aux.acc_seg: 87.4198, loss: 0.4263 2024-06-16 04:45:33,666 - mmseg - INFO - Iter [16850/80000] lr: 2.557e-06, eta: 1 day, 6:22:47, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2952, decode.acc_seg: 87.6113, aux.loss_ce: 0.1186, aux.acc_seg: 87.8164, loss: 0.4137 2024-06-16 04:46:54,119 - mmseg - INFO - Iter [16900/80000] lr: 2.555e-06, eta: 1 day, 6:20:57, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2985, decode.acc_seg: 87.6779, aux.loss_ce: 0.1181, aux.acc_seg: 87.9689, loss: 0.4166 2024-06-16 04:48:14,640 - mmseg - INFO - Iter [16950/80000] lr: 2.553e-06, eta: 1 day, 6:19:08, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3021, decode.acc_seg: 87.1512, aux.loss_ce: 0.1211, aux.acc_seg: 87.4019, loss: 0.4232 2024-06-16 04:49:35,138 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 04:49:35,138 - mmseg - INFO - Iter [17000/80000] lr: 2.551e-06, eta: 1 day, 6:17:19, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3022, decode.acc_seg: 87.5482, aux.loss_ce: 0.1208, aux.acc_seg: 87.6104, loss: 0.4230 2024-06-16 04:50:57,611 - mmseg - INFO - per class results: 2024-06-16 04:50:57,617 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 79.59 | 86.47 | | building | 83.6 | 92.64 | | sky | 94.2 | 97.36 | | floor | 82.81 | 89.34 | | tree | 76.53 | 89.89 | | ceiling | 85.47 | 93.11 | | road | 85.08 | 91.07 | | bed | 91.18 | 96.2 | | windowpane | 65.02 | 83.24 | | grass | 64.68 | 87.6 | | cabinet | 64.41 | 76.32 | | sidewalk | 66.84 | 84.84 | | person | 82.41 | 91.69 | | earth | 37.45 | 46.88 | | door | 57.22 | 74.53 | | table | 67.48 | 80.19 | | mountain | 63.78 | 72.44 | | plant | 54.3 | 62.57 | | curtain | 76.35 | 88.25 | | chair | 60.02 | 69.89 | | car | 85.48 | 93.2 | | water | 62.19 | 76.62 | | painting | 76.62 | 89.49 | | sofa | 82.25 | 92.34 | | shelf | 43.19 | 63.56 | | house | 49.78 | 58.99 | | sea | 65.3 | 84.46 | | mirror | 77.3 | 85.85 | | rug | 69.47 | 88.19 | | field | 21.88 | 33.04 | | armchair | 58.88 | 80.2 | | seat | 64.71 | 88.15 | | fence | 50.91 | 70.51 | | desk | 56.16 | 72.56 | | rock | 57.9 | 77.42 | | wardrobe | 54.79 | 85.9 | | lamp | 68.19 | 79.34 | | bathtub | 85.01 | 87.95 | | railing | 39.62 | 57.34 | | cushion | 66.24 | 75.29 | | base | 41.95 | 57.06 | | box | 37.98 | 48.31 | | column | 51.62 | 66.4 | | signboard | 39.67 | 52.15 | | chest of drawers | 48.41 | 73.18 | | counter | 51.05 | 64.27 | | sand | 50.52 | 82.14 | | sink | 76.92 | 85.99 | | skyscraper | 50.24 | 63.75 | | fireplace | 69.27 | 95.98 | | refrigerator | 79.98 | 92.41 | | grandstand | 48.46 | 86.24 | | path | 26.67 | 35.49 | | stairs | 32.5 | 39.77 | | runway | 69.03 | 89.14 | | case | 60.13 | 76.86 | | pool table | 92.12 | 98.42 | | pillow | 65.85 | 80.47 | | screen door | 86.11 | 98.63 | | stairway | 39.44 | 53.9 | | river | 18.06 | 37.17 | | bridge | 51.36 | 76.2 | | bookcase | 35.45 | 48.43 | | blind | 40.81 | 48.15 | | coffee table | 60.77 | 86.71 | | toilet | 87.92 | 94.71 | | flower | 42.38 | 68.06 | | book | 52.18 | 75.48 | | hill | 5.08 | 12.24 | | bench | 50.32 | 56.35 | | countertop | 65.51 | 86.47 | | stove | 84.49 | 93.13 | | palm | 54.8 | 79.31 | | kitchen island | 47.26 | 82.97 | | computer | 77.97 | 85.86 | | swivel chair | 53.22 | 85.89 | | boat | 78.07 | 89.64 | | bar | 66.14 | 88.9 | | arcade machine | 87.13 | 98.32 | | hovel | 28.48 | 29.61 | | bus | 91.09 | 96.92 | | towel | 74.12 | 86.37 | | light | 45.14 | 51.72 | | truck | 47.21 | 65.29 | | tower | 28.08 | 59.99 | | chandelier | 68.21 | 84.85 | | awning | 41.9 | 54.88 | | streetlight | 20.59 | 24.87 | | booth | 47.4 | 59.91 | | television receiver | 81.74 | 89.91 | | airplane | 82.08 | 95.45 | | dirt track | 7.5 | 7.82 | | apparel | 55.99 | 77.2 | | pole | 17.98 | 23.52 | | land | 3.1 | 3.79 | | bannister | 15.18 | 19.31 | | escalator | 59.01 | 86.66 | | ottoman | 56.19 | 75.93 | | bottle | 41.03 | 70.34 | | buffet | 28.78 | 30.06 | | poster | 26.46 | 39.63 | | stage | 14.85 | 29.92 | | van | 53.4 | 72.37 | | ship | 68.46 | 95.56 | | fountain | 35.63 | 36.55 | | conveyer belt | 75.81 | 97.59 | | canopy | 45.82 | 68.02 | | washer | 87.28 | 96.7 | | plaything | 27.62 | 38.09 | | swimming pool | 72.27 | 73.51 | | stool | 42.76 | 67.78 | | barrel | 58.69 | 70.57 | | basket | 46.42 | 67.07 | | waterfall | 71.2 | 92.88 | | tent | 95.68 | 98.66 | | bag | 28.5 | 33.91 | | minibike | 72.26 | 88.34 | | cradle | 81.99 | 98.27 | | oven | 57.03 | 70.69 | | ball | 45.12 | 46.5 | | food | 54.68 | 59.43 | | step | 13.67 | 17.24 | | tank | 52.1 | 67.16 | | trade name | 28.45 | 33.78 | | microwave | 84.03 | 96.88 | | pot | 55.35 | 64.39 | | animal | 69.62 | 72.75 | | bicycle | 60.08 | 84.09 | | lake | 57.9 | 63.54 | | dishwasher | 72.97 | 79.85 | | screen | 55.42 | 94.27 | | blanket | 35.12 | 43.13 | | sculpture | 68.87 | 84.68 | | hood | 67.2 | 84.21 | | sconce | 54.68 | 71.2 | | vase | 43.31 | 57.59 | | traffic light | 30.14 | 61.92 | | tray | 16.72 | 19.1 | | ashcan | 50.9 | 61.03 | | fan | 58.25 | 86.12 | | pier | 37.46 | 41.44 | | crt screen | 4.52 | 10.81 | | plate | 55.7 | 73.87 | | monitor | 16.85 | 21.4 | | bulletin board | 54.67 | 72.07 | | shower | 7.85 | 8.15 | | radiator | 63.46 | 82.88 | | glass | 17.03 | 17.75 | | clock | 43.63 | 49.45 | | flag | 67.04 | 76.6 | +---------------------+-------+-------+ 2024-06-16 04:50:57,617 - mmseg - INFO - Summary: 2024-06-16 04:50:57,617 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 84.86 | 55.31 | 69.09 | +-------+-------+-------+ 2024-06-16 04:50:57,618 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 04:50:57,618 - mmseg - INFO - Iter(val) [250] aAcc: 0.8486, mIoU: 0.5531, mAcc: 0.6909, IoU.wall: 0.7959, IoU.building: 0.8360, IoU.sky: 0.9420, IoU.floor: 0.8281, IoU.tree: 0.7653, IoU.ceiling: 0.8547, IoU.road: 0.8508, IoU.bed : 0.9118, IoU.windowpane: 0.6502, IoU.grass: 0.6468, IoU.cabinet: 0.6441, IoU.sidewalk: 0.6684, IoU.person: 0.8241, IoU.earth: 0.3745, IoU.door: 0.5722, IoU.table: 0.6748, IoU.mountain: 0.6378, IoU.plant: 0.5430, IoU.curtain: 0.7635, IoU.chair: 0.6002, IoU.car: 0.8548, IoU.water: 0.6219, IoU.painting: 0.7662, IoU.sofa: 0.8225, IoU.shelf: 0.4319, IoU.house: 0.4978, IoU.sea: 0.6530, IoU.mirror: 0.7730, IoU.rug: 0.6947, IoU.field: 0.2188, IoU.armchair: 0.5888, IoU.seat: 0.6471, IoU.fence: 0.5091, IoU.desk: 0.5616, IoU.rock: 0.5790, IoU.wardrobe: 0.5479, IoU.lamp: 0.6819, IoU.bathtub: 0.8501, IoU.railing: 0.3962, IoU.cushion: 0.6624, IoU.base: 0.4195, IoU.box: 0.3798, IoU.column: 0.5162, IoU.signboard: 0.3967, IoU.chest of drawers: 0.4841, IoU.counter: 0.5105, IoU.sand: 0.5052, IoU.sink: 0.7692, IoU.skyscraper: 0.5024, IoU.fireplace: 0.6927, IoU.refrigerator: 0.7998, IoU.grandstand: 0.4846, IoU.path: 0.2667, IoU.stairs: 0.3250, IoU.runway: 0.6903, IoU.case: 0.6013, IoU.pool table: 0.9212, IoU.pillow: 0.6585, IoU.screen door: 0.8611, IoU.stairway: 0.3944, IoU.river: 0.1806, IoU.bridge: 0.5136, IoU.bookcase: 0.3545, IoU.blind: 0.4081, IoU.coffee table: 0.6077, IoU.toilet: 0.8792, IoU.flower: 0.4238, IoU.book: 0.5218, IoU.hill: 0.0508, IoU.bench: 0.5032, IoU.countertop: 0.6551, IoU.stove: 0.8449, IoU.palm: 0.5480, IoU.kitchen island: 0.4726, IoU.computer: 0.7797, IoU.swivel chair: 0.5322, IoU.boat: 0.7807, IoU.bar: 0.6614, IoU.arcade machine: 0.8713, IoU.hovel: 0.2848, IoU.bus: 0.9109, IoU.towel: 0.7412, IoU.light: 0.4514, IoU.truck: 0.4721, IoU.tower: 0.2808, IoU.chandelier: 0.6821, IoU.awning: 0.4190, IoU.streetlight: 0.2059, IoU.booth: 0.4740, IoU.television receiver: 0.8174, IoU.airplane: 0.8208, IoU.dirt track: 0.0750, IoU.apparel: 0.5599, IoU.pole: 0.1798, IoU.land: 0.0310, IoU.bannister: 0.1518, IoU.escalator: 0.5901, IoU.ottoman: 0.5619, IoU.bottle: 0.4103, IoU.buffet: 0.2878, IoU.poster: 0.2646, IoU.stage: 0.1485, IoU.van: 0.5340, IoU.ship: 0.6846, IoU.fountain: 0.3563, IoU.conveyer belt: 0.7581, IoU.canopy: 0.4582, IoU.washer: 0.8728, IoU.plaything: 0.2762, IoU.swimming pool: 0.7227, IoU.stool: 0.4276, IoU.barrel: 0.5869, IoU.basket: 0.4642, IoU.waterfall: 0.7120, IoU.tent: 0.9568, IoU.bag: 0.2850, IoU.minibike: 0.7226, IoU.cradle: 0.8199, IoU.oven: 0.5703, IoU.ball: 0.4512, IoU.food: 0.5468, IoU.step: 0.1367, IoU.tank: 0.5210, IoU.trade name: 0.2845, IoU.microwave: 0.8403, IoU.pot: 0.5535, IoU.animal: 0.6962, IoU.bicycle: 0.6008, IoU.lake: 0.5790, IoU.dishwasher: 0.7297, IoU.screen: 0.5542, IoU.blanket: 0.3512, IoU.sculpture: 0.6887, IoU.hood: 0.6720, IoU.sconce: 0.5468, IoU.vase: 0.4331, IoU.traffic light: 0.3014, IoU.tray: 0.1672, IoU.ashcan: 0.5090, IoU.fan: 0.5825, IoU.pier: 0.3746, IoU.crt screen: 0.0452, IoU.plate: 0.5570, IoU.monitor: 0.1685, IoU.bulletin board: 0.5467, IoU.shower: 0.0785, IoU.radiator: 0.6346, IoU.glass: 0.1703, IoU.clock: 0.4363, IoU.flag: 0.6704, Acc.wall: 0.8647, Acc.building: 0.9264, Acc.sky: 0.9736, Acc.floor: 0.8934, Acc.tree: 0.8989, Acc.ceiling: 0.9311, Acc.road: 0.9107, Acc.bed : 0.9620, Acc.windowpane: 0.8324, Acc.grass: 0.8760, Acc.cabinet: 0.7632, Acc.sidewalk: 0.8484, Acc.person: 0.9169, Acc.earth: 0.4688, Acc.door: 0.7453, Acc.table: 0.8019, Acc.mountain: 0.7244, Acc.plant: 0.6257, Acc.curtain: 0.8825, Acc.chair: 0.6989, Acc.car: 0.9320, Acc.water: 0.7662, Acc.painting: 0.8949, Acc.sofa: 0.9234, Acc.shelf: 0.6356, Acc.house: 0.5899, Acc.sea: 0.8446, Acc.mirror: 0.8585, Acc.rug: 0.8819, Acc.field: 0.3304, Acc.armchair: 0.8020, Acc.seat: 0.8815, Acc.fence: 0.7051, Acc.desk: 0.7256, Acc.rock: 0.7742, Acc.wardrobe: 0.8590, Acc.lamp: 0.7934, Acc.bathtub: 0.8795, Acc.railing: 0.5734, Acc.cushion: 0.7529, Acc.base: 0.5706, Acc.box: 0.4831, Acc.column: 0.6640, Acc.signboard: 0.5215, Acc.chest of drawers: 0.7318, Acc.counter: 0.6427, Acc.sand: 0.8214, Acc.sink: 0.8599, Acc.skyscraper: 0.6375, Acc.fireplace: 0.9598, Acc.refrigerator: 0.9241, Acc.grandstand: 0.8624, Acc.path: 0.3549, Acc.stairs: 0.3977, Acc.runway: 0.8914, Acc.case: 0.7686, Acc.pool table: 0.9842, Acc.pillow: 0.8047, Acc.screen door: 0.9863, Acc.stairway: 0.5390, Acc.river: 0.3717, Acc.bridge: 0.7620, Acc.bookcase: 0.4843, Acc.blind: 0.4815, Acc.coffee table: 0.8671, Acc.toilet: 0.9471, Acc.flower: 0.6806, Acc.book: 0.7548, Acc.hill: 0.1224, Acc.bench: 0.5635, Acc.countertop: 0.8647, Acc.stove: 0.9313, Acc.palm: 0.7931, Acc.kitchen island: 0.8297, Acc.computer: 0.8586, Acc.swivel chair: 0.8589, Acc.boat: 0.8964, Acc.bar: 0.8890, Acc.arcade machine: 0.9832, Acc.hovel: 0.2961, Acc.bus: 0.9692, Acc.towel: 0.8637, Acc.light: 0.5172, Acc.truck: 0.6529, Acc.tower: 0.5999, Acc.chandelier: 0.8485, Acc.awning: 0.5488, Acc.streetlight: 0.2487, Acc.booth: 0.5991, Acc.television receiver: 0.8991, Acc.airplane: 0.9545, Acc.dirt track: 0.0782, Acc.apparel: 0.7720, Acc.pole: 0.2352, Acc.land: 0.0379, Acc.bannister: 0.1931, Acc.escalator: 0.8666, Acc.ottoman: 0.7593, Acc.bottle: 0.7034, Acc.buffet: 0.3006, Acc.poster: 0.3963, Acc.stage: 0.2992, Acc.van: 0.7237, Acc.ship: 0.9556, Acc.fountain: 0.3655, Acc.conveyer belt: 0.9759, Acc.canopy: 0.6802, Acc.washer: 0.9670, Acc.plaything: 0.3809, Acc.swimming pool: 0.7351, Acc.stool: 0.6778, Acc.barrel: 0.7057, Acc.basket: 0.6707, Acc.waterfall: 0.9288, Acc.tent: 0.9866, Acc.bag: 0.3391, Acc.minibike: 0.8834, Acc.cradle: 0.9827, Acc.oven: 0.7069, Acc.ball: 0.4650, Acc.food: 0.5943, Acc.step: 0.1724, Acc.tank: 0.6716, Acc.trade name: 0.3378, Acc.microwave: 0.9688, Acc.pot: 0.6439, Acc.animal: 0.7275, Acc.bicycle: 0.8409, Acc.lake: 0.6354, Acc.dishwasher: 0.7985, Acc.screen: 0.9427, Acc.blanket: 0.4313, Acc.sculpture: 0.8468, Acc.hood: 0.8421, Acc.sconce: 0.7120, Acc.vase: 0.5759, Acc.traffic light: 0.6192, Acc.tray: 0.1910, Acc.ashcan: 0.6103, Acc.fan: 0.8612, Acc.pier: 0.4144, Acc.crt screen: 0.1081, Acc.plate: 0.7387, Acc.monitor: 0.2140, Acc.bulletin board: 0.7207, Acc.shower: 0.0815, Acc.radiator: 0.8288, Acc.glass: 0.1775, Acc.clock: 0.4945, Acc.flag: 0.7660 2024-06-16 04:52:18,514 - mmseg - INFO - Iter [17050/80000] lr: 2.549e-06, eta: 1 day, 6:20:36, time: 3.268, data_time: 1.664, memory: 65790, decode.loss_ce: 0.3018, decode.acc_seg: 87.2824, aux.loss_ce: 0.1205, aux.acc_seg: 87.5353, loss: 0.4223 2024-06-16 04:53:39,069 - mmseg - INFO - Iter [17100/80000] lr: 2.547e-06, eta: 1 day, 6:18:47, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3129, decode.acc_seg: 87.1560, aux.loss_ce: 0.1248, aux.acc_seg: 87.2888, loss: 0.4377 2024-06-16 04:54:59,499 - mmseg - INFO - Iter [17150/80000] lr: 2.545e-06, eta: 1 day, 6:16:57, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2832, decode.acc_seg: 88.4987, aux.loss_ce: 0.1142, aux.acc_seg: 88.5893, loss: 0.3974 2024-06-16 04:56:19,950 - mmseg - INFO - Iter [17200/80000] lr: 2.543e-06, eta: 1 day, 6:15:07, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3020, decode.acc_seg: 87.5610, aux.loss_ce: 0.1212, aux.acc_seg: 87.5289, loss: 0.4232 2024-06-16 04:57:40,417 - mmseg - INFO - Iter [17250/80000] lr: 2.541e-06, eta: 1 day, 6:13:18, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3305, decode.acc_seg: 86.8813, aux.loss_ce: 0.1303, aux.acc_seg: 87.1689, loss: 0.4608 2024-06-16 04:59:00,877 - mmseg - INFO - Iter [17300/80000] lr: 2.539e-06, eta: 1 day, 6:11:29, time: 1.609, data_time: 0.008, memory: 65790, decode.loss_ce: 0.3327, decode.acc_seg: 86.3194, aux.loss_ce: 0.1328, aux.acc_seg: 86.2734, loss: 0.4655 2024-06-16 05:00:21,445 - mmseg - INFO - Iter [17350/80000] lr: 2.537e-06, eta: 1 day, 6:09:40, time: 1.611, data_time: 0.008, memory: 65790, decode.loss_ce: 0.3009, decode.acc_seg: 87.4095, aux.loss_ce: 0.1200, aux.acc_seg: 87.4357, loss: 0.4209 2024-06-16 05:01:42,114 - mmseg - INFO - Iter [17400/80000] lr: 2.535e-06, eta: 1 day, 6:07:52, time: 1.613, data_time: 0.008, memory: 65790, decode.loss_ce: 0.2835, decode.acc_seg: 88.2196, aux.loss_ce: 0.1127, aux.acc_seg: 88.3384, loss: 0.3962 2024-06-16 05:03:02,576 - mmseg - INFO - Iter [17450/80000] lr: 2.533e-06, eta: 1 day, 6:06:03, time: 1.609, data_time: 0.008, memory: 65790, decode.loss_ce: 0.3044, decode.acc_seg: 87.0635, aux.loss_ce: 0.1204, aux.acc_seg: 87.3485, loss: 0.4248 2024-06-16 05:04:23,082 - mmseg - INFO - Iter [17500/80000] lr: 2.531e-06, eta: 1 day, 6:04:14, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3045, decode.acc_seg: 87.1328, aux.loss_ce: 0.1221, aux.acc_seg: 87.1889, loss: 0.4266 2024-06-16 05:05:43,583 - mmseg - INFO - Iter [17550/80000] lr: 2.529e-06, eta: 1 day, 6:02:26, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3067, decode.acc_seg: 87.6322, aux.loss_ce: 0.1223, aux.acc_seg: 87.6370, loss: 0.4290 2024-06-16 05:07:04,094 - mmseg - INFO - Iter [17600/80000] lr: 2.527e-06, eta: 1 day, 6:00:38, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3017, decode.acc_seg: 87.8680, aux.loss_ce: 0.1188, aux.acc_seg: 88.0184, loss: 0.4205 2024-06-16 05:08:24,660 - mmseg - INFO - Iter [17650/80000] lr: 2.525e-06, eta: 1 day, 5:58:50, time: 1.611, data_time: 0.008, memory: 65790, decode.loss_ce: 0.2800, decode.acc_seg: 88.2763, aux.loss_ce: 0.1127, aux.acc_seg: 88.3204, loss: 0.3927 2024-06-16 05:09:47,625 - mmseg - INFO - Iter [17700/80000] lr: 2.523e-06, eta: 1 day, 5:57:11, time: 1.659, data_time: 0.058, memory: 65790, decode.loss_ce: 0.3225, decode.acc_seg: 87.1532, aux.loss_ce: 0.1299, aux.acc_seg: 87.1546, loss: 0.4524 2024-06-16 05:11:08,149 - mmseg - INFO - Iter [17750/80000] lr: 2.521e-06, eta: 1 day, 5:55:23, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2901, decode.acc_seg: 88.0999, aux.loss_ce: 0.1154, aux.acc_seg: 88.2394, loss: 0.4055 2024-06-16 05:12:28,651 - mmseg - INFO - Iter [17800/80000] lr: 2.519e-06, eta: 1 day, 5:53:36, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3023, decode.acc_seg: 87.9250, aux.loss_ce: 0.1222, aux.acc_seg: 87.8053, loss: 0.4245 2024-06-16 05:13:49,134 - mmseg - INFO - Iter [17850/80000] lr: 2.517e-06, eta: 1 day, 5:51:48, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2942, decode.acc_seg: 88.1172, aux.loss_ce: 0.1174, aux.acc_seg: 88.2032, loss: 0.4116 2024-06-16 05:15:09,636 - mmseg - INFO - Iter [17900/80000] lr: 2.515e-06, eta: 1 day, 5:50:01, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2995, decode.acc_seg: 87.5318, aux.loss_ce: 0.1196, aux.acc_seg: 87.5819, loss: 0.4191 2024-06-16 05:16:30,147 - mmseg - INFO - Iter [17950/80000] lr: 2.513e-06, eta: 1 day, 5:48:14, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2880, decode.acc_seg: 88.1066, aux.loss_ce: 0.1157, aux.acc_seg: 88.1938, loss: 0.4037 2024-06-16 05:17:50,641 - mmseg - INFO - Saving checkpoint at 18000 iterations 2024-06-16 05:19:03,560 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 05:19:03,560 - mmseg - INFO - Iter [18000/80000] lr: 2.511e-06, eta: 1 day, 5:50:38, time: 3.068, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3032, decode.acc_seg: 87.3370, aux.loss_ce: 0.1218, aux.acc_seg: 87.3769, loss: 0.4250 2024-06-16 05:20:25,761 - mmseg - INFO - per class results: 2024-06-16 05:20:25,767 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 80.44 | 89.45 | | building | 84.42 | 92.45 | | sky | 94.3 | 96.8 | | floor | 83.14 | 87.46 | | tree | 75.37 | 89.27 | | ceiling | 85.72 | 90.7 | | road | 86.22 | 91.87 | | bed | 90.92 | 97.41 | | windowpane | 64.25 | 80.71 | | grass | 66.09 | 76.99 | | cabinet | 63.0 | 71.04 | | sidewalk | 68.92 | 85.2 | | person | 82.59 | 92.96 | | earth | 40.05 | 57.65 | | door | 57.51 | 72.05 | | table | 66.5 | 79.26 | | mountain | 63.04 | 70.01 | | plant | 56.44 | 69.16 | | curtain | 77.24 | 88.5 | | chair | 61.42 | 77.81 | | car | 85.15 | 92.17 | | water | 63.06 | 78.23 | | painting | 72.2 | 91.03 | | sofa | 79.62 | 92.43 | | shelf | 44.32 | 62.1 | | house | 52.67 | 75.32 | | sea | 65.89 | 75.05 | | mirror | 77.25 | 88.01 | | rug | 69.16 | 81.28 | | field | 33.19 | 48.63 | | armchair | 60.72 | 76.74 | | seat | 65.8 | 86.49 | | fence | 47.77 | 58.58 | | desk | 51.2 | 82.15 | | rock | 55.15 | 79.19 | | wardrobe | 53.78 | 82.08 | | lamp | 67.37 | 80.99 | | bathtub | 81.63 | 83.07 | | railing | 39.15 | 53.52 | | cushion | 65.07 | 74.63 | | base | 37.07 | 58.51 | | box | 39.81 | 49.0 | | column | 50.72 | 61.13 | | signboard | 40.35 | 52.31 | | chest of drawers | 42.17 | 63.63 | | counter | 47.06 | 49.55 | | sand | 48.82 | 78.92 | | sink | 74.66 | 86.86 | | skyscraper | 48.72 | 62.64 | | fireplace | 65.74 | 97.26 | | refrigerator | 78.59 | 91.21 | | grandstand | 44.87 | 88.1 | | path | 30.61 | 42.03 | | stairs | 26.93 | 32.03 | | runway | 70.08 | 90.51 | | case | 57.89 | 82.26 | | pool table | 91.67 | 98.67 | | pillow | 65.55 | 79.69 | | screen door | 85.18 | 93.89 | | stairway | 44.42 | 62.6 | | river | 13.66 | 28.68 | | bridge | 70.25 | 83.37 | | bookcase | 36.41 | 55.36 | | blind | 19.76 | 20.02 | | coffee table | 64.94 | 85.44 | | toilet | 87.84 | 95.78 | | flower | 43.86 | 53.26 | | book | 48.12 | 78.84 | | hill | 7.09 | 8.83 | | bench | 57.71 | 74.1 | | countertop | 62.29 | 77.22 | | stove | 81.42 | 93.42 | | palm | 54.22 | 75.31 | | kitchen island | 47.66 | 84.07 | | computer | 77.87 | 89.87 | | swivel chair | 54.14 | 90.52 | | boat | 70.48 | 91.07 | | bar | 67.22 | 90.44 | | arcade machine | 88.58 | 96.27 | | hovel | 22.2 | 25.1 | | bus | 88.72 | 97.65 | | towel | 72.77 | 87.1 | | light | 47.89 | 59.64 | | truck | 44.78 | 57.78 | | tower | 17.88 | 34.63 | | chandelier | 68.56 | 82.6 | | awning | 37.53 | 50.65 | | streetlight | 22.49 | 27.99 | | booth | 40.89 | 50.96 | | television receiver | 75.99 | 87.08 | | airplane | 72.83 | 88.59 | | dirt track | 16.6 | 23.63 | | apparel | 53.35 | 88.9 | | pole | 24.94 | 33.32 | | land | 4.59 | 8.04 | | bannister | 14.7 | 20.73 | | escalator | 64.97 | 86.4 | | ottoman | 51.56 | 78.94 | | bottle | 40.93 | 68.75 | | buffet | 44.05 | 50.19 | | poster | 27.89 | 39.41 | | stage | 20.79 | 38.39 | | van | 44.18 | 76.88 | | ship | 76.31 | 94.45 | | fountain | 35.25 | 41.07 | | conveyer belt | 75.0 | 97.32 | | canopy | 45.23 | 69.07 | | washer | 89.86 | 97.15 | | plaything | 28.68 | 57.04 | | swimming pool | 61.17 | 85.08 | | stool | 41.94 | 70.21 | | barrel | 55.79 | 71.41 | | basket | 38.85 | 50.14 | | waterfall | 72.2 | 92.14 | | tent | 81.81 | 98.39 | | bag | 22.01 | 25.76 | | minibike | 72.24 | 87.23 | | cradle | 87.26 | 96.73 | | oven | 55.81 | 70.67 | | ball | 60.79 | 69.93 | | food | 56.77 | 64.88 | | step | 13.81 | 20.43 | | tank | 52.11 | 67.97 | | trade name | 27.04 | 30.26 | | microwave | 86.15 | 96.27 | | pot | 56.9 | 69.38 | | animal | 68.36 | 69.8 | | bicycle | 59.67 | 82.99 | | lake | 56.27 | 69.04 | | dishwasher | 73.15 | 80.65 | | screen | 56.35 | 91.22 | | blanket | 19.38 | 21.19 | | sculpture | 62.81 | 88.27 | | hood | 72.02 | 91.74 | | sconce | 52.78 | 73.37 | | vase | 42.75 | 62.76 | | traffic light | 33.65 | 67.19 | | tray | 16.38 | 21.49 | | ashcan | 46.67 | 66.37 | | fan | 62.15 | 79.55 | | pier | 32.6 | 48.01 | | crt screen | 8.29 | 10.04 | | plate | 59.24 | 80.3 | | monitor | 59.51 | 80.73 | | bulletin board | 48.47 | 79.81 | | shower | 0.86 | 0.94 | | radiator | 64.53 | 76.47 | | glass | 20.23 | 21.98 | | clock | 44.89 | 55.08 | | flag | 63.96 | 68.57 | +---------------------+-------+-------+ 2024-06-16 05:20:25,767 - mmseg - INFO - Summary: 2024-06-16 05:20:25,767 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.03 | 55.07 | 69.77 | +-------+-------+-------+ 2024-06-16 05:20:25,768 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 05:20:25,768 - mmseg - INFO - Iter(val) [250] aAcc: 0.8503, mIoU: 0.5507, mAcc: 0.6977, IoU.wall: 0.8044, IoU.building: 0.8442, IoU.sky: 0.9430, IoU.floor: 0.8314, IoU.tree: 0.7537, IoU.ceiling: 0.8572, IoU.road: 0.8622, IoU.bed : 0.9092, IoU.windowpane: 0.6425, IoU.grass: 0.6609, IoU.cabinet: 0.6300, IoU.sidewalk: 0.6892, IoU.person: 0.8259, IoU.earth: 0.4005, IoU.door: 0.5751, IoU.table: 0.6650, IoU.mountain: 0.6304, IoU.plant: 0.5644, IoU.curtain: 0.7724, IoU.chair: 0.6142, IoU.car: 0.8515, IoU.water: 0.6306, IoU.painting: 0.7220, IoU.sofa: 0.7962, IoU.shelf: 0.4432, IoU.house: 0.5267, IoU.sea: 0.6589, IoU.mirror: 0.7725, IoU.rug: 0.6916, IoU.field: 0.3319, IoU.armchair: 0.6072, IoU.seat: 0.6580, IoU.fence: 0.4777, IoU.desk: 0.5120, IoU.rock: 0.5515, IoU.wardrobe: 0.5378, IoU.lamp: 0.6737, IoU.bathtub: 0.8163, IoU.railing: 0.3915, IoU.cushion: 0.6507, IoU.base: 0.3707, IoU.box: 0.3981, IoU.column: 0.5072, IoU.signboard: 0.4035, IoU.chest of drawers: 0.4217, IoU.counter: 0.4706, IoU.sand: 0.4882, IoU.sink: 0.7466, IoU.skyscraper: 0.4872, IoU.fireplace: 0.6574, IoU.refrigerator: 0.7859, IoU.grandstand: 0.4487, IoU.path: 0.3061, IoU.stairs: 0.2693, IoU.runway: 0.7008, IoU.case: 0.5789, IoU.pool table: 0.9167, IoU.pillow: 0.6555, IoU.screen door: 0.8518, IoU.stairway: 0.4442, IoU.river: 0.1366, IoU.bridge: 0.7025, IoU.bookcase: 0.3641, IoU.blind: 0.1976, IoU.coffee table: 0.6494, IoU.toilet: 0.8784, IoU.flower: 0.4386, IoU.book: 0.4812, IoU.hill: 0.0709, IoU.bench: 0.5771, IoU.countertop: 0.6229, IoU.stove: 0.8142, IoU.palm: 0.5422, IoU.kitchen island: 0.4766, IoU.computer: 0.7787, IoU.swivel chair: 0.5414, IoU.boat: 0.7048, IoU.bar: 0.6722, IoU.arcade machine: 0.8858, IoU.hovel: 0.2220, IoU.bus: 0.8872, IoU.towel: 0.7277, IoU.light: 0.4789, IoU.truck: 0.4478, IoU.tower: 0.1788, IoU.chandelier: 0.6856, IoU.awning: 0.3753, IoU.streetlight: 0.2249, IoU.booth: 0.4089, IoU.television receiver: 0.7599, IoU.airplane: 0.7283, IoU.dirt track: 0.1660, IoU.apparel: 0.5335, IoU.pole: 0.2494, IoU.land: 0.0459, IoU.bannister: 0.1470, IoU.escalator: 0.6497, IoU.ottoman: 0.5156, IoU.bottle: 0.4093, IoU.buffet: 0.4405, IoU.poster: 0.2789, IoU.stage: 0.2079, IoU.van: 0.4418, IoU.ship: 0.7631, IoU.fountain: 0.3525, IoU.conveyer belt: 0.7500, IoU.canopy: 0.4523, IoU.washer: 0.8986, IoU.plaything: 0.2868, IoU.swimming pool: 0.6117, IoU.stool: 0.4194, IoU.barrel: 0.5579, IoU.basket: 0.3885, IoU.waterfall: 0.7220, IoU.tent: 0.8181, IoU.bag: 0.2201, IoU.minibike: 0.7224, IoU.cradle: 0.8726, IoU.oven: 0.5581, IoU.ball: 0.6079, IoU.food: 0.5677, IoU.step: 0.1381, IoU.tank: 0.5211, IoU.trade name: 0.2704, IoU.microwave: 0.8615, IoU.pot: 0.5690, IoU.animal: 0.6836, IoU.bicycle: 0.5967, IoU.lake: 0.5627, IoU.dishwasher: 0.7315, IoU.screen: 0.5635, IoU.blanket: 0.1938, IoU.sculpture: 0.6281, IoU.hood: 0.7202, IoU.sconce: 0.5278, IoU.vase: 0.4275, IoU.traffic light: 0.3365, IoU.tray: 0.1638, IoU.ashcan: 0.4667, IoU.fan: 0.6215, IoU.pier: 0.3260, IoU.crt screen: 0.0829, IoU.plate: 0.5924, IoU.monitor: 0.5951, IoU.bulletin board: 0.4847, IoU.shower: 0.0086, IoU.radiator: 0.6453, IoU.glass: 0.2023, IoU.clock: 0.4489, IoU.flag: 0.6396, Acc.wall: 0.8945, Acc.building: 0.9245, Acc.sky: 0.9680, Acc.floor: 0.8746, Acc.tree: 0.8927, Acc.ceiling: 0.9070, Acc.road: 0.9187, Acc.bed : 0.9741, Acc.windowpane: 0.8071, Acc.grass: 0.7699, Acc.cabinet: 0.7104, Acc.sidewalk: 0.8520, Acc.person: 0.9296, Acc.earth: 0.5765, Acc.door: 0.7205, Acc.table: 0.7926, Acc.mountain: 0.7001, Acc.plant: 0.6916, Acc.curtain: 0.8850, Acc.chair: 0.7781, Acc.car: 0.9217, Acc.water: 0.7823, Acc.painting: 0.9103, Acc.sofa: 0.9243, Acc.shelf: 0.6210, Acc.house: 0.7532, Acc.sea: 0.7505, Acc.mirror: 0.8801, Acc.rug: 0.8128, Acc.field: 0.4863, Acc.armchair: 0.7674, Acc.seat: 0.8649, Acc.fence: 0.5858, Acc.desk: 0.8215, Acc.rock: 0.7919, Acc.wardrobe: 0.8208, Acc.lamp: 0.8099, Acc.bathtub: 0.8307, Acc.railing: 0.5352, Acc.cushion: 0.7463, Acc.base: 0.5851, Acc.box: 0.4900, Acc.column: 0.6113, Acc.signboard: 0.5231, Acc.chest of drawers: 0.6363, Acc.counter: 0.4955, Acc.sand: 0.7892, Acc.sink: 0.8686, Acc.skyscraper: 0.6264, Acc.fireplace: 0.9726, Acc.refrigerator: 0.9121, Acc.grandstand: 0.8810, Acc.path: 0.4203, Acc.stairs: 0.3203, Acc.runway: 0.9051, Acc.case: 0.8226, Acc.pool table: 0.9867, Acc.pillow: 0.7969, Acc.screen door: 0.9389, Acc.stairway: 0.6260, Acc.river: 0.2868, Acc.bridge: 0.8337, Acc.bookcase: 0.5536, Acc.blind: 0.2002, Acc.coffee table: 0.8544, Acc.toilet: 0.9578, Acc.flower: 0.5326, Acc.book: 0.7884, Acc.hill: 0.0883, Acc.bench: 0.7410, Acc.countertop: 0.7722, Acc.stove: 0.9342, Acc.palm: 0.7531, Acc.kitchen island: 0.8407, Acc.computer: 0.8987, Acc.swivel chair: 0.9052, Acc.boat: 0.9107, Acc.bar: 0.9044, Acc.arcade machine: 0.9627, Acc.hovel: 0.2510, Acc.bus: 0.9765, Acc.towel: 0.8710, Acc.light: 0.5964, Acc.truck: 0.5778, Acc.tower: 0.3463, Acc.chandelier: 0.8260, Acc.awning: 0.5065, Acc.streetlight: 0.2799, Acc.booth: 0.5096, Acc.television receiver: 0.8708, Acc.airplane: 0.8859, Acc.dirt track: 0.2363, Acc.apparel: 0.8890, Acc.pole: 0.3332, Acc.land: 0.0804, Acc.bannister: 0.2073, Acc.escalator: 0.8640, Acc.ottoman: 0.7894, Acc.bottle: 0.6875, Acc.buffet: 0.5019, Acc.poster: 0.3941, Acc.stage: 0.3839, Acc.van: 0.7688, Acc.ship: 0.9445, Acc.fountain: 0.4107, Acc.conveyer belt: 0.9732, Acc.canopy: 0.6907, Acc.washer: 0.9715, Acc.plaything: 0.5704, Acc.swimming pool: 0.8508, Acc.stool: 0.7021, Acc.barrel: 0.7141, Acc.basket: 0.5014, Acc.waterfall: 0.9214, Acc.tent: 0.9839, Acc.bag: 0.2576, Acc.minibike: 0.8723, Acc.cradle: 0.9673, Acc.oven: 0.7067, Acc.ball: 0.6993, Acc.food: 0.6488, Acc.step: 0.2043, Acc.tank: 0.6797, Acc.trade name: 0.3026, Acc.microwave: 0.9627, Acc.pot: 0.6938, Acc.animal: 0.6980, Acc.bicycle: 0.8299, Acc.lake: 0.6904, Acc.dishwasher: 0.8065, Acc.screen: 0.9122, Acc.blanket: 0.2119, Acc.sculpture: 0.8827, Acc.hood: 0.9174, Acc.sconce: 0.7337, Acc.vase: 0.6276, Acc.traffic light: 0.6719, Acc.tray: 0.2149, Acc.ashcan: 0.6637, Acc.fan: 0.7955, Acc.pier: 0.4801, Acc.crt screen: 0.1004, Acc.plate: 0.8030, Acc.monitor: 0.8073, Acc.bulletin board: 0.7981, Acc.shower: 0.0094, Acc.radiator: 0.7647, Acc.glass: 0.2198, Acc.clock: 0.5508, Acc.flag: 0.6857 2024-06-16 05:21:46,609 - mmseg - INFO - Iter [18050/80000] lr: 2.509e-06, eta: 1 day, 5:53:34, time: 3.261, data_time: 1.657, memory: 65790, decode.loss_ce: 0.2817, decode.acc_seg: 88.3501, aux.loss_ce: 0.1137, aux.acc_seg: 88.3104, loss: 0.3954 2024-06-16 05:23:07,105 - mmseg - INFO - Iter [18100/80000] lr: 2.507e-06, eta: 1 day, 5:51:45, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2847, decode.acc_seg: 88.1689, aux.loss_ce: 0.1139, aux.acc_seg: 88.3157, loss: 0.3986 2024-06-16 05:24:27,601 - mmseg - INFO - Iter [18150/80000] lr: 2.505e-06, eta: 1 day, 5:49:57, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2852, decode.acc_seg: 87.7975, aux.loss_ce: 0.1144, aux.acc_seg: 87.9586, loss: 0.3996 2024-06-16 05:25:48,150 - mmseg - INFO - Iter [18200/80000] lr: 2.503e-06, eta: 1 day, 5:48:08, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2881, decode.acc_seg: 87.9228, aux.loss_ce: 0.1148, aux.acc_seg: 88.1169, loss: 0.4029 2024-06-16 05:27:08,738 - mmseg - INFO - Iter [18250/80000] lr: 2.501e-06, eta: 1 day, 5:46:21, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2754, decode.acc_seg: 88.5258, aux.loss_ce: 0.1110, aux.acc_seg: 88.4832, loss: 0.3865 2024-06-16 05:28:29,452 - mmseg - INFO - Iter [18300/80000] lr: 2.499e-06, eta: 1 day, 5:44:33, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3023, decode.acc_seg: 87.9780, aux.loss_ce: 0.1203, aux.acc_seg: 88.0372, loss: 0.4226 2024-06-16 05:29:50,146 - mmseg - INFO - Iter [18350/80000] lr: 2.497e-06, eta: 1 day, 5:42:46, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2854, decode.acc_seg: 88.0459, aux.loss_ce: 0.1127, aux.acc_seg: 88.1994, loss: 0.3980 2024-06-16 05:31:10,685 - mmseg - INFO - Iter [18400/80000] lr: 2.495e-06, eta: 1 day, 5:40:59, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2805, decode.acc_seg: 88.3070, aux.loss_ce: 0.1127, aux.acc_seg: 88.2789, loss: 0.3933 2024-06-16 05:32:31,206 - mmseg - INFO - Iter [18450/80000] lr: 2.493e-06, eta: 1 day, 5:39:11, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2781, decode.acc_seg: 88.2708, aux.loss_ce: 0.1127, aux.acc_seg: 88.1788, loss: 0.3908 2024-06-16 05:33:52,020 - mmseg - INFO - Iter [18500/80000] lr: 2.491e-06, eta: 1 day, 5:37:25, time: 1.616, data_time: 0.010, memory: 65790, decode.loss_ce: 0.2878, decode.acc_seg: 87.9006, aux.loss_ce: 0.1166, aux.acc_seg: 87.8388, loss: 0.4043 2024-06-16 05:35:12,494 - mmseg - INFO - Iter [18550/80000] lr: 2.489e-06, eta: 1 day, 5:35:37, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3057, decode.acc_seg: 87.2994, aux.loss_ce: 0.1234, aux.acc_seg: 87.4664, loss: 0.4291 2024-06-16 05:36:32,985 - mmseg - INFO - Iter [18600/80000] lr: 2.487e-06, eta: 1 day, 5:33:50, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2825, decode.acc_seg: 88.2451, aux.loss_ce: 0.1130, aux.acc_seg: 88.3604, loss: 0.3954 2024-06-16 05:37:53,630 - mmseg - INFO - Iter [18650/80000] lr: 2.485e-06, eta: 1 day, 5:32:04, time: 1.613, data_time: 0.008, memory: 65790, decode.loss_ce: 0.2922, decode.acc_seg: 87.8782, aux.loss_ce: 0.1175, aux.acc_seg: 87.8155, loss: 0.4097 2024-06-16 05:39:14,065 - mmseg - INFO - Iter [18700/80000] lr: 2.483e-06, eta: 1 day, 5:30:17, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2762, decode.acc_seg: 88.2386, aux.loss_ce: 0.1117, aux.acc_seg: 88.3888, loss: 0.3879 2024-06-16 05:40:34,527 - mmseg - INFO - Iter [18750/80000] lr: 2.481e-06, eta: 1 day, 5:28:30, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2968, decode.acc_seg: 87.6325, aux.loss_ce: 0.1191, aux.acc_seg: 87.6315, loss: 0.4158 2024-06-16 05:41:54,959 - mmseg - INFO - Iter [18800/80000] lr: 2.478e-06, eta: 1 day, 5:26:43, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2895, decode.acc_seg: 87.7313, aux.loss_ce: 0.1164, aux.acc_seg: 87.7968, loss: 0.4059 2024-06-16 05:43:15,412 - mmseg - INFO - Iter [18850/80000] lr: 2.476e-06, eta: 1 day, 5:24:57, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2766, decode.acc_seg: 88.8714, aux.loss_ce: 0.1112, aux.acc_seg: 88.9195, loss: 0.3877 2024-06-16 05:44:36,062 - mmseg - INFO - Iter [18900/80000] lr: 2.474e-06, eta: 1 day, 5:23:11, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3003, decode.acc_seg: 87.2892, aux.loss_ce: 0.1209, aux.acc_seg: 87.3416, loss: 0.4213 2024-06-16 05:45:59,459 - mmseg - INFO - Iter [18950/80000] lr: 2.472e-06, eta: 1 day, 5:21:34, time: 1.668, data_time: 0.060, memory: 65790, decode.loss_ce: 0.2800, decode.acc_seg: 88.2780, aux.loss_ce: 0.1119, aux.acc_seg: 88.5188, loss: 0.3918 2024-06-16 05:47:19,936 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 05:47:19,936 - mmseg - INFO - Iter [19000/80000] lr: 2.470e-06, eta: 1 day, 5:19:48, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2626, decode.acc_seg: 88.6000, aux.loss_ce: 0.1061, aux.acc_seg: 88.6205, loss: 0.3686 2024-06-16 05:48:42,089 - mmseg - INFO - per class results: 2024-06-16 05:48:42,095 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 79.58 | 86.72 | | building | 82.42 | 92.94 | | sky | 94.3 | 97.27 | | floor | 83.32 | 91.22 | | tree | 77.35 | 87.44 | | ceiling | 85.95 | 94.41 | | road | 84.78 | 90.82 | | bed | 90.99 | 96.92 | | windowpane | 64.95 | 82.44 | | grass | 55.73 | 61.55 | | cabinet | 64.92 | 72.42 | | sidewalk | 68.16 | 83.57 | | person | 82.9 | 92.59 | | earth | 36.05 | 54.88 | | door | 57.44 | 72.01 | | table | 66.49 | 81.96 | | mountain | 64.42 | 80.99 | | plant | 58.48 | 69.77 | | curtain | 77.16 | 88.1 | | chair | 61.66 | 71.29 | | car | 85.7 | 93.48 | | water | 65.13 | 78.33 | | painting | 75.08 | 88.69 | | sofa | 78.63 | 84.95 | | shelf | 46.65 | 60.65 | | house | 48.21 | 78.27 | | sea | 73.89 | 81.0 | | mirror | 77.65 | 87.14 | | rug | 67.91 | 81.19 | | field | 31.4 | 60.1 | | armchair | 59.09 | 83.56 | | seat | 63.02 | 89.56 | | fence | 52.85 | 68.96 | | desk | 56.84 | 72.42 | | rock | 56.61 | 73.14 | | wardrobe | 53.02 | 75.59 | | lamp | 67.35 | 77.18 | | bathtub | 86.46 | 91.64 | | railing | 41.92 | 53.77 | | cushion | 59.89 | 70.13 | | base | 42.6 | 61.82 | | box | 39.94 | 49.93 | | column | 51.27 | 68.37 | | signboard | 38.57 | 51.49 | | chest of drawers | 49.73 | 76.34 | | counter | 52.76 | 62.74 | | sand | 52.69 | 80.91 | | sink | 79.81 | 91.53 | | skyscraper | 39.34 | 44.15 | | fireplace | 71.36 | 97.13 | | refrigerator | 81.29 | 93.55 | | grandstand | 53.39 | 83.69 | | path | 22.78 | 30.9 | | stairs | 36.05 | 48.27 | | runway | 67.19 | 89.81 | | case | 61.31 | 88.15 | | pool table | 92.51 | 98.26 | | pillow | 65.22 | 83.21 | | screen door | 77.57 | 97.36 | | stairway | 35.46 | 42.21 | | river | 15.92 | 27.35 | | bridge | 62.75 | 72.92 | | bookcase | 37.47 | 54.45 | | blind | 42.51 | 48.95 | | coffee table | 60.27 | 85.63 | | toilet | 88.85 | 92.1 | | flower | 43.39 | 51.25 | | book | 51.19 | 78.32 | | hill | 6.21 | 15.67 | | bench | 52.66 | 60.47 | | countertop | 62.71 | 78.7 | | stove | 83.63 | 91.84 | | palm | 51.59 | 82.65 | | kitchen island | 51.41 | 83.3 | | computer | 77.11 | 87.38 | | swivel chair | 49.74 | 87.54 | | boat | 75.31 | 87.06 | | bar | 62.14 | 84.92 | | arcade machine | 88.42 | 94.02 | | hovel | 17.04 | 18.25 | | bus | 91.27 | 96.91 | | towel | 68.66 | 78.86 | | light | 43.55 | 49.82 | | truck | 46.08 | 61.04 | | tower | 14.34 | 22.57 | | chandelier | 63.8 | 71.75 | | awning | 36.2 | 46.93 | | streetlight | 23.77 | 29.65 | | booth | 38.06 | 82.64 | | television receiver | 78.09 | 90.76 | | airplane | 82.97 | 94.07 | | dirt track | 12.39 | 62.85 | | apparel | 59.01 | 83.73 | | pole | 17.6 | 22.02 | | land | 4.07 | 7.07 | | bannister | 10.87 | 12.94 | | escalator | 63.21 | 85.9 | | ottoman | 50.22 | 74.62 | | bottle | 41.68 | 70.38 | | buffet | 58.18 | 69.75 | | poster | 28.68 | 32.91 | | stage | 20.92 | 42.49 | | van | 53.36 | 67.99 | | ship | 8.56 | 8.88 | | fountain | 78.08 | 82.7 | | conveyer belt | 81.37 | 95.57 | | canopy | 44.48 | 64.51 | | washer | 88.28 | 94.88 | | plaything | 32.13 | 43.71 | | swimming pool | 57.83 | 86.94 | | stool | 47.83 | 57.05 | | barrel | 58.58 | 67.25 | | basket | 44.72 | 59.55 | | waterfall | 66.12 | 96.24 | | tent | 89.1 | 98.98 | | bag | 24.41 | 28.04 | | minibike | 72.73 | 90.41 | | cradle | 86.16 | 96.48 | | oven | 53.68 | 70.11 | | ball | 18.66 | 18.77 | | food | 57.1 | 65.08 | | step | 9.64 | 12.05 | | tank | 60.54 | 79.22 | | trade name | 27.23 | 29.62 | | microwave | 86.11 | 96.73 | | pot | 56.38 | 64.03 | | animal | 69.96 | 73.27 | | bicycle | 60.15 | 78.96 | | lake | 41.85 | 63.79 | | dishwasher | 73.06 | 80.61 | | screen | 50.75 | 89.31 | | blanket | 26.56 | 29.63 | | sculpture | 69.86 | 76.57 | | hood | 66.79 | 78.82 | | sconce | 54.12 | 66.96 | | vase | 43.79 | 58.77 | | traffic light | 31.37 | 59.4 | | tray | 15.87 | 18.17 | | ashcan | 51.23 | 66.23 | | fan | 57.94 | 67.42 | | pier | 33.23 | 40.82 | | crt screen | 4.03 | 6.29 | | plate | 59.71 | 77.89 | | monitor | 64.59 | 79.67 | | bulletin board | 51.15 | 78.7 | | shower | 1.68 | 1.72 | | radiator | 64.91 | 79.85 | | glass | 19.35 | 20.74 | | clock | 42.77 | 49.98 | | flag | 64.1 | 69.96 | +---------------------+-------+-------+ 2024-06-16 05:48:42,095 - mmseg - INFO - Summary: 2024-06-16 05:48:42,095 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 84.72 | 55.01 | 68.66 | +-------+-------+-------+ 2024-06-16 05:48:42,096 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 05:48:42,096 - mmseg - INFO - Iter(val) [250] aAcc: 0.8472, mIoU: 0.5501, mAcc: 0.6866, IoU.wall: 0.7958, IoU.building: 0.8242, IoU.sky: 0.9430, IoU.floor: 0.8332, IoU.tree: 0.7735, IoU.ceiling: 0.8595, IoU.road: 0.8478, IoU.bed : 0.9099, IoU.windowpane: 0.6495, IoU.grass: 0.5573, IoU.cabinet: 0.6492, IoU.sidewalk: 0.6816, IoU.person: 0.8290, IoU.earth: 0.3605, IoU.door: 0.5744, IoU.table: 0.6649, IoU.mountain: 0.6442, IoU.plant: 0.5848, IoU.curtain: 0.7716, IoU.chair: 0.6166, IoU.car: 0.8570, IoU.water: 0.6513, IoU.painting: 0.7508, IoU.sofa: 0.7863, IoU.shelf: 0.4665, IoU.house: 0.4821, IoU.sea: 0.7389, IoU.mirror: 0.7765, IoU.rug: 0.6791, IoU.field: 0.3140, IoU.armchair: 0.5909, IoU.seat: 0.6302, IoU.fence: 0.5285, IoU.desk: 0.5684, IoU.rock: 0.5661, IoU.wardrobe: 0.5302, IoU.lamp: 0.6735, IoU.bathtub: 0.8646, IoU.railing: 0.4192, IoU.cushion: 0.5989, IoU.base: 0.4260, IoU.box: 0.3994, IoU.column: 0.5127, IoU.signboard: 0.3857, IoU.chest of drawers: 0.4973, IoU.counter: 0.5276, IoU.sand: 0.5269, IoU.sink: 0.7981, IoU.skyscraper: 0.3934, IoU.fireplace: 0.7136, IoU.refrigerator: 0.8129, IoU.grandstand: 0.5339, IoU.path: 0.2278, IoU.stairs: 0.3605, IoU.runway: 0.6719, IoU.case: 0.6131, IoU.pool table: 0.9251, IoU.pillow: 0.6522, IoU.screen door: 0.7757, IoU.stairway: 0.3546, IoU.river: 0.1592, IoU.bridge: 0.6275, IoU.bookcase: 0.3747, IoU.blind: 0.4251, IoU.coffee table: 0.6027, IoU.toilet: 0.8885, IoU.flower: 0.4339, IoU.book: 0.5119, IoU.hill: 0.0621, IoU.bench: 0.5266, IoU.countertop: 0.6271, IoU.stove: 0.8363, IoU.palm: 0.5159, IoU.kitchen island: 0.5141, IoU.computer: 0.7711, IoU.swivel chair: 0.4974, IoU.boat: 0.7531, IoU.bar: 0.6214, IoU.arcade machine: 0.8842, IoU.hovel: 0.1704, IoU.bus: 0.9127, IoU.towel: 0.6866, IoU.light: 0.4355, IoU.truck: 0.4608, IoU.tower: 0.1434, IoU.chandelier: 0.6380, IoU.awning: 0.3620, IoU.streetlight: 0.2377, IoU.booth: 0.3806, IoU.television receiver: 0.7809, IoU.airplane: 0.8297, IoU.dirt track: 0.1239, IoU.apparel: 0.5901, IoU.pole: 0.1760, IoU.land: 0.0407, IoU.bannister: 0.1087, IoU.escalator: 0.6321, IoU.ottoman: 0.5022, IoU.bottle: 0.4168, IoU.buffet: 0.5818, IoU.poster: 0.2868, IoU.stage: 0.2092, IoU.van: 0.5336, IoU.ship: 0.0856, IoU.fountain: 0.7808, IoU.conveyer belt: 0.8137, IoU.canopy: 0.4448, IoU.washer: 0.8828, IoU.plaything: 0.3213, IoU.swimming pool: 0.5783, IoU.stool: 0.4783, IoU.barrel: 0.5858, IoU.basket: 0.4472, IoU.waterfall: 0.6612, IoU.tent: 0.8910, IoU.bag: 0.2441, IoU.minibike: 0.7273, IoU.cradle: 0.8616, IoU.oven: 0.5368, IoU.ball: 0.1866, IoU.food: 0.5710, IoU.step: 0.0964, IoU.tank: 0.6054, IoU.trade name: 0.2723, IoU.microwave: 0.8611, IoU.pot: 0.5638, IoU.animal: 0.6996, IoU.bicycle: 0.6015, IoU.lake: 0.4185, IoU.dishwasher: 0.7306, IoU.screen: 0.5075, IoU.blanket: 0.2656, IoU.sculpture: 0.6986, IoU.hood: 0.6679, IoU.sconce: 0.5412, IoU.vase: 0.4379, IoU.traffic light: 0.3137, IoU.tray: 0.1587, IoU.ashcan: 0.5123, IoU.fan: 0.5794, IoU.pier: 0.3323, IoU.crt screen: 0.0403, IoU.plate: 0.5971, IoU.monitor: 0.6459, IoU.bulletin board: 0.5115, IoU.shower: 0.0168, IoU.radiator: 0.6491, IoU.glass: 0.1935, IoU.clock: 0.4277, IoU.flag: 0.6410, Acc.wall: 0.8672, Acc.building: 0.9294, Acc.sky: 0.9727, Acc.floor: 0.9122, Acc.tree: 0.8744, Acc.ceiling: 0.9441, Acc.road: 0.9082, Acc.bed : 0.9692, Acc.windowpane: 0.8244, Acc.grass: 0.6155, Acc.cabinet: 0.7242, Acc.sidewalk: 0.8357, Acc.person: 0.9259, Acc.earth: 0.5488, Acc.door: 0.7201, Acc.table: 0.8196, Acc.mountain: 0.8099, Acc.plant: 0.6977, Acc.curtain: 0.8810, Acc.chair: 0.7129, Acc.car: 0.9348, Acc.water: 0.7833, Acc.painting: 0.8869, Acc.sofa: 0.8495, Acc.shelf: 0.6065, Acc.house: 0.7827, Acc.sea: 0.8100, Acc.mirror: 0.8714, Acc.rug: 0.8119, Acc.field: 0.6010, Acc.armchair: 0.8356, Acc.seat: 0.8956, Acc.fence: 0.6896, Acc.desk: 0.7242, Acc.rock: 0.7314, Acc.wardrobe: 0.7559, Acc.lamp: 0.7718, Acc.bathtub: 0.9164, Acc.railing: 0.5377, Acc.cushion: 0.7013, Acc.base: 0.6182, Acc.box: 0.4993, Acc.column: 0.6837, Acc.signboard: 0.5149, Acc.chest of drawers: 0.7634, Acc.counter: 0.6274, Acc.sand: 0.8091, Acc.sink: 0.9153, Acc.skyscraper: 0.4415, Acc.fireplace: 0.9713, Acc.refrigerator: 0.9355, Acc.grandstand: 0.8369, Acc.path: 0.3090, Acc.stairs: 0.4827, Acc.runway: 0.8981, Acc.case: 0.8815, Acc.pool table: 0.9826, Acc.pillow: 0.8321, Acc.screen door: 0.9736, Acc.stairway: 0.4221, Acc.river: 0.2735, Acc.bridge: 0.7292, Acc.bookcase: 0.5445, Acc.blind: 0.4895, Acc.coffee table: 0.8563, Acc.toilet: 0.9210, Acc.flower: 0.5125, Acc.book: 0.7832, Acc.hill: 0.1567, Acc.bench: 0.6047, Acc.countertop: 0.7870, Acc.stove: 0.9184, Acc.palm: 0.8265, Acc.kitchen island: 0.8330, Acc.computer: 0.8738, Acc.swivel chair: 0.8754, Acc.boat: 0.8706, Acc.bar: 0.8492, Acc.arcade machine: 0.9402, Acc.hovel: 0.1825, Acc.bus: 0.9691, Acc.towel: 0.7886, Acc.light: 0.4982, Acc.truck: 0.6104, Acc.tower: 0.2257, Acc.chandelier: 0.7175, Acc.awning: 0.4693, Acc.streetlight: 0.2965, Acc.booth: 0.8264, Acc.television receiver: 0.9076, Acc.airplane: 0.9407, Acc.dirt track: 0.6285, Acc.apparel: 0.8373, Acc.pole: 0.2202, Acc.land: 0.0707, Acc.bannister: 0.1294, Acc.escalator: 0.8590, Acc.ottoman: 0.7462, Acc.bottle: 0.7038, Acc.buffet: 0.6975, Acc.poster: 0.3291, Acc.stage: 0.4249, Acc.van: 0.6799, Acc.ship: 0.0888, Acc.fountain: 0.8270, Acc.conveyer belt: 0.9557, Acc.canopy: 0.6451, Acc.washer: 0.9488, Acc.plaything: 0.4371, Acc.swimming pool: 0.8694, Acc.stool: 0.5705, Acc.barrel: 0.6725, Acc.basket: 0.5955, Acc.waterfall: 0.9624, Acc.tent: 0.9898, Acc.bag: 0.2804, Acc.minibike: 0.9041, Acc.cradle: 0.9648, Acc.oven: 0.7011, Acc.ball: 0.1877, Acc.food: 0.6508, Acc.step: 0.1205, Acc.tank: 0.7922, Acc.trade name: 0.2962, Acc.microwave: 0.9673, Acc.pot: 0.6403, Acc.animal: 0.7327, Acc.bicycle: 0.7896, Acc.lake: 0.6379, Acc.dishwasher: 0.8061, Acc.screen: 0.8931, Acc.blanket: 0.2963, Acc.sculpture: 0.7657, Acc.hood: 0.7882, Acc.sconce: 0.6696, Acc.vase: 0.5877, Acc.traffic light: 0.5940, Acc.tray: 0.1817, Acc.ashcan: 0.6623, Acc.fan: 0.6742, Acc.pier: 0.4082, Acc.crt screen: 0.0629, Acc.plate: 0.7789, Acc.monitor: 0.7967, Acc.bulletin board: 0.7870, Acc.shower: 0.0172, Acc.radiator: 0.7985, Acc.glass: 0.2074, Acc.clock: 0.4998, Acc.flag: 0.6996 2024-06-16 05:50:03,040 - mmseg - INFO - Iter [19050/80000] lr: 2.468e-06, eta: 1 day, 5:22:26, time: 3.262, data_time: 1.659, memory: 65790, decode.loss_ce: 0.2843, decode.acc_seg: 88.1678, aux.loss_ce: 0.1141, aux.acc_seg: 88.3397, loss: 0.3985 2024-06-16 05:51:23,566 - mmseg - INFO - Iter [19100/80000] lr: 2.466e-06, eta: 1 day, 5:20:40, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2946, decode.acc_seg: 87.8088, aux.loss_ce: 0.1169, aux.acc_seg: 88.0296, loss: 0.4115 2024-06-16 05:52:44,111 - mmseg - INFO - Iter [19150/80000] lr: 2.464e-06, eta: 1 day, 5:18:53, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2770, decode.acc_seg: 88.4177, aux.loss_ce: 0.1124, aux.acc_seg: 88.5548, loss: 0.3894 2024-06-16 05:54:04,793 - mmseg - INFO - Iter [19200/80000] lr: 2.462e-06, eta: 1 day, 5:17:08, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2842, decode.acc_seg: 87.9624, aux.loss_ce: 0.1144, aux.acc_seg: 87.9637, loss: 0.3986 2024-06-16 05:55:25,503 - mmseg - INFO - Iter [19250/80000] lr: 2.460e-06, eta: 1 day, 5:15:22, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2824, decode.acc_seg: 88.5325, aux.loss_ce: 0.1143, aux.acc_seg: 88.5191, loss: 0.3967 2024-06-16 05:56:46,019 - mmseg - INFO - Iter [19300/80000] lr: 2.458e-06, eta: 1 day, 5:13:36, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2848, decode.acc_seg: 88.3467, aux.loss_ce: 0.1150, aux.acc_seg: 88.3443, loss: 0.3998 2024-06-16 05:58:06,525 - mmseg - INFO - Iter [19350/80000] lr: 2.456e-06, eta: 1 day, 5:11:50, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2635, decode.acc_seg: 89.0581, aux.loss_ce: 0.1066, aux.acc_seg: 88.9562, loss: 0.3701 2024-06-16 05:59:27,026 - mmseg - INFO - Iter [19400/80000] lr: 2.454e-06, eta: 1 day, 5:10:04, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2747, decode.acc_seg: 88.5718, aux.loss_ce: 0.1089, aux.acc_seg: 88.8536, loss: 0.3835 2024-06-16 06:00:47,668 - mmseg - INFO - Iter [19450/80000] lr: 2.452e-06, eta: 1 day, 5:08:19, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2686, decode.acc_seg: 88.8874, aux.loss_ce: 0.1083, aux.acc_seg: 88.8875, loss: 0.3769 2024-06-16 06:02:08,348 - mmseg - INFO - Iter [19500/80000] lr: 2.450e-06, eta: 1 day, 5:06:34, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.3055, decode.acc_seg: 87.4209, aux.loss_ce: 0.1236, aux.acc_seg: 87.2602, loss: 0.4290 2024-06-16 06:03:29,177 - mmseg - INFO - Iter [19550/80000] lr: 2.448e-06, eta: 1 day, 5:04:49, time: 1.617, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2742, decode.acc_seg: 88.7477, aux.loss_ce: 0.1112, aux.acc_seg: 88.6697, loss: 0.3855 2024-06-16 06:04:49,686 - mmseg - INFO - Iter [19600/80000] lr: 2.446e-06, eta: 1 day, 5:03:04, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2877, decode.acc_seg: 87.9296, aux.loss_ce: 0.1168, aux.acc_seg: 87.9055, loss: 0.4046 2024-06-16 06:06:10,161 - mmseg - INFO - Iter [19650/80000] lr: 2.444e-06, eta: 1 day, 5:01:18, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2686, decode.acc_seg: 88.8415, aux.loss_ce: 0.1088, aux.acc_seg: 88.6587, loss: 0.3775 2024-06-16 06:07:30,643 - mmseg - INFO - Iter [19700/80000] lr: 2.442e-06, eta: 1 day, 4:59:33, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2789, decode.acc_seg: 88.2392, aux.loss_ce: 0.1119, aux.acc_seg: 88.2251, loss: 0.3908 2024-06-16 06:08:51,298 - mmseg - INFO - Iter [19750/80000] lr: 2.440e-06, eta: 1 day, 4:57:49, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2766, decode.acc_seg: 88.8682, aux.loss_ce: 0.1121, aux.acc_seg: 88.8439, loss: 0.3887 2024-06-16 06:10:12,128 - mmseg - INFO - Iter [19800/80000] lr: 2.438e-06, eta: 1 day, 4:56:05, time: 1.617, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2646, decode.acc_seg: 89.0397, aux.loss_ce: 0.1072, aux.acc_seg: 88.9527, loss: 0.3718 2024-06-16 06:11:32,698 - mmseg - INFO - Iter [19850/80000] lr: 2.436e-06, eta: 1 day, 4:54:20, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2711, decode.acc_seg: 88.5901, aux.loss_ce: 0.1107, aux.acc_seg: 88.5097, loss: 0.3818 2024-06-16 06:12:53,191 - mmseg - INFO - Iter [19900/80000] lr: 2.434e-06, eta: 1 day, 4:52:36, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2745, decode.acc_seg: 88.5537, aux.loss_ce: 0.1108, aux.acc_seg: 88.6909, loss: 0.3853 2024-06-16 06:14:13,648 - mmseg - INFO - Iter [19950/80000] lr: 2.432e-06, eta: 1 day, 4:50:51, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2936, decode.acc_seg: 87.9944, aux.loss_ce: 0.1189, aux.acc_seg: 87.9258, loss: 0.4125 2024-06-16 06:15:34,159 - mmseg - INFO - Saving checkpoint at 20000 iterations 2024-06-16 06:16:45,614 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 06:16:45,615 - mmseg - INFO - Iter [20000/80000] lr: 2.430e-06, eta: 1 day, 4:52:41, time: 3.039, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2657, decode.acc_seg: 88.9960, aux.loss_ce: 0.1081, aux.acc_seg: 88.9436, loss: 0.3738 2024-06-16 06:18:08,248 - mmseg - INFO - per class results: 2024-06-16 06:18:08,254 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 79.55 | 86.22 | | building | 84.39 | 93.46 | | sky | 94.4 | 97.34 | | floor | 83.49 | 90.61 | | tree | 76.88 | 89.67 | | ceiling | 84.56 | 96.35 | | road | 85.87 | 90.97 | | bed | 90.16 | 97.53 | | windowpane | 64.8 | 75.38 | | grass | 66.31 | 79.07 | | cabinet | 65.53 | 74.49 | | sidewalk | 68.94 | 84.49 | | person | 82.77 | 92.04 | | earth | 37.76 | 50.4 | | door | 57.27 | 73.76 | | table | 66.23 | 78.63 | | mountain | 60.3 | 68.97 | | plant | 56.48 | 69.86 | | curtain | 75.93 | 91.57 | | chair | 62.91 | 74.75 | | car | 84.3 | 94.91 | | water | 62.2 | 75.85 | | painting | 75.02 | 88.78 | | sofa | 81.7 | 88.5 | | shelf | 45.27 | 64.03 | | house | 57.91 | 77.09 | | sea | 72.31 | 88.65 | | mirror | 74.8 | 86.23 | | rug | 69.03 | 82.25 | | field | 28.39 | 50.74 | | armchair | 60.59 | 81.24 | | seat | 66.2 | 89.07 | | fence | 48.98 | 60.46 | | desk | 56.85 | 72.7 | | rock | 58.36 | 84.59 | | wardrobe | 54.51 | 83.14 | | lamp | 65.5 | 77.81 | | bathtub | 83.41 | 86.15 | | railing | 40.68 | 57.86 | | cushion | 62.99 | 83.41 | | base | 43.25 | 59.79 | | box | 39.55 | 53.38 | | column | 54.61 | 67.52 | | signboard | 38.01 | 46.89 | | chest of drawers | 48.88 | 65.86 | | counter | 55.75 | 63.15 | | sand | 54.21 | 89.63 | | sink | 80.38 | 89.12 | | skyscraper | 51.57 | 64.56 | | fireplace | 76.38 | 92.62 | | refrigerator | 82.42 | 89.8 | | grandstand | 46.82 | 81.45 | | path | 29.9 | 41.72 | | stairs | 24.52 | 28.55 | | runway | 67.33 | 87.53 | | case | 64.97 | 82.54 | | pool table | 92.2 | 98.22 | | pillow | 50.79 | 53.74 | | screen door | 75.39 | 77.66 | | stairway | 43.68 | 57.55 | | river | 20.9 | 31.46 | | bridge | 57.16 | 89.48 | | bookcase | 41.93 | 74.69 | | blind | 51.68 | 69.88 | | coffee table | 57.86 | 88.4 | | toilet | 89.02 | 95.23 | | flower | 39.53 | 54.55 | | book | 47.54 | 64.01 | | hill | 5.34 | 13.75 | | bench | 58.55 | 67.27 | | countertop | 66.83 | 82.44 | | stove | 85.37 | 92.04 | | palm | 52.57 | 74.19 | | kitchen island | 53.44 | 76.17 | | computer | 77.57 | 88.58 | | swivel chair | 50.49 | 77.96 | | boat | 74.85 | 88.37 | | bar | 68.85 | 83.99 | | arcade machine | 90.31 | 96.05 | | hovel | 20.97 | 22.15 | | bus | 91.59 | 96.87 | | towel | 72.46 | 84.11 | | light | 41.36 | 45.86 | | truck | 45.36 | 59.34 | | tower | 24.3 | 31.92 | | chandelier | 67.62 | 80.34 | | awning | 28.58 | 33.77 | | streetlight | 25.78 | 37.64 | | booth | 49.81 | 78.15 | | television receiver | 79.7 | 86.03 | | airplane | 76.04 | 83.66 | | dirt track | 8.26 | 9.54 | | apparel | 57.0 | 84.95 | | pole | 18.15 | 24.35 | | land | 2.29 | 4.04 | | bannister | 15.52 | 24.0 | | escalator | 65.24 | 83.57 | | ottoman | 48.21 | 63.93 | | bottle | 43.13 | 70.48 | | buffet | 56.53 | 63.38 | | poster | 33.18 | 39.0 | | stage | 18.31 | 39.04 | | van | 45.01 | 61.41 | | ship | 83.37 | 89.94 | | fountain | 49.51 | 50.11 | | conveyer belt | 79.61 | 95.63 | | canopy | 46.68 | 74.1 | | washer | 86.7 | 93.28 | | plaything | 27.33 | 38.65 | | swimming pool | 58.15 | 86.87 | | stool | 49.87 | 75.77 | | barrel | 58.29 | 69.53 | | basket | 44.05 | 59.39 | | waterfall | 57.15 | 66.92 | | tent | 92.23 | 98.91 | | bag | 35.23 | 43.61 | | minibike | 69.36 | 77.61 | | cradle | 88.96 | 96.29 | | oven | 57.22 | 66.94 | | ball | 60.71 | 75.41 | | food | 54.58 | 71.7 | | step | 11.14 | 14.48 | | tank | 61.87 | 79.06 | | trade name | 34.03 | 42.22 | | microwave | 86.48 | 96.25 | | pot | 55.13 | 64.99 | | animal | 71.91 | 74.02 | | bicycle | 57.66 | 72.91 | | lake | 55.45 | 63.49 | | dishwasher | 73.5 | 82.92 | | screen | 51.7 | 95.55 | | blanket | 29.42 | 35.72 | | sculpture | 72.29 | 82.87 | | hood | 73.35 | 89.83 | | sconce | 55.03 | 69.36 | | vase | 42.09 | 61.26 | | traffic light | 32.77 | 58.59 | | tray | 20.45 | 25.4 | | ashcan | 50.29 | 65.23 | | fan | 57.79 | 68.88 | | pier | 35.72 | 39.9 | | crt screen | 11.29 | 13.27 | | plate | 59.41 | 79.04 | | monitor | 46.32 | 81.19 | | bulletin board | 56.13 | 67.84 | | shower | 0.16 | 0.46 | | radiator | 61.45 | 87.38 | | glass | 20.17 | 21.87 | | clock | 47.78 | 58.11 | | flag | 65.38 | 73.06 | +---------------------+-------+-------+ 2024-06-16 06:18:08,254 - mmseg - INFO - Summary: 2024-06-16 06:18:08,254 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.15 | 56.22 | 69.55 | +-------+-------+-------+ 2024-06-16 06:18:08,255 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 06:18:08,255 - mmseg - INFO - Iter(val) [250] aAcc: 0.8515, mIoU: 0.5622, mAcc: 0.6955, IoU.wall: 0.7955, IoU.building: 0.8439, IoU.sky: 0.9440, IoU.floor: 0.8349, IoU.tree: 0.7688, IoU.ceiling: 0.8456, IoU.road: 0.8587, IoU.bed : 0.9016, IoU.windowpane: 0.6480, IoU.grass: 0.6631, IoU.cabinet: 0.6553, IoU.sidewalk: 0.6894, IoU.person: 0.8277, IoU.earth: 0.3776, IoU.door: 0.5727, IoU.table: 0.6623, IoU.mountain: 0.6030, IoU.plant: 0.5648, IoU.curtain: 0.7593, IoU.chair: 0.6291, IoU.car: 0.8430, IoU.water: 0.6220, IoU.painting: 0.7502, IoU.sofa: 0.8170, IoU.shelf: 0.4527, IoU.house: 0.5791, IoU.sea: 0.7231, IoU.mirror: 0.7480, IoU.rug: 0.6903, IoU.field: 0.2839, IoU.armchair: 0.6059, IoU.seat: 0.6620, IoU.fence: 0.4898, IoU.desk: 0.5685, IoU.rock: 0.5836, IoU.wardrobe: 0.5451, IoU.lamp: 0.6550, IoU.bathtub: 0.8341, IoU.railing: 0.4068, IoU.cushion: 0.6299, IoU.base: 0.4325, IoU.box: 0.3955, IoU.column: 0.5461, IoU.signboard: 0.3801, IoU.chest of drawers: 0.4888, IoU.counter: 0.5575, IoU.sand: 0.5421, IoU.sink: 0.8038, IoU.skyscraper: 0.5157, IoU.fireplace: 0.7638, IoU.refrigerator: 0.8242, IoU.grandstand: 0.4682, IoU.path: 0.2990, IoU.stairs: 0.2452, IoU.runway: 0.6733, IoU.case: 0.6497, IoU.pool table: 0.9220, IoU.pillow: 0.5079, IoU.screen door: 0.7539, IoU.stairway: 0.4368, IoU.river: 0.2090, IoU.bridge: 0.5716, IoU.bookcase: 0.4193, IoU.blind: 0.5168, IoU.coffee table: 0.5786, IoU.toilet: 0.8902, IoU.flower: 0.3953, IoU.book: 0.4754, IoU.hill: 0.0534, IoU.bench: 0.5855, IoU.countertop: 0.6683, IoU.stove: 0.8537, IoU.palm: 0.5257, IoU.kitchen island: 0.5344, IoU.computer: 0.7757, IoU.swivel chair: 0.5049, IoU.boat: 0.7485, IoU.bar: 0.6885, IoU.arcade machine: 0.9031, IoU.hovel: 0.2097, IoU.bus: 0.9159, IoU.towel: 0.7246, IoU.light: 0.4136, IoU.truck: 0.4536, IoU.tower: 0.2430, IoU.chandelier: 0.6762, IoU.awning: 0.2858, IoU.streetlight: 0.2578, IoU.booth: 0.4981, IoU.television receiver: 0.7970, IoU.airplane: 0.7604, IoU.dirt track: 0.0826, IoU.apparel: 0.5700, IoU.pole: 0.1815, IoU.land: 0.0229, IoU.bannister: 0.1552, IoU.escalator: 0.6524, IoU.ottoman: 0.4821, IoU.bottle: 0.4313, IoU.buffet: 0.5653, IoU.poster: 0.3318, IoU.stage: 0.1831, IoU.van: 0.4501, IoU.ship: 0.8337, IoU.fountain: 0.4951, IoU.conveyer belt: 0.7961, IoU.canopy: 0.4668, IoU.washer: 0.8670, IoU.plaything: 0.2733, IoU.swimming pool: 0.5815, IoU.stool: 0.4987, IoU.barrel: 0.5829, IoU.basket: 0.4405, IoU.waterfall: 0.5715, IoU.tent: 0.9223, IoU.bag: 0.3523, IoU.minibike: 0.6936, IoU.cradle: 0.8896, IoU.oven: 0.5722, IoU.ball: 0.6071, IoU.food: 0.5458, IoU.step: 0.1114, IoU.tank: 0.6187, IoU.trade name: 0.3403, IoU.microwave: 0.8648, IoU.pot: 0.5513, IoU.animal: 0.7191, IoU.bicycle: 0.5766, IoU.lake: 0.5545, IoU.dishwasher: 0.7350, IoU.screen: 0.5170, IoU.blanket: 0.2942, IoU.sculpture: 0.7229, IoU.hood: 0.7335, IoU.sconce: 0.5503, IoU.vase: 0.4209, IoU.traffic light: 0.3277, IoU.tray: 0.2045, IoU.ashcan: 0.5029, IoU.fan: 0.5779, IoU.pier: 0.3572, IoU.crt screen: 0.1129, IoU.plate: 0.5941, IoU.monitor: 0.4632, IoU.bulletin board: 0.5613, IoU.shower: 0.0016, IoU.radiator: 0.6145, IoU.glass: 0.2017, IoU.clock: 0.4778, IoU.flag: 0.6538, Acc.wall: 0.8622, Acc.building: 0.9346, Acc.sky: 0.9734, Acc.floor: 0.9061, Acc.tree: 0.8967, Acc.ceiling: 0.9635, Acc.road: 0.9097, Acc.bed : 0.9753, Acc.windowpane: 0.7538, Acc.grass: 0.7907, Acc.cabinet: 0.7449, Acc.sidewalk: 0.8449, Acc.person: 0.9204, Acc.earth: 0.5040, Acc.door: 0.7376, Acc.table: 0.7863, Acc.mountain: 0.6897, Acc.plant: 0.6986, Acc.curtain: 0.9157, Acc.chair: 0.7475, Acc.car: 0.9491, Acc.water: 0.7585, Acc.painting: 0.8878, Acc.sofa: 0.8850, Acc.shelf: 0.6403, Acc.house: 0.7709, Acc.sea: 0.8865, Acc.mirror: 0.8623, Acc.rug: 0.8225, Acc.field: 0.5074, Acc.armchair: 0.8124, Acc.seat: 0.8907, Acc.fence: 0.6046, Acc.desk: 0.7270, Acc.rock: 0.8459, Acc.wardrobe: 0.8314, Acc.lamp: 0.7781, Acc.bathtub: 0.8615, Acc.railing: 0.5786, Acc.cushion: 0.8341, Acc.base: 0.5979, Acc.box: 0.5338, Acc.column: 0.6752, Acc.signboard: 0.4689, Acc.chest of drawers: 0.6586, Acc.counter: 0.6315, Acc.sand: 0.8963, Acc.sink: 0.8912, Acc.skyscraper: 0.6456, Acc.fireplace: 0.9262, Acc.refrigerator: 0.8980, Acc.grandstand: 0.8145, Acc.path: 0.4172, Acc.stairs: 0.2855, Acc.runway: 0.8753, Acc.case: 0.8254, Acc.pool table: 0.9822, Acc.pillow: 0.5374, Acc.screen door: 0.7766, Acc.stairway: 0.5755, Acc.river: 0.3146, Acc.bridge: 0.8948, Acc.bookcase: 0.7469, Acc.blind: 0.6988, Acc.coffee table: 0.8840, Acc.toilet: 0.9523, Acc.flower: 0.5455, Acc.book: 0.6401, Acc.hill: 0.1375, Acc.bench: 0.6727, Acc.countertop: 0.8244, Acc.stove: 0.9204, Acc.palm: 0.7419, Acc.kitchen island: 0.7617, Acc.computer: 0.8858, Acc.swivel chair: 0.7796, Acc.boat: 0.8837, Acc.bar: 0.8399, Acc.arcade machine: 0.9605, Acc.hovel: 0.2215, Acc.bus: 0.9687, Acc.towel: 0.8411, Acc.light: 0.4586, Acc.truck: 0.5934, Acc.tower: 0.3192, Acc.chandelier: 0.8034, Acc.awning: 0.3377, Acc.streetlight: 0.3764, Acc.booth: 0.7815, Acc.television receiver: 0.8603, Acc.airplane: 0.8366, Acc.dirt track: 0.0954, Acc.apparel: 0.8495, Acc.pole: 0.2435, Acc.land: 0.0404, Acc.bannister: 0.2400, Acc.escalator: 0.8357, Acc.ottoman: 0.6393, Acc.bottle: 0.7048, Acc.buffet: 0.6338, Acc.poster: 0.3900, Acc.stage: 0.3904, Acc.van: 0.6141, Acc.ship: 0.8994, Acc.fountain: 0.5011, Acc.conveyer belt: 0.9563, Acc.canopy: 0.7410, Acc.washer: 0.9328, Acc.plaything: 0.3865, Acc.swimming pool: 0.8687, Acc.stool: 0.7577, Acc.barrel: 0.6953, Acc.basket: 0.5939, Acc.waterfall: 0.6692, Acc.tent: 0.9891, Acc.bag: 0.4361, Acc.minibike: 0.7761, Acc.cradle: 0.9629, Acc.oven: 0.6694, Acc.ball: 0.7541, Acc.food: 0.7170, Acc.step: 0.1448, Acc.tank: 0.7906, Acc.trade name: 0.4222, Acc.microwave: 0.9625, Acc.pot: 0.6499, Acc.animal: 0.7402, Acc.bicycle: 0.7291, Acc.lake: 0.6349, Acc.dishwasher: 0.8292, Acc.screen: 0.9555, Acc.blanket: 0.3572, Acc.sculpture: 0.8287, Acc.hood: 0.8983, Acc.sconce: 0.6936, Acc.vase: 0.6126, Acc.traffic light: 0.5859, Acc.tray: 0.2540, Acc.ashcan: 0.6523, Acc.fan: 0.6888, Acc.pier: 0.3990, Acc.crt screen: 0.1327, Acc.plate: 0.7904, Acc.monitor: 0.8119, Acc.bulletin board: 0.6784, Acc.shower: 0.0046, Acc.radiator: 0.8738, Acc.glass: 0.2187, Acc.clock: 0.5811, Acc.flag: 0.7306 2024-06-16 06:19:29,049 - mmseg - INFO - Iter [20050/80000] lr: 2.428e-06, eta: 1 day, 4:55:04, time: 3.269, data_time: 1.666, memory: 65790, decode.loss_ce: 0.2967, decode.acc_seg: 87.6959, aux.loss_ce: 0.1182, aux.acc_seg: 87.9325, loss: 0.4148 2024-06-16 06:20:49,651 - mmseg - INFO - Iter [20100/80000] lr: 2.426e-06, eta: 1 day, 4:53:19, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2872, decode.acc_seg: 88.2067, aux.loss_ce: 0.1150, aux.acc_seg: 88.2597, loss: 0.4023 2024-06-16 06:22:10,353 - mmseg - INFO - Iter [20150/80000] lr: 2.424e-06, eta: 1 day, 4:51:34, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2862, decode.acc_seg: 88.3256, aux.loss_ce: 0.1158, aux.acc_seg: 88.3529, loss: 0.4021 2024-06-16 06:23:30,902 - mmseg - INFO - Iter [20200/80000] lr: 2.422e-06, eta: 1 day, 4:49:49, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2926, decode.acc_seg: 87.6127, aux.loss_ce: 0.1175, aux.acc_seg: 87.7756, loss: 0.4101 2024-06-16 06:24:54,183 - mmseg - INFO - Iter [20250/80000] lr: 2.420e-06, eta: 1 day, 4:48:11, time: 1.666, data_time: 0.059, memory: 65790, decode.loss_ce: 0.2669, decode.acc_seg: 88.8463, aux.loss_ce: 0.1076, aux.acc_seg: 88.7648, loss: 0.3745 2024-06-16 06:26:14,638 - mmseg - INFO - Iter [20300/80000] lr: 2.418e-06, eta: 1 day, 4:46:26, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2876, decode.acc_seg: 88.3188, aux.loss_ce: 0.1135, aux.acc_seg: 88.5553, loss: 0.4011 2024-06-16 06:27:35,127 - mmseg - INFO - Iter [20350/80000] lr: 2.416e-06, eta: 1 day, 4:44:41, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2808, decode.acc_seg: 88.1445, aux.loss_ce: 0.1124, aux.acc_seg: 88.3381, loss: 0.3931 2024-06-16 06:28:55,596 - mmseg - INFO - Iter [20400/80000] lr: 2.414e-06, eta: 1 day, 4:42:56, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2688, decode.acc_seg: 88.6135, aux.loss_ce: 0.1094, aux.acc_seg: 88.5574, loss: 0.3782 2024-06-16 06:30:16,259 - mmseg - INFO - Iter [20450/80000] lr: 2.412e-06, eta: 1 day, 4:41:11, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2787, decode.acc_seg: 88.2758, aux.loss_ce: 0.1125, aux.acc_seg: 88.5066, loss: 0.3912 2024-06-16 06:31:36,793 - mmseg - INFO - Iter [20500/80000] lr: 2.410e-06, eta: 1 day, 4:39:27, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2841, decode.acc_seg: 87.9110, aux.loss_ce: 0.1133, aux.acc_seg: 88.0788, loss: 0.3974 2024-06-16 06:32:57,256 - mmseg - INFO - Iter [20550/80000] lr: 2.408e-06, eta: 1 day, 4:37:42, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2627, decode.acc_seg: 88.9331, aux.loss_ce: 0.1070, aux.acc_seg: 88.9751, loss: 0.3698 2024-06-16 06:34:17,857 - mmseg - INFO - Iter [20600/80000] lr: 2.406e-06, eta: 1 day, 4:35:58, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2744, decode.acc_seg: 88.5496, aux.loss_ce: 0.1110, aux.acc_seg: 88.6953, loss: 0.3854 2024-06-16 06:35:38,336 - mmseg - INFO - Iter [20650/80000] lr: 2.404e-06, eta: 1 day, 4:34:13, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2760, decode.acc_seg: 88.9473, aux.loss_ce: 0.1119, aux.acc_seg: 88.9030, loss: 0.3879 2024-06-16 06:36:58,867 - mmseg - INFO - Iter [20700/80000] lr: 2.402e-06, eta: 1 day, 4:32:29, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2758, decode.acc_seg: 88.7216, aux.loss_ce: 0.1107, aux.acc_seg: 88.6591, loss: 0.3865 2024-06-16 06:38:19,641 - mmseg - INFO - Iter [20750/80000] lr: 2.400e-06, eta: 1 day, 4:30:46, time: 1.616, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2585, decode.acc_seg: 88.8777, aux.loss_ce: 0.1048, aux.acc_seg: 88.9652, loss: 0.3633 2024-06-16 06:39:40,266 - mmseg - INFO - Iter [20800/80000] lr: 2.397e-06, eta: 1 day, 4:29:02, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2629, decode.acc_seg: 88.7624, aux.loss_ce: 0.1064, aux.acc_seg: 88.7618, loss: 0.3693 2024-06-16 06:41:00,746 - mmseg - INFO - Iter [20850/80000] lr: 2.395e-06, eta: 1 day, 4:27:18, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2660, decode.acc_seg: 88.4581, aux.loss_ce: 0.1081, aux.acc_seg: 88.4510, loss: 0.3741 2024-06-16 06:42:21,239 - mmseg - INFO - Iter [20900/80000] lr: 2.393e-06, eta: 1 day, 4:25:34, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2490, decode.acc_seg: 89.5243, aux.loss_ce: 0.1005, aux.acc_seg: 89.5387, loss: 0.3496 2024-06-16 06:43:41,782 - mmseg - INFO - Iter [20950/80000] lr: 2.391e-06, eta: 1 day, 4:23:51, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2889, decode.acc_seg: 87.8131, aux.loss_ce: 0.1160, aux.acc_seg: 87.9041, loss: 0.4049 2024-06-16 06:45:02,288 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 06:45:02,288 - mmseg - INFO - Iter [21000/80000] lr: 2.389e-06, eta: 1 day, 4:22:07, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2700, decode.acc_seg: 88.6992, aux.loss_ce: 0.1084, aux.acc_seg: 88.7694, loss: 0.3784 2024-06-16 06:46:24,842 - mmseg - INFO - per class results: 2024-06-16 06:46:24,849 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 80.43 | 87.98 | | building | 84.14 | 93.6 | | sky | 94.27 | 97.11 | | floor | 84.02 | 90.14 | | tree | 76.59 | 86.91 | | ceiling | 85.65 | 91.99 | | road | 83.92 | 92.21 | | bed | 91.29 | 96.86 | | windowpane | 65.06 | 80.16 | | grass | 63.36 | 72.67 | | cabinet | 66.23 | 77.27 | | sidewalk | 68.07 | 80.46 | | person | 82.66 | 93.39 | | earth | 38.06 | 51.51 | | door | 58.36 | 72.8 | | table | 68.37 | 81.56 | | mountain | 57.68 | 66.18 | | plant | 56.63 | 70.03 | | curtain | 78.01 | 88.31 | | chair | 62.28 | 72.44 | | car | 85.94 | 92.3 | | water | 57.17 | 67.31 | | painting | 76.16 | 88.66 | | sofa | 82.34 | 91.91 | | shelf | 43.84 | 61.16 | | house | 53.3 | 73.36 | | sea | 71.22 | 84.71 | | mirror | 77.22 | 86.31 | | rug | 70.73 | 85.24 | | field | 24.46 | 55.65 | | armchair | 62.17 | 79.6 | | seat | 66.01 | 89.75 | | fence | 51.8 | 66.45 | | desk | 54.11 | 75.91 | | rock | 55.63 | 77.37 | | wardrobe | 58.6 | 79.62 | | lamp | 66.73 | 82.49 | | bathtub | 83.84 | 86.41 | | railing | 40.77 | 57.59 | | cushion | 63.79 | 81.05 | | base | 44.75 | 64.3 | | box | 36.07 | 44.34 | | column | 49.15 | 58.17 | | signboard | 38.06 | 45.86 | | chest of drawers | 42.88 | 67.17 | | counter | 53.57 | 66.03 | | sand | 53.47 | 88.33 | | sink | 79.62 | 92.07 | | skyscraper | 51.23 | 68.1 | | fireplace | 73.44 | 95.93 | | refrigerator | 83.88 | 92.58 | | grandstand | 48.14 | 89.47 | | path | 28.42 | 39.95 | | stairs | 33.66 | 41.88 | | runway | 67.53 | 88.0 | | case | 61.51 | 84.53 | | pool table | 90.12 | 99.06 | | pillow | 61.0 | 68.05 | | screen door | 88.05 | 94.7 | | stairway | 48.81 | 59.31 | | river | 14.43 | 42.44 | | bridge | 73.22 | 87.61 | | bookcase | 37.63 | 68.3 | | blind | 41.4 | 50.11 | | coffee table | 66.23 | 82.93 | | toilet | 88.03 | 94.11 | | flower | 38.99 | 54.12 | | book | 48.26 | 70.19 | | hill | 6.56 | 13.83 | | bench | 63.86 | 74.19 | | countertop | 62.05 | 70.58 | | stove | 85.91 | 92.93 | | palm | 52.7 | 80.95 | | kitchen island | 45.86 | 68.54 | | computer | 74.4 | 91.53 | | swivel chair | 49.69 | 89.31 | | boat | 73.83 | 91.96 | | bar | 71.51 | 84.65 | | arcade machine | 79.29 | 87.91 | | hovel | 17.84 | 19.07 | | bus | 91.28 | 95.9 | | towel | 72.2 | 87.09 | | light | 49.58 | 66.74 | | truck | 44.57 | 58.88 | | tower | 40.55 | 73.31 | | chandelier | 67.05 | 87.25 | | awning | 33.0 | 42.55 | | streetlight | 29.96 | 40.02 | | booth | 43.9 | 81.48 | | television receiver | 78.41 | 85.98 | | airplane | 84.77 | 94.54 | | dirt track | 8.5 | 40.44 | | apparel | 50.55 | 74.3 | | pole | 19.72 | 24.27 | | land | 5.43 | 8.87 | | bannister | 16.28 | 21.09 | | escalator | 65.67 | 83.05 | | ottoman | 51.3 | 73.65 | | bottle | 40.92 | 73.46 | | buffet | 52.71 | 87.55 | | poster | 31.02 | 33.26 | | stage | 21.66 | 45.64 | | van | 47.39 | 73.16 | | ship | 78.37 | 98.27 | | fountain | 39.2 | 39.92 | | conveyer belt | 79.75 | 94.89 | | canopy | 41.29 | 66.06 | | washer | 88.33 | 95.13 | | plaything | 31.03 | 39.62 | | swimming pool | 59.65 | 89.11 | | stool | 46.79 | 62.02 | | barrel | 60.22 | 77.36 | | basket | 44.06 | 57.43 | | waterfall | 50.7 | 68.75 | | tent | 92.75 | 98.61 | | bag | 21.5 | 24.46 | | minibike | 73.28 | 86.44 | | cradle | 88.78 | 97.2 | | oven | 57.39 | 65.42 | | ball | 41.97 | 43.07 | | food | 51.11 | 60.12 | | step | 12.32 | 14.19 | | tank | 59.45 | 71.7 | | trade name | 20.42 | 21.91 | | microwave | 88.53 | 95.76 | | pot | 55.87 | 66.93 | | animal | 72.68 | 76.64 | | bicycle | 59.91 | 80.14 | | lake | 43.44 | 66.63 | | dishwasher | 76.99 | 82.53 | | screen | 51.67 | 92.85 | | blanket | 30.47 | 36.25 | | sculpture | 71.28 | 87.11 | | hood | 64.27 | 78.61 | | sconce | 54.8 | 74.52 | | vase | 42.1 | 63.63 | | traffic light | 30.46 | 62.59 | | tray | 23.37 | 29.46 | | ashcan | 50.2 | 65.93 | | fan | 61.12 | 73.2 | | pier | 39.26 | 45.24 | | crt screen | 6.51 | 8.22 | | plate | 61.52 | 76.33 | | monitor | 52.9 | 77.18 | | bulletin board | 61.08 | 78.08 | | shower | 2.8 | 2.9 | | radiator | 61.94 | 80.86 | | glass | 19.32 | 20.7 | | clock | 46.72 | 64.34 | | flag | 61.93 | 79.85 | +---------------------+-------+-------+ 2024-06-16 06:46:24,849 - mmseg - INFO - Summary: 2024-06-16 06:46:24,849 - mmseg - INFO - +-------+-------+------+ | aAcc | mIoU | mAcc | +-------+-------+------+ | 85.04 | 55.95 | 70.4 | +-------+-------+------+ 2024-06-16 06:46:24,850 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 06:46:24,850 - mmseg - INFO - Iter(val) [250] aAcc: 0.8504, mIoU: 0.5595, mAcc: 0.7040, IoU.wall: 0.8043, IoU.building: 0.8414, IoU.sky: 0.9427, IoU.floor: 0.8402, IoU.tree: 0.7659, IoU.ceiling: 0.8565, IoU.road: 0.8392, IoU.bed : 0.9129, IoU.windowpane: 0.6506, IoU.grass: 0.6336, IoU.cabinet: 0.6623, IoU.sidewalk: 0.6807, IoU.person: 0.8266, IoU.earth: 0.3806, IoU.door: 0.5836, IoU.table: 0.6837, IoU.mountain: 0.5768, IoU.plant: 0.5663, IoU.curtain: 0.7801, IoU.chair: 0.6228, IoU.car: 0.8594, IoU.water: 0.5717, IoU.painting: 0.7616, IoU.sofa: 0.8234, IoU.shelf: 0.4384, IoU.house: 0.5330, IoU.sea: 0.7122, IoU.mirror: 0.7722, IoU.rug: 0.7073, IoU.field: 0.2446, IoU.armchair: 0.6217, IoU.seat: 0.6601, IoU.fence: 0.5180, IoU.desk: 0.5411, IoU.rock: 0.5563, IoU.wardrobe: 0.5860, IoU.lamp: 0.6673, IoU.bathtub: 0.8384, IoU.railing: 0.4077, IoU.cushion: 0.6379, IoU.base: 0.4475, IoU.box: 0.3607, IoU.column: 0.4915, IoU.signboard: 0.3806, IoU.chest of drawers: 0.4288, IoU.counter: 0.5357, IoU.sand: 0.5347, IoU.sink: 0.7962, IoU.skyscraper: 0.5123, IoU.fireplace: 0.7344, IoU.refrigerator: 0.8388, IoU.grandstand: 0.4814, IoU.path: 0.2842, IoU.stairs: 0.3366, IoU.runway: 0.6753, IoU.case: 0.6151, IoU.pool table: 0.9012, IoU.pillow: 0.6100, IoU.screen door: 0.8805, IoU.stairway: 0.4881, IoU.river: 0.1443, IoU.bridge: 0.7322, IoU.bookcase: 0.3763, IoU.blind: 0.4140, IoU.coffee table: 0.6623, IoU.toilet: 0.8803, IoU.flower: 0.3899, IoU.book: 0.4826, IoU.hill: 0.0656, IoU.bench: 0.6386, IoU.countertop: 0.6205, IoU.stove: 0.8591, IoU.palm: 0.5270, IoU.kitchen island: 0.4586, IoU.computer: 0.7440, IoU.swivel chair: 0.4969, IoU.boat: 0.7383, IoU.bar: 0.7151, IoU.arcade machine: 0.7929, IoU.hovel: 0.1784, IoU.bus: 0.9128, IoU.towel: 0.7220, IoU.light: 0.4958, IoU.truck: 0.4457, IoU.tower: 0.4055, IoU.chandelier: 0.6705, IoU.awning: 0.3300, IoU.streetlight: 0.2996, IoU.booth: 0.4390, IoU.television receiver: 0.7841, IoU.airplane: 0.8477, IoU.dirt track: 0.0850, IoU.apparel: 0.5055, IoU.pole: 0.1972, IoU.land: 0.0543, IoU.bannister: 0.1628, IoU.escalator: 0.6567, IoU.ottoman: 0.5130, IoU.bottle: 0.4092, IoU.buffet: 0.5271, IoU.poster: 0.3102, IoU.stage: 0.2166, IoU.van: 0.4739, IoU.ship: 0.7837, IoU.fountain: 0.3920, IoU.conveyer belt: 0.7975, IoU.canopy: 0.4129, IoU.washer: 0.8833, IoU.plaything: 0.3103, IoU.swimming pool: 0.5965, IoU.stool: 0.4679, IoU.barrel: 0.6022, IoU.basket: 0.4406, IoU.waterfall: 0.5070, IoU.tent: 0.9275, IoU.bag: 0.2150, IoU.minibike: 0.7328, IoU.cradle: 0.8878, IoU.oven: 0.5739, IoU.ball: 0.4197, IoU.food: 0.5111, IoU.step: 0.1232, IoU.tank: 0.5945, IoU.trade name: 0.2042, IoU.microwave: 0.8853, IoU.pot: 0.5587, IoU.animal: 0.7268, IoU.bicycle: 0.5991, IoU.lake: 0.4344, IoU.dishwasher: 0.7699, IoU.screen: 0.5167, IoU.blanket: 0.3047, IoU.sculpture: 0.7128, IoU.hood: 0.6427, IoU.sconce: 0.5480, IoU.vase: 0.4210, IoU.traffic light: 0.3046, IoU.tray: 0.2337, IoU.ashcan: 0.5020, IoU.fan: 0.6112, IoU.pier: 0.3926, IoU.crt screen: 0.0651, IoU.plate: 0.6152, IoU.monitor: 0.5290, IoU.bulletin board: 0.6108, IoU.shower: 0.0280, IoU.radiator: 0.6194, IoU.glass: 0.1932, IoU.clock: 0.4672, IoU.flag: 0.6193, Acc.wall: 0.8798, Acc.building: 0.9360, Acc.sky: 0.9711, Acc.floor: 0.9014, Acc.tree: 0.8691, Acc.ceiling: 0.9199, Acc.road: 0.9221, Acc.bed : 0.9686, Acc.windowpane: 0.8016, Acc.grass: 0.7267, Acc.cabinet: 0.7727, Acc.sidewalk: 0.8046, Acc.person: 0.9339, Acc.earth: 0.5151, Acc.door: 0.7280, Acc.table: 0.8156, Acc.mountain: 0.6618, Acc.plant: 0.7003, Acc.curtain: 0.8831, Acc.chair: 0.7244, Acc.car: 0.9230, Acc.water: 0.6731, Acc.painting: 0.8866, Acc.sofa: 0.9191, Acc.shelf: 0.6116, Acc.house: 0.7336, Acc.sea: 0.8471, Acc.mirror: 0.8631, Acc.rug: 0.8524, Acc.field: 0.5565, Acc.armchair: 0.7960, Acc.seat: 0.8975, Acc.fence: 0.6645, Acc.desk: 0.7591, Acc.rock: 0.7737, Acc.wardrobe: 0.7962, Acc.lamp: 0.8249, Acc.bathtub: 0.8641, Acc.railing: 0.5759, Acc.cushion: 0.8105, Acc.base: 0.6430, Acc.box: 0.4434, Acc.column: 0.5817, Acc.signboard: 0.4586, Acc.chest of drawers: 0.6717, Acc.counter: 0.6603, Acc.sand: 0.8833, Acc.sink: 0.9207, Acc.skyscraper: 0.6810, Acc.fireplace: 0.9593, Acc.refrigerator: 0.9258, Acc.grandstand: 0.8947, Acc.path: 0.3995, Acc.stairs: 0.4188, Acc.runway: 0.8800, Acc.case: 0.8453, Acc.pool table: 0.9906, Acc.pillow: 0.6805, Acc.screen door: 0.9470, Acc.stairway: 0.5931, Acc.river: 0.4244, Acc.bridge: 0.8761, Acc.bookcase: 0.6830, Acc.blind: 0.5011, Acc.coffee table: 0.8293, Acc.toilet: 0.9411, Acc.flower: 0.5412, Acc.book: 0.7019, Acc.hill: 0.1383, Acc.bench: 0.7419, Acc.countertop: 0.7058, Acc.stove: 0.9293, Acc.palm: 0.8095, Acc.kitchen island: 0.6854, Acc.computer: 0.9153, Acc.swivel chair: 0.8931, Acc.boat: 0.9196, Acc.bar: 0.8465, Acc.arcade machine: 0.8791, Acc.hovel: 0.1907, Acc.bus: 0.9590, Acc.towel: 0.8709, Acc.light: 0.6674, Acc.truck: 0.5888, Acc.tower: 0.7331, Acc.chandelier: 0.8725, Acc.awning: 0.4255, Acc.streetlight: 0.4002, Acc.booth: 0.8148, Acc.television receiver: 0.8598, Acc.airplane: 0.9454, Acc.dirt track: 0.4044, Acc.apparel: 0.7430, Acc.pole: 0.2427, Acc.land: 0.0887, Acc.bannister: 0.2109, Acc.escalator: 0.8305, Acc.ottoman: 0.7365, Acc.bottle: 0.7346, Acc.buffet: 0.8755, Acc.poster: 0.3326, Acc.stage: 0.4564, Acc.van: 0.7316, Acc.ship: 0.9827, Acc.fountain: 0.3992, Acc.conveyer belt: 0.9489, Acc.canopy: 0.6606, Acc.washer: 0.9513, Acc.plaything: 0.3962, Acc.swimming pool: 0.8911, Acc.stool: 0.6202, Acc.barrel: 0.7736, Acc.basket: 0.5743, Acc.waterfall: 0.6875, Acc.tent: 0.9861, Acc.bag: 0.2446, Acc.minibike: 0.8644, Acc.cradle: 0.9720, Acc.oven: 0.6542, Acc.ball: 0.4307, Acc.food: 0.6012, Acc.step: 0.1419, Acc.tank: 0.7170, Acc.trade name: 0.2191, Acc.microwave: 0.9576, Acc.pot: 0.6693, Acc.animal: 0.7664, Acc.bicycle: 0.8014, Acc.lake: 0.6663, Acc.dishwasher: 0.8253, Acc.screen: 0.9285, Acc.blanket: 0.3625, Acc.sculpture: 0.8711, Acc.hood: 0.7861, Acc.sconce: 0.7452, Acc.vase: 0.6363, Acc.traffic light: 0.6259, Acc.tray: 0.2946, Acc.ashcan: 0.6593, Acc.fan: 0.7320, Acc.pier: 0.4524, Acc.crt screen: 0.0822, Acc.plate: 0.7633, Acc.monitor: 0.7718, Acc.bulletin board: 0.7808, Acc.shower: 0.0290, Acc.radiator: 0.8086, Acc.glass: 0.2070, Acc.clock: 0.6434, Acc.flag: 0.7985 2024-06-16 06:47:45,677 - mmseg - INFO - Iter [21050/80000] lr: 2.387e-06, eta: 1 day, 4:24:16, time: 3.268, data_time: 1.665, memory: 65790, decode.loss_ce: 0.2718, decode.acc_seg: 88.5996, aux.loss_ce: 0.1105, aux.acc_seg: 88.6300, loss: 0.3823 2024-06-16 06:49:06,265 - mmseg - INFO - Iter [21100/80000] lr: 2.385e-06, eta: 1 day, 4:22:32, time: 1.612, data_time: 0.008, memory: 65790, decode.loss_ce: 0.2668, decode.acc_seg: 89.0110, aux.loss_ce: 0.1087, aux.acc_seg: 88.8844, loss: 0.3755 2024-06-16 06:50:26,760 - mmseg - INFO - Iter [21150/80000] lr: 2.383e-06, eta: 1 day, 4:20:48, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2709, decode.acc_seg: 88.9192, aux.loss_ce: 0.1084, aux.acc_seg: 89.0690, loss: 0.3792 2024-06-16 06:51:47,186 - mmseg - INFO - Iter [21200/80000] lr: 2.381e-06, eta: 1 day, 4:19:04, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2740, decode.acc_seg: 88.5238, aux.loss_ce: 0.1101, aux.acc_seg: 88.4338, loss: 0.3841 2024-06-16 06:53:07,661 - mmseg - INFO - Iter [21250/80000] lr: 2.379e-06, eta: 1 day, 4:17:20, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2845, decode.acc_seg: 88.4605, aux.loss_ce: 0.1139, aux.acc_seg: 88.4900, loss: 0.3983 2024-06-16 06:54:28,101 - mmseg - INFO - Iter [21300/80000] lr: 2.377e-06, eta: 1 day, 4:15:36, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2881, decode.acc_seg: 88.2321, aux.loss_ce: 0.1153, aux.acc_seg: 88.3920, loss: 0.4033 2024-06-16 06:55:48,967 - mmseg - INFO - Iter [21350/80000] lr: 2.375e-06, eta: 1 day, 4:13:54, time: 1.617, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2993, decode.acc_seg: 87.5696, aux.loss_ce: 0.1203, aux.acc_seg: 87.6493, loss: 0.4195 2024-06-16 06:57:09,519 - mmseg - INFO - Iter [21400/80000] lr: 2.373e-06, eta: 1 day, 4:12:10, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2812, decode.acc_seg: 88.4232, aux.loss_ce: 0.1144, aux.acc_seg: 88.3819, loss: 0.3957 2024-06-16 06:58:30,001 - mmseg - INFO - Iter [21450/80000] lr: 2.371e-06, eta: 1 day, 4:10:27, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2785, decode.acc_seg: 88.0828, aux.loss_ce: 0.1120, aux.acc_seg: 88.1845, loss: 0.3905 2024-06-16 06:59:52,630 - mmseg - INFO - Iter [21500/80000] lr: 2.369e-06, eta: 1 day, 4:08:49, time: 1.653, data_time: 0.049, memory: 65790, decode.loss_ce: 0.2668, decode.acc_seg: 88.5588, aux.loss_ce: 0.1071, aux.acc_seg: 88.5363, loss: 0.3738 2024-06-16 07:01:13,136 - mmseg - INFO - Iter [21550/80000] lr: 2.367e-06, eta: 1 day, 4:07:06, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2600, decode.acc_seg: 88.9908, aux.loss_ce: 0.1055, aux.acc_seg: 89.0879, loss: 0.3655 2024-06-16 07:02:33,735 - mmseg - INFO - Iter [21600/80000] lr: 2.365e-06, eta: 1 day, 4:05:23, time: 1.612, data_time: 0.008, memory: 65790, decode.loss_ce: 0.2647, decode.acc_seg: 89.1517, aux.loss_ce: 0.1091, aux.acc_seg: 88.9469, loss: 0.3738 2024-06-16 07:03:54,397 - mmseg - INFO - Iter [21650/80000] lr: 2.363e-06, eta: 1 day, 4:03:41, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2715, decode.acc_seg: 88.2418, aux.loss_ce: 0.1094, aux.acc_seg: 88.3306, loss: 0.3809 2024-06-16 07:05:14,967 - mmseg - INFO - Iter [21700/80000] lr: 2.361e-06, eta: 1 day, 4:01:58, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2698, decode.acc_seg: 88.9662, aux.loss_ce: 0.1094, aux.acc_seg: 88.8873, loss: 0.3792 2024-06-16 07:06:35,451 - mmseg - INFO - Iter [21750/80000] lr: 2.359e-06, eta: 1 day, 4:00:15, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2841, decode.acc_seg: 88.2320, aux.loss_ce: 0.1138, aux.acc_seg: 88.4471, loss: 0.3978 2024-06-16 07:07:55,931 - mmseg - INFO - Iter [21800/80000] lr: 2.357e-06, eta: 1 day, 3:58:33, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2719, decode.acc_seg: 88.8242, aux.loss_ce: 0.1092, aux.acc_seg: 88.7707, loss: 0.3811 2024-06-16 07:09:16,369 - mmseg - INFO - Iter [21850/80000] lr: 2.355e-06, eta: 1 day, 3:56:50, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2665, decode.acc_seg: 89.1367, aux.loss_ce: 0.1073, aux.acc_seg: 88.9727, loss: 0.3738 2024-06-16 07:10:36,818 - mmseg - INFO - Iter [21900/80000] lr: 2.353e-06, eta: 1 day, 3:55:07, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2825, decode.acc_seg: 88.5345, aux.loss_ce: 0.1148, aux.acc_seg: 88.3930, loss: 0.3973 2024-06-16 07:11:57,658 - mmseg - INFO - Iter [21950/80000] lr: 2.351e-06, eta: 1 day, 3:53:26, time: 1.617, data_time: 0.008, memory: 65790, decode.loss_ce: 0.2549, decode.acc_seg: 88.8437, aux.loss_ce: 0.1032, aux.acc_seg: 88.7252, loss: 0.3580 2024-06-16 07:13:18,190 - mmseg - INFO - Saving checkpoint at 22000 iterations 2024-06-16 07:14:31,407 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 07:14:31,407 - mmseg - INFO - Iter [22000/80000] lr: 2.349e-06, eta: 1 day, 3:54:57, time: 3.075, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2739, decode.acc_seg: 88.3181, aux.loss_ce: 0.1105, aux.acc_seg: 88.2848, loss: 0.3844 2024-06-16 07:15:52,654 - mmseg - INFO - per class results: 2024-06-16 07:15:52,660 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 80.93 | 88.13 | | building | 85.08 | 93.28 | | sky | 93.96 | 96.77 | | floor | 83.86 | 91.46 | | tree | 76.86 | 89.37 | | ceiling | 86.28 | 93.28 | | road | 85.7 | 91.15 | | bed | 91.69 | 96.61 | | windowpane | 65.5 | 83.32 | | grass | 64.39 | 74.07 | | cabinet | 64.18 | 73.2 | | sidewalk | 69.18 | 82.32 | | person | 82.92 | 91.02 | | earth | 42.26 | 63.19 | | door | 58.19 | 70.37 | | table | 65.52 | 79.25 | | mountain | 64.01 | 79.68 | | plant | 57.78 | 70.08 | | curtain | 76.84 | 87.96 | | chair | 61.43 | 69.87 | | car | 85.74 | 92.56 | | water | 60.03 | 69.69 | | painting | 77.43 | 89.02 | | sofa | 81.99 | 88.52 | | shelf | 47.33 | 60.46 | | house | 58.19 | 82.01 | | sea | 69.42 | 86.04 | | mirror | 79.7 | 88.6 | | rug | 68.31 | 79.16 | | field | 26.0 | 46.71 | | armchair | 63.49 | 82.15 | | seat | 69.08 | 88.97 | | fence | 52.85 | 70.94 | | desk | 58.04 | 78.32 | | rock | 63.47 | 79.79 | | wardrobe | 53.59 | 80.62 | | lamp | 67.86 | 83.4 | | bathtub | 86.49 | 90.93 | | railing | 41.18 | 56.22 | | cushion | 66.79 | 81.64 | | base | 44.69 | 62.23 | | box | 41.21 | 54.41 | | column | 51.99 | 66.97 | | signboard | 40.98 | 53.9 | | chest of drawers | 44.98 | 65.52 | | counter | 54.97 | 71.97 | | sand | 45.31 | 67.14 | | sink | 78.12 | 83.01 | | skyscraper | 47.74 | 57.88 | | fireplace | 70.9 | 94.57 | | refrigerator | 80.65 | 91.03 | | grandstand | 48.65 | 89.69 | | path | 26.22 | 35.46 | | stairs | 37.88 | 46.85 | | runway | 70.43 | 99.14 | | case | 62.44 | 83.94 | | pool table | 93.41 | 97.97 | | pillow | 63.46 | 71.7 | | screen door | 73.18 | 81.97 | | stairway | 53.38 | 60.73 | | river | 17.89 | 36.07 | | bridge | 72.16 | 88.73 | | bookcase | 42.33 | 71.46 | | blind | 40.25 | 47.7 | | coffee table | 57.32 | 87.95 | | toilet | 88.95 | 95.1 | | flower | 42.59 | 53.62 | | book | 49.19 | 68.12 | | hill | 7.11 | 11.94 | | bench | 61.68 | 77.28 | | countertop | 61.45 | 83.41 | | stove | 84.8 | 92.86 | | palm | 53.98 | 76.1 | | kitchen island | 40.92 | 94.57 | | computer | 75.88 | 90.89 | | swivel chair | 52.5 | 86.21 | | boat | 65.52 | 88.65 | | bar | 68.44 | 80.72 | | arcade machine | 82.04 | 88.36 | | hovel | 36.52 | 41.39 | | bus | 91.55 | 96.95 | | towel | 69.45 | 81.56 | | light | 44.13 | 48.83 | | truck | 44.72 | 53.35 | | tower | 27.84 | 43.6 | | chandelier | 68.88 | 79.18 | | awning | 45.24 | 58.42 | | streetlight | 23.77 | 28.39 | | booth | 65.05 | 80.12 | | television receiver | 81.12 | 90.11 | | airplane | 76.63 | 83.47 | | dirt track | 10.35 | 37.29 | | apparel | 55.77 | 78.12 | | pole | 27.36 | 38.56 | | land | 7.42 | 10.74 | | bannister | 19.62 | 23.57 | | escalator | 62.78 | 87.66 | | ottoman | 52.01 | 79.0 | | bottle | 42.77 | 66.45 | | buffet | 46.75 | 53.86 | | poster | 38.73 | 53.48 | | stage | 25.14 | 48.53 | | van | 44.28 | 67.83 | | ship | 89.71 | 94.19 | | fountain | 72.33 | 77.7 | | conveyer belt | 67.85 | 96.27 | | canopy | 50.94 | 70.59 | | washer | 88.58 | 95.52 | | plaything | 44.99 | 58.33 | | swimming pool | 54.13 | 79.25 | | stool | 41.33 | 49.6 | | barrel | 49.78 | 66.63 | | basket | 46.84 | 57.88 | | waterfall | 71.24 | 91.11 | | tent | 90.37 | 97.96 | | bag | 27.48 | 31.63 | | minibike | 72.9 | 87.68 | | cradle | 87.64 | 97.23 | | oven | 59.78 | 74.04 | | ball | 31.62 | 32.33 | | food | 53.14 | 57.75 | | step | 8.92 | 10.01 | | tank | 47.27 | 71.32 | | trade name | 9.3 | 9.54 | | microwave | 89.21 | 95.09 | | pot | 56.36 | 68.12 | | animal | 73.73 | 77.08 | | bicycle | 59.49 | 80.13 | | lake | 57.24 | 64.14 | | dishwasher | 73.52 | 84.68 | | screen | 56.76 | 92.35 | | blanket | 37.78 | 47.24 | | sculpture | 70.69 | 85.22 | | hood | 67.22 | 79.72 | | sconce | 55.02 | 73.17 | | vase | 44.28 | 58.1 | | traffic light | 37.71 | 57.5 | | tray | 23.32 | 29.54 | | ashcan | 50.13 | 67.69 | | fan | 58.47 | 67.58 | | pier | 60.98 | 84.82 | | crt screen | 2.01 | 3.55 | | plate | 61.19 | 72.89 | | monitor | 43.16 | 60.01 | | bulletin board | 56.95 | 72.1 | | shower | 3.98 | 7.55 | | radiator | 64.64 | 82.42 | | glass | 19.71 | 21.15 | | clock | 48.01 | 59.76 | | flag | 64.24 | 75.18 | +---------------------+-------+-------+ 2024-06-16 07:15:52,660 - mmseg - INFO - Summary: 2024-06-16 07:15:52,661 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.54 | 56.93 | 70.67 | +-------+-------+-------+ 2024-06-16 07:15:52,661 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 07:15:52,662 - mmseg - INFO - Iter(val) [250] aAcc: 0.8554, mIoU: 0.5693, mAcc: 0.7067, IoU.wall: 0.8093, IoU.building: 0.8508, IoU.sky: 0.9396, IoU.floor: 0.8386, IoU.tree: 0.7686, IoU.ceiling: 0.8628, IoU.road: 0.8570, IoU.bed : 0.9169, IoU.windowpane: 0.6550, IoU.grass: 0.6439, IoU.cabinet: 0.6418, IoU.sidewalk: 0.6918, IoU.person: 0.8292, IoU.earth: 0.4226, IoU.door: 0.5819, IoU.table: 0.6552, IoU.mountain: 0.6401, IoU.plant: 0.5778, IoU.curtain: 0.7684, IoU.chair: 0.6143, IoU.car: 0.8574, IoU.water: 0.6003, IoU.painting: 0.7743, IoU.sofa: 0.8199, IoU.shelf: 0.4733, IoU.house: 0.5819, IoU.sea: 0.6942, IoU.mirror: 0.7970, IoU.rug: 0.6831, IoU.field: 0.2600, IoU.armchair: 0.6349, IoU.seat: 0.6908, IoU.fence: 0.5285, IoU.desk: 0.5804, IoU.rock: 0.6347, IoU.wardrobe: 0.5359, IoU.lamp: 0.6786, IoU.bathtub: 0.8649, IoU.railing: 0.4118, IoU.cushion: 0.6679, IoU.base: 0.4469, IoU.box: 0.4121, IoU.column: 0.5199, IoU.signboard: 0.4098, IoU.chest of drawers: 0.4498, IoU.counter: 0.5497, IoU.sand: 0.4531, IoU.sink: 0.7812, IoU.skyscraper: 0.4774, IoU.fireplace: 0.7090, IoU.refrigerator: 0.8065, IoU.grandstand: 0.4865, IoU.path: 0.2622, IoU.stairs: 0.3788, IoU.runway: 0.7043, IoU.case: 0.6244, IoU.pool table: 0.9341, IoU.pillow: 0.6346, IoU.screen door: 0.7318, IoU.stairway: 0.5338, IoU.river: 0.1789, IoU.bridge: 0.7216, IoU.bookcase: 0.4233, IoU.blind: 0.4025, IoU.coffee table: 0.5732, IoU.toilet: 0.8895, IoU.flower: 0.4259, IoU.book: 0.4919, IoU.hill: 0.0711, IoU.bench: 0.6168, IoU.countertop: 0.6145, IoU.stove: 0.8480, IoU.palm: 0.5398, IoU.kitchen island: 0.4092, IoU.computer: 0.7588, IoU.swivel chair: 0.5250, IoU.boat: 0.6552, IoU.bar: 0.6844, IoU.arcade machine: 0.8204, IoU.hovel: 0.3652, IoU.bus: 0.9155, IoU.towel: 0.6945, IoU.light: 0.4413, IoU.truck: 0.4472, IoU.tower: 0.2784, IoU.chandelier: 0.6888, IoU.awning: 0.4524, IoU.streetlight: 0.2377, IoU.booth: 0.6505, IoU.television receiver: 0.8112, IoU.airplane: 0.7663, IoU.dirt track: 0.1035, IoU.apparel: 0.5577, IoU.pole: 0.2736, IoU.land: 0.0742, IoU.bannister: 0.1962, IoU.escalator: 0.6278, IoU.ottoman: 0.5201, IoU.bottle: 0.4277, IoU.buffet: 0.4675, IoU.poster: 0.3873, IoU.stage: 0.2514, IoU.van: 0.4428, IoU.ship: 0.8971, IoU.fountain: 0.7233, IoU.conveyer belt: 0.6785, IoU.canopy: 0.5094, IoU.washer: 0.8858, IoU.plaything: 0.4499, IoU.swimming pool: 0.5413, IoU.stool: 0.4133, IoU.barrel: 0.4978, IoU.basket: 0.4684, IoU.waterfall: 0.7124, IoU.tent: 0.9037, IoU.bag: 0.2748, IoU.minibike: 0.7290, IoU.cradle: 0.8764, IoU.oven: 0.5978, IoU.ball: 0.3162, IoU.food: 0.5314, IoU.step: 0.0892, IoU.tank: 0.4727, IoU.trade name: 0.0930, IoU.microwave: 0.8921, IoU.pot: 0.5636, IoU.animal: 0.7373, IoU.bicycle: 0.5949, IoU.lake: 0.5724, IoU.dishwasher: 0.7352, IoU.screen: 0.5676, IoU.blanket: 0.3778, IoU.sculpture: 0.7069, IoU.hood: 0.6722, IoU.sconce: 0.5502, IoU.vase: 0.4428, IoU.traffic light: 0.3771, IoU.tray: 0.2332, IoU.ashcan: 0.5013, IoU.fan: 0.5847, IoU.pier: 0.6098, IoU.crt screen: 0.0201, IoU.plate: 0.6119, IoU.monitor: 0.4316, IoU.bulletin board: 0.5695, IoU.shower: 0.0398, IoU.radiator: 0.6464, IoU.glass: 0.1971, IoU.clock: 0.4801, IoU.flag: 0.6424, Acc.wall: 0.8813, Acc.building: 0.9328, Acc.sky: 0.9677, Acc.floor: 0.9146, Acc.tree: 0.8937, Acc.ceiling: 0.9328, Acc.road: 0.9115, Acc.bed : 0.9661, Acc.windowpane: 0.8332, Acc.grass: 0.7407, Acc.cabinet: 0.7320, Acc.sidewalk: 0.8232, Acc.person: 0.9102, Acc.earth: 0.6319, Acc.door: 0.7037, Acc.table: 0.7925, Acc.mountain: 0.7968, Acc.plant: 0.7008, Acc.curtain: 0.8796, Acc.chair: 0.6987, Acc.car: 0.9256, Acc.water: 0.6969, Acc.painting: 0.8902, Acc.sofa: 0.8852, Acc.shelf: 0.6046, Acc.house: 0.8201, Acc.sea: 0.8604, Acc.mirror: 0.8860, Acc.rug: 0.7916, Acc.field: 0.4671, Acc.armchair: 0.8215, Acc.seat: 0.8897, Acc.fence: 0.7094, Acc.desk: 0.7832, Acc.rock: 0.7979, Acc.wardrobe: 0.8062, Acc.lamp: 0.8340, Acc.bathtub: 0.9093, Acc.railing: 0.5622, Acc.cushion: 0.8164, Acc.base: 0.6223, Acc.box: 0.5441, Acc.column: 0.6697, Acc.signboard: 0.5390, Acc.chest of drawers: 0.6552, Acc.counter: 0.7197, Acc.sand: 0.6714, Acc.sink: 0.8301, Acc.skyscraper: 0.5788, Acc.fireplace: 0.9457, Acc.refrigerator: 0.9103, Acc.grandstand: 0.8969, Acc.path: 0.3546, Acc.stairs: 0.4685, Acc.runway: 0.9914, Acc.case: 0.8394, Acc.pool table: 0.9797, Acc.pillow: 0.7170, Acc.screen door: 0.8197, Acc.stairway: 0.6073, Acc.river: 0.3607, Acc.bridge: 0.8873, Acc.bookcase: 0.7146, Acc.blind: 0.4770, Acc.coffee table: 0.8795, Acc.toilet: 0.9510, Acc.flower: 0.5362, Acc.book: 0.6812, Acc.hill: 0.1194, Acc.bench: 0.7728, Acc.countertop: 0.8341, Acc.stove: 0.9286, Acc.palm: 0.7610, Acc.kitchen island: 0.9457, Acc.computer: 0.9089, Acc.swivel chair: 0.8621, Acc.boat: 0.8865, Acc.bar: 0.8072, Acc.arcade machine: 0.8836, Acc.hovel: 0.4139, Acc.bus: 0.9695, Acc.towel: 0.8156, Acc.light: 0.4883, Acc.truck: 0.5335, Acc.tower: 0.4360, Acc.chandelier: 0.7918, Acc.awning: 0.5842, Acc.streetlight: 0.2839, Acc.booth: 0.8012, Acc.television receiver: 0.9011, Acc.airplane: 0.8347, Acc.dirt track: 0.3729, Acc.apparel: 0.7812, Acc.pole: 0.3856, Acc.land: 0.1074, Acc.bannister: 0.2357, Acc.escalator: 0.8766, Acc.ottoman: 0.7900, Acc.bottle: 0.6645, Acc.buffet: 0.5386, Acc.poster: 0.5348, Acc.stage: 0.4853, Acc.van: 0.6783, Acc.ship: 0.9419, Acc.fountain: 0.7770, Acc.conveyer belt: 0.9627, Acc.canopy: 0.7059, Acc.washer: 0.9552, Acc.plaything: 0.5833, Acc.swimming pool: 0.7925, Acc.stool: 0.4960, Acc.barrel: 0.6663, Acc.basket: 0.5788, Acc.waterfall: 0.9111, Acc.tent: 0.9796, Acc.bag: 0.3163, Acc.minibike: 0.8768, Acc.cradle: 0.9723, Acc.oven: 0.7404, Acc.ball: 0.3233, Acc.food: 0.5775, Acc.step: 0.1001, Acc.tank: 0.7132, Acc.trade name: 0.0954, Acc.microwave: 0.9509, Acc.pot: 0.6812, Acc.animal: 0.7708, Acc.bicycle: 0.8013, Acc.lake: 0.6414, Acc.dishwasher: 0.8468, Acc.screen: 0.9235, Acc.blanket: 0.4724, Acc.sculpture: 0.8522, Acc.hood: 0.7972, Acc.sconce: 0.7317, Acc.vase: 0.5810, Acc.traffic light: 0.5750, Acc.tray: 0.2954, Acc.ashcan: 0.6769, Acc.fan: 0.6758, Acc.pier: 0.8482, Acc.crt screen: 0.0355, Acc.plate: 0.7289, Acc.monitor: 0.6001, Acc.bulletin board: 0.7210, Acc.shower: 0.0755, Acc.radiator: 0.8242, Acc.glass: 0.2115, Acc.clock: 0.5976, Acc.flag: 0.7518 2024-06-16 07:17:13,406 - mmseg - INFO - Iter [22050/80000] lr: 2.347e-06, eta: 1 day, 3:56:48, time: 3.240, data_time: 1.638, memory: 65790, decode.loss_ce: 0.2715, decode.acc_seg: 88.8745, aux.loss_ce: 0.1092, aux.acc_seg: 88.9204, loss: 0.3806 2024-06-16 07:18:33,851 - mmseg - INFO - Iter [22100/80000] lr: 2.345e-06, eta: 1 day, 3:55:05, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2595, decode.acc_seg: 89.0455, aux.loss_ce: 0.1041, aux.acc_seg: 89.1877, loss: 0.3636 2024-06-16 07:19:54,301 - mmseg - INFO - Iter [22150/80000] lr: 2.343e-06, eta: 1 day, 3:53:21, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2587, decode.acc_seg: 89.3199, aux.loss_ce: 0.1044, aux.acc_seg: 89.2571, loss: 0.3631 2024-06-16 07:21:14,725 - mmseg - INFO - Iter [22200/80000] lr: 2.341e-06, eta: 1 day, 3:51:38, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2556, decode.acc_seg: 89.2532, aux.loss_ce: 0.1044, aux.acc_seg: 89.2034, loss: 0.3600 2024-06-16 07:22:35,170 - mmseg - INFO - Iter [22250/80000] lr: 2.339e-06, eta: 1 day, 3:49:55, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2348, decode.acc_seg: 90.0782, aux.loss_ce: 0.0952, aux.acc_seg: 90.0756, loss: 0.3300 2024-06-16 07:23:55,697 - mmseg - INFO - Iter [22300/80000] lr: 2.337e-06, eta: 1 day, 3:48:12, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2686, decode.acc_seg: 89.0060, aux.loss_ce: 0.1085, aux.acc_seg: 89.0313, loss: 0.3771 2024-06-16 07:25:16,125 - mmseg - INFO - Iter [22350/80000] lr: 2.335e-06, eta: 1 day, 3:46:29, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2754, decode.acc_seg: 88.8712, aux.loss_ce: 0.1130, aux.acc_seg: 88.7955, loss: 0.3884 2024-06-16 07:26:36,578 - mmseg - INFO - Iter [22400/80000] lr: 2.333e-06, eta: 1 day, 3:44:46, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2503, decode.acc_seg: 89.5272, aux.loss_ce: 0.1015, aux.acc_seg: 89.4122, loss: 0.3519 2024-06-16 07:27:57,047 - mmseg - INFO - Iter [22450/80000] lr: 2.331e-06, eta: 1 day, 3:43:03, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2629, decode.acc_seg: 88.8519, aux.loss_ce: 0.1059, aux.acc_seg: 88.8598, loss: 0.3688 2024-06-16 07:29:17,576 - mmseg - INFO - Iter [22500/80000] lr: 2.329e-06, eta: 1 day, 3:41:21, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2506, decode.acc_seg: 89.5891, aux.loss_ce: 0.1009, aux.acc_seg: 89.5159, loss: 0.3515 2024-06-16 07:30:38,110 - mmseg - INFO - Iter [22550/80000] lr: 2.327e-06, eta: 1 day, 3:39:39, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2598, decode.acc_seg: 88.3772, aux.loss_ce: 0.1058, aux.acc_seg: 88.4092, loss: 0.3656 2024-06-16 07:31:58,586 - mmseg - INFO - Iter [22600/80000] lr: 2.325e-06, eta: 1 day, 3:37:56, time: 1.610, data_time: 0.008, memory: 65790, decode.loss_ce: 0.2626, decode.acc_seg: 88.8930, aux.loss_ce: 0.1056, aux.acc_seg: 88.8764, loss: 0.3682 2024-06-16 07:33:19,041 - mmseg - INFO - Iter [22650/80000] lr: 2.323e-06, eta: 1 day, 3:36:14, time: 1.609, data_time: 0.008, memory: 65790, decode.loss_ce: 0.2750, decode.acc_seg: 88.7868, aux.loss_ce: 0.1093, aux.acc_seg: 88.9285, loss: 0.3843 2024-06-16 07:34:39,467 - mmseg - INFO - Iter [22700/80000] lr: 2.321e-06, eta: 1 day, 3:34:32, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2983, decode.acc_seg: 87.7054, aux.loss_ce: 0.1189, aux.acc_seg: 87.8501, loss: 0.4172 2024-06-16 07:36:19,822 - mmseg - INFO - Iter [22750/80000] lr: 2.319e-06, eta: 1 day, 3:33:40, time: 2.007, data_time: 0.404, memory: 65790, decode.loss_ce: 0.2417, decode.acc_seg: 89.8709, aux.loss_ce: 0.0988, aux.acc_seg: 89.8340, loss: 0.3405 2024-06-16 07:37:40,286 - mmseg - INFO - Iter [22800/80000] lr: 2.316e-06, eta: 1 day, 3:31:57, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2477, decode.acc_seg: 89.4814, aux.loss_ce: 0.1006, aux.acc_seg: 89.4502, loss: 0.3483 2024-06-16 07:39:00,869 - mmseg - INFO - Iter [22850/80000] lr: 2.314e-06, eta: 1 day, 3:30:16, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2519, decode.acc_seg: 89.4095, aux.loss_ce: 0.1017, aux.acc_seg: 89.3986, loss: 0.3535 2024-06-16 07:40:21,416 - mmseg - INFO - Iter [22900/80000] lr: 2.312e-06, eta: 1 day, 3:28:34, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2680, decode.acc_seg: 88.8520, aux.loss_ce: 0.1071, aux.acc_seg: 88.7863, loss: 0.3751 2024-06-16 07:41:41,889 - mmseg - INFO - Iter [22950/80000] lr: 2.310e-06, eta: 1 day, 3:26:52, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2488, decode.acc_seg: 89.9129, aux.loss_ce: 0.1021, aux.acc_seg: 89.8028, loss: 0.3509 2024-06-16 07:43:02,316 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 07:43:02,316 - mmseg - INFO - Iter [23000/80000] lr: 2.308e-06, eta: 1 day, 3:25:10, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2517, decode.acc_seg: 89.3632, aux.loss_ce: 0.1026, aux.acc_seg: 89.2857, loss: 0.3543 2024-06-16 07:44:26,083 - mmseg - INFO - per class results: 2024-06-16 07:44:26,089 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 80.91 | 88.73 | | building | 85.09 | 93.64 | | sky | 94.24 | 96.9 | | floor | 84.53 | 91.24 | | tree | 76.77 | 88.6 | | ceiling | 86.66 | 93.87 | | road | 86.07 | 92.08 | | bed | 90.46 | 96.8 | | windowpane | 64.62 | 77.72 | | grass | 67.2 | 78.71 | | cabinet | 65.04 | 75.08 | | sidewalk | 69.84 | 84.25 | | person | 83.12 | 91.36 | | earth | 40.32 | 52.22 | | door | 57.56 | 76.76 | | table | 68.72 | 81.76 | | mountain | 62.33 | 78.05 | | plant | 58.06 | 68.41 | | curtain | 75.8 | 91.04 | | chair | 62.03 | 73.29 | | car | 85.58 | 92.82 | | water | 64.25 | 80.0 | | painting | 75.83 | 89.38 | | sofa | 81.38 | 91.6 | | shelf | 45.58 | 60.84 | | house | 56.71 | 72.02 | | sea | 75.14 | 89.38 | | mirror | 75.16 | 82.45 | | rug | 70.01 | 82.94 | | field | 30.7 | 63.71 | | armchair | 59.53 | 79.44 | | seat | 69.95 | 88.72 | | fence | 49.84 | 69.68 | | desk | 57.7 | 71.39 | | rock | 60.1 | 76.61 | | wardrobe | 52.32 | 66.64 | | lamp | 66.92 | 78.18 | | bathtub | 87.79 | 90.24 | | railing | 41.43 | 59.87 | | cushion | 67.22 | 83.51 | | base | 43.58 | 61.34 | | box | 39.72 | 52.69 | | column | 53.54 | 66.77 | | signboard | 39.79 | 53.18 | | chest of drawers | 38.82 | 63.08 | | counter | 55.55 | 67.98 | | sand | 52.87 | 85.94 | | sink | 80.09 | 87.94 | | skyscraper | 49.06 | 61.33 | | fireplace | 76.07 | 93.45 | | refrigerator | 84.76 | 94.41 | | grandstand | 47.92 | 90.14 | | path | 31.93 | 42.97 | | stairs | 34.64 | 43.05 | | runway | 69.21 | 92.52 | | case | 68.67 | 83.9 | | pool table | 92.59 | 97.6 | | pillow | 54.71 | 59.28 | | screen door | 62.62 | 65.53 | | stairway | 48.6 | 58.89 | | river | 14.71 | 20.16 | | bridge | 71.51 | 84.47 | | bookcase | 38.38 | 65.21 | | blind | 43.91 | 53.94 | | coffee table | 66.08 | 80.24 | | toilet | 89.46 | 94.14 | | flower | 43.24 | 60.22 | | book | 49.95 | 65.01 | | hill | 5.93 | 13.2 | | bench | 61.49 | 74.82 | | countertop | 61.12 | 81.32 | | stove | 86.06 | 93.05 | | palm | 53.62 | 82.88 | | kitchen island | 48.94 | 79.61 | | computer | 77.99 | 89.19 | | swivel chair | 51.52 | 77.71 | | boat | 67.81 | 89.06 | | bar | 62.47 | 83.57 | | arcade machine | 78.89 | 85.15 | | hovel | 25.18 | 26.64 | | bus | 91.05 | 95.03 | | towel | 72.28 | 83.1 | | light | 43.21 | 49.62 | | truck | 44.05 | 57.94 | | tower | 26.01 | 37.75 | | chandelier | 68.61 | 85.45 | | awning | 37.88 | 50.58 | | streetlight | 27.36 | 36.8 | | booth | 40.92 | 62.73 | | television receiver | 80.89 | 86.61 | | airplane | 82.02 | 94.05 | | dirt track | 0.0 | 0.0 | | apparel | 57.3 | 72.5 | | pole | 25.81 | 36.52 | | land | 4.82 | 6.31 | | bannister | 18.41 | 23.07 | | escalator | 64.46 | 84.35 | | ottoman | 55.5 | 75.93 | | bottle | 41.93 | 75.58 | | buffet | 54.79 | 60.78 | | poster | 36.43 | 48.2 | | stage | 20.91 | 37.59 | | van | 38.33 | 66.34 | | ship | 76.41 | 80.97 | | fountain | 47.81 | 49.84 | | conveyer belt | 74.98 | 96.67 | | canopy | 47.37 | 67.51 | | washer | 84.02 | 89.39 | | plaything | 36.01 | 47.82 | | swimming pool | 52.8 | 76.99 | | stool | 47.21 | 62.7 | | barrel | 54.13 | 65.08 | | basket | 47.28 | 58.38 | | waterfall | 70.33 | 85.1 | | tent | 90.54 | 98.08 | | bag | 29.6 | 33.81 | | minibike | 71.85 | 89.3 | | cradle | 87.58 | 96.8 | | oven | 63.79 | 74.37 | | ball | 50.35 | 52.53 | | food | 63.67 | 78.76 | | step | 10.97 | 12.74 | | tank | 60.47 | 63.72 | | trade name | 22.03 | 24.23 | | microwave | 89.12 | 92.45 | | pot | 57.38 | 68.29 | | animal | 73.59 | 79.4 | | bicycle | 61.2 | 80.94 | | lake | 63.02 | 63.58 | | dishwasher | 68.62 | 84.05 | | screen | 48.09 | 73.35 | | blanket | 26.16 | 29.6 | | sculpture | 57.17 | 88.22 | | hood | 72.01 | 87.24 | | sconce | 54.87 | 64.33 | | vase | 39.3 | 68.66 | | traffic light | 37.08 | 52.55 | | tray | 21.8 | 30.64 | | ashcan | 49.23 | 67.68 | | fan | 59.38 | 70.26 | | pier | 37.01 | 39.71 | | crt screen | 3.68 | 9.03 | | plate | 62.67 | 73.73 | | monitor | 36.61 | 44.04 | | bulletin board | 55.44 | 72.09 | | shower | 0.0 | 0.0 | | radiator | 65.43 | 76.3 | | glass | 19.66 | 21.22 | | clock | 48.27 | 62.38 | | flag | 64.66 | 79.68 | +---------------------+-------+-------+ 2024-06-16 07:44:26,089 - mmseg - INFO - Summary: 2024-06-16 07:44:26,090 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.64 | 56.33 | 69.15 | +-------+-------+-------+ 2024-06-16 07:44:26,090 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 07:44:26,091 - mmseg - INFO - Iter(val) [250] aAcc: 0.8564, mIoU: 0.5633, mAcc: 0.6915, IoU.wall: 0.8091, IoU.building: 0.8509, IoU.sky: 0.9424, IoU.floor: 0.8453, IoU.tree: 0.7677, IoU.ceiling: 0.8666, IoU.road: 0.8607, IoU.bed : 0.9046, IoU.windowpane: 0.6462, IoU.grass: 0.6720, IoU.cabinet: 0.6504, IoU.sidewalk: 0.6984, IoU.person: 0.8312, IoU.earth: 0.4032, IoU.door: 0.5756, IoU.table: 0.6872, IoU.mountain: 0.6233, IoU.plant: 0.5806, IoU.curtain: 0.7580, IoU.chair: 0.6203, IoU.car: 0.8558, IoU.water: 0.6425, IoU.painting: 0.7583, IoU.sofa: 0.8138, IoU.shelf: 0.4558, IoU.house: 0.5671, IoU.sea: 0.7514, IoU.mirror: 0.7516, IoU.rug: 0.7001, IoU.field: 0.3070, IoU.armchair: 0.5953, IoU.seat: 0.6995, IoU.fence: 0.4984, IoU.desk: 0.5770, IoU.rock: 0.6010, IoU.wardrobe: 0.5232, IoU.lamp: 0.6692, IoU.bathtub: 0.8779, IoU.railing: 0.4143, IoU.cushion: 0.6722, IoU.base: 0.4358, IoU.box: 0.3972, IoU.column: 0.5354, IoU.signboard: 0.3979, IoU.chest of drawers: 0.3882, IoU.counter: 0.5555, IoU.sand: 0.5287, IoU.sink: 0.8009, IoU.skyscraper: 0.4906, IoU.fireplace: 0.7607, IoU.refrigerator: 0.8476, IoU.grandstand: 0.4792, IoU.path: 0.3193, IoU.stairs: 0.3464, IoU.runway: 0.6921, IoU.case: 0.6867, IoU.pool table: 0.9259, IoU.pillow: 0.5471, IoU.screen door: 0.6262, IoU.stairway: 0.4860, IoU.river: 0.1471, IoU.bridge: 0.7151, IoU.bookcase: 0.3838, IoU.blind: 0.4391, IoU.coffee table: 0.6608, IoU.toilet: 0.8946, IoU.flower: 0.4324, IoU.book: 0.4995, IoU.hill: 0.0593, IoU.bench: 0.6149, IoU.countertop: 0.6112, IoU.stove: 0.8606, IoU.palm: 0.5362, IoU.kitchen island: 0.4894, IoU.computer: 0.7799, IoU.swivel chair: 0.5152, IoU.boat: 0.6781, IoU.bar: 0.6247, IoU.arcade machine: 0.7889, IoU.hovel: 0.2518, IoU.bus: 0.9105, IoU.towel: 0.7228, IoU.light: 0.4321, IoU.truck: 0.4405, IoU.tower: 0.2601, IoU.chandelier: 0.6861, IoU.awning: 0.3788, IoU.streetlight: 0.2736, IoU.booth: 0.4092, IoU.television receiver: 0.8089, IoU.airplane: 0.8202, IoU.dirt track: 0.0000, IoU.apparel: 0.5730, IoU.pole: 0.2581, IoU.land: 0.0482, IoU.bannister: 0.1841, IoU.escalator: 0.6446, IoU.ottoman: 0.5550, IoU.bottle: 0.4193, IoU.buffet: 0.5479, IoU.poster: 0.3643, IoU.stage: 0.2091, IoU.van: 0.3833, IoU.ship: 0.7641, IoU.fountain: 0.4781, IoU.conveyer belt: 0.7498, IoU.canopy: 0.4737, IoU.washer: 0.8402, IoU.plaything: 0.3601, IoU.swimming pool: 0.5280, IoU.stool: 0.4721, IoU.barrel: 0.5413, IoU.basket: 0.4728, IoU.waterfall: 0.7033, IoU.tent: 0.9054, IoU.bag: 0.2960, IoU.minibike: 0.7185, IoU.cradle: 0.8758, IoU.oven: 0.6379, IoU.ball: 0.5035, IoU.food: 0.6367, IoU.step: 0.1097, IoU.tank: 0.6047, IoU.trade name: 0.2203, IoU.microwave: 0.8912, IoU.pot: 0.5738, IoU.animal: 0.7359, IoU.bicycle: 0.6120, IoU.lake: 0.6302, IoU.dishwasher: 0.6862, IoU.screen: 0.4809, IoU.blanket: 0.2616, IoU.sculpture: 0.5717, IoU.hood: 0.7201, IoU.sconce: 0.5487, IoU.vase: 0.3930, IoU.traffic light: 0.3708, IoU.tray: 0.2180, IoU.ashcan: 0.4923, IoU.fan: 0.5938, IoU.pier: 0.3701, IoU.crt screen: 0.0368, IoU.plate: 0.6267, IoU.monitor: 0.3661, IoU.bulletin board: 0.5544, IoU.shower: 0.0000, IoU.radiator: 0.6543, IoU.glass: 0.1966, IoU.clock: 0.4827, IoU.flag: 0.6466, Acc.wall: 0.8873, Acc.building: 0.9364, Acc.sky: 0.9690, Acc.floor: 0.9124, Acc.tree: 0.8860, Acc.ceiling: 0.9387, Acc.road: 0.9208, Acc.bed : 0.9680, Acc.windowpane: 0.7772, Acc.grass: 0.7871, Acc.cabinet: 0.7508, Acc.sidewalk: 0.8425, Acc.person: 0.9136, Acc.earth: 0.5222, Acc.door: 0.7676, Acc.table: 0.8176, Acc.mountain: 0.7805, Acc.plant: 0.6841, Acc.curtain: 0.9104, Acc.chair: 0.7329, Acc.car: 0.9282, Acc.water: 0.8000, Acc.painting: 0.8938, Acc.sofa: 0.9160, Acc.shelf: 0.6084, Acc.house: 0.7202, Acc.sea: 0.8938, Acc.mirror: 0.8245, Acc.rug: 0.8294, Acc.field: 0.6371, Acc.armchair: 0.7944, Acc.seat: 0.8872, Acc.fence: 0.6968, Acc.desk: 0.7139, Acc.rock: 0.7661, Acc.wardrobe: 0.6664, Acc.lamp: 0.7818, Acc.bathtub: 0.9024, Acc.railing: 0.5987, Acc.cushion: 0.8351, Acc.base: 0.6134, Acc.box: 0.5269, Acc.column: 0.6677, Acc.signboard: 0.5318, Acc.chest of drawers: 0.6308, Acc.counter: 0.6798, Acc.sand: 0.8594, Acc.sink: 0.8794, Acc.skyscraper: 0.6133, Acc.fireplace: 0.9345, Acc.refrigerator: 0.9441, Acc.grandstand: 0.9014, Acc.path: 0.4297, Acc.stairs: 0.4305, Acc.runway: 0.9252, Acc.case: 0.8390, Acc.pool table: 0.9760, Acc.pillow: 0.5928, Acc.screen door: 0.6553, Acc.stairway: 0.5889, Acc.river: 0.2016, Acc.bridge: 0.8447, Acc.bookcase: 0.6521, Acc.blind: 0.5394, Acc.coffee table: 0.8024, Acc.toilet: 0.9414, Acc.flower: 0.6022, Acc.book: 0.6501, Acc.hill: 0.1320, Acc.bench: 0.7482, Acc.countertop: 0.8132, Acc.stove: 0.9305, Acc.palm: 0.8288, Acc.kitchen island: 0.7961, Acc.computer: 0.8919, Acc.swivel chair: 0.7771, Acc.boat: 0.8906, Acc.bar: 0.8357, Acc.arcade machine: 0.8515, Acc.hovel: 0.2664, Acc.bus: 0.9503, Acc.towel: 0.8310, Acc.light: 0.4962, Acc.truck: 0.5794, Acc.tower: 0.3775, Acc.chandelier: 0.8545, Acc.awning: 0.5058, Acc.streetlight: 0.3680, Acc.booth: 0.6273, Acc.television receiver: 0.8661, Acc.airplane: 0.9405, Acc.dirt track: 0.0000, Acc.apparel: 0.7250, Acc.pole: 0.3652, Acc.land: 0.0631, Acc.bannister: 0.2307, Acc.escalator: 0.8435, Acc.ottoman: 0.7593, Acc.bottle: 0.7558, Acc.buffet: 0.6078, Acc.poster: 0.4820, Acc.stage: 0.3759, Acc.van: 0.6634, Acc.ship: 0.8097, Acc.fountain: 0.4984, Acc.conveyer belt: 0.9667, Acc.canopy: 0.6751, Acc.washer: 0.8939, Acc.plaything: 0.4782, Acc.swimming pool: 0.7699, Acc.stool: 0.6270, Acc.barrel: 0.6508, Acc.basket: 0.5838, Acc.waterfall: 0.8510, Acc.tent: 0.9808, Acc.bag: 0.3381, Acc.minibike: 0.8930, Acc.cradle: 0.9680, Acc.oven: 0.7437, Acc.ball: 0.5253, Acc.food: 0.7876, Acc.step: 0.1274, Acc.tank: 0.6372, Acc.trade name: 0.2423, Acc.microwave: 0.9245, Acc.pot: 0.6829, Acc.animal: 0.7940, Acc.bicycle: 0.8094, Acc.lake: 0.6358, Acc.dishwasher: 0.8405, Acc.screen: 0.7335, Acc.blanket: 0.2960, Acc.sculpture: 0.8822, Acc.hood: 0.8724, Acc.sconce: 0.6433, Acc.vase: 0.6866, Acc.traffic light: 0.5255, Acc.tray: 0.3064, Acc.ashcan: 0.6768, Acc.fan: 0.7026, Acc.pier: 0.3971, Acc.crt screen: 0.0903, Acc.plate: 0.7373, Acc.monitor: 0.4404, Acc.bulletin board: 0.7209, Acc.shower: 0.0000, Acc.radiator: 0.7630, Acc.glass: 0.2122, Acc.clock: 0.6238, Acc.flag: 0.7968 2024-06-16 07:45:46,850 - mmseg - INFO - Iter [23050/80000] lr: 2.306e-06, eta: 1 day, 3:26:56, time: 3.291, data_time: 1.689, memory: 65790, decode.loss_ce: 0.2532, decode.acc_seg: 89.3539, aux.loss_ce: 0.1030, aux.acc_seg: 89.2456, loss: 0.3562 2024-06-16 07:47:07,333 - mmseg - INFO - Iter [23100/80000] lr: 2.304e-06, eta: 1 day, 3:25:14, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2587, decode.acc_seg: 89.1883, aux.loss_ce: 0.1037, aux.acc_seg: 89.1885, loss: 0.3624 2024-06-16 07:48:27,856 - mmseg - INFO - Iter [23150/80000] lr: 2.302e-06, eta: 1 day, 3:23:32, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2521, decode.acc_seg: 89.2078, aux.loss_ce: 0.1018, aux.acc_seg: 89.1988, loss: 0.3539 2024-06-16 07:49:48,397 - mmseg - INFO - Iter [23200/80000] lr: 2.300e-06, eta: 1 day, 3:21:50, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2593, decode.acc_seg: 88.9483, aux.loss_ce: 0.1047, aux.acc_seg: 89.1117, loss: 0.3640 2024-06-16 07:51:08,954 - mmseg - INFO - Iter [23250/80000] lr: 2.298e-06, eta: 1 day, 3:20:08, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2518, decode.acc_seg: 89.2668, aux.loss_ce: 0.1005, aux.acc_seg: 89.5517, loss: 0.3523 2024-06-16 07:52:29,423 - mmseg - INFO - Iter [23300/80000] lr: 2.296e-06, eta: 1 day, 3:18:26, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2760, decode.acc_seg: 88.6466, aux.loss_ce: 0.1120, aux.acc_seg: 88.4333, loss: 0.3880 2024-06-16 07:53:49,962 - mmseg - INFO - Iter [23350/80000] lr: 2.294e-06, eta: 1 day, 3:16:45, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2612, decode.acc_seg: 89.2356, aux.loss_ce: 0.1046, aux.acc_seg: 89.2219, loss: 0.3658 2024-06-16 07:55:10,437 - mmseg - INFO - Iter [23400/80000] lr: 2.292e-06, eta: 1 day, 3:15:03, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2568, decode.acc_seg: 89.3752, aux.loss_ce: 0.1022, aux.acc_seg: 89.3767, loss: 0.3590 2024-06-16 07:56:31,022 - mmseg - INFO - Iter [23450/80000] lr: 2.290e-06, eta: 1 day, 3:13:22, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2595, decode.acc_seg: 89.0596, aux.loss_ce: 0.1056, aux.acc_seg: 88.9608, loss: 0.3651 2024-06-16 07:57:51,619 - mmseg - INFO - Iter [23500/80000] lr: 2.288e-06, eta: 1 day, 3:11:40, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2485, decode.acc_seg: 89.8499, aux.loss_ce: 0.1012, aux.acc_seg: 89.7803, loss: 0.3497 2024-06-16 07:59:12,172 - mmseg - INFO - Iter [23550/80000] lr: 2.286e-06, eta: 1 day, 3:09:59, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2562, decode.acc_seg: 89.3141, aux.loss_ce: 0.1026, aux.acc_seg: 89.3167, loss: 0.3587 2024-06-16 08:00:32,680 - mmseg - INFO - Iter [23600/80000] lr: 2.284e-06, eta: 1 day, 3:08:18, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2352, decode.acc_seg: 90.1422, aux.loss_ce: 0.0956, aux.acc_seg: 90.1552, loss: 0.3308 2024-06-16 08:01:53,151 - mmseg - INFO - Iter [23650/80000] lr: 2.282e-06, eta: 1 day, 3:06:37, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2541, decode.acc_seg: 89.1637, aux.loss_ce: 0.1032, aux.acc_seg: 89.1913, loss: 0.3573 2024-06-16 08:03:13,760 - mmseg - INFO - Iter [23700/80000] lr: 2.280e-06, eta: 1 day, 3:04:56, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2659, decode.acc_seg: 88.7353, aux.loss_ce: 0.1074, aux.acc_seg: 88.7406, loss: 0.3733 2024-06-16 08:04:34,248 - mmseg - INFO - Iter [23750/80000] lr: 2.278e-06, eta: 1 day, 3:03:15, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2683, decode.acc_seg: 88.9720, aux.loss_ce: 0.1088, aux.acc_seg: 88.8081, loss: 0.3772 2024-06-16 08:05:54,951 - mmseg - INFO - Iter [23800/80000] lr: 2.276e-06, eta: 1 day, 3:01:34, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2614, decode.acc_seg: 89.1212, aux.loss_ce: 0.1047, aux.acc_seg: 89.0968, loss: 0.3661 2024-06-16 08:07:15,680 - mmseg - INFO - Iter [23850/80000] lr: 2.274e-06, eta: 1 day, 2:59:54, time: 1.615, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2593, decode.acc_seg: 89.2406, aux.loss_ce: 0.1058, aux.acc_seg: 89.1818, loss: 0.3651 2024-06-16 08:08:36,167 - mmseg - INFO - Iter [23900/80000] lr: 2.272e-06, eta: 1 day, 2:58:13, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2450, decode.acc_seg: 89.8252, aux.loss_ce: 0.0996, aux.acc_seg: 89.6696, loss: 0.3446 2024-06-16 08:09:56,702 - mmseg - INFO - Iter [23950/80000] lr: 2.270e-06, eta: 1 day, 2:56:33, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2659, decode.acc_seg: 88.9601, aux.loss_ce: 0.1073, aux.acc_seg: 88.8873, loss: 0.3732 2024-06-16 08:11:19,361 - mmseg - INFO - Saving checkpoint at 24000 iterations 2024-06-16 08:12:32,864 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 08:12:32,864 - mmseg - INFO - Iter [24000/80000] lr: 2.268e-06, eta: 1 day, 2:57:49, time: 3.123, data_time: 0.049, memory: 65790, decode.loss_ce: 0.2542, decode.acc_seg: 89.2504, aux.loss_ce: 0.1026, aux.acc_seg: 89.2954, loss: 0.3568 2024-06-16 08:13:55,074 - mmseg - INFO - per class results: 2024-06-16 08:13:55,081 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 80.22 | 87.9 | | building | 84.36 | 93.48 | | sky | 94.46 | 96.89 | | floor | 83.77 | 90.93 | | tree | 75.93 | 89.22 | | ceiling | 86.47 | 92.95 | | road | 85.3 | 88.7 | | bed | 91.12 | 97.18 | | windowpane | 65.51 | 79.9 | | grass | 66.97 | 84.34 | | cabinet | 67.81 | 81.09 | | sidewalk | 68.48 | 82.16 | | person | 83.31 | 92.87 | | earth | 38.83 | 50.24 | | door | 59.48 | 76.12 | | table | 68.34 | 81.34 | | mountain | 59.66 | 72.9 | | plant | 54.87 | 64.57 | | curtain | 76.08 | 91.36 | | chair | 61.77 | 71.89 | | car | 85.0 | 93.93 | | water | 60.46 | 72.7 | | painting | 72.67 | 91.54 | | sofa | 80.95 | 88.48 | | shelf | 49.67 | 64.24 | | house | 50.52 | 69.53 | | sea | 67.89 | 82.7 | | mirror | 75.71 | 85.69 | | rug | 66.33 | 76.41 | | field | 31.51 | 49.53 | | armchair | 60.6 | 81.32 | | seat | 69.5 | 87.72 | | fence | 52.71 | 62.54 | | desk | 59.35 | 75.1 | | rock | 55.26 | 79.74 | | wardrobe | 55.86 | 71.04 | | lamp | 68.36 | 83.09 | | bathtub | 86.11 | 89.44 | | railing | 41.67 | 58.06 | | cushion | 69.35 | 82.1 | | base | 44.62 | 67.34 | | box | 40.67 | 56.56 | | column | 54.51 | 73.24 | | signboard | 40.91 | 53.39 | | chest of drawers | 44.14 | 63.53 | | counter | 54.48 | 59.45 | | sand | 54.19 | 88.09 | | sink | 76.57 | 83.89 | | skyscraper | 47.5 | 57.53 | | fireplace | 71.44 | 95.47 | | refrigerator | 84.44 | 89.64 | | grandstand | 48.85 | 84.45 | | path | 31.93 | 50.62 | | stairs | 24.55 | 28.07 | | runway | 74.18 | 97.06 | | case | 69.25 | 88.89 | | pool table | 92.84 | 98.15 | | pillow | 62.78 | 72.42 | | screen door | 77.1 | 84.94 | | stairway | 39.95 | 59.72 | | river | 14.8 | 29.84 | | bridge | 49.98 | 87.8 | | bookcase | 43.0 | 52.2 | | blind | 38.67 | 43.42 | | coffee table | 65.32 | 87.04 | | toilet | 89.12 | 93.83 | | flower | 49.93 | 62.15 | | book | 52.79 | 73.38 | | hill | 7.04 | 14.39 | | bench | 57.36 | 63.61 | | countertop | 63.21 | 82.18 | | stove | 85.25 | 91.05 | | palm | 52.58 | 81.76 | | kitchen island | 51.31 | 80.41 | | computer | 77.8 | 91.47 | | swivel chair | 49.99 | 91.07 | | boat | 66.74 | 92.13 | | bar | 63.83 | 88.78 | | arcade machine | 82.3 | 87.44 | | hovel | 15.85 | 17.25 | | bus | 91.67 | 96.47 | | towel | 74.4 | 90.28 | | light | 49.05 | 59.97 | | truck | 46.33 | 63.85 | | tower | 33.78 | 59.99 | | chandelier | 69.52 | 86.23 | | awning | 45.56 | 58.71 | | streetlight | 27.39 | 36.87 | | booth | 42.97 | 80.39 | | television receiver | 82.16 | 88.65 | | airplane | 84.48 | 95.42 | | dirt track | 3.57 | 9.58 | | apparel | 59.4 | 78.91 | | pole | 23.68 | 33.71 | | land | 2.64 | 4.04 | | bannister | 17.53 | 22.68 | | escalator | 62.42 | 85.84 | | ottoman | 47.95 | 58.69 | | bottle | 40.78 | 64.07 | | buffet | 55.83 | 62.34 | | poster | 34.95 | 47.04 | | stage | 22.33 | 42.71 | | van | 43.48 | 59.04 | | ship | 73.81 | 79.87 | | fountain | 49.39 | 52.83 | | conveyer belt | 80.25 | 94.6 | | canopy | 45.23 | 74.15 | | washer | 87.15 | 93.78 | | plaything | 30.07 | 42.65 | | swimming pool | 54.03 | 78.6 | | stool | 39.48 | 64.83 | | barrel | 58.85 | 76.41 | | basket | 42.72 | 55.4 | | waterfall | 71.39 | 76.44 | | tent | 88.91 | 98.28 | | bag | 15.73 | 16.72 | | minibike | 70.55 | 91.21 | | cradle | 80.26 | 97.7 | | oven | 57.56 | 69.57 | | ball | 27.28 | 27.84 | | food | 57.45 | 65.96 | | step | 12.58 | 14.54 | | tank | 55.19 | 73.68 | | trade name | 30.74 | 34.76 | | microwave | 86.2 | 95.87 | | pot | 58.12 | 70.85 | | animal | 65.36 | 67.56 | | bicycle | 59.6 | 79.15 | | lake | 58.42 | 67.34 | | dishwasher | 73.88 | 77.83 | | screen | 57.04 | 96.19 | | blanket | 28.72 | 32.54 | | sculpture | 70.71 | 87.26 | | hood | 69.49 | 84.33 | | sconce | 53.07 | 77.55 | | vase | 45.16 | 62.02 | | traffic light | 37.41 | 54.99 | | tray | 18.31 | 25.55 | | ashcan | 50.16 | 65.57 | | fan | 62.34 | 84.77 | | pier | 72.17 | 80.87 | | crt screen | 1.62 | 1.71 | | plate | 61.64 | 77.75 | | monitor | 66.7 | 85.43 | | bulletin board | 53.4 | 64.04 | | shower | 4.78 | 5.08 | | radiator | 64.49 | 80.77 | | glass | 16.91 | 17.69 | | clock | 47.63 | 58.97 | | flag | 65.01 | 80.0 | +---------------------+-------+-------+ 2024-06-16 08:13:55,081 - mmseg - INFO - Summary: 2024-06-16 08:13:55,081 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.38 | 56.42 | 70.14 | +-------+-------+-------+ 2024-06-16 08:13:55,082 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 08:13:55,082 - mmseg - INFO - Iter(val) [250] aAcc: 0.8538, mIoU: 0.5642, mAcc: 0.7014, IoU.wall: 0.8022, IoU.building: 0.8436, IoU.sky: 0.9446, IoU.floor: 0.8377, IoU.tree: 0.7593, IoU.ceiling: 0.8647, IoU.road: 0.8530, IoU.bed : 0.9112, IoU.windowpane: 0.6551, IoU.grass: 0.6697, IoU.cabinet: 0.6781, IoU.sidewalk: 0.6848, IoU.person: 0.8331, IoU.earth: 0.3883, IoU.door: 0.5948, IoU.table: 0.6834, IoU.mountain: 0.5966, IoU.plant: 0.5487, IoU.curtain: 0.7608, IoU.chair: 0.6177, IoU.car: 0.8500, IoU.water: 0.6046, IoU.painting: 0.7267, IoU.sofa: 0.8095, IoU.shelf: 0.4967, IoU.house: 0.5052, IoU.sea: 0.6789, IoU.mirror: 0.7571, IoU.rug: 0.6633, IoU.field: 0.3151, IoU.armchair: 0.6060, IoU.seat: 0.6950, IoU.fence: 0.5271, IoU.desk: 0.5935, IoU.rock: 0.5526, IoU.wardrobe: 0.5586, IoU.lamp: 0.6836, IoU.bathtub: 0.8611, IoU.railing: 0.4167, IoU.cushion: 0.6935, IoU.base: 0.4462, IoU.box: 0.4067, IoU.column: 0.5451, IoU.signboard: 0.4091, IoU.chest of drawers: 0.4414, IoU.counter: 0.5448, IoU.sand: 0.5419, IoU.sink: 0.7657, IoU.skyscraper: 0.4750, IoU.fireplace: 0.7144, IoU.refrigerator: 0.8444, IoU.grandstand: 0.4885, IoU.path: 0.3193, IoU.stairs: 0.2455, IoU.runway: 0.7418, IoU.case: 0.6925, IoU.pool table: 0.9284, IoU.pillow: 0.6278, IoU.screen door: 0.7710, IoU.stairway: 0.3995, IoU.river: 0.1480, IoU.bridge: 0.4998, IoU.bookcase: 0.4300, IoU.blind: 0.3867, IoU.coffee table: 0.6532, IoU.toilet: 0.8912, IoU.flower: 0.4993, IoU.book: 0.5279, IoU.hill: 0.0704, IoU.bench: 0.5736, IoU.countertop: 0.6321, IoU.stove: 0.8525, IoU.palm: 0.5258, IoU.kitchen island: 0.5131, IoU.computer: 0.7780, IoU.swivel chair: 0.4999, IoU.boat: 0.6674, IoU.bar: 0.6383, IoU.arcade machine: 0.8230, IoU.hovel: 0.1585, IoU.bus: 0.9167, IoU.towel: 0.7440, IoU.light: 0.4905, IoU.truck: 0.4633, IoU.tower: 0.3378, IoU.chandelier: 0.6952, IoU.awning: 0.4556, IoU.streetlight: 0.2739, IoU.booth: 0.4297, IoU.television receiver: 0.8216, IoU.airplane: 0.8448, IoU.dirt track: 0.0357, IoU.apparel: 0.5940, IoU.pole: 0.2368, IoU.land: 0.0264, IoU.bannister: 0.1753, IoU.escalator: 0.6242, IoU.ottoman: 0.4795, IoU.bottle: 0.4078, IoU.buffet: 0.5583, IoU.poster: 0.3495, IoU.stage: 0.2233, IoU.van: 0.4348, IoU.ship: 0.7381, IoU.fountain: 0.4939, IoU.conveyer belt: 0.8025, IoU.canopy: 0.4523, IoU.washer: 0.8715, IoU.plaything: 0.3007, IoU.swimming pool: 0.5403, IoU.stool: 0.3948, IoU.barrel: 0.5885, IoU.basket: 0.4272, IoU.waterfall: 0.7139, IoU.tent: 0.8891, IoU.bag: 0.1573, IoU.minibike: 0.7055, IoU.cradle: 0.8026, IoU.oven: 0.5756, IoU.ball: 0.2728, IoU.food: 0.5745, IoU.step: 0.1258, IoU.tank: 0.5519, IoU.trade name: 0.3074, IoU.microwave: 0.8620, IoU.pot: 0.5812, IoU.animal: 0.6536, IoU.bicycle: 0.5960, IoU.lake: 0.5842, IoU.dishwasher: 0.7388, IoU.screen: 0.5704, IoU.blanket: 0.2872, IoU.sculpture: 0.7071, IoU.hood: 0.6949, IoU.sconce: 0.5307, IoU.vase: 0.4516, IoU.traffic light: 0.3741, IoU.tray: 0.1831, IoU.ashcan: 0.5016, IoU.fan: 0.6234, IoU.pier: 0.7217, IoU.crt screen: 0.0162, IoU.plate: 0.6164, IoU.monitor: 0.6670, IoU.bulletin board: 0.5340, IoU.shower: 0.0478, IoU.radiator: 0.6449, IoU.glass: 0.1691, IoU.clock: 0.4763, IoU.flag: 0.6501, Acc.wall: 0.8790, Acc.building: 0.9348, Acc.sky: 0.9689, Acc.floor: 0.9093, Acc.tree: 0.8922, Acc.ceiling: 0.9295, Acc.road: 0.8870, Acc.bed : 0.9718, Acc.windowpane: 0.7990, Acc.grass: 0.8434, Acc.cabinet: 0.8109, Acc.sidewalk: 0.8216, Acc.person: 0.9287, Acc.earth: 0.5024, Acc.door: 0.7612, Acc.table: 0.8134, Acc.mountain: 0.7290, Acc.plant: 0.6457, Acc.curtain: 0.9136, Acc.chair: 0.7189, Acc.car: 0.9393, Acc.water: 0.7270, Acc.painting: 0.9154, Acc.sofa: 0.8848, Acc.shelf: 0.6424, Acc.house: 0.6953, Acc.sea: 0.8270, Acc.mirror: 0.8569, Acc.rug: 0.7641, Acc.field: 0.4953, Acc.armchair: 0.8132, Acc.seat: 0.8772, Acc.fence: 0.6254, Acc.desk: 0.7510, Acc.rock: 0.7974, Acc.wardrobe: 0.7104, Acc.lamp: 0.8309, Acc.bathtub: 0.8944, Acc.railing: 0.5806, Acc.cushion: 0.8210, Acc.base: 0.6734, Acc.box: 0.5656, Acc.column: 0.7324, Acc.signboard: 0.5339, Acc.chest of drawers: 0.6353, Acc.counter: 0.5945, Acc.sand: 0.8809, Acc.sink: 0.8389, Acc.skyscraper: 0.5753, Acc.fireplace: 0.9547, Acc.refrigerator: 0.8964, Acc.grandstand: 0.8445, Acc.path: 0.5062, Acc.stairs: 0.2807, Acc.runway: 0.9706, Acc.case: 0.8889, Acc.pool table: 0.9815, Acc.pillow: 0.7242, Acc.screen door: 0.8494, Acc.stairway: 0.5972, Acc.river: 0.2984, Acc.bridge: 0.8780, Acc.bookcase: 0.5220, Acc.blind: 0.4342, Acc.coffee table: 0.8704, Acc.toilet: 0.9383, Acc.flower: 0.6215, Acc.book: 0.7338, Acc.hill: 0.1439, Acc.bench: 0.6361, Acc.countertop: 0.8218, Acc.stove: 0.9105, Acc.palm: 0.8176, Acc.kitchen island: 0.8041, Acc.computer: 0.9147, Acc.swivel chair: 0.9107, Acc.boat: 0.9213, Acc.bar: 0.8878, Acc.arcade machine: 0.8744, Acc.hovel: 0.1725, Acc.bus: 0.9647, Acc.towel: 0.9028, Acc.light: 0.5997, Acc.truck: 0.6385, Acc.tower: 0.5999, Acc.chandelier: 0.8623, Acc.awning: 0.5871, Acc.streetlight: 0.3687, Acc.booth: 0.8039, Acc.television receiver: 0.8865, Acc.airplane: 0.9542, Acc.dirt track: 0.0958, Acc.apparel: 0.7891, Acc.pole: 0.3371, Acc.land: 0.0404, Acc.bannister: 0.2268, Acc.escalator: 0.8584, Acc.ottoman: 0.5869, Acc.bottle: 0.6407, Acc.buffet: 0.6234, Acc.poster: 0.4704, Acc.stage: 0.4271, Acc.van: 0.5904, Acc.ship: 0.7987, Acc.fountain: 0.5283, Acc.conveyer belt: 0.9460, Acc.canopy: 0.7415, Acc.washer: 0.9378, Acc.plaything: 0.4265, Acc.swimming pool: 0.7860, Acc.stool: 0.6483, Acc.barrel: 0.7641, Acc.basket: 0.5540, Acc.waterfall: 0.7644, Acc.tent: 0.9828, Acc.bag: 0.1672, Acc.minibike: 0.9121, Acc.cradle: 0.9770, Acc.oven: 0.6957, Acc.ball: 0.2784, Acc.food: 0.6596, Acc.step: 0.1454, Acc.tank: 0.7368, Acc.trade name: 0.3476, Acc.microwave: 0.9587, Acc.pot: 0.7085, Acc.animal: 0.6756, Acc.bicycle: 0.7915, Acc.lake: 0.6734, Acc.dishwasher: 0.7783, Acc.screen: 0.9619, Acc.blanket: 0.3254, Acc.sculpture: 0.8726, Acc.hood: 0.8433, Acc.sconce: 0.7755, Acc.vase: 0.6202, Acc.traffic light: 0.5499, Acc.tray: 0.2555, Acc.ashcan: 0.6557, Acc.fan: 0.8477, Acc.pier: 0.8087, Acc.crt screen: 0.0171, Acc.plate: 0.7775, Acc.monitor: 0.8543, Acc.bulletin board: 0.6404, Acc.shower: 0.0508, Acc.radiator: 0.8077, Acc.glass: 0.1769, Acc.clock: 0.5897, Acc.flag: 0.8000 2024-06-16 08:15:15,990 - mmseg - INFO - Iter [24050/80000] lr: 2.266e-06, eta: 1 day, 2:59:20, time: 3.263, data_time: 1.657, memory: 65790, decode.loss_ce: 0.2477, decode.acc_seg: 89.7492, aux.loss_ce: 0.0996, aux.acc_seg: 89.6817, loss: 0.3472 2024-06-16 08:16:36,464 - mmseg - INFO - Iter [24100/80000] lr: 2.264e-06, eta: 1 day, 2:57:38, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2378, decode.acc_seg: 89.9770, aux.loss_ce: 0.0967, aux.acc_seg: 89.8756, loss: 0.3345 2024-06-16 08:17:57,029 - mmseg - INFO - Iter [24150/80000] lr: 2.262e-06, eta: 1 day, 2:55:57, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2487, decode.acc_seg: 89.6680, aux.loss_ce: 0.1007, aux.acc_seg: 89.5660, loss: 0.3494 2024-06-16 08:19:17,486 - mmseg - INFO - Iter [24200/80000] lr: 2.260e-06, eta: 1 day, 2:54:16, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2366, decode.acc_seg: 89.8796, aux.loss_ce: 0.0967, aux.acc_seg: 89.8515, loss: 0.3333 2024-06-16 08:20:37,956 - mmseg - INFO - Iter [24250/80000] lr: 2.258e-06, eta: 1 day, 2:52:34, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2369, decode.acc_seg: 89.8096, aux.loss_ce: 0.0972, aux.acc_seg: 89.6815, loss: 0.3341 2024-06-16 08:21:58,396 - mmseg - INFO - Iter [24300/80000] lr: 2.256e-06, eta: 1 day, 2:50:53, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2478, decode.acc_seg: 89.5817, aux.loss_ce: 0.1010, aux.acc_seg: 89.4048, loss: 0.3488 2024-06-16 08:23:18,874 - mmseg - INFO - Iter [24350/80000] lr: 2.254e-06, eta: 1 day, 2:49:12, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2228, decode.acc_seg: 90.7150, aux.loss_ce: 0.0905, aux.acc_seg: 90.6347, loss: 0.3133 2024-06-16 08:24:39,480 - mmseg - INFO - Iter [24400/80000] lr: 2.252e-06, eta: 1 day, 2:47:31, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2628, decode.acc_seg: 88.8759, aux.loss_ce: 0.1065, aux.acc_seg: 88.8616, loss: 0.3692 2024-06-16 08:26:00,066 - mmseg - INFO - Iter [24450/80000] lr: 2.250e-06, eta: 1 day, 2:45:50, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2522, decode.acc_seg: 89.6533, aux.loss_ce: 0.1022, aux.acc_seg: 89.5025, loss: 0.3544 2024-06-16 08:27:20,527 - mmseg - INFO - Iter [24500/80000] lr: 2.248e-06, eta: 1 day, 2:44:10, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2529, decode.acc_seg: 89.2627, aux.loss_ce: 0.1031, aux.acc_seg: 89.2459, loss: 0.3560 2024-06-16 08:28:40,981 - mmseg - INFO - Iter [24550/80000] lr: 2.246e-06, eta: 1 day, 2:42:29, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2427, decode.acc_seg: 89.6206, aux.loss_ce: 0.0993, aux.acc_seg: 89.5442, loss: 0.3420 2024-06-16 08:30:01,456 - mmseg - INFO - Iter [24600/80000] lr: 2.244e-06, eta: 1 day, 2:40:48, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2378, decode.acc_seg: 89.8949, aux.loss_ce: 0.0964, aux.acc_seg: 89.8589, loss: 0.3343 2024-06-16 08:31:21,995 - mmseg - INFO - Iter [24650/80000] lr: 2.242e-06, eta: 1 day, 2:39:07, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2321, decode.acc_seg: 90.1180, aux.loss_ce: 0.0951, aux.acc_seg: 90.1364, loss: 0.3272 2024-06-16 08:32:42,798 - mmseg - INFO - Iter [24700/80000] lr: 2.240e-06, eta: 1 day, 2:37:28, time: 1.616, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2735, decode.acc_seg: 88.4447, aux.loss_ce: 0.1105, aux.acc_seg: 88.5303, loss: 0.3840 2024-06-16 08:34:03,407 - mmseg - INFO - Iter [24750/80000] lr: 2.238e-06, eta: 1 day, 2:35:47, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2483, decode.acc_seg: 89.4846, aux.loss_ce: 0.1007, aux.acc_seg: 89.4436, loss: 0.3490 2024-06-16 08:35:23,828 - mmseg - INFO - Iter [24800/80000] lr: 2.235e-06, eta: 1 day, 2:34:07, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2529, decode.acc_seg: 89.5270, aux.loss_ce: 0.1006, aux.acc_seg: 89.5300, loss: 0.3535 2024-06-16 08:36:44,278 - mmseg - INFO - Iter [24850/80000] lr: 2.233e-06, eta: 1 day, 2:32:27, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2436, decode.acc_seg: 89.1858, aux.loss_ce: 0.0983, aux.acc_seg: 89.3683, loss: 0.3419 2024-06-16 08:38:04,795 - mmseg - INFO - Iter [24900/80000] lr: 2.231e-06, eta: 1 day, 2:30:46, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2609, decode.acc_seg: 89.2536, aux.loss_ce: 0.1049, aux.acc_seg: 89.3259, loss: 0.3658 2024-06-16 08:39:25,392 - mmseg - INFO - Iter [24950/80000] lr: 2.229e-06, eta: 1 day, 2:29:07, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2421, decode.acc_seg: 90.0066, aux.loss_ce: 0.0982, aux.acc_seg: 89.9353, loss: 0.3402 2024-06-16 08:40:46,026 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 08:40:46,026 - mmseg - INFO - Iter [25000/80000] lr: 2.227e-06, eta: 1 day, 2:27:27, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2483, decode.acc_seg: 89.4776, aux.loss_ce: 0.1010, aux.acc_seg: 89.3873, loss: 0.3493 2024-06-16 08:42:08,471 - mmseg - INFO - per class results: 2024-06-16 08:42:08,477 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 80.9 | 88.36 | | building | 83.65 | 94.38 | | sky | 94.48 | 97.73 | | floor | 82.66 | 87.7 | | tree | 76.64 | 88.59 | | ceiling | 86.4 | 92.75 | | road | 84.98 | 89.65 | | bed | 91.51 | 96.38 | | windowpane | 65.45 | 78.41 | | grass | 65.94 | 76.78 | | cabinet | 63.52 | 71.05 | | sidewalk | 68.68 | 88.17 | | person | 83.16 | 90.71 | | earth | 37.93 | 49.58 | | door | 59.6 | 77.65 | | table | 62.48 | 71.99 | | mountain | 56.78 | 66.46 | | plant | 58.62 | 70.16 | | curtain | 77.8 | 89.97 | | chair | 63.36 | 75.53 | | car | 85.39 | 93.21 | | water | 56.37 | 68.85 | | painting | 75.77 | 90.75 | | sofa | 80.52 | 90.26 | | shelf | 44.97 | 59.4 | | house | 31.53 | 34.0 | | sea | 62.75 | 79.59 | | mirror | 75.75 | 81.53 | | rug | 67.32 | 89.11 | | field | 33.32 | 70.17 | | armchair | 63.01 | 83.22 | | seat | 64.23 | 86.02 | | fence | 51.37 | 68.99 | | desk | 41.59 | 87.73 | | rock | 54.22 | 78.89 | | wardrobe | 52.73 | 73.53 | | lamp | 68.74 | 83.03 | | bathtub | 85.7 | 90.15 | | railing | 41.81 | 65.05 | | cushion | 66.86 | 83.61 | | base | 46.91 | 63.62 | | box | 39.12 | 47.03 | | column | 55.96 | 68.43 | | signboard | 40.21 | 55.05 | | chest of drawers | 44.75 | 80.2 | | counter | 50.18 | 57.7 | | sand | 50.8 | 75.4 | | sink | 75.63 | 83.61 | | skyscraper | 47.67 | 63.05 | | fireplace | 73.17 | 95.12 | | refrigerator | 80.39 | 93.37 | | grandstand | 49.32 | 88.5 | | path | 26.92 | 37.84 | | stairs | 32.52 | 41.33 | | runway | 73.35 | 94.53 | | case | 69.05 | 87.13 | | pool table | 92.97 | 98.09 | | pillow | 62.74 | 73.0 | | screen door | 77.14 | 88.76 | | stairway | 44.94 | 56.87 | | river | 13.48 | 22.85 | | bridge | 77.12 | 85.31 | | bookcase | 35.15 | 63.7 | | blind | 46.3 | 57.3 | | coffee table | 58.88 | 88.29 | | toilet | 89.41 | 95.23 | | flower | 44.25 | 56.9 | | book | 50.79 | 72.33 | | hill | 4.63 | 12.68 | | bench | 63.89 | 73.91 | | countertop | 60.25 | 86.96 | | stove | 85.32 | 92.6 | | palm | 52.09 | 78.68 | | kitchen island | 38.91 | 81.65 | | computer | 75.92 | 89.59 | | swivel chair | 53.9 | 88.0 | | boat | 74.88 | 91.1 | | bar | 61.66 | 85.44 | | arcade machine | 81.79 | 87.04 | | hovel | 53.09 | 81.49 | | bus | 91.99 | 96.62 | | towel | 72.73 | 85.97 | | light | 47.84 | 55.64 | | truck | 43.99 | 63.36 | | tower | 21.17 | 27.26 | | chandelier | 69.43 | 84.02 | | awning | 32.8 | 37.24 | | streetlight | 27.74 | 35.63 | | booth | 59.31 | 71.82 | | television receiver | 77.73 | 90.9 | | airplane | 81.76 | 89.95 | | dirt track | 4.76 | 20.14 | | apparel | 51.3 | 69.91 | | pole | 22.4 | 31.15 | | land | 13.87 | 20.43 | | bannister | 13.26 | 19.69 | | escalator | 64.88 | 84.84 | | ottoman | 54.44 | 80.66 | | bottle | 42.45 | 74.05 | | buffet | 63.06 | 70.21 | | poster | 30.04 | 48.64 | | stage | 16.65 | 32.33 | | van | 39.52 | 61.59 | | ship | 23.33 | 24.77 | | fountain | 35.56 | 35.88 | | conveyer belt | 77.87 | 94.72 | | canopy | 45.75 | 70.08 | | washer | 87.28 | 93.12 | | plaything | 31.57 | 54.51 | | swimming pool | 55.13 | 81.11 | | stool | 48.47 | 58.17 | | barrel | 48.36 | 67.16 | | basket | 48.98 | 64.52 | | waterfall | 69.7 | 76.49 | | tent | 89.6 | 98.56 | | bag | 30.47 | 35.66 | | minibike | 73.01 | 88.43 | | cradle | 84.0 | 98.85 | | oven | 63.2 | 79.32 | | ball | 62.62 | 74.83 | | food | 68.66 | 78.75 | | step | 11.67 | 15.88 | | tank | 59.51 | 71.66 | | trade name | 18.09 | 20.46 | | microwave | 89.51 | 95.43 | | pot | 56.59 | 66.15 | | animal | 68.88 | 70.62 | | bicycle | 60.79 | 73.36 | | lake | 44.14 | 84.66 | | dishwasher | 65.89 | 85.13 | | screen | 56.53 | 94.6 | | blanket | 28.84 | 32.83 | | sculpture | 70.57 | 80.99 | | hood | 72.73 | 90.19 | | sconce | 57.09 | 68.48 | | vase | 43.24 | 65.05 | | traffic light | 37.68 | 60.81 | | tray | 18.99 | 27.86 | | ashcan | 49.65 | 66.33 | | fan | 60.11 | 71.21 | | pier | 68.92 | 79.21 | | crt screen | 3.09 | 3.81 | | plate | 60.75 | 78.89 | | monitor | 61.55 | 75.47 | | bulletin board | 61.87 | 72.54 | | shower | 2.15 | 3.27 | | radiator | 64.78 | 79.38 | | glass | 20.52 | 22.56 | | clock | 47.98 | 61.62 | | flag | 64.85 | 73.34 | +---------------------+-------+-------+ 2024-06-16 08:42:08,477 - mmseg - INFO - Summary: 2024-06-16 08:42:08,477 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 84.98 | 56.12 | 70.38 | +-------+-------+-------+ 2024-06-16 08:42:08,478 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 08:42:08,478 - mmseg - INFO - Iter(val) [250] aAcc: 0.8498, mIoU: 0.5612, mAcc: 0.7038, IoU.wall: 0.8090, IoU.building: 0.8365, IoU.sky: 0.9448, IoU.floor: 0.8266, IoU.tree: 0.7664, IoU.ceiling: 0.8640, IoU.road: 0.8498, IoU.bed : 0.9151, IoU.windowpane: 0.6545, IoU.grass: 0.6594, IoU.cabinet: 0.6352, IoU.sidewalk: 0.6868, IoU.person: 0.8316, IoU.earth: 0.3793, IoU.door: 0.5960, IoU.table: 0.6248, IoU.mountain: 0.5678, IoU.plant: 0.5862, IoU.curtain: 0.7780, IoU.chair: 0.6336, IoU.car: 0.8539, IoU.water: 0.5637, IoU.painting: 0.7577, IoU.sofa: 0.8052, IoU.shelf: 0.4497, IoU.house: 0.3153, IoU.sea: 0.6275, IoU.mirror: 0.7575, IoU.rug: 0.6732, IoU.field: 0.3332, IoU.armchair: 0.6301, IoU.seat: 0.6423, IoU.fence: 0.5137, IoU.desk: 0.4159, IoU.rock: 0.5422, IoU.wardrobe: 0.5273, IoU.lamp: 0.6874, IoU.bathtub: 0.8570, IoU.railing: 0.4181, IoU.cushion: 0.6686, IoU.base: 0.4691, IoU.box: 0.3912, IoU.column: 0.5596, IoU.signboard: 0.4021, IoU.chest of drawers: 0.4475, IoU.counter: 0.5018, IoU.sand: 0.5080, IoU.sink: 0.7563, IoU.skyscraper: 0.4767, IoU.fireplace: 0.7317, IoU.refrigerator: 0.8039, IoU.grandstand: 0.4932, IoU.path: 0.2692, IoU.stairs: 0.3252, IoU.runway: 0.7335, IoU.case: 0.6905, IoU.pool table: 0.9297, IoU.pillow: 0.6274, IoU.screen door: 0.7714, IoU.stairway: 0.4494, IoU.river: 0.1348, IoU.bridge: 0.7712, IoU.bookcase: 0.3515, IoU.blind: 0.4630, IoU.coffee table: 0.5888, IoU.toilet: 0.8941, IoU.flower: 0.4425, IoU.book: 0.5079, IoU.hill: 0.0463, IoU.bench: 0.6389, IoU.countertop: 0.6025, IoU.stove: 0.8532, IoU.palm: 0.5209, IoU.kitchen island: 0.3891, IoU.computer: 0.7592, IoU.swivel chair: 0.5390, IoU.boat: 0.7488, IoU.bar: 0.6166, IoU.arcade machine: 0.8179, IoU.hovel: 0.5309, IoU.bus: 0.9199, IoU.towel: 0.7273, IoU.light: 0.4784, IoU.truck: 0.4399, IoU.tower: 0.2117, IoU.chandelier: 0.6943, IoU.awning: 0.3280, IoU.streetlight: 0.2774, IoU.booth: 0.5931, IoU.television receiver: 0.7773, IoU.airplane: 0.8176, IoU.dirt track: 0.0476, IoU.apparel: 0.5130, IoU.pole: 0.2240, IoU.land: 0.1387, IoU.bannister: 0.1326, IoU.escalator: 0.6488, IoU.ottoman: 0.5444, IoU.bottle: 0.4245, IoU.buffet: 0.6306, IoU.poster: 0.3004, IoU.stage: 0.1665, IoU.van: 0.3952, IoU.ship: 0.2333, IoU.fountain: 0.3556, IoU.conveyer belt: 0.7787, IoU.canopy: 0.4575, IoU.washer: 0.8728, IoU.plaything: 0.3157, IoU.swimming pool: 0.5513, IoU.stool: 0.4847, IoU.barrel: 0.4836, IoU.basket: 0.4898, IoU.waterfall: 0.6970, IoU.tent: 0.8960, IoU.bag: 0.3047, IoU.minibike: 0.7301, IoU.cradle: 0.8400, IoU.oven: 0.6320, IoU.ball: 0.6262, IoU.food: 0.6866, IoU.step: 0.1167, IoU.tank: 0.5951, IoU.trade name: 0.1809, IoU.microwave: 0.8951, IoU.pot: 0.5659, IoU.animal: 0.6888, IoU.bicycle: 0.6079, IoU.lake: 0.4414, IoU.dishwasher: 0.6589, IoU.screen: 0.5653, IoU.blanket: 0.2884, IoU.sculpture: 0.7057, IoU.hood: 0.7273, IoU.sconce: 0.5709, IoU.vase: 0.4324, IoU.traffic light: 0.3768, IoU.tray: 0.1899, IoU.ashcan: 0.4965, IoU.fan: 0.6011, IoU.pier: 0.6892, IoU.crt screen: 0.0309, IoU.plate: 0.6075, IoU.monitor: 0.6155, IoU.bulletin board: 0.6187, IoU.shower: 0.0215, IoU.radiator: 0.6478, IoU.glass: 0.2052, IoU.clock: 0.4798, IoU.flag: 0.6485, Acc.wall: 0.8836, Acc.building: 0.9438, Acc.sky: 0.9773, Acc.floor: 0.8770, Acc.tree: 0.8859, Acc.ceiling: 0.9275, Acc.road: 0.8965, Acc.bed : 0.9638, Acc.windowpane: 0.7841, Acc.grass: 0.7678, Acc.cabinet: 0.7105, Acc.sidewalk: 0.8817, Acc.person: 0.9071, Acc.earth: 0.4958, Acc.door: 0.7765, Acc.table: 0.7199, Acc.mountain: 0.6646, Acc.plant: 0.7016, Acc.curtain: 0.8997, Acc.chair: 0.7553, Acc.car: 0.9321, Acc.water: 0.6885, Acc.painting: 0.9075, Acc.sofa: 0.9026, Acc.shelf: 0.5940, Acc.house: 0.3400, Acc.sea: 0.7959, Acc.mirror: 0.8153, Acc.rug: 0.8911, Acc.field: 0.7017, Acc.armchair: 0.8322, Acc.seat: 0.8602, Acc.fence: 0.6899, Acc.desk: 0.8773, Acc.rock: 0.7889, Acc.wardrobe: 0.7353, Acc.lamp: 0.8303, Acc.bathtub: 0.9015, Acc.railing: 0.6505, Acc.cushion: 0.8361, Acc.base: 0.6362, Acc.box: 0.4703, Acc.column: 0.6843, Acc.signboard: 0.5505, Acc.chest of drawers: 0.8020, Acc.counter: 0.5770, Acc.sand: 0.7540, Acc.sink: 0.8361, Acc.skyscraper: 0.6305, Acc.fireplace: 0.9512, Acc.refrigerator: 0.9337, Acc.grandstand: 0.8850, Acc.path: 0.3784, Acc.stairs: 0.4133, Acc.runway: 0.9453, Acc.case: 0.8713, Acc.pool table: 0.9809, Acc.pillow: 0.7300, Acc.screen door: 0.8876, Acc.stairway: 0.5687, Acc.river: 0.2285, Acc.bridge: 0.8531, Acc.bookcase: 0.6370, Acc.blind: 0.5730, Acc.coffee table: 0.8829, Acc.toilet: 0.9523, Acc.flower: 0.5690, Acc.book: 0.7233, Acc.hill: 0.1268, Acc.bench: 0.7391, Acc.countertop: 0.8696, Acc.stove: 0.9260, Acc.palm: 0.7868, Acc.kitchen island: 0.8165, Acc.computer: 0.8959, Acc.swivel chair: 0.8800, Acc.boat: 0.9110, Acc.bar: 0.8544, Acc.arcade machine: 0.8704, Acc.hovel: 0.8149, Acc.bus: 0.9662, Acc.towel: 0.8597, Acc.light: 0.5564, Acc.truck: 0.6336, Acc.tower: 0.2726, Acc.chandelier: 0.8402, Acc.awning: 0.3724, Acc.streetlight: 0.3563, Acc.booth: 0.7182, Acc.television receiver: 0.9090, Acc.airplane: 0.8995, Acc.dirt track: 0.2014, Acc.apparel: 0.6991, Acc.pole: 0.3115, Acc.land: 0.2043, Acc.bannister: 0.1969, Acc.escalator: 0.8484, Acc.ottoman: 0.8066, Acc.bottle: 0.7405, Acc.buffet: 0.7021, Acc.poster: 0.4864, Acc.stage: 0.3233, Acc.van: 0.6159, Acc.ship: 0.2477, Acc.fountain: 0.3588, Acc.conveyer belt: 0.9472, Acc.canopy: 0.7008, Acc.washer: 0.9312, Acc.plaything: 0.5451, Acc.swimming pool: 0.8111, Acc.stool: 0.5817, Acc.barrel: 0.6716, Acc.basket: 0.6452, Acc.waterfall: 0.7649, Acc.tent: 0.9856, Acc.bag: 0.3566, Acc.minibike: 0.8843, Acc.cradle: 0.9885, Acc.oven: 0.7932, Acc.ball: 0.7483, Acc.food: 0.7875, Acc.step: 0.1588, Acc.tank: 0.7166, Acc.trade name: 0.2046, Acc.microwave: 0.9543, Acc.pot: 0.6615, Acc.animal: 0.7062, Acc.bicycle: 0.7336, Acc.lake: 0.8466, Acc.dishwasher: 0.8513, Acc.screen: 0.9460, Acc.blanket: 0.3283, Acc.sculpture: 0.8099, Acc.hood: 0.9019, Acc.sconce: 0.6848, Acc.vase: 0.6505, Acc.traffic light: 0.6081, Acc.tray: 0.2786, Acc.ashcan: 0.6633, Acc.fan: 0.7121, Acc.pier: 0.7921, Acc.crt screen: 0.0381, Acc.plate: 0.7889, Acc.monitor: 0.7547, Acc.bulletin board: 0.7254, Acc.shower: 0.0327, Acc.radiator: 0.7938, Acc.glass: 0.2256, Acc.clock: 0.6162, Acc.flag: 0.7334 2024-06-16 08:43:29,276 - mmseg - INFO - Iter [25050/80000] lr: 2.225e-06, eta: 1 day, 2:28:48, time: 3.265, data_time: 1.662, memory: 65790, decode.loss_ce: 0.2453, decode.acc_seg: 89.6404, aux.loss_ce: 0.0994, aux.acc_seg: 89.6674, loss: 0.3447 2024-06-16 08:44:49,686 - mmseg - INFO - Iter [25100/80000] lr: 2.223e-06, eta: 1 day, 2:27:08, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2515, decode.acc_seg: 89.5461, aux.loss_ce: 0.1022, aux.acc_seg: 89.4718, loss: 0.3537 2024-06-16 08:46:10,091 - mmseg - INFO - Iter [25150/80000] lr: 2.221e-06, eta: 1 day, 2:25:27, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2397, decode.acc_seg: 89.9397, aux.loss_ce: 0.0975, aux.acc_seg: 89.7536, loss: 0.3372 2024-06-16 08:47:30,524 - mmseg - INFO - Iter [25200/80000] lr: 2.219e-06, eta: 1 day, 2:23:47, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2755, decode.acc_seg: 88.5012, aux.loss_ce: 0.1121, aux.acc_seg: 88.6197, loss: 0.3875 2024-06-16 08:48:51,140 - mmseg - INFO - Iter [25250/80000] lr: 2.217e-06, eta: 1 day, 2:22:07, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2691, decode.acc_seg: 88.8958, aux.loss_ce: 0.1086, aux.acc_seg: 88.8810, loss: 0.3777 2024-06-16 08:50:14,565 - mmseg - INFO - Iter [25300/80000] lr: 2.215e-06, eta: 1 day, 2:20:33, time: 1.668, data_time: 0.060, memory: 65790, decode.loss_ce: 0.2411, decode.acc_seg: 89.7618, aux.loss_ce: 0.0980, aux.acc_seg: 89.5141, loss: 0.3392 2024-06-16 08:51:35,282 - mmseg - INFO - Iter [25350/80000] lr: 2.213e-06, eta: 1 day, 2:18:54, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2371, decode.acc_seg: 90.2152, aux.loss_ce: 0.0959, aux.acc_seg: 90.2628, loss: 0.3330 2024-06-16 08:52:55,769 - mmseg - INFO - Iter [25400/80000] lr: 2.211e-06, eta: 1 day, 2:17:14, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2423, decode.acc_seg: 90.0136, aux.loss_ce: 0.0988, aux.acc_seg: 89.9636, loss: 0.3411 2024-06-16 08:54:16,220 - mmseg - INFO - Iter [25450/80000] lr: 2.209e-06, eta: 1 day, 2:15:34, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2439, decode.acc_seg: 89.7380, aux.loss_ce: 0.0991, aux.acc_seg: 89.6231, loss: 0.3429 2024-06-16 08:55:36,643 - mmseg - INFO - Iter [25500/80000] lr: 2.207e-06, eta: 1 day, 2:13:54, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2547, decode.acc_seg: 89.3472, aux.loss_ce: 0.1032, aux.acc_seg: 89.3006, loss: 0.3580 2024-06-16 08:56:57,056 - mmseg - INFO - Iter [25550/80000] lr: 2.205e-06, eta: 1 day, 2:12:14, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2462, decode.acc_seg: 89.9087, aux.loss_ce: 0.1002, aux.acc_seg: 89.8685, loss: 0.3464 2024-06-16 08:58:17,481 - mmseg - INFO - Iter [25600/80000] lr: 2.203e-06, eta: 1 day, 2:10:34, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2540, decode.acc_seg: 89.4882, aux.loss_ce: 0.1018, aux.acc_seg: 89.6052, loss: 0.3558 2024-06-16 08:59:38,157 - mmseg - INFO - Iter [25650/80000] lr: 2.201e-06, eta: 1 day, 2:08:55, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2357, decode.acc_seg: 89.9580, aux.loss_ce: 0.0961, aux.acc_seg: 89.8672, loss: 0.3318 2024-06-16 09:00:58,659 - mmseg - INFO - Iter [25700/80000] lr: 2.199e-06, eta: 1 day, 2:07:15, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2381, decode.acc_seg: 89.8194, aux.loss_ce: 0.0965, aux.acc_seg: 89.7580, loss: 0.3346 2024-06-16 09:02:19,045 - mmseg - INFO - Iter [25750/80000] lr: 2.197e-06, eta: 1 day, 2:05:36, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2389, decode.acc_seg: 90.0375, aux.loss_ce: 0.0975, aux.acc_seg: 89.8662, loss: 0.3364 2024-06-16 09:03:39,448 - mmseg - INFO - Iter [25800/80000] lr: 2.195e-06, eta: 1 day, 2:03:56, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2413, decode.acc_seg: 90.0332, aux.loss_ce: 0.0989, aux.acc_seg: 89.9551, loss: 0.3402 2024-06-16 09:04:59,838 - mmseg - INFO - Iter [25850/80000] lr: 2.193e-06, eta: 1 day, 2:02:17, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2378, decode.acc_seg: 90.1066, aux.loss_ce: 0.0970, aux.acc_seg: 90.0033, loss: 0.3348 2024-06-16 09:06:20,433 - mmseg - INFO - Iter [25900/80000] lr: 2.191e-06, eta: 1 day, 2:00:38, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2446, decode.acc_seg: 89.6825, aux.loss_ce: 0.0991, aux.acc_seg: 89.6931, loss: 0.3437 2024-06-16 09:07:40,874 - mmseg - INFO - Iter [25950/80000] lr: 2.189e-06, eta: 1 day, 1:58:58, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2283, decode.acc_seg: 90.4194, aux.loss_ce: 0.0924, aux.acc_seg: 90.3345, loss: 0.3207 2024-06-16 09:09:01,264 - mmseg - INFO - Saving checkpoint at 26000 iterations 2024-06-16 09:10:16,195 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 09:10:16,195 - mmseg - INFO - Iter [26000/80000] lr: 2.187e-06, eta: 1 day, 1:59:55, time: 3.106, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2448, decode.acc_seg: 89.9984, aux.loss_ce: 0.0999, aux.acc_seg: 89.9023, loss: 0.3447 2024-06-16 09:11:39,765 - mmseg - INFO - per class results: 2024-06-16 09:11:39,771 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 80.77 | 89.07 | | building | 84.55 | 92.24 | | sky | 94.33 | 97.87 | | floor | 83.4 | 90.14 | | tree | 76.57 | 88.2 | | ceiling | 85.39 | 91.47 | | road | 86.13 | 90.75 | | bed | 90.96 | 97.48 | | windowpane | 65.38 | 78.03 | | grass | 65.55 | 76.82 | | cabinet | 64.76 | 71.36 | | sidewalk | 69.5 | 84.33 | | person | 83.58 | 92.89 | | earth | 37.78 | 54.69 | | door | 57.97 | 75.26 | | table | 66.29 | 78.77 | | mountain | 59.84 | 72.85 | | plant | 57.14 | 69.64 | | curtain | 76.85 | 90.64 | | chair | 64.87 | 77.17 | | car | 85.66 | 93.77 | | water | 63.1 | 75.35 | | painting | 77.9 | 86.81 | | sofa | 80.15 | 89.49 | | shelf | 50.94 | 68.54 | | house | 52.72 | 79.82 | | sea | 72.04 | 82.29 | | mirror | 75.08 | 83.2 | | rug | 69.83 | 87.75 | | field | 27.87 | 41.03 | | armchair | 65.57 | 81.54 | | seat | 65.3 | 86.65 | | fence | 49.05 | 61.71 | | desk | 58.15 | 80.82 | | rock | 54.55 | 80.98 | | wardrobe | 53.57 | 75.72 | | lamp | 68.97 | 77.68 | | bathtub | 86.8 | 89.17 | | railing | 42.81 | 65.32 | | cushion | 67.58 | 82.69 | | base | 46.84 | 65.01 | | box | 40.94 | 54.03 | | column | 53.74 | 66.62 | | signboard | 42.38 | 57.82 | | chest of drawers | 48.19 | 76.11 | | counter | 43.04 | 51.68 | | sand | 48.97 | 67.85 | | sink | 78.62 | 83.64 | | skyscraper | 46.05 | 61.23 | | fireplace | 74.74 | 92.54 | | refrigerator | 83.4 | 91.57 | | grandstand | 47.23 | 86.51 | | path | 33.27 | 43.48 | | stairs | 30.63 | 39.62 | | runway | 70.88 | 97.95 | | case | 66.47 | 85.5 | | pool table | 93.31 | 97.9 | | pillow | 62.35 | 72.22 | | screen door | 79.78 | 88.18 | | stairway | 45.56 | 61.12 | | river | 13.0 | 26.43 | | bridge | 74.79 | 88.12 | | bookcase | 42.55 | 48.69 | | blind | 48.88 | 59.94 | | coffee table | 59.27 | 83.2 | | toilet | 88.22 | 92.83 | | flower | 48.17 | 59.19 | | book | 53.52 | 76.05 | | hill | 8.17 | 23.64 | | bench | 57.91 | 65.41 | | countertop | 63.74 | 79.77 | | stove | 85.12 | 92.05 | | palm | 50.76 | 71.75 | | kitchen island | 56.27 | 87.84 | | computer | 76.42 | 90.99 | | swivel chair | 54.8 | 82.83 | | boat | 71.41 | 89.76 | | bar | 60.11 | 89.84 | | arcade machine | 78.86 | 88.17 | | hovel | 38.49 | 47.03 | | bus | 90.51 | 97.12 | | towel | 73.24 | 81.6 | | light | 39.81 | 80.69 | | truck | 47.51 | 61.58 | | tower | 9.27 | 11.84 | | chandelier | 68.78 | 84.95 | | awning | 34.24 | 42.1 | | streetlight | 19.98 | 23.13 | | booth | 58.74 | 72.45 | | television receiver | 75.12 | 86.08 | | airplane | 76.77 | 84.79 | | dirt track | 6.17 | 21.65 | | apparel | 60.39 | 76.34 | | pole | 24.13 | 33.04 | | land | 3.24 | 4.31 | | bannister | 16.68 | 22.69 | | escalator | 60.69 | 87.82 | | ottoman | 52.43 | 68.78 | | bottle | 41.13 | 72.54 | | buffet | 48.47 | 91.79 | | poster | 34.15 | 38.51 | | stage | 21.63 | 51.49 | | van | 42.19 | 61.5 | | ship | 28.5 | 30.35 | | fountain | 37.89 | 39.0 | | conveyer belt | 80.48 | 96.16 | | canopy | 47.23 | 68.78 | | washer | 87.87 | 95.44 | | plaything | 31.3 | 49.44 | | swimming pool | 56.03 | 82.33 | | stool | 46.86 | 64.91 | | barrel | 33.26 | 73.87 | | basket | 44.03 | 57.85 | | waterfall | 73.98 | 91.89 | | tent | 88.94 | 98.41 | | bag | 25.75 | 29.18 | | minibike | 71.84 | 86.54 | | cradle | 85.89 | 97.23 | | oven | 63.1 | 75.85 | | ball | 18.96 | 19.13 | | food | 64.63 | 72.58 | | step | 13.36 | 16.71 | | tank | 56.65 | 67.99 | | trade name | 30.9 | 37.65 | | microwave | 89.64 | 95.33 | | pot | 55.45 | 63.88 | | animal | 69.14 | 71.28 | | bicycle | 61.35 | 80.66 | | lake | 52.18 | 69.51 | | dishwasher | 72.13 | 81.68 | | screen | 59.57 | 89.65 | | blanket | 24.95 | 28.88 | | sculpture | 68.03 | 87.14 | | hood | 58.09 | 66.57 | | sconce | 54.96 | 67.55 | | vase | 45.38 | 62.91 | | traffic light | 35.13 | 58.36 | | tray | 22.45 | 31.18 | | ashcan | 49.54 | 57.55 | | fan | 57.97 | 67.76 | | pier | 36.43 | 41.69 | | crt screen | 2.6 | 3.09 | | plate | 59.53 | 81.42 | | monitor | 70.27 | 84.54 | | bulletin board | 54.35 | 66.75 | | shower | 2.47 | 2.48 | | radiator | 64.97 | 73.93 | | glass | 19.89 | 21.53 | | clock | 47.05 | 55.47 | | flag | 63.77 | 71.66 | +---------------------+-------+-------+ 2024-06-16 09:11:39,772 - mmseg - INFO - Summary: 2024-06-16 09:11:39,772 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.35 | 55.84 | 69.36 | +-------+-------+-------+ 2024-06-16 09:11:39,773 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 09:11:39,774 - mmseg - INFO - Iter(val) [250] aAcc: 0.8535, mIoU: 0.5584, mAcc: 0.6936, IoU.wall: 0.8077, IoU.building: 0.8455, IoU.sky: 0.9433, IoU.floor: 0.8340, IoU.tree: 0.7657, IoU.ceiling: 0.8539, IoU.road: 0.8613, IoU.bed : 0.9096, IoU.windowpane: 0.6538, IoU.grass: 0.6555, IoU.cabinet: 0.6476, IoU.sidewalk: 0.6950, IoU.person: 0.8358, IoU.earth: 0.3778, IoU.door: 0.5797, IoU.table: 0.6629, IoU.mountain: 0.5984, IoU.plant: 0.5714, IoU.curtain: 0.7685, IoU.chair: 0.6487, IoU.car: 0.8566, IoU.water: 0.6310, IoU.painting: 0.7790, IoU.sofa: 0.8015, IoU.shelf: 0.5094, IoU.house: 0.5272, IoU.sea: 0.7204, IoU.mirror: 0.7508, IoU.rug: 0.6983, IoU.field: 0.2787, IoU.armchair: 0.6557, IoU.seat: 0.6530, IoU.fence: 0.4905, IoU.desk: 0.5815, IoU.rock: 0.5455, IoU.wardrobe: 0.5357, IoU.lamp: 0.6897, IoU.bathtub: 0.8680, IoU.railing: 0.4281, IoU.cushion: 0.6758, IoU.base: 0.4684, IoU.box: 0.4094, IoU.column: 0.5374, IoU.signboard: 0.4238, IoU.chest of drawers: 0.4819, IoU.counter: 0.4304, IoU.sand: 0.4897, IoU.sink: 0.7862, IoU.skyscraper: 0.4605, IoU.fireplace: 0.7474, IoU.refrigerator: 0.8340, IoU.grandstand: 0.4723, IoU.path: 0.3327, IoU.stairs: 0.3063, IoU.runway: 0.7088, IoU.case: 0.6647, IoU.pool table: 0.9331, IoU.pillow: 0.6235, IoU.screen door: 0.7978, IoU.stairway: 0.4556, IoU.river: 0.1300, IoU.bridge: 0.7479, IoU.bookcase: 0.4255, IoU.blind: 0.4888, IoU.coffee table: 0.5927, IoU.toilet: 0.8822, IoU.flower: 0.4817, IoU.book: 0.5352, IoU.hill: 0.0817, IoU.bench: 0.5791, IoU.countertop: 0.6374, IoU.stove: 0.8512, IoU.palm: 0.5076, IoU.kitchen island: 0.5627, IoU.computer: 0.7642, IoU.swivel chair: 0.5480, IoU.boat: 0.7141, IoU.bar: 0.6011, IoU.arcade machine: 0.7886, IoU.hovel: 0.3849, IoU.bus: 0.9051, IoU.towel: 0.7324, IoU.light: 0.3981, IoU.truck: 0.4751, IoU.tower: 0.0927, IoU.chandelier: 0.6878, IoU.awning: 0.3424, IoU.streetlight: 0.1998, IoU.booth: 0.5874, IoU.television receiver: 0.7512, IoU.airplane: 0.7677, IoU.dirt track: 0.0617, IoU.apparel: 0.6039, IoU.pole: 0.2413, IoU.land: 0.0324, IoU.bannister: 0.1668, IoU.escalator: 0.6069, IoU.ottoman: 0.5243, IoU.bottle: 0.4113, IoU.buffet: 0.4847, IoU.poster: 0.3415, IoU.stage: 0.2163, IoU.van: 0.4219, IoU.ship: 0.2850, IoU.fountain: 0.3789, IoU.conveyer belt: 0.8048, IoU.canopy: 0.4723, IoU.washer: 0.8787, IoU.plaything: 0.3130, IoU.swimming pool: 0.5603, IoU.stool: 0.4686, IoU.barrel: 0.3326, IoU.basket: 0.4403, IoU.waterfall: 0.7398, IoU.tent: 0.8894, IoU.bag: 0.2575, IoU.minibike: 0.7184, IoU.cradle: 0.8589, IoU.oven: 0.6310, IoU.ball: 0.1896, IoU.food: 0.6463, IoU.step: 0.1336, IoU.tank: 0.5665, IoU.trade name: 0.3090, IoU.microwave: 0.8964, IoU.pot: 0.5545, IoU.animal: 0.6914, IoU.bicycle: 0.6135, IoU.lake: 0.5218, IoU.dishwasher: 0.7213, IoU.screen: 0.5957, IoU.blanket: 0.2495, IoU.sculpture: 0.6803, IoU.hood: 0.5809, IoU.sconce: 0.5496, IoU.vase: 0.4538, IoU.traffic light: 0.3513, IoU.tray: 0.2245, IoU.ashcan: 0.4954, IoU.fan: 0.5797, IoU.pier: 0.3643, IoU.crt screen: 0.0260, IoU.plate: 0.5953, IoU.monitor: 0.7027, IoU.bulletin board: 0.5435, IoU.shower: 0.0247, IoU.radiator: 0.6497, IoU.glass: 0.1989, IoU.clock: 0.4705, IoU.flag: 0.6377, Acc.wall: 0.8907, Acc.building: 0.9224, Acc.sky: 0.9787, Acc.floor: 0.9014, Acc.tree: 0.8820, Acc.ceiling: 0.9147, Acc.road: 0.9075, Acc.bed : 0.9748, Acc.windowpane: 0.7803, Acc.grass: 0.7682, Acc.cabinet: 0.7136, Acc.sidewalk: 0.8433, Acc.person: 0.9289, Acc.earth: 0.5469, Acc.door: 0.7526, Acc.table: 0.7877, Acc.mountain: 0.7285, Acc.plant: 0.6964, Acc.curtain: 0.9064, Acc.chair: 0.7717, Acc.car: 0.9377, Acc.water: 0.7535, Acc.painting: 0.8681, Acc.sofa: 0.8949, Acc.shelf: 0.6854, Acc.house: 0.7982, Acc.sea: 0.8229, Acc.mirror: 0.8320, Acc.rug: 0.8775, Acc.field: 0.4103, Acc.armchair: 0.8154, Acc.seat: 0.8665, Acc.fence: 0.6171, Acc.desk: 0.8082, Acc.rock: 0.8098, Acc.wardrobe: 0.7572, Acc.lamp: 0.7768, Acc.bathtub: 0.8917, Acc.railing: 0.6532, Acc.cushion: 0.8269, Acc.base: 0.6501, Acc.box: 0.5403, Acc.column: 0.6662, Acc.signboard: 0.5782, Acc.chest of drawers: 0.7611, Acc.counter: 0.5168, Acc.sand: 0.6785, Acc.sink: 0.8364, Acc.skyscraper: 0.6123, Acc.fireplace: 0.9254, Acc.refrigerator: 0.9157, Acc.grandstand: 0.8651, Acc.path: 0.4348, Acc.stairs: 0.3962, Acc.runway: 0.9795, Acc.case: 0.8550, Acc.pool table: 0.9790, Acc.pillow: 0.7222, Acc.screen door: 0.8818, Acc.stairway: 0.6112, Acc.river: 0.2643, Acc.bridge: 0.8812, Acc.bookcase: 0.4869, Acc.blind: 0.5994, Acc.coffee table: 0.8320, Acc.toilet: 0.9283, Acc.flower: 0.5919, Acc.book: 0.7605, Acc.hill: 0.2364, Acc.bench: 0.6541, Acc.countertop: 0.7977, Acc.stove: 0.9205, Acc.palm: 0.7175, Acc.kitchen island: 0.8784, Acc.computer: 0.9099, Acc.swivel chair: 0.8283, Acc.boat: 0.8976, Acc.bar: 0.8984, Acc.arcade machine: 0.8817, Acc.hovel: 0.4703, Acc.bus: 0.9712, Acc.towel: 0.8160, Acc.light: 0.8069, Acc.truck: 0.6158, Acc.tower: 0.1184, Acc.chandelier: 0.8495, Acc.awning: 0.4210, Acc.streetlight: 0.2313, Acc.booth: 0.7245, Acc.television receiver: 0.8608, Acc.airplane: 0.8479, Acc.dirt track: 0.2165, Acc.apparel: 0.7634, Acc.pole: 0.3304, Acc.land: 0.0431, Acc.bannister: 0.2269, Acc.escalator: 0.8782, Acc.ottoman: 0.6878, Acc.bottle: 0.7254, Acc.buffet: 0.9179, Acc.poster: 0.3851, Acc.stage: 0.5149, Acc.van: 0.6150, Acc.ship: 0.3035, Acc.fountain: 0.3900, Acc.conveyer belt: 0.9616, Acc.canopy: 0.6878, Acc.washer: 0.9544, Acc.plaything: 0.4944, Acc.swimming pool: 0.8233, Acc.stool: 0.6491, Acc.barrel: 0.7387, Acc.basket: 0.5785, Acc.waterfall: 0.9189, Acc.tent: 0.9841, Acc.bag: 0.2918, Acc.minibike: 0.8654, Acc.cradle: 0.9723, Acc.oven: 0.7585, Acc.ball: 0.1913, Acc.food: 0.7258, Acc.step: 0.1671, Acc.tank: 0.6799, Acc.trade name: 0.3765, Acc.microwave: 0.9533, Acc.pot: 0.6388, Acc.animal: 0.7128, Acc.bicycle: 0.8066, Acc.lake: 0.6951, Acc.dishwasher: 0.8168, Acc.screen: 0.8965, Acc.blanket: 0.2888, Acc.sculpture: 0.8714, Acc.hood: 0.6657, Acc.sconce: 0.6755, Acc.vase: 0.6291, Acc.traffic light: 0.5836, Acc.tray: 0.3118, Acc.ashcan: 0.5755, Acc.fan: 0.6776, Acc.pier: 0.4169, Acc.crt screen: 0.0309, Acc.plate: 0.8142, Acc.monitor: 0.8454, Acc.bulletin board: 0.6675, Acc.shower: 0.0248, Acc.radiator: 0.7393, Acc.glass: 0.2153, Acc.clock: 0.5547, Acc.flag: 0.7166 2024-06-16 09:13:00,529 - mmseg - INFO - Iter [26050/80000] lr: 2.185e-06, eta: 1 day, 2:01:09, time: 3.287, data_time: 1.685, memory: 65790, decode.loss_ce: 0.2354, decode.acc_seg: 89.7977, aux.loss_ce: 0.0962, aux.acc_seg: 89.7571, loss: 0.3315 2024-06-16 09:14:20,995 - mmseg - INFO - Iter [26100/80000] lr: 2.183e-06, eta: 1 day, 1:59:29, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2472, decode.acc_seg: 89.5324, aux.loss_ce: 0.0996, aux.acc_seg: 89.5739, loss: 0.3468 2024-06-16 09:15:41,425 - mmseg - INFO - Iter [26150/80000] lr: 2.181e-06, eta: 1 day, 1:57:49, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2521, decode.acc_seg: 89.1900, aux.loss_ce: 0.1028, aux.acc_seg: 89.0471, loss: 0.3549 2024-06-16 09:17:01,958 - mmseg - INFO - Iter [26200/80000] lr: 2.179e-06, eta: 1 day, 1:56:10, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2437, decode.acc_seg: 89.8578, aux.loss_ce: 0.0994, aux.acc_seg: 89.6776, loss: 0.3431 2024-06-16 09:18:22,467 - mmseg - INFO - Iter [26250/80000] lr: 2.177e-06, eta: 1 day, 1:54:30, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2552, decode.acc_seg: 89.5082, aux.loss_ce: 0.1031, aux.acc_seg: 89.4473, loss: 0.3583 2024-06-16 09:19:42,899 - mmseg - INFO - Iter [26300/80000] lr: 2.175e-06, eta: 1 day, 1:52:50, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2351, decode.acc_seg: 89.8120, aux.loss_ce: 0.0959, aux.acc_seg: 89.8490, loss: 0.3310 2024-06-16 09:21:03,339 - mmseg - INFO - Iter [26350/80000] lr: 2.173e-06, eta: 1 day, 1:51:11, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2357, decode.acc_seg: 89.7453, aux.loss_ce: 0.0953, aux.acc_seg: 89.8069, loss: 0.3310 2024-06-16 09:22:23,760 - mmseg - INFO - Iter [26400/80000] lr: 2.171e-06, eta: 1 day, 1:49:31, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2436, decode.acc_seg: 89.6472, aux.loss_ce: 0.0995, aux.acc_seg: 89.6023, loss: 0.3431 2024-06-16 09:23:44,370 - mmseg - INFO - Iter [26450/80000] lr: 2.169e-06, eta: 1 day, 1:47:52, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2385, decode.acc_seg: 89.8434, aux.loss_ce: 0.0972, aux.acc_seg: 89.6960, loss: 0.3357 2024-06-16 09:25:04,895 - mmseg - INFO - Iter [26500/80000] lr: 2.167e-06, eta: 1 day, 1:46:13, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2306, decode.acc_seg: 89.8895, aux.loss_ce: 0.0934, aux.acc_seg: 89.9555, loss: 0.3240 2024-06-16 09:26:27,587 - mmseg - INFO - Iter [26550/80000] lr: 2.165e-06, eta: 1 day, 1:44:38, time: 1.654, data_time: 0.049, memory: 65790, decode.loss_ce: 0.2351, decode.acc_seg: 90.0916, aux.loss_ce: 0.0966, aux.acc_seg: 89.9169, loss: 0.3317 2024-06-16 09:27:48,123 - mmseg - INFO - Iter [26600/80000] lr: 2.163e-06, eta: 1 day, 1:42:59, time: 1.611, data_time: 0.008, memory: 65790, decode.loss_ce: 0.2239, decode.acc_seg: 90.5662, aux.loss_ce: 0.0908, aux.acc_seg: 90.4807, loss: 0.3147 2024-06-16 09:29:08,548 - mmseg - INFO - Iter [26650/80000] lr: 2.161e-06, eta: 1 day, 1:41:20, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2346, decode.acc_seg: 90.1792, aux.loss_ce: 0.0962, aux.acc_seg: 90.1362, loss: 0.3309 2024-06-16 09:30:28,943 - mmseg - INFO - Iter [26700/80000] lr: 2.159e-06, eta: 1 day, 1:39:40, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2411, decode.acc_seg: 89.8234, aux.loss_ce: 0.0985, aux.acc_seg: 89.6944, loss: 0.3396 2024-06-16 09:31:49,366 - mmseg - INFO - Iter [26750/80000] lr: 2.157e-06, eta: 1 day, 1:38:01, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2257, decode.acc_seg: 90.4096, aux.loss_ce: 0.0926, aux.acc_seg: 90.3026, loss: 0.3183 2024-06-16 09:33:09,784 - mmseg - INFO - Iter [26800/80000] lr: 2.154e-06, eta: 1 day, 1:36:22, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2193, decode.acc_seg: 90.4616, aux.loss_ce: 0.0901, aux.acc_seg: 90.3038, loss: 0.3094 2024-06-16 09:34:30,391 - mmseg - INFO - Iter [26850/80000] lr: 2.152e-06, eta: 1 day, 1:34:44, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2312, decode.acc_seg: 90.3059, aux.loss_ce: 0.0944, aux.acc_seg: 90.1769, loss: 0.3256 2024-06-16 09:35:50,903 - mmseg - INFO - Iter [26900/80000] lr: 2.150e-06, eta: 1 day, 1:33:05, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2271, decode.acc_seg: 90.4528, aux.loss_ce: 0.0927, aux.acc_seg: 90.3166, loss: 0.3198 2024-06-16 09:37:24,420 - mmseg - INFO - Iter [26950/80000] lr: 2.148e-06, eta: 1 day, 1:31:52, time: 1.870, data_time: 0.266, memory: 65790, decode.loss_ce: 0.2366, decode.acc_seg: 89.7813, aux.loss_ce: 0.0965, aux.acc_seg: 89.8541, loss: 0.3331 2024-06-16 09:38:44,895 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 09:38:44,895 - mmseg - INFO - Iter [27000/80000] lr: 2.146e-06, eta: 1 day, 1:30:13, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2272, decode.acc_seg: 90.2873, aux.loss_ce: 0.0934, aux.acc_seg: 90.0746, loss: 0.3206 2024-06-16 09:40:06,742 - mmseg - INFO - per class results: 2024-06-16 09:40:06,748 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 80.35 | 88.08 | | building | 84.59 | 94.14 | | sky | 94.27 | 98.04 | | floor | 82.67 | 89.91 | | tree | 75.99 | 88.72 | | ceiling | 86.11 | 93.09 | | road | 86.42 | 91.73 | | bed | 91.1 | 97.41 | | windowpane | 65.97 | 82.73 | | grass | 70.75 | 84.83 | | cabinet | 65.74 | 76.06 | | sidewalk | 71.46 | 85.68 | | person | 83.09 | 93.26 | | earth | 37.99 | 48.27 | | door | 60.08 | 77.32 | | table | 66.11 | 77.84 | | mountain | 64.33 | 74.47 | | plant | 53.93 | 66.68 | | curtain | 77.66 | 88.37 | | chair | 63.75 | 75.8 | | car | 86.07 | 93.04 | | water | 58.6 | 71.2 | | painting | 71.87 | 91.17 | | sofa | 82.5 | 92.97 | | shelf | 47.72 | 60.77 | | house | 49.06 | 61.24 | | sea | 69.95 | 88.35 | | mirror | 78.29 | 90.28 | | rug | 65.55 | 74.57 | | field | 35.09 | 53.81 | | armchair | 62.74 | 78.55 | | seat | 67.47 | 87.18 | | fence | 45.31 | 57.86 | | desk | 52.43 | 85.33 | | rock | 59.94 | 77.38 | | wardrobe | 55.46 | 76.93 | | lamp | 69.67 | 81.74 | | bathtub | 86.19 | 89.07 | | railing | 42.13 | 64.4 | | cushion | 69.03 | 81.18 | | base | 43.46 | 55.03 | | box | 39.65 | 51.04 | | column | 50.43 | 57.36 | | signboard | 40.78 | 54.1 | | chest of drawers | 44.24 | 63.9 | | counter | 39.38 | 42.21 | | sand | 54.5 | 87.07 | | sink | 76.76 | 83.14 | | skyscraper | 49.29 | 61.87 | | fireplace | 71.85 | 95.29 | | refrigerator | 84.61 | 93.07 | | grandstand | 54.24 | 81.02 | | path | 33.49 | 50.02 | | stairs | 31.31 | 38.99 | | runway | 67.68 | 88.77 | | case | 64.8 | 84.79 | | pool table | 93.17 | 98.17 | | pillow | 63.24 | 72.32 | | screen door | 72.59 | 81.0 | | stairway | 43.92 | 55.52 | | river | 14.01 | 28.32 | | bridge | 67.53 | 76.95 | | bookcase | 37.12 | 56.87 | | blind | 43.5 | 53.86 | | coffee table | 60.2 | 86.76 | | toilet | 89.14 | 92.55 | | flower | 46.92 | 59.65 | | book | 51.07 | 74.79 | | hill | 6.9 | 12.18 | | bench | 63.63 | 76.48 | | countertop | 59.07 | 76.89 | | stove | 85.17 | 93.38 | | palm | 50.56 | 72.12 | | kitchen island | 48.21 | 90.45 | | computer | 79.41 | 90.28 | | swivel chair | 50.68 | 80.06 | | boat | 80.6 | 90.71 | | bar | 60.67 | 87.72 | | arcade machine | 82.71 | 88.83 | | hovel | 29.22 | 31.59 | | bus | 92.45 | 96.73 | | towel | 76.73 | 86.9 | | light | 47.96 | 55.45 | | truck | 45.46 | 62.71 | | tower | 20.23 | 26.52 | | chandelier | 71.12 | 84.16 | | awning | 41.68 | 52.97 | | streetlight | 21.83 | 26.15 | | booth | 45.31 | 63.04 | | television receiver | 75.68 | 88.08 | | airplane | 84.28 | 92.92 | | dirt track | 14.65 | 28.76 | | apparel | 56.68 | 71.84 | | pole | 21.1 | 32.09 | | land | 7.44 | 9.26 | | bannister | 21.69 | 30.41 | | escalator | 61.93 | 84.78 | | ottoman | 55.14 | 77.76 | | bottle | 42.61 | 73.31 | | buffet | 60.52 | 71.47 | | poster | 37.53 | 46.17 | | stage | 21.91 | 59.4 | | van | 46.59 | 67.44 | | ship | 21.6 | 22.22 | | fountain | 47.17 | 48.16 | | conveyer belt | 79.38 | 96.44 | | canopy | 48.02 | 67.4 | | washer | 89.0 | 96.06 | | plaything | 28.3 | 42.93 | | swimming pool | 52.96 | 76.52 | | stool | 45.1 | 52.96 | | barrel | 43.26 | 72.8 | | basket | 43.56 | 56.92 | | waterfall | 67.45 | 73.59 | | tent | 94.01 | 98.55 | | bag | 25.05 | 28.78 | | minibike | 71.36 | 84.55 | | cradle | 87.47 | 98.4 | | oven | 61.36 | 69.21 | | ball | 48.75 | 80.73 | | food | 63.12 | 75.34 | | step | 9.66 | 10.94 | | tank | 64.83 | 77.19 | | trade name | 26.25 | 31.33 | | microwave | 87.57 | 95.42 | | pot | 55.46 | 61.46 | | animal | 67.13 | 69.28 | | bicycle | 59.67 | 75.86 | | lake | 56.49 | 63.66 | | dishwasher | 74.57 | 78.78 | | screen | 56.82 | 96.35 | | blanket | 26.69 | 30.18 | | sculpture | 72.79 | 82.99 | | hood | 66.11 | 80.5 | | sconce | 55.85 | 65.52 | | vase | 44.68 | 62.35 | | traffic light | 36.93 | 56.97 | | tray | 21.65 | 33.9 | | ashcan | 50.48 | 60.18 | | fan | 62.82 | 77.67 | | pier | 39.33 | 43.51 | | crt screen | 11.26 | 12.45 | | plate | 59.34 | 76.52 | | monitor | 65.72 | 79.3 | | bulletin board | 57.34 | 80.8 | | shower | 2.95 | 8.74 | | radiator | 62.69 | 85.55 | | glass | 19.95 | 21.35 | | clock | 48.96 | 56.61 | | flag | 64.0 | 68.56 | +---------------------+-------+-------+ 2024-06-16 09:40:06,748 - mmseg - INFO - Summary: 2024-06-16 09:40:06,748 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.52 | 56.39 | 69.46 | +-------+-------+-------+ 2024-06-16 09:40:06,749 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 09:40:06,749 - mmseg - INFO - Iter(val) [250] aAcc: 0.8552, mIoU: 0.5639, mAcc: 0.6946, IoU.wall: 0.8035, IoU.building: 0.8459, IoU.sky: 0.9427, IoU.floor: 0.8267, IoU.tree: 0.7599, IoU.ceiling: 0.8611, IoU.road: 0.8642, IoU.bed : 0.9110, IoU.windowpane: 0.6597, IoU.grass: 0.7075, IoU.cabinet: 0.6574, IoU.sidewalk: 0.7146, IoU.person: 0.8309, IoU.earth: 0.3799, IoU.door: 0.6008, IoU.table: 0.6611, IoU.mountain: 0.6433, IoU.plant: 0.5393, IoU.curtain: 0.7766, IoU.chair: 0.6375, IoU.car: 0.8607, IoU.water: 0.5860, IoU.painting: 0.7187, IoU.sofa: 0.8250, IoU.shelf: 0.4772, IoU.house: 0.4906, IoU.sea: 0.6995, IoU.mirror: 0.7829, IoU.rug: 0.6555, IoU.field: 0.3509, IoU.armchair: 0.6274, IoU.seat: 0.6747, IoU.fence: 0.4531, IoU.desk: 0.5243, IoU.rock: 0.5994, IoU.wardrobe: 0.5546, IoU.lamp: 0.6967, IoU.bathtub: 0.8619, IoU.railing: 0.4213, IoU.cushion: 0.6903, IoU.base: 0.4346, IoU.box: 0.3965, IoU.column: 0.5043, IoU.signboard: 0.4078, IoU.chest of drawers: 0.4424, IoU.counter: 0.3938, IoU.sand: 0.5450, IoU.sink: 0.7676, IoU.skyscraper: 0.4929, IoU.fireplace: 0.7185, IoU.refrigerator: 0.8461, IoU.grandstand: 0.5424, IoU.path: 0.3349, IoU.stairs: 0.3131, IoU.runway: 0.6768, IoU.case: 0.6480, IoU.pool table: 0.9317, IoU.pillow: 0.6324, IoU.screen door: 0.7259, IoU.stairway: 0.4392, IoU.river: 0.1401, IoU.bridge: 0.6753, IoU.bookcase: 0.3712, IoU.blind: 0.4350, IoU.coffee table: 0.6020, IoU.toilet: 0.8914, IoU.flower: 0.4692, IoU.book: 0.5107, IoU.hill: 0.0690, IoU.bench: 0.6363, IoU.countertop: 0.5907, IoU.stove: 0.8517, IoU.palm: 0.5056, IoU.kitchen island: 0.4821, IoU.computer: 0.7941, IoU.swivel chair: 0.5068, IoU.boat: 0.8060, IoU.bar: 0.6067, IoU.arcade machine: 0.8271, IoU.hovel: 0.2922, IoU.bus: 0.9245, IoU.towel: 0.7673, IoU.light: 0.4796, IoU.truck: 0.4546, IoU.tower: 0.2023, IoU.chandelier: 0.7112, IoU.awning: 0.4168, IoU.streetlight: 0.2183, IoU.booth: 0.4531, IoU.television receiver: 0.7568, IoU.airplane: 0.8428, IoU.dirt track: 0.1465, IoU.apparel: 0.5668, IoU.pole: 0.2110, IoU.land: 0.0744, IoU.bannister: 0.2169, IoU.escalator: 0.6193, IoU.ottoman: 0.5514, IoU.bottle: 0.4261, IoU.buffet: 0.6052, IoU.poster: 0.3753, IoU.stage: 0.2191, IoU.van: 0.4659, IoU.ship: 0.2160, IoU.fountain: 0.4717, IoU.conveyer belt: 0.7938, IoU.canopy: 0.4802, IoU.washer: 0.8900, IoU.plaything: 0.2830, IoU.swimming pool: 0.5296, IoU.stool: 0.4510, IoU.barrel: 0.4326, IoU.basket: 0.4356, IoU.waterfall: 0.6745, IoU.tent: 0.9401, IoU.bag: 0.2505, IoU.minibike: 0.7136, IoU.cradle: 0.8747, IoU.oven: 0.6136, IoU.ball: 0.4875, IoU.food: 0.6312, IoU.step: 0.0966, IoU.tank: 0.6483, IoU.trade name: 0.2625, IoU.microwave: 0.8757, IoU.pot: 0.5546, IoU.animal: 0.6713, IoU.bicycle: 0.5967, IoU.lake: 0.5649, IoU.dishwasher: 0.7457, IoU.screen: 0.5682, IoU.blanket: 0.2669, IoU.sculpture: 0.7279, IoU.hood: 0.6611, IoU.sconce: 0.5585, IoU.vase: 0.4468, IoU.traffic light: 0.3693, IoU.tray: 0.2165, IoU.ashcan: 0.5048, IoU.fan: 0.6282, IoU.pier: 0.3933, IoU.crt screen: 0.1126, IoU.plate: 0.5934, IoU.monitor: 0.6572, IoU.bulletin board: 0.5734, IoU.shower: 0.0295, IoU.radiator: 0.6269, IoU.glass: 0.1995, IoU.clock: 0.4896, IoU.flag: 0.6400, Acc.wall: 0.8808, Acc.building: 0.9414, Acc.sky: 0.9804, Acc.floor: 0.8991, Acc.tree: 0.8872, Acc.ceiling: 0.9309, Acc.road: 0.9173, Acc.bed : 0.9741, Acc.windowpane: 0.8273, Acc.grass: 0.8483, Acc.cabinet: 0.7606, Acc.sidewalk: 0.8568, Acc.person: 0.9326, Acc.earth: 0.4827, Acc.door: 0.7732, Acc.table: 0.7784, Acc.mountain: 0.7447, Acc.plant: 0.6668, Acc.curtain: 0.8837, Acc.chair: 0.7580, Acc.car: 0.9304, Acc.water: 0.7120, Acc.painting: 0.9117, Acc.sofa: 0.9297, Acc.shelf: 0.6077, Acc.house: 0.6124, Acc.sea: 0.8835, Acc.mirror: 0.9028, Acc.rug: 0.7457, Acc.field: 0.5381, Acc.armchair: 0.7855, Acc.seat: 0.8718, Acc.fence: 0.5786, Acc.desk: 0.8533, Acc.rock: 0.7738, Acc.wardrobe: 0.7693, Acc.lamp: 0.8174, Acc.bathtub: 0.8907, Acc.railing: 0.6440, Acc.cushion: 0.8118, Acc.base: 0.5503, Acc.box: 0.5104, Acc.column: 0.5736, Acc.signboard: 0.5410, Acc.chest of drawers: 0.6390, Acc.counter: 0.4221, Acc.sand: 0.8707, Acc.sink: 0.8314, Acc.skyscraper: 0.6187, Acc.fireplace: 0.9529, Acc.refrigerator: 0.9307, Acc.grandstand: 0.8102, Acc.path: 0.5002, Acc.stairs: 0.3899, Acc.runway: 0.8877, Acc.case: 0.8479, Acc.pool table: 0.9817, Acc.pillow: 0.7232, Acc.screen door: 0.8100, Acc.stairway: 0.5552, Acc.river: 0.2832, Acc.bridge: 0.7695, Acc.bookcase: 0.5687, Acc.blind: 0.5386, Acc.coffee table: 0.8676, Acc.toilet: 0.9255, Acc.flower: 0.5965, Acc.book: 0.7479, Acc.hill: 0.1218, Acc.bench: 0.7648, Acc.countertop: 0.7689, Acc.stove: 0.9338, Acc.palm: 0.7212, Acc.kitchen island: 0.9045, Acc.computer: 0.9028, Acc.swivel chair: 0.8006, Acc.boat: 0.9071, Acc.bar: 0.8772, Acc.arcade machine: 0.8883, Acc.hovel: 0.3159, Acc.bus: 0.9673, Acc.towel: 0.8690, Acc.light: 0.5545, Acc.truck: 0.6271, Acc.tower: 0.2652, Acc.chandelier: 0.8416, Acc.awning: 0.5297, Acc.streetlight: 0.2615, Acc.booth: 0.6304, Acc.television receiver: 0.8808, Acc.airplane: 0.9292, Acc.dirt track: 0.2876, Acc.apparel: 0.7184, Acc.pole: 0.3209, Acc.land: 0.0926, Acc.bannister: 0.3041, Acc.escalator: 0.8478, Acc.ottoman: 0.7776, Acc.bottle: 0.7331, Acc.buffet: 0.7147, Acc.poster: 0.4617, Acc.stage: 0.5940, Acc.van: 0.6744, Acc.ship: 0.2222, Acc.fountain: 0.4816, Acc.conveyer belt: 0.9644, Acc.canopy: 0.6740, Acc.washer: 0.9606, Acc.plaything: 0.4293, Acc.swimming pool: 0.7652, Acc.stool: 0.5296, Acc.barrel: 0.7280, Acc.basket: 0.5692, Acc.waterfall: 0.7359, Acc.tent: 0.9855, Acc.bag: 0.2878, Acc.minibike: 0.8455, Acc.cradle: 0.9840, Acc.oven: 0.6921, Acc.ball: 0.8073, Acc.food: 0.7534, Acc.step: 0.1094, Acc.tank: 0.7719, Acc.trade name: 0.3133, Acc.microwave: 0.9542, Acc.pot: 0.6146, Acc.animal: 0.6928, Acc.bicycle: 0.7586, Acc.lake: 0.6366, Acc.dishwasher: 0.7878, Acc.screen: 0.9635, Acc.blanket: 0.3018, Acc.sculpture: 0.8299, Acc.hood: 0.8050, Acc.sconce: 0.6552, Acc.vase: 0.6235, Acc.traffic light: 0.5697, Acc.tray: 0.3390, Acc.ashcan: 0.6018, Acc.fan: 0.7767, Acc.pier: 0.4351, Acc.crt screen: 0.1245, Acc.plate: 0.7652, Acc.monitor: 0.7930, Acc.bulletin board: 0.8080, Acc.shower: 0.0874, Acc.radiator: 0.8555, Acc.glass: 0.2135, Acc.clock: 0.5661, Acc.flag: 0.6856 2024-06-16 09:41:27,528 - mmseg - INFO - Iter [27050/80000] lr: 2.144e-06, eta: 1 day, 1:31:16, time: 3.253, data_time: 1.650, memory: 65790, decode.loss_ce: 0.2341, decode.acc_seg: 90.0316, aux.loss_ce: 0.0955, aux.acc_seg: 89.9354, loss: 0.3295 2024-06-16 09:42:48,076 - mmseg - INFO - Iter [27100/80000] lr: 2.142e-06, eta: 1 day, 1:29:37, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2382, decode.acc_seg: 89.9810, aux.loss_ce: 0.0951, aux.acc_seg: 90.0618, loss: 0.3333 2024-06-16 09:44:08,592 - mmseg - INFO - Iter [27150/80000] lr: 2.140e-06, eta: 1 day, 1:27:58, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2246, decode.acc_seg: 90.3343, aux.loss_ce: 0.0906, aux.acc_seg: 90.3523, loss: 0.3153 2024-06-16 09:45:29,111 - mmseg - INFO - Iter [27200/80000] lr: 2.138e-06, eta: 1 day, 1:26:19, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2208, decode.acc_seg: 90.6091, aux.loss_ce: 0.0903, aux.acc_seg: 90.5134, loss: 0.3111 2024-06-16 09:46:49,660 - mmseg - INFO - Iter [27250/80000] lr: 2.136e-06, eta: 1 day, 1:24:40, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2380, decode.acc_seg: 89.8365, aux.loss_ce: 0.0960, aux.acc_seg: 89.8160, loss: 0.3340 2024-06-16 09:48:10,213 - mmseg - INFO - Iter [27300/80000] lr: 2.134e-06, eta: 1 day, 1:23:02, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2364, decode.acc_seg: 90.1489, aux.loss_ce: 0.0956, aux.acc_seg: 90.1044, loss: 0.3320 2024-06-16 09:49:30,673 - mmseg - INFO - Iter [27350/80000] lr: 2.132e-06, eta: 1 day, 1:21:23, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2326, decode.acc_seg: 90.4213, aux.loss_ce: 0.0945, aux.acc_seg: 90.3836, loss: 0.3271 2024-06-16 09:50:51,181 - mmseg - INFO - Iter [27400/80000] lr: 2.130e-06, eta: 1 day, 1:19:44, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2368, decode.acc_seg: 89.6491, aux.loss_ce: 0.0955, aux.acc_seg: 89.6570, loss: 0.3323 2024-06-16 09:52:11,643 - mmseg - INFO - Iter [27450/80000] lr: 2.128e-06, eta: 1 day, 1:18:06, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2308, decode.acc_seg: 90.3128, aux.loss_ce: 0.0941, aux.acc_seg: 90.1619, loss: 0.3249 2024-06-16 09:53:32,208 - mmseg - INFO - Iter [27500/80000] lr: 2.126e-06, eta: 1 day, 1:16:28, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2407, decode.acc_seg: 90.0065, aux.loss_ce: 0.0983, aux.acc_seg: 89.9281, loss: 0.3390 2024-06-16 09:54:52,658 - mmseg - INFO - Iter [27550/80000] lr: 2.124e-06, eta: 1 day, 1:14:49, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2421, decode.acc_seg: 89.9831, aux.loss_ce: 0.0985, aux.acc_seg: 89.8265, loss: 0.3406 2024-06-16 09:56:13,086 - mmseg - INFO - Iter [27600/80000] lr: 2.122e-06, eta: 1 day, 1:13:11, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2272, decode.acc_seg: 90.5002, aux.loss_ce: 0.0928, aux.acc_seg: 90.4603, loss: 0.3200 2024-06-16 09:57:33,658 - mmseg - INFO - Iter [27650/80000] lr: 2.120e-06, eta: 1 day, 1:11:33, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2407, decode.acc_seg: 89.9856, aux.loss_ce: 0.0974, aux.acc_seg: 89.9112, loss: 0.3381 2024-06-16 09:58:54,216 - mmseg - INFO - Iter [27700/80000] lr: 2.118e-06, eta: 1 day, 1:09:54, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2403, decode.acc_seg: 89.8789, aux.loss_ce: 0.0962, aux.acc_seg: 90.0004, loss: 0.3364 2024-06-16 10:00:14,984 - mmseg - INFO - Iter [27750/80000] lr: 2.116e-06, eta: 1 day, 1:08:17, time: 1.615, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2401, decode.acc_seg: 90.1194, aux.loss_ce: 0.0979, aux.acc_seg: 90.0041, loss: 0.3379 2024-06-16 10:01:37,772 - mmseg - INFO - Iter [27800/80000] lr: 2.114e-06, eta: 1 day, 1:06:43, time: 1.656, data_time: 0.049, memory: 65790, decode.loss_ce: 0.2224, decode.acc_seg: 90.3743, aux.loss_ce: 0.0905, aux.acc_seg: 90.3230, loss: 0.3129 2024-06-16 10:02:58,374 - mmseg - INFO - Iter [27850/80000] lr: 2.112e-06, eta: 1 day, 1:05:05, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2290, decode.acc_seg: 90.0730, aux.loss_ce: 0.0933, aux.acc_seg: 90.0359, loss: 0.3223 2024-06-16 10:04:18,784 - mmseg - INFO - Iter [27900/80000] lr: 2.110e-06, eta: 1 day, 1:03:27, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2398, decode.acc_seg: 90.0140, aux.loss_ce: 0.0983, aux.acc_seg: 89.9079, loss: 0.3381 2024-06-16 10:05:39,256 - mmseg - INFO - Iter [27950/80000] lr: 2.108e-06, eta: 1 day, 1:01:49, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2431, decode.acc_seg: 89.7529, aux.loss_ce: 0.0983, aux.acc_seg: 89.8524, loss: 0.3415 2024-06-16 10:06:59,711 - mmseg - INFO - Saving checkpoint at 28000 iterations 2024-06-16 10:08:09,256 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 10:08:09,256 - mmseg - INFO - Iter [28000/80000] lr: 2.106e-06, eta: 1 day, 1:02:20, time: 3.000, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2328, decode.acc_seg: 90.3031, aux.loss_ce: 0.0940, aux.acc_seg: 90.1517, loss: 0.3268 2024-06-16 10:09:31,281 - mmseg - INFO - per class results: 2024-06-16 10:09:31,288 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 80.22 | 87.74 | | building | 83.43 | 92.51 | | sky | 94.24 | 97.38 | | floor | 83.66 | 88.95 | | tree | 77.16 | 88.78 | | ceiling | 85.14 | 94.74 | | road | 85.91 | 93.03 | | bed | 91.38 | 97.06 | | windowpane | 65.43 | 81.97 | | grass | 63.97 | 76.56 | | cabinet | 65.41 | 75.7 | | sidewalk | 68.34 | 80.05 | | person | 83.17 | 92.61 | | earth | 37.05 | 48.98 | | door | 59.55 | 72.4 | | table | 67.1 | 79.04 | | mountain | 62.4 | 73.51 | | plant | 56.85 | 75.79 | | curtain | 76.69 | 87.98 | | chair | 63.14 | 77.63 | | car | 85.87 | 93.48 | | water | 53.29 | 64.18 | | painting | 72.54 | 92.16 | | sofa | 79.82 | 91.05 | | shelf | 43.78 | 53.01 | | house | 39.26 | 47.45 | | sea | 66.12 | 84.25 | | mirror | 76.9 | 85.4 | | rug | 68.5 | 82.1 | | field | 27.98 | 59.65 | | armchair | 63.51 | 80.83 | | seat | 64.68 | 84.45 | | fence | 47.42 | 54.33 | | desk | 54.27 | 83.65 | | rock | 53.58 | 79.49 | | wardrobe | 55.21 | 75.9 | | lamp | 68.95 | 81.2 | | bathtub | 89.61 | 92.52 | | railing | 40.93 | 57.31 | | cushion | 69.81 | 80.19 | | base | 47.06 | 64.13 | | box | 40.04 | 54.17 | | column | 51.1 | 60.24 | | signboard | 38.86 | 49.9 | | chest of drawers | 49.47 | 74.29 | | counter | 50.9 | 58.62 | | sand | 51.71 | 76.12 | | sink | 77.33 | 83.03 | | skyscraper | 48.36 | 66.56 | | fireplace | 71.3 | 94.49 | | refrigerator | 80.39 | 87.05 | | grandstand | 48.26 | 81.37 | | path | 28.77 | 45.18 | | stairs | 32.1 | 36.31 | | runway | 68.59 | 89.63 | | case | 64.47 | 88.3 | | pool table | 92.87 | 98.2 | | pillow | 65.21 | 75.67 | | screen door | 80.44 | 84.5 | | stairway | 55.46 | 70.34 | | river | 12.45 | 35.32 | | bridge | 71.05 | 85.84 | | bookcase | 39.39 | 53.06 | | blind | 43.38 | 50.96 | | coffee table | 60.03 | 87.13 | | toilet | 88.72 | 94.27 | | flower | 43.15 | 53.63 | | book | 49.59 | 82.52 | | hill | 7.69 | 12.18 | | bench | 57.46 | 62.64 | | countertop | 60.64 | 88.66 | | stove | 85.73 | 93.83 | | palm | 53.43 | 77.58 | | kitchen island | 50.35 | 86.88 | | computer | 75.85 | 91.14 | | swivel chair | 47.8 | 88.91 | | boat | 80.88 | 87.92 | | bar | 59.68 | 88.39 | | arcade machine | 80.36 | 86.96 | | hovel | 26.43 | 28.01 | | bus | 89.35 | 96.86 | | towel | 75.48 | 86.32 | | light | 49.76 | 56.63 | | truck | 38.97 | 53.6 | | tower | 28.91 | 57.8 | | chandelier | 69.79 | 85.3 | | awning | 35.19 | 42.98 | | streetlight | 26.48 | 33.58 | | booth | 54.78 | 76.99 | | television receiver | 75.72 | 89.14 | | airplane | 67.22 | 72.92 | | dirt track | 13.6 | 18.42 | | apparel | 50.95 | 61.64 | | pole | 27.47 | 40.37 | | land | 1.22 | 1.88 | | bannister | 14.74 | 19.55 | | escalator | 59.9 | 89.56 | | ottoman | 55.82 | 76.4 | | bottle | 42.84 | 70.53 | | buffet | 59.11 | 71.99 | | poster | 33.06 | 52.71 | | stage | 24.99 | 67.46 | | van | 47.98 | 72.0 | | ship | 82.03 | 87.03 | | fountain | 45.93 | 50.74 | | conveyer belt | 77.43 | 96.06 | | canopy | 49.3 | 68.15 | | washer | 87.48 | 94.88 | | plaything | 30.7 | 46.73 | | swimming pool | 56.39 | 83.73 | | stool | 46.34 | 62.08 | | barrel | 51.24 | 70.22 | | basket | 43.74 | 55.6 | | waterfall | 58.36 | 73.19 | | tent | 93.11 | 98.4 | | bag | 26.39 | 30.13 | | minibike | 69.72 | 89.71 | | cradle | 83.91 | 97.98 | | oven | 55.64 | 69.91 | | ball | 62.04 | 70.94 | | food | 66.36 | 73.48 | | step | 13.09 | 14.66 | | tank | 66.03 | 88.0 | | trade name | 27.42 | 33.97 | | microwave | 85.42 | 96.77 | | pot | 56.96 | 65.01 | | animal | 61.07 | 62.26 | | bicycle | 58.9 | 73.75 | | lake | 56.32 | 63.07 | | dishwasher | 72.37 | 80.67 | | screen | 59.11 | 96.28 | | blanket | 33.17 | 37.54 | | sculpture | 73.26 | 87.59 | | hood | 58.74 | 69.33 | | sconce | 57.34 | 72.68 | | vase | 45.34 | 63.36 | | traffic light | 32.21 | 65.2 | | tray | 19.54 | 24.79 | | ashcan | 48.12 | 69.97 | | fan | 63.67 | 77.68 | | pier | 38.11 | 41.73 | | crt screen | 2.99 | 3.27 | | plate | 61.96 | 78.25 | | monitor | 65.87 | 80.58 | | bulletin board | 60.85 | 72.02 | | shower | 5.16 | 5.39 | | radiator | 63.28 | 82.53 | | glass | 19.71 | 21.66 | | clock | 48.75 | 57.97 | | flag | 67.45 | 75.63 | +---------------------+-------+-------+ 2024-06-16 10:09:31,288 - mmseg - INFO - Summary: 2024-06-16 10:09:31,288 - mmseg - INFO - +-------+------+-------+ | aAcc | mIoU | mAcc | +-------+------+-------+ | 85.06 | 56.4 | 70.23 | +-------+------+-------+ 2024-06-16 10:09:31,289 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 10:09:31,289 - mmseg - INFO - Iter(val) [250] aAcc: 0.8506, mIoU: 0.5640, mAcc: 0.7023, IoU.wall: 0.8022, IoU.building: 0.8343, IoU.sky: 0.9424, IoU.floor: 0.8366, IoU.tree: 0.7716, IoU.ceiling: 0.8514, IoU.road: 0.8591, IoU.bed : 0.9138, IoU.windowpane: 0.6543, IoU.grass: 0.6397, IoU.cabinet: 0.6541, IoU.sidewalk: 0.6834, IoU.person: 0.8317, IoU.earth: 0.3705, IoU.door: 0.5955, IoU.table: 0.6710, IoU.mountain: 0.6240, IoU.plant: 0.5685, IoU.curtain: 0.7669, IoU.chair: 0.6314, IoU.car: 0.8587, IoU.water: 0.5329, IoU.painting: 0.7254, IoU.sofa: 0.7982, IoU.shelf: 0.4378, IoU.house: 0.3926, IoU.sea: 0.6612, IoU.mirror: 0.7690, IoU.rug: 0.6850, IoU.field: 0.2798, IoU.armchair: 0.6351, IoU.seat: 0.6468, IoU.fence: 0.4742, IoU.desk: 0.5427, IoU.rock: 0.5358, IoU.wardrobe: 0.5521, IoU.lamp: 0.6895, IoU.bathtub: 0.8961, IoU.railing: 0.4093, IoU.cushion: 0.6981, IoU.base: 0.4706, IoU.box: 0.4004, IoU.column: 0.5110, IoU.signboard: 0.3886, IoU.chest of drawers: 0.4947, IoU.counter: 0.5090, IoU.sand: 0.5171, IoU.sink: 0.7733, IoU.skyscraper: 0.4836, IoU.fireplace: 0.7130, IoU.refrigerator: 0.8039, IoU.grandstand: 0.4826, IoU.path: 0.2877, IoU.stairs: 0.3210, IoU.runway: 0.6859, IoU.case: 0.6447, IoU.pool table: 0.9287, IoU.pillow: 0.6521, IoU.screen door: 0.8044, IoU.stairway: 0.5546, IoU.river: 0.1245, IoU.bridge: 0.7105, IoU.bookcase: 0.3939, IoU.blind: 0.4338, IoU.coffee table: 0.6003, IoU.toilet: 0.8872, IoU.flower: 0.4315, IoU.book: 0.4959, IoU.hill: 0.0769, IoU.bench: 0.5746, IoU.countertop: 0.6064, IoU.stove: 0.8573, IoU.palm: 0.5343, IoU.kitchen island: 0.5035, IoU.computer: 0.7585, IoU.swivel chair: 0.4780, IoU.boat: 0.8088, IoU.bar: 0.5968, IoU.arcade machine: 0.8036, IoU.hovel: 0.2643, IoU.bus: 0.8935, IoU.towel: 0.7548, IoU.light: 0.4976, IoU.truck: 0.3897, IoU.tower: 0.2891, IoU.chandelier: 0.6979, IoU.awning: 0.3519, IoU.streetlight: 0.2648, IoU.booth: 0.5478, IoU.television receiver: 0.7572, IoU.airplane: 0.6722, IoU.dirt track: 0.1360, IoU.apparel: 0.5095, IoU.pole: 0.2747, IoU.land: 0.0122, IoU.bannister: 0.1474, IoU.escalator: 0.5990, IoU.ottoman: 0.5582, IoU.bottle: 0.4284, IoU.buffet: 0.5911, IoU.poster: 0.3306, IoU.stage: 0.2499, IoU.van: 0.4798, IoU.ship: 0.8203, IoU.fountain: 0.4593, IoU.conveyer belt: 0.7743, IoU.canopy: 0.4930, IoU.washer: 0.8748, IoU.plaything: 0.3070, IoU.swimming pool: 0.5639, IoU.stool: 0.4634, IoU.barrel: 0.5124, IoU.basket: 0.4374, IoU.waterfall: 0.5836, IoU.tent: 0.9311, IoU.bag: 0.2639, IoU.minibike: 0.6972, IoU.cradle: 0.8391, IoU.oven: 0.5564, IoU.ball: 0.6204, IoU.food: 0.6636, IoU.step: 0.1309, IoU.tank: 0.6603, IoU.trade name: 0.2742, IoU.microwave: 0.8542, IoU.pot: 0.5696, IoU.animal: 0.6107, IoU.bicycle: 0.5890, IoU.lake: 0.5632, IoU.dishwasher: 0.7237, IoU.screen: 0.5911, IoU.blanket: 0.3317, IoU.sculpture: 0.7326, IoU.hood: 0.5874, IoU.sconce: 0.5734, IoU.vase: 0.4534, IoU.traffic light: 0.3221, IoU.tray: 0.1954, IoU.ashcan: 0.4812, IoU.fan: 0.6367, IoU.pier: 0.3811, IoU.crt screen: 0.0299, IoU.plate: 0.6196, IoU.monitor: 0.6587, IoU.bulletin board: 0.6085, IoU.shower: 0.0516, IoU.radiator: 0.6328, IoU.glass: 0.1971, IoU.clock: 0.4875, IoU.flag: 0.6745, Acc.wall: 0.8774, Acc.building: 0.9251, Acc.sky: 0.9738, Acc.floor: 0.8895, Acc.tree: 0.8878, Acc.ceiling: 0.9474, Acc.road: 0.9303, Acc.bed : 0.9706, Acc.windowpane: 0.8197, Acc.grass: 0.7656, Acc.cabinet: 0.7570, Acc.sidewalk: 0.8005, Acc.person: 0.9261, Acc.earth: 0.4898, Acc.door: 0.7240, Acc.table: 0.7904, Acc.mountain: 0.7351, Acc.plant: 0.7579, Acc.curtain: 0.8798, Acc.chair: 0.7763, Acc.car: 0.9348, Acc.water: 0.6418, Acc.painting: 0.9216, Acc.sofa: 0.9105, Acc.shelf: 0.5301, Acc.house: 0.4745, Acc.sea: 0.8425, Acc.mirror: 0.8540, Acc.rug: 0.8210, Acc.field: 0.5965, Acc.armchair: 0.8083, Acc.seat: 0.8445, Acc.fence: 0.5433, Acc.desk: 0.8365, Acc.rock: 0.7949, Acc.wardrobe: 0.7590, Acc.lamp: 0.8120, Acc.bathtub: 0.9252, Acc.railing: 0.5731, Acc.cushion: 0.8019, Acc.base: 0.6413, Acc.box: 0.5417, Acc.column: 0.6024, Acc.signboard: 0.4990, Acc.chest of drawers: 0.7429, Acc.counter: 0.5862, Acc.sand: 0.7612, Acc.sink: 0.8303, Acc.skyscraper: 0.6656, Acc.fireplace: 0.9449, Acc.refrigerator: 0.8705, Acc.grandstand: 0.8137, Acc.path: 0.4518, Acc.stairs: 0.3631, Acc.runway: 0.8963, Acc.case: 0.8830, Acc.pool table: 0.9820, Acc.pillow: 0.7567, Acc.screen door: 0.8450, Acc.stairway: 0.7034, Acc.river: 0.3532, Acc.bridge: 0.8584, Acc.bookcase: 0.5306, Acc.blind: 0.5096, Acc.coffee table: 0.8713, Acc.toilet: 0.9427, Acc.flower: 0.5363, Acc.book: 0.8252, Acc.hill: 0.1218, Acc.bench: 0.6264, Acc.countertop: 0.8866, Acc.stove: 0.9383, Acc.palm: 0.7758, Acc.kitchen island: 0.8688, Acc.computer: 0.9114, Acc.swivel chair: 0.8891, Acc.boat: 0.8792, Acc.bar: 0.8839, Acc.arcade machine: 0.8696, Acc.hovel: 0.2801, Acc.bus: 0.9686, Acc.towel: 0.8632, Acc.light: 0.5663, Acc.truck: 0.5360, Acc.tower: 0.5780, Acc.chandelier: 0.8530, Acc.awning: 0.4298, Acc.streetlight: 0.3358, Acc.booth: 0.7699, Acc.television receiver: 0.8914, Acc.airplane: 0.7292, Acc.dirt track: 0.1842, Acc.apparel: 0.6164, Acc.pole: 0.4037, Acc.land: 0.0188, Acc.bannister: 0.1955, Acc.escalator: 0.8956, Acc.ottoman: 0.7640, Acc.bottle: 0.7053, Acc.buffet: 0.7199, Acc.poster: 0.5271, Acc.stage: 0.6746, Acc.van: 0.7200, Acc.ship: 0.8703, Acc.fountain: 0.5074, Acc.conveyer belt: 0.9606, Acc.canopy: 0.6815, Acc.washer: 0.9488, Acc.plaything: 0.4673, Acc.swimming pool: 0.8373, Acc.stool: 0.6208, Acc.barrel: 0.7022, Acc.basket: 0.5560, Acc.waterfall: 0.7319, Acc.tent: 0.9840, Acc.bag: 0.3013, Acc.minibike: 0.8971, Acc.cradle: 0.9798, Acc.oven: 0.6991, Acc.ball: 0.7094, Acc.food: 0.7348, Acc.step: 0.1466, Acc.tank: 0.8800, Acc.trade name: 0.3397, Acc.microwave: 0.9677, Acc.pot: 0.6501, Acc.animal: 0.6226, Acc.bicycle: 0.7375, Acc.lake: 0.6307, Acc.dishwasher: 0.8067, Acc.screen: 0.9628, Acc.blanket: 0.3754, Acc.sculpture: 0.8759, Acc.hood: 0.6933, Acc.sconce: 0.7268, Acc.vase: 0.6336, Acc.traffic light: 0.6520, Acc.tray: 0.2479, Acc.ashcan: 0.6997, Acc.fan: 0.7768, Acc.pier: 0.4173, Acc.crt screen: 0.0327, Acc.plate: 0.7825, Acc.monitor: 0.8058, Acc.bulletin board: 0.7202, Acc.shower: 0.0539, Acc.radiator: 0.8253, Acc.glass: 0.2166, Acc.clock: 0.5797, Acc.flag: 0.7563 2024-06-16 10:10:52,208 - mmseg - INFO - Iter [28050/80000] lr: 2.104e-06, eta: 1 day, 1:03:15, time: 3.259, data_time: 1.654, memory: 65790, decode.loss_ce: 0.2188, decode.acc_seg: 90.6243, aux.loss_ce: 0.0895, aux.acc_seg: 90.5286, loss: 0.3083 2024-06-16 10:12:12,640 - mmseg - INFO - Iter [28100/80000] lr: 2.102e-06, eta: 1 day, 1:01:36, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2185, decode.acc_seg: 90.7472, aux.loss_ce: 0.0892, aux.acc_seg: 90.6817, loss: 0.3077 2024-06-16 10:13:33,057 - mmseg - INFO - Iter [28150/80000] lr: 2.100e-06, eta: 1 day, 0:59:58, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2235, decode.acc_seg: 90.7425, aux.loss_ce: 0.0914, aux.acc_seg: 90.7066, loss: 0.3149 2024-06-16 10:14:53,514 - mmseg - INFO - Iter [28200/80000] lr: 2.098e-06, eta: 1 day, 0:58:19, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2227, decode.acc_seg: 90.7052, aux.loss_ce: 0.0904, aux.acc_seg: 90.6621, loss: 0.3131 2024-06-16 10:16:13,964 - mmseg - INFO - Iter [28250/80000] lr: 2.096e-06, eta: 1 day, 0:56:41, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2261, decode.acc_seg: 90.6572, aux.loss_ce: 0.0930, aux.acc_seg: 90.5276, loss: 0.3191 2024-06-16 10:17:34,386 - mmseg - INFO - Iter [28300/80000] lr: 2.094e-06, eta: 1 day, 0:55:03, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2305, decode.acc_seg: 90.5003, aux.loss_ce: 0.0948, aux.acc_seg: 90.3619, loss: 0.3254 2024-06-16 10:18:54,989 - mmseg - INFO - Iter [28350/80000] lr: 2.092e-06, eta: 1 day, 0:53:25, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2370, decode.acc_seg: 90.1004, aux.loss_ce: 0.0969, aux.acc_seg: 89.9759, loss: 0.3339 2024-06-16 10:20:15,408 - mmseg - INFO - Iter [28400/80000] lr: 2.090e-06, eta: 1 day, 0:51:47, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2275, decode.acc_seg: 90.1828, aux.loss_ce: 0.0934, aux.acc_seg: 90.0426, loss: 0.3209 2024-06-16 10:21:36,011 - mmseg - INFO - Iter [28450/80000] lr: 2.088e-06, eta: 1 day, 0:50:09, time: 1.612, data_time: 0.008, memory: 65790, decode.loss_ce: 0.2326, decode.acc_seg: 90.3209, aux.loss_ce: 0.0942, aux.acc_seg: 90.2288, loss: 0.3268 2024-06-16 10:22:56,394 - mmseg - INFO - Iter [28500/80000] lr: 2.086e-06, eta: 1 day, 0:48:31, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2235, decode.acc_seg: 90.3813, aux.loss_ce: 0.0924, aux.acc_seg: 90.2429, loss: 0.3159 2024-06-16 10:24:16,835 - mmseg - INFO - Iter [28550/80000] lr: 2.084e-06, eta: 1 day, 0:46:53, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2234, decode.acc_seg: 90.1745, aux.loss_ce: 0.0918, aux.acc_seg: 90.0582, loss: 0.3151 2024-06-16 10:25:37,271 - mmseg - INFO - Iter [28600/80000] lr: 2.082e-06, eta: 1 day, 0:45:15, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2234, decode.acc_seg: 90.3600, aux.loss_ce: 0.0903, aux.acc_seg: 90.3952, loss: 0.3137 2024-06-16 10:26:57,773 - mmseg - INFO - Iter [28650/80000] lr: 2.080e-06, eta: 1 day, 0:43:37, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2245, decode.acc_seg: 90.5442, aux.loss_ce: 0.0912, aux.acc_seg: 90.4206, loss: 0.3158 2024-06-16 10:28:18,430 - mmseg - INFO - Iter [28700/80000] lr: 2.078e-06, eta: 1 day, 0:41:59, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2265, decode.acc_seg: 90.2344, aux.loss_ce: 0.0924, aux.acc_seg: 90.1783, loss: 0.3189 2024-06-16 10:29:38,877 - mmseg - INFO - Iter [28750/80000] lr: 2.076e-06, eta: 1 day, 0:40:22, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2415, decode.acc_seg: 89.7939, aux.loss_ce: 0.0987, aux.acc_seg: 89.6734, loss: 0.3403 2024-06-16 10:30:59,342 - mmseg - INFO - Iter [28800/80000] lr: 2.074e-06, eta: 1 day, 0:38:44, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2282, decode.acc_seg: 90.3007, aux.loss_ce: 0.0922, aux.acc_seg: 90.3310, loss: 0.3203 2024-06-16 10:32:19,759 - mmseg - INFO - Iter [28850/80000] lr: 2.071e-06, eta: 1 day, 0:37:06, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2394, decode.acc_seg: 89.9222, aux.loss_ce: 0.0979, aux.acc_seg: 89.7956, loss: 0.3373 2024-06-16 10:33:40,161 - mmseg - INFO - Iter [28900/80000] lr: 2.069e-06, eta: 1 day, 0:35:29, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2413, decode.acc_seg: 89.5700, aux.loss_ce: 0.0979, aux.acc_seg: 89.5727, loss: 0.3392 2024-06-16 10:35:00,751 - mmseg - INFO - Iter [28950/80000] lr: 2.067e-06, eta: 1 day, 0:33:51, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2287, decode.acc_seg: 90.2751, aux.loss_ce: 0.0937, aux.acc_seg: 90.1723, loss: 0.3224 2024-06-16 10:36:21,344 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 10:36:21,345 - mmseg - INFO - Iter [29000/80000] lr: 2.065e-06, eta: 1 day, 0:32:14, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2278, decode.acc_seg: 90.5264, aux.loss_ce: 0.0927, aux.acc_seg: 90.4152, loss: 0.3205 2024-06-16 10:37:45,808 - mmseg - INFO - per class results: 2024-06-16 10:37:45,814 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 81.29 | 88.53 | | building | 84.21 | 93.63 | | sky | 94.49 | 97.71 | | floor | 83.9 | 90.64 | | tree | 76.53 | 86.01 | | ceiling | 86.35 | 93.42 | | road | 86.04 | 92.25 | | bed | 91.6 | 96.78 | | windowpane | 64.81 | 79.16 | | grass | 69.48 | 87.69 | | cabinet | 66.03 | 77.82 | | sidewalk | 69.78 | 83.42 | | person | 83.32 | 93.34 | | earth | 41.15 | 52.8 | | door | 57.01 | 75.11 | | table | 66.5 | 78.43 | | mountain | 64.01 | 74.02 | | plant | 57.71 | 68.56 | | curtain | 77.91 | 88.68 | | chair | 63.84 | 76.91 | | car | 86.06 | 93.84 | | water | 58.63 | 73.37 | | painting | 76.19 | 90.2 | | sofa | 81.05 | 89.52 | | shelf | 50.56 | 70.78 | | house | 50.05 | 63.12 | | sea | 66.51 | 74.04 | | mirror | 74.84 | 83.25 | | rug | 65.31 | 78.54 | | field | 37.99 | 54.46 | | armchair | 62.03 | 82.37 | | seat | 66.66 | 89.1 | | fence | 52.17 | 65.81 | | desk | 58.58 | 75.5 | | rock | 57.98 | 80.88 | | wardrobe | 52.4 | 72.13 | | lamp | 69.31 | 81.29 | | bathtub | 85.1 | 87.62 | | railing | 43.85 | 66.55 | | cushion | 69.06 | 82.68 | | base | 42.35 | 59.89 | | box | 37.02 | 50.31 | | column | 56.25 | 71.15 | | signboard | 39.81 | 50.41 | | chest of drawers | 41.95 | 64.3 | | counter | 47.46 | 56.53 | | sand | 51.02 | 80.15 | | sink | 77.87 | 83.24 | | skyscraper | 45.89 | 62.18 | | fireplace | 72.78 | 95.84 | | refrigerator | 85.27 | 93.26 | | grandstand | 52.7 | 82.68 | | path | 34.77 | 46.13 | | stairs | 36.97 | 50.88 | | runway | 68.43 | 90.23 | | case | 59.41 | 76.94 | | pool table | 93.55 | 97.86 | | pillow | 66.7 | 78.0 | | screen door | 61.95 | 65.38 | | stairway | 53.54 | 63.33 | | river | 13.54 | 30.58 | | bridge | 70.09 | 81.97 | | bookcase | 43.52 | 51.39 | | blind | 39.66 | 44.39 | | coffee table | 59.71 | 83.71 | | toilet | 89.23 | 93.79 | | flower | 42.16 | 51.12 | | book | 51.89 | 77.43 | | hill | 7.54 | 12.77 | | bench | 58.1 | 67.72 | | countertop | 62.59 | 78.97 | | stove | 85.68 | 91.98 | | palm | 53.25 | 83.37 | | kitchen island | 47.27 | 91.36 | | computer | 77.21 | 90.72 | | swivel chair | 46.69 | 67.18 | | boat | 72.17 | 84.6 | | bar | 58.93 | 86.53 | | arcade machine | 77.22 | 83.91 | | hovel | 46.41 | 50.45 | | bus | 90.93 | 97.05 | | towel | 74.13 | 86.55 | | light | 51.46 | 61.61 | | truck | 44.11 | 61.35 | | tower | 33.33 | 59.14 | | chandelier | 70.02 | 86.08 | | awning | 37.05 | 49.79 | | streetlight | 25.97 | 34.0 | | booth | 54.39 | 81.36 | | television receiver | 77.04 | 89.12 | | airplane | 82.95 | 90.34 | | dirt track | 12.88 | 30.56 | | apparel | 53.05 | 62.11 | | pole | 20.09 | 25.64 | | land | 3.9 | 5.59 | | bannister | 15.45 | 19.62 | | escalator | 65.12 | 85.66 | | ottoman | 55.45 | 71.86 | | bottle | 42.09 | 63.87 | | buffet | 49.92 | 54.6 | | poster | 38.01 | 52.04 | | stage | 19.47 | 47.34 | | van | 46.13 | 59.03 | | ship | 78.57 | 98.82 | | fountain | 54.39 | 62.06 | | conveyer belt | 71.13 | 96.15 | | canopy | 48.93 | 76.0 | | washer | 88.94 | 95.49 | | plaything | 34.12 | 53.69 | | swimming pool | 53.49 | 79.01 | | stool | 45.38 | 60.47 | | barrel | 50.44 | 71.48 | | basket | 43.0 | 58.35 | | waterfall | 72.81 | 87.24 | | tent | 93.44 | 98.72 | | bag | 25.89 | 31.05 | | minibike | 72.8 | 87.09 | | cradle | 85.63 | 98.06 | | oven | 54.15 | 69.71 | | ball | 37.67 | 38.75 | | food | 60.46 | 66.26 | | step | 9.6 | 10.75 | | tank | 67.71 | 96.98 | | trade name | 30.86 | 39.01 | | microwave | 85.95 | 96.47 | | pot | 57.83 | 65.85 | | animal | 66.4 | 68.11 | | bicycle | 61.24 | 83.19 | | lake | 45.37 | 69.55 | | dishwasher | 66.56 | 81.28 | | screen | 57.1 | 92.7 | | blanket | 32.49 | 37.26 | | sculpture | 74.13 | 85.47 | | hood | 60.67 | 76.86 | | sconce | 56.42 | 70.1 | | vase | 46.37 | 61.21 | | traffic light | 36.62 | 57.04 | | tray | 22.8 | 27.73 | | ashcan | 52.04 | 66.56 | | fan | 62.75 | 80.46 | | pier | 70.88 | 78.13 | | crt screen | 11.64 | 15.29 | | plate | 62.62 | 76.9 | | monitor | 60.47 | 74.82 | | bulletin board | 65.61 | 77.76 | | shower | 1.78 | 9.48 | | radiator | 63.1 | 85.27 | | glass | 19.52 | 21.12 | | clock | 46.68 | 55.2 | | flag | 62.42 | 79.4 | +---------------------+-------+-------+ 2024-06-16 10:37:45,814 - mmseg - INFO - Summary: 2024-06-16 10:37:45,814 - mmseg - INFO - +------+------+-------+ | aAcc | mIoU | mAcc | +------+------+-------+ | 85.7 | 57.0 | 70.63 | +------+------+-------+ 2024-06-16 10:37:45,815 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 10:37:45,815 - mmseg - INFO - Iter(val) [250] aAcc: 0.8570, mIoU: 0.5700, mAcc: 0.7063, IoU.wall: 0.8129, IoU.building: 0.8421, IoU.sky: 0.9449, IoU.floor: 0.8390, IoU.tree: 0.7653, IoU.ceiling: 0.8635, IoU.road: 0.8604, IoU.bed : 0.9160, IoU.windowpane: 0.6481, IoU.grass: 0.6948, IoU.cabinet: 0.6603, IoU.sidewalk: 0.6978, IoU.person: 0.8332, IoU.earth: 0.4115, IoU.door: 0.5701, IoU.table: 0.6650, IoU.mountain: 0.6401, IoU.plant: 0.5771, IoU.curtain: 0.7791, IoU.chair: 0.6384, IoU.car: 0.8606, IoU.water: 0.5863, IoU.painting: 0.7619, IoU.sofa: 0.8105, IoU.shelf: 0.5056, IoU.house: 0.5005, IoU.sea: 0.6651, IoU.mirror: 0.7484, IoU.rug: 0.6531, IoU.field: 0.3799, IoU.armchair: 0.6203, IoU.seat: 0.6666, IoU.fence: 0.5217, IoU.desk: 0.5858, IoU.rock: 0.5798, IoU.wardrobe: 0.5240, IoU.lamp: 0.6931, IoU.bathtub: 0.8510, IoU.railing: 0.4385, IoU.cushion: 0.6906, IoU.base: 0.4235, IoU.box: 0.3702, IoU.column: 0.5625, IoU.signboard: 0.3981, IoU.chest of drawers: 0.4195, IoU.counter: 0.4746, IoU.sand: 0.5102, IoU.sink: 0.7787, IoU.skyscraper: 0.4589, IoU.fireplace: 0.7278, IoU.refrigerator: 0.8527, IoU.grandstand: 0.5270, IoU.path: 0.3477, IoU.stairs: 0.3697, IoU.runway: 0.6843, IoU.case: 0.5941, IoU.pool table: 0.9355, IoU.pillow: 0.6670, IoU.screen door: 0.6195, IoU.stairway: 0.5354, IoU.river: 0.1354, IoU.bridge: 0.7009, IoU.bookcase: 0.4352, IoU.blind: 0.3966, IoU.coffee table: 0.5971, IoU.toilet: 0.8923, IoU.flower: 0.4216, IoU.book: 0.5189, IoU.hill: 0.0754, IoU.bench: 0.5810, IoU.countertop: 0.6259, IoU.stove: 0.8568, IoU.palm: 0.5325, IoU.kitchen island: 0.4727, IoU.computer: 0.7721, IoU.swivel chair: 0.4669, IoU.boat: 0.7217, IoU.bar: 0.5893, IoU.arcade machine: 0.7722, IoU.hovel: 0.4641, IoU.bus: 0.9093, IoU.towel: 0.7413, IoU.light: 0.5146, IoU.truck: 0.4411, IoU.tower: 0.3333, IoU.chandelier: 0.7002, IoU.awning: 0.3705, IoU.streetlight: 0.2597, IoU.booth: 0.5439, IoU.television receiver: 0.7704, IoU.airplane: 0.8295, IoU.dirt track: 0.1288, IoU.apparel: 0.5305, IoU.pole: 0.2009, IoU.land: 0.0390, IoU.bannister: 0.1545, IoU.escalator: 0.6512, IoU.ottoman: 0.5545, IoU.bottle: 0.4209, IoU.buffet: 0.4992, IoU.poster: 0.3801, IoU.stage: 0.1947, IoU.van: 0.4613, IoU.ship: 0.7857, IoU.fountain: 0.5439, IoU.conveyer belt: 0.7113, IoU.canopy: 0.4893, IoU.washer: 0.8894, IoU.plaything: 0.3412, IoU.swimming pool: 0.5349, IoU.stool: 0.4538, IoU.barrel: 0.5044, IoU.basket: 0.4300, IoU.waterfall: 0.7281, IoU.tent: 0.9344, IoU.bag: 0.2589, IoU.minibike: 0.7280, IoU.cradle: 0.8563, IoU.oven: 0.5415, IoU.ball: 0.3767, IoU.food: 0.6046, IoU.step: 0.0960, IoU.tank: 0.6771, IoU.trade name: 0.3086, IoU.microwave: 0.8595, IoU.pot: 0.5783, IoU.animal: 0.6640, IoU.bicycle: 0.6124, IoU.lake: 0.4537, IoU.dishwasher: 0.6656, IoU.screen: 0.5710, IoU.blanket: 0.3249, IoU.sculpture: 0.7413, IoU.hood: 0.6067, IoU.sconce: 0.5642, IoU.vase: 0.4637, IoU.traffic light: 0.3662, IoU.tray: 0.2280, IoU.ashcan: 0.5204, IoU.fan: 0.6275, IoU.pier: 0.7088, IoU.crt screen: 0.1164, IoU.plate: 0.6262, IoU.monitor: 0.6047, IoU.bulletin board: 0.6561, IoU.shower: 0.0178, IoU.radiator: 0.6310, IoU.glass: 0.1952, IoU.clock: 0.4668, IoU.flag: 0.6242, Acc.wall: 0.8853, Acc.building: 0.9363, Acc.sky: 0.9771, Acc.floor: 0.9064, Acc.tree: 0.8601, Acc.ceiling: 0.9342, Acc.road: 0.9225, Acc.bed : 0.9678, Acc.windowpane: 0.7916, Acc.grass: 0.8769, Acc.cabinet: 0.7782, Acc.sidewalk: 0.8342, Acc.person: 0.9334, Acc.earth: 0.5280, Acc.door: 0.7511, Acc.table: 0.7843, Acc.mountain: 0.7402, Acc.plant: 0.6856, Acc.curtain: 0.8868, Acc.chair: 0.7691, Acc.car: 0.9384, Acc.water: 0.7337, Acc.painting: 0.9020, Acc.sofa: 0.8952, Acc.shelf: 0.7078, Acc.house: 0.6312, Acc.sea: 0.7404, Acc.mirror: 0.8325, Acc.rug: 0.7854, Acc.field: 0.5446, Acc.armchair: 0.8237, Acc.seat: 0.8910, Acc.fence: 0.6581, Acc.desk: 0.7550, Acc.rock: 0.8088, Acc.wardrobe: 0.7213, Acc.lamp: 0.8129, Acc.bathtub: 0.8762, Acc.railing: 0.6655, Acc.cushion: 0.8268, Acc.base: 0.5989, Acc.box: 0.5031, Acc.column: 0.7115, Acc.signboard: 0.5041, Acc.chest of drawers: 0.6430, Acc.counter: 0.5653, Acc.sand: 0.8015, Acc.sink: 0.8324, Acc.skyscraper: 0.6218, Acc.fireplace: 0.9584, Acc.refrigerator: 0.9326, Acc.grandstand: 0.8268, Acc.path: 0.4613, Acc.stairs: 0.5088, Acc.runway: 0.9023, Acc.case: 0.7694, Acc.pool table: 0.9786, Acc.pillow: 0.7800, Acc.screen door: 0.6538, Acc.stairway: 0.6333, Acc.river: 0.3058, Acc.bridge: 0.8197, Acc.bookcase: 0.5139, Acc.blind: 0.4439, Acc.coffee table: 0.8371, Acc.toilet: 0.9379, Acc.flower: 0.5112, Acc.book: 0.7743, Acc.hill: 0.1277, Acc.bench: 0.6772, Acc.countertop: 0.7897, Acc.stove: 0.9198, Acc.palm: 0.8337, Acc.kitchen island: 0.9136, Acc.computer: 0.9072, Acc.swivel chair: 0.6718, Acc.boat: 0.8460, Acc.bar: 0.8653, Acc.arcade machine: 0.8391, Acc.hovel: 0.5045, Acc.bus: 0.9705, Acc.towel: 0.8655, Acc.light: 0.6161, Acc.truck: 0.6135, Acc.tower: 0.5914, Acc.chandelier: 0.8608, Acc.awning: 0.4979, Acc.streetlight: 0.3400, Acc.booth: 0.8136, Acc.television receiver: 0.8912, Acc.airplane: 0.9034, Acc.dirt track: 0.3056, Acc.apparel: 0.6211, Acc.pole: 0.2564, Acc.land: 0.0559, Acc.bannister: 0.1962, Acc.escalator: 0.8566, Acc.ottoman: 0.7186, Acc.bottle: 0.6387, Acc.buffet: 0.5460, Acc.poster: 0.5204, Acc.stage: 0.4734, Acc.van: 0.5903, Acc.ship: 0.9882, Acc.fountain: 0.6206, Acc.conveyer belt: 0.9615, Acc.canopy: 0.7600, Acc.washer: 0.9549, Acc.plaything: 0.5369, Acc.swimming pool: 0.7901, Acc.stool: 0.6047, Acc.barrel: 0.7148, Acc.basket: 0.5835, Acc.waterfall: 0.8724, Acc.tent: 0.9872, Acc.bag: 0.3105, Acc.minibike: 0.8709, Acc.cradle: 0.9806, Acc.oven: 0.6971, Acc.ball: 0.3875, Acc.food: 0.6626, Acc.step: 0.1075, Acc.tank: 0.9698, Acc.trade name: 0.3901, Acc.microwave: 0.9647, Acc.pot: 0.6585, Acc.animal: 0.6811, Acc.bicycle: 0.8319, Acc.lake: 0.6955, Acc.dishwasher: 0.8128, Acc.screen: 0.9270, Acc.blanket: 0.3726, Acc.sculpture: 0.8547, Acc.hood: 0.7686, Acc.sconce: 0.7010, Acc.vase: 0.6121, Acc.traffic light: 0.5704, Acc.tray: 0.2773, Acc.ashcan: 0.6656, Acc.fan: 0.8046, Acc.pier: 0.7813, Acc.crt screen: 0.1529, Acc.plate: 0.7690, Acc.monitor: 0.7482, Acc.bulletin board: 0.7776, Acc.shower: 0.0948, Acc.radiator: 0.8527, Acc.glass: 0.2112, Acc.clock: 0.5520, Acc.flag: 0.7940 2024-06-16 10:39:09,467 - mmseg - INFO - Iter [29050/80000] lr: 2.063e-06, eta: 1 day, 0:33:11, time: 3.362, data_time: 1.755, memory: 65790, decode.loss_ce: 0.2323, decode.acc_seg: 90.1297, aux.loss_ce: 0.0959, aux.acc_seg: 89.8995, loss: 0.3281 2024-06-16 10:40:29,973 - mmseg - INFO - Iter [29100/80000] lr: 2.061e-06, eta: 1 day, 0:31:33, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2128, decode.acc_seg: 90.8834, aux.loss_ce: 0.0871, aux.acc_seg: 90.7891, loss: 0.2999 2024-06-16 10:41:50,453 - mmseg - INFO - Iter [29150/80000] lr: 2.059e-06, eta: 1 day, 0:29:55, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2096, decode.acc_seg: 90.9490, aux.loss_ce: 0.0865, aux.acc_seg: 90.8621, loss: 0.2961 2024-06-16 10:43:10,885 - mmseg - INFO - Iter [29200/80000] lr: 2.057e-06, eta: 1 day, 0:28:18, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2234, decode.acc_seg: 90.6004, aux.loss_ce: 0.0915, aux.acc_seg: 90.4882, loss: 0.3149 2024-06-16 10:44:31,548 - mmseg - INFO - Iter [29250/80000] lr: 2.055e-06, eta: 1 day, 0:26:40, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2157, decode.acc_seg: 90.6518, aux.loss_ce: 0.0885, aux.acc_seg: 90.6032, loss: 0.3043 2024-06-16 10:45:52,173 - mmseg - INFO - Iter [29300/80000] lr: 2.053e-06, eta: 1 day, 0:25:03, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2337, decode.acc_seg: 90.2032, aux.loss_ce: 0.0952, aux.acc_seg: 90.1200, loss: 0.3289 2024-06-16 10:47:12,800 - mmseg - INFO - Iter [29350/80000] lr: 2.051e-06, eta: 1 day, 0:23:26, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2238, decode.acc_seg: 90.4238, aux.loss_ce: 0.0910, aux.acc_seg: 90.3144, loss: 0.3148 2024-06-16 10:48:33,330 - mmseg - INFO - Iter [29400/80000] lr: 2.049e-06, eta: 1 day, 0:21:49, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2049, decode.acc_seg: 90.8727, aux.loss_ce: 0.0847, aux.acc_seg: 90.7225, loss: 0.2896 2024-06-16 10:49:53,812 - mmseg - INFO - Iter [29450/80000] lr: 2.047e-06, eta: 1 day, 0:20:11, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2206, decode.acc_seg: 90.5758, aux.loss_ce: 0.0903, aux.acc_seg: 90.4808, loss: 0.3109 2024-06-16 10:51:14,247 - mmseg - INFO - Iter [29500/80000] lr: 2.045e-06, eta: 1 day, 0:18:34, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2127, decode.acc_seg: 90.9350, aux.loss_ce: 0.0868, aux.acc_seg: 90.8206, loss: 0.2995 2024-06-16 10:52:34,814 - mmseg - INFO - Iter [29550/80000] lr: 2.043e-06, eta: 1 day, 0:16:57, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2230, decode.acc_seg: 90.4797, aux.loss_ce: 0.0916, aux.acc_seg: 90.3818, loss: 0.3146 2024-06-16 10:53:55,366 - mmseg - INFO - Iter [29600/80000] lr: 2.041e-06, eta: 1 day, 0:15:20, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2112, decode.acc_seg: 90.9158, aux.loss_ce: 0.0865, aux.acc_seg: 90.8031, loss: 0.2977 2024-06-16 10:55:15,927 - mmseg - INFO - Iter [29650/80000] lr: 2.039e-06, eta: 1 day, 0:13:43, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2167, decode.acc_seg: 90.8175, aux.loss_ce: 0.0884, aux.acc_seg: 90.7121, loss: 0.3052 2024-06-16 10:56:36,424 - mmseg - INFO - Iter [29700/80000] lr: 2.037e-06, eta: 1 day, 0:12:06, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2233, decode.acc_seg: 90.6024, aux.loss_ce: 0.0909, aux.acc_seg: 90.5539, loss: 0.3142 2024-06-16 10:57:56,879 - mmseg - INFO - Iter [29750/80000] lr: 2.035e-06, eta: 1 day, 0:10:29, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2158, decode.acc_seg: 90.5833, aux.loss_ce: 0.0881, aux.acc_seg: 90.4631, loss: 0.3039 2024-06-16 10:59:17,403 - mmseg - INFO - Iter [29800/80000] lr: 2.033e-06, eta: 1 day, 0:08:52, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2270, decode.acc_seg: 90.3736, aux.loss_ce: 0.0927, aux.acc_seg: 90.2309, loss: 0.3196 2024-06-16 11:00:37,974 - mmseg - INFO - Iter [29850/80000] lr: 2.031e-06, eta: 1 day, 0:07:16, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2210, decode.acc_seg: 90.2859, aux.loss_ce: 0.0898, aux.acc_seg: 90.2176, loss: 0.3108 2024-06-16 11:01:58,609 - mmseg - INFO - Iter [29900/80000] lr: 2.029e-06, eta: 1 day, 0:05:39, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2405, decode.acc_seg: 89.8870, aux.loss_ce: 0.0978, aux.acc_seg: 89.9600, loss: 0.3382 2024-06-16 11:03:19,077 - mmseg - INFO - Iter [29950/80000] lr: 2.027e-06, eta: 1 day, 0:04:02, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2296, decode.acc_seg: 90.1924, aux.loss_ce: 0.0933, aux.acc_seg: 90.1316, loss: 0.3229 2024-06-16 11:04:39,591 - mmseg - INFO - Saving checkpoint at 30000 iterations 2024-06-16 11:05:53,326 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 11:05:53,326 - mmseg - INFO - Iter [30000/80000] lr: 2.025e-06, eta: 1 day, 0:04:29, time: 3.085, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2302, decode.acc_seg: 90.1993, aux.loss_ce: 0.0934, aux.acc_seg: 90.1378, loss: 0.3236 2024-06-16 11:07:16,392 - mmseg - INFO - per class results: 2024-06-16 11:07:16,398 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 81.42 | 89.2 | | building | 84.37 | 92.83 | | sky | 94.38 | 97.36 | | floor | 83.68 | 90.04 | | tree | 76.61 | 89.01 | | ceiling | 86.4 | 94.55 | | road | 84.8 | 90.53 | | bed | 91.9 | 96.75 | | windowpane | 66.46 | 77.94 | | grass | 66.95 | 82.89 | | cabinet | 64.35 | 71.68 | | sidewalk | 67.61 | 83.53 | | person | 83.13 | 94.39 | | earth | 39.38 | 52.6 | | door | 58.34 | 71.86 | | table | 66.97 | 80.27 | | mountain | 61.01 | 71.8 | | plant | 57.05 | 69.88 | | curtain | 76.28 | 91.15 | | chair | 62.98 | 73.65 | | car | 86.09 | 93.41 | | water | 58.72 | 70.88 | | painting | 78.32 | 90.81 | | sofa | 82.54 | 90.59 | | shelf | 47.6 | 64.94 | | house | 47.96 | 61.34 | | sea | 71.91 | 83.09 | | mirror | 77.08 | 86.44 | | rug | 69.5 | 82.58 | | field | 34.18 | 48.22 | | armchair | 64.52 | 83.56 | | seat | 66.54 | 89.19 | | fence | 51.41 | 68.24 | | desk | 56.04 | 75.52 | | rock | 52.67 | 72.38 | | wardrobe | 53.16 | 76.31 | | lamp | 68.3 | 82.53 | | bathtub | 86.97 | 90.75 | | railing | 46.62 | 70.44 | | cushion | 65.9 | 86.51 | | base | 43.87 | 61.6 | | box | 36.91 | 47.5 | | column | 53.98 | 67.9 | | signboard | 38.41 | 46.41 | | chest of drawers | 44.73 | 70.85 | | counter | 44.7 | 52.65 | | sand | 52.09 | 83.45 | | sink | 78.44 | 84.96 | | skyscraper | 49.14 | 62.4 | | fireplace | 74.6 | 94.06 | | refrigerator | 83.68 | 95.61 | | grandstand | 50.77 | 83.7 | | path | 29.06 | 41.4 | | stairs | 34.27 | 40.35 | | runway | 68.26 | 90.11 | | case | 61.24 | 87.95 | | pool table | 90.52 | 98.87 | | pillow | 59.45 | 66.5 | | screen door | 63.31 | 66.19 | | stairway | 44.69 | 51.62 | | river | 11.68 | 28.58 | | bridge | 60.69 | 69.8 | | bookcase | 40.43 | 59.31 | | blind | 45.41 | 55.56 | | coffee table | 59.99 | 87.06 | | toilet | 89.07 | 95.24 | | flower | 39.18 | 64.13 | | book | 52.31 | 79.75 | | hill | 5.83 | 11.33 | | bench | 63.44 | 74.22 | | countertop | 62.04 | 78.3 | | stove | 86.22 | 92.45 | | palm | 56.42 | 82.15 | | kitchen island | 46.69 | 79.81 | | computer | 77.59 | 91.24 | | swivel chair | 49.58 | 89.46 | | boat | 78.72 | 89.58 | | bar | 60.8 | 85.42 | | arcade machine | 83.86 | 95.41 | | hovel | 23.49 | 25.71 | | bus | 89.1 | 97.46 | | towel | 73.27 | 83.6 | | light | 48.48 | 54.69 | | truck | 43.32 | 57.82 | | tower | 31.66 | 61.9 | | chandelier | 69.72 | 82.76 | | awning | 37.69 | 50.13 | | streetlight | 24.56 | 32.15 | | booth | 46.62 | 65.75 | | television receiver | 76.61 | 90.08 | | airplane | 78.76 | 91.06 | | dirt track | 10.89 | 55.4 | | apparel | 56.81 | 71.22 | | pole | 16.08 | 22.61 | | land | 12.44 | 19.91 | | bannister | 15.24 | 19.4 | | escalator | 64.55 | 86.75 | | ottoman | 54.75 | 73.91 | | bottle | 42.89 | 71.63 | | buffet | 52.75 | 61.1 | | poster | 35.41 | 55.41 | | stage | 24.5 | 45.65 | | van | 44.12 | 61.09 | | ship | 90.71 | 96.72 | | fountain | 44.51 | 46.77 | | conveyer belt | 77.83 | 94.19 | | canopy | 41.46 | 60.11 | | washer | 88.59 | 95.29 | | plaything | 26.74 | 55.9 | | swimming pool | 52.85 | 77.15 | | stool | 50.67 | 60.57 | | barrel | 44.49 | 69.28 | | basket | 43.59 | 57.63 | | waterfall | 55.24 | 59.34 | | tent | 90.12 | 97.68 | | bag | 24.94 | 28.98 | | minibike | 70.87 | 89.65 | | cradle | 81.27 | 98.54 | | oven | 55.58 | 65.96 | | ball | 47.47 | 48.61 | | food | 56.98 | 65.5 | | step | 12.25 | 14.86 | | tank | 54.32 | 70.43 | | trade name | 33.29 | 47.25 | | microwave | 88.08 | 96.01 | | pot | 57.02 | 66.53 | | animal | 65.08 | 66.89 | | bicycle | 61.92 | 81.02 | | lake | 52.2 | 69.1 | | dishwasher | 66.81 | 78.25 | | screen | 58.13 | 87.66 | | blanket | 29.79 | 33.64 | | sculpture | 75.66 | 84.65 | | hood | 63.02 | 79.48 | | sconce | 56.31 | 69.61 | | vase | 46.36 | 65.14 | | traffic light | 34.15 | 64.37 | | tray | 19.99 | 25.24 | | ashcan | 52.6 | 63.81 | | fan | 61.26 | 80.6 | | pier | 42.65 | 51.08 | | crt screen | 8.43 | 12.87 | | plate | 60.65 | 79.08 | | monitor | 52.32 | 66.3 | | bulletin board | 64.17 | 80.36 | | shower | 0.56 | 3.75 | | radiator | 65.11 | 82.01 | | glass | 19.86 | 21.64 | | clock | 50.39 | 60.04 | | flag | 64.74 | 79.71 | +---------------------+-------+-------+ 2024-06-16 11:07:16,398 - mmseg - INFO - Summary: 2024-06-16 11:07:16,398 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.45 | 56.18 | 70.13 | +-------+-------+-------+ 2024-06-16 11:07:16,399 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 11:07:16,400 - mmseg - INFO - Iter(val) [250] aAcc: 0.8545, mIoU: 0.5618, mAcc: 0.7013, IoU.wall: 0.8142, IoU.building: 0.8437, IoU.sky: 0.9438, IoU.floor: 0.8368, IoU.tree: 0.7661, IoU.ceiling: 0.8640, IoU.road: 0.8480, IoU.bed : 0.9190, IoU.windowpane: 0.6646, IoU.grass: 0.6695, IoU.cabinet: 0.6435, IoU.sidewalk: 0.6761, IoU.person: 0.8313, IoU.earth: 0.3938, IoU.door: 0.5834, IoU.table: 0.6697, IoU.mountain: 0.6101, IoU.plant: 0.5705, IoU.curtain: 0.7628, IoU.chair: 0.6298, IoU.car: 0.8609, IoU.water: 0.5872, IoU.painting: 0.7832, IoU.sofa: 0.8254, IoU.shelf: 0.4760, IoU.house: 0.4796, IoU.sea: 0.7191, IoU.mirror: 0.7708, IoU.rug: 0.6950, IoU.field: 0.3418, IoU.armchair: 0.6452, IoU.seat: 0.6654, IoU.fence: 0.5141, IoU.desk: 0.5604, IoU.rock: 0.5267, IoU.wardrobe: 0.5316, IoU.lamp: 0.6830, IoU.bathtub: 0.8697, IoU.railing: 0.4662, IoU.cushion: 0.6590, IoU.base: 0.4387, IoU.box: 0.3691, IoU.column: 0.5398, IoU.signboard: 0.3841, IoU.chest of drawers: 0.4473, IoU.counter: 0.4470, IoU.sand: 0.5209, IoU.sink: 0.7844, IoU.skyscraper: 0.4914, IoU.fireplace: 0.7460, IoU.refrigerator: 0.8368, IoU.grandstand: 0.5077, IoU.path: 0.2906, IoU.stairs: 0.3427, IoU.runway: 0.6826, IoU.case: 0.6124, IoU.pool table: 0.9052, IoU.pillow: 0.5945, IoU.screen door: 0.6331, IoU.stairway: 0.4469, IoU.river: 0.1168, IoU.bridge: 0.6069, IoU.bookcase: 0.4043, IoU.blind: 0.4541, IoU.coffee table: 0.5999, IoU.toilet: 0.8907, IoU.flower: 0.3918, IoU.book: 0.5231, IoU.hill: 0.0583, IoU.bench: 0.6344, IoU.countertop: 0.6204, IoU.stove: 0.8622, IoU.palm: 0.5642, IoU.kitchen island: 0.4669, IoU.computer: 0.7759, IoU.swivel chair: 0.4958, IoU.boat: 0.7872, IoU.bar: 0.6080, IoU.arcade machine: 0.8386, IoU.hovel: 0.2349, IoU.bus: 0.8910, IoU.towel: 0.7327, IoU.light: 0.4848, IoU.truck: 0.4332, IoU.tower: 0.3166, IoU.chandelier: 0.6972, IoU.awning: 0.3769, IoU.streetlight: 0.2456, IoU.booth: 0.4662, IoU.television receiver: 0.7661, IoU.airplane: 0.7876, IoU.dirt track: 0.1089, IoU.apparel: 0.5681, IoU.pole: 0.1608, IoU.land: 0.1244, IoU.bannister: 0.1524, IoU.escalator: 0.6455, IoU.ottoman: 0.5475, IoU.bottle: 0.4289, IoU.buffet: 0.5275, IoU.poster: 0.3541, IoU.stage: 0.2450, IoU.van: 0.4412, IoU.ship: 0.9071, IoU.fountain: 0.4451, IoU.conveyer belt: 0.7783, IoU.canopy: 0.4146, IoU.washer: 0.8859, IoU.plaything: 0.2674, IoU.swimming pool: 0.5285, IoU.stool: 0.5067, IoU.barrel: 0.4449, IoU.basket: 0.4359, IoU.waterfall: 0.5524, IoU.tent: 0.9012, IoU.bag: 0.2494, IoU.minibike: 0.7087, IoU.cradle: 0.8127, IoU.oven: 0.5558, IoU.ball: 0.4747, IoU.food: 0.5698, IoU.step: 0.1225, IoU.tank: 0.5432, IoU.trade name: 0.3329, IoU.microwave: 0.8808, IoU.pot: 0.5702, IoU.animal: 0.6508, IoU.bicycle: 0.6192, IoU.lake: 0.5220, IoU.dishwasher: 0.6681, IoU.screen: 0.5813, IoU.blanket: 0.2979, IoU.sculpture: 0.7566, IoU.hood: 0.6302, IoU.sconce: 0.5631, IoU.vase: 0.4636, IoU.traffic light: 0.3415, IoU.tray: 0.1999, IoU.ashcan: 0.5260, IoU.fan: 0.6126, IoU.pier: 0.4265, IoU.crt screen: 0.0843, IoU.plate: 0.6065, IoU.monitor: 0.5232, IoU.bulletin board: 0.6417, IoU.shower: 0.0056, IoU.radiator: 0.6511, IoU.glass: 0.1986, IoU.clock: 0.5039, IoU.flag: 0.6474, Acc.wall: 0.8920, Acc.building: 0.9283, Acc.sky: 0.9736, Acc.floor: 0.9004, Acc.tree: 0.8901, Acc.ceiling: 0.9455, Acc.road: 0.9053, Acc.bed : 0.9675, Acc.windowpane: 0.7794, Acc.grass: 0.8289, Acc.cabinet: 0.7168, Acc.sidewalk: 0.8353, Acc.person: 0.9439, Acc.earth: 0.5260, Acc.door: 0.7186, Acc.table: 0.8027, Acc.mountain: 0.7180, Acc.plant: 0.6988, Acc.curtain: 0.9115, Acc.chair: 0.7365, Acc.car: 0.9341, Acc.water: 0.7088, Acc.painting: 0.9081, Acc.sofa: 0.9059, Acc.shelf: 0.6494, Acc.house: 0.6134, Acc.sea: 0.8309, Acc.mirror: 0.8644, Acc.rug: 0.8258, Acc.field: 0.4822, Acc.armchair: 0.8356, Acc.seat: 0.8919, Acc.fence: 0.6824, Acc.desk: 0.7552, Acc.rock: 0.7238, Acc.wardrobe: 0.7631, Acc.lamp: 0.8253, Acc.bathtub: 0.9075, Acc.railing: 0.7044, Acc.cushion: 0.8651, Acc.base: 0.6160, Acc.box: 0.4750, Acc.column: 0.6790, Acc.signboard: 0.4641, Acc.chest of drawers: 0.7085, Acc.counter: 0.5265, Acc.sand: 0.8345, Acc.sink: 0.8496, Acc.skyscraper: 0.6240, Acc.fireplace: 0.9406, Acc.refrigerator: 0.9561, Acc.grandstand: 0.8370, Acc.path: 0.4140, Acc.stairs: 0.4035, Acc.runway: 0.9011, Acc.case: 0.8795, Acc.pool table: 0.9887, Acc.pillow: 0.6650, Acc.screen door: 0.6619, Acc.stairway: 0.5162, Acc.river: 0.2858, Acc.bridge: 0.6980, Acc.bookcase: 0.5931, Acc.blind: 0.5556, Acc.coffee table: 0.8706, Acc.toilet: 0.9524, Acc.flower: 0.6413, Acc.book: 0.7975, Acc.hill: 0.1133, Acc.bench: 0.7422, Acc.countertop: 0.7830, Acc.stove: 0.9245, Acc.palm: 0.8215, Acc.kitchen island: 0.7981, Acc.computer: 0.9124, Acc.swivel chair: 0.8946, Acc.boat: 0.8958, Acc.bar: 0.8542, Acc.arcade machine: 0.9541, Acc.hovel: 0.2571, Acc.bus: 0.9746, Acc.towel: 0.8360, Acc.light: 0.5469, Acc.truck: 0.5782, Acc.tower: 0.6190, Acc.chandelier: 0.8276, Acc.awning: 0.5013, Acc.streetlight: 0.3215, Acc.booth: 0.6575, Acc.television receiver: 0.9008, Acc.airplane: 0.9106, Acc.dirt track: 0.5540, Acc.apparel: 0.7122, Acc.pole: 0.2261, Acc.land: 0.1991, Acc.bannister: 0.1940, Acc.escalator: 0.8675, Acc.ottoman: 0.7391, Acc.bottle: 0.7163, Acc.buffet: 0.6110, Acc.poster: 0.5541, Acc.stage: 0.4565, Acc.van: 0.6109, Acc.ship: 0.9672, Acc.fountain: 0.4677, Acc.conveyer belt: 0.9419, Acc.canopy: 0.6011, Acc.washer: 0.9529, Acc.plaything: 0.5590, Acc.swimming pool: 0.7715, Acc.stool: 0.6057, Acc.barrel: 0.6928, Acc.basket: 0.5763, Acc.waterfall: 0.5934, Acc.tent: 0.9768, Acc.bag: 0.2898, Acc.minibike: 0.8965, Acc.cradle: 0.9854, Acc.oven: 0.6596, Acc.ball: 0.4861, Acc.food: 0.6550, Acc.step: 0.1486, Acc.tank: 0.7043, Acc.trade name: 0.4725, Acc.microwave: 0.9601, Acc.pot: 0.6653, Acc.animal: 0.6689, Acc.bicycle: 0.8102, Acc.lake: 0.6910, Acc.dishwasher: 0.7825, Acc.screen: 0.8766, Acc.blanket: 0.3364, Acc.sculpture: 0.8465, Acc.hood: 0.7948, Acc.sconce: 0.6961, Acc.vase: 0.6514, Acc.traffic light: 0.6437, Acc.tray: 0.2524, Acc.ashcan: 0.6381, Acc.fan: 0.8060, Acc.pier: 0.5108, Acc.crt screen: 0.1287, Acc.plate: 0.7908, Acc.monitor: 0.6630, Acc.bulletin board: 0.8036, Acc.shower: 0.0375, Acc.radiator: 0.8201, Acc.glass: 0.2164, Acc.clock: 0.6004, Acc.flag: 0.7971 2024-06-16 11:08:37,141 - mmseg - INFO - Iter [30050/80000] lr: 2.023e-06, eta: 1 day, 0:05:10, time: 3.276, data_time: 1.675, memory: 65790, decode.loss_ce: 0.2346, decode.acc_seg: 89.9069, aux.loss_ce: 0.0954, aux.acc_seg: 89.8562, loss: 0.3300 2024-06-16 11:09:57,542 - mmseg - INFO - Iter [30100/80000] lr: 2.021e-06, eta: 1 day, 0:03:33, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2227, decode.acc_seg: 90.5792, aux.loss_ce: 0.0899, aux.acc_seg: 90.6015, loss: 0.3126 2024-06-16 11:11:18,220 - mmseg - INFO - Iter [30150/80000] lr: 2.019e-06, eta: 1 day, 0:01:56, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2153, decode.acc_seg: 90.5981, aux.loss_ce: 0.0876, aux.acc_seg: 90.5545, loss: 0.3029 2024-06-16 11:12:38,634 - mmseg - INFO - Iter [30200/80000] lr: 2.017e-06, eta: 1 day, 0:00:19, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2214, decode.acc_seg: 90.7064, aux.loss_ce: 0.0900, aux.acc_seg: 90.4894, loss: 0.3114 2024-06-16 11:13:59,069 - mmseg - INFO - Iter [30250/80000] lr: 2.015e-06, eta: 23:58:41, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2230, decode.acc_seg: 90.4524, aux.loss_ce: 0.0913, aux.acc_seg: 90.3258, loss: 0.3143 2024-06-16 11:15:19,618 - mmseg - INFO - Iter [30300/80000] lr: 2.013e-06, eta: 23:57:05, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2304, decode.acc_seg: 90.3612, aux.loss_ce: 0.0940, aux.acc_seg: 90.2815, loss: 0.3244 2024-06-16 11:16:43,088 - mmseg - INFO - Iter [30350/80000] lr: 2.011e-06, eta: 23:55:32, time: 1.669, data_time: 0.065, memory: 65790, decode.loss_ce: 0.2064, decode.acc_seg: 91.0842, aux.loss_ce: 0.0849, aux.acc_seg: 90.8990, loss: 0.2912 2024-06-16 11:18:03,568 - mmseg - INFO - Iter [30400/80000] lr: 2.009e-06, eta: 23:53:55, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2047, decode.acc_seg: 91.3126, aux.loss_ce: 0.0839, aux.acc_seg: 91.1776, loss: 0.2886 2024-06-16 11:19:24,204 - mmseg - INFO - Iter [30450/80000] lr: 2.007e-06, eta: 23:52:19, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2215, decode.acc_seg: 90.5370, aux.loss_ce: 0.0909, aux.acc_seg: 90.4584, loss: 0.3123 2024-06-16 11:20:44,661 - mmseg - INFO - Iter [30500/80000] lr: 2.005e-06, eta: 23:50:42, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2149, decode.acc_seg: 90.3797, aux.loss_ce: 0.0886, aux.acc_seg: 90.2637, loss: 0.3035 2024-06-16 11:22:05,204 - mmseg - INFO - Iter [30550/80000] lr: 2.003e-06, eta: 23:49:05, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2167, decode.acc_seg: 90.4238, aux.loss_ce: 0.0882, aux.acc_seg: 90.4017, loss: 0.3049 2024-06-16 11:23:25,700 - mmseg - INFO - Iter [30600/80000] lr: 2.001e-06, eta: 23:47:29, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2120, decode.acc_seg: 90.9259, aux.loss_ce: 0.0871, aux.acc_seg: 90.7969, loss: 0.2991 2024-06-16 11:24:46,134 - mmseg - INFO - Iter [30650/80000] lr: 1.999e-06, eta: 23:45:52, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2156, decode.acc_seg: 90.7116, aux.loss_ce: 0.0889, aux.acc_seg: 90.6096, loss: 0.3045 2024-06-16 11:26:06,611 - mmseg - INFO - Iter [30700/80000] lr: 1.997e-06, eta: 23:44:15, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2057, decode.acc_seg: 90.9330, aux.loss_ce: 0.0853, aux.acc_seg: 90.7209, loss: 0.2910 2024-06-16 11:27:27,071 - mmseg - INFO - Iter [30750/80000] lr: 1.995e-06, eta: 23:42:39, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2126, decode.acc_seg: 90.7441, aux.loss_ce: 0.0862, aux.acc_seg: 90.7787, loss: 0.2988 2024-06-16 11:28:47,507 - mmseg - INFO - Iter [30800/80000] lr: 1.993e-06, eta: 23:41:02, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2225, decode.acc_seg: 90.6703, aux.loss_ce: 0.0911, aux.acc_seg: 90.5621, loss: 0.3136 2024-06-16 11:30:08,088 - mmseg - INFO - Iter [30850/80000] lr: 1.990e-06, eta: 23:39:26, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2177, decode.acc_seg: 90.9051, aux.loss_ce: 0.0896, aux.acc_seg: 90.7136, loss: 0.3073 2024-06-16 11:31:28,744 - mmseg - INFO - Iter [30900/80000] lr: 1.988e-06, eta: 23:37:49, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2210, decode.acc_seg: 90.7650, aux.loss_ce: 0.0906, aux.acc_seg: 90.6948, loss: 0.3116 2024-06-16 11:32:49,204 - mmseg - INFO - Iter [30950/80000] lr: 1.986e-06, eta: 23:36:13, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2263, decode.acc_seg: 90.3466, aux.loss_ce: 0.0910, aux.acc_seg: 90.4082, loss: 0.3173 2024-06-16 11:34:09,656 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 11:34:09,656 - mmseg - INFO - Iter [31000/80000] lr: 1.984e-06, eta: 23:34:37, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2209, decode.acc_seg: 90.4657, aux.loss_ce: 0.0908, aux.acc_seg: 90.3906, loss: 0.3118 2024-06-16 11:35:33,063 - mmseg - INFO - per class results: 2024-06-16 11:35:33,069 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 80.88 | 88.06 | | building | 84.69 | 92.74 | | sky | 94.42 | 96.83 | | floor | 84.09 | 90.4 | | tree | 77.59 | 89.39 | | ceiling | 86.38 | 92.27 | | road | 86.24 | 91.39 | | bed | 91.37 | 97.19 | | windowpane | 65.71 | 83.41 | | grass | 68.0 | 78.83 | | cabinet | 66.01 | 76.1 | | sidewalk | 70.97 | 82.53 | | person | 83.27 | 93.33 | | earth | 41.34 | 58.14 | | door | 59.24 | 73.63 | | table | 67.77 | 81.44 | | mountain | 61.93 | 72.51 | | plant | 57.46 | 69.24 | | curtain | 76.35 | 88.64 | | chair | 63.3 | 75.72 | | car | 85.97 | 94.21 | | water | 57.3 | 70.58 | | painting | 77.26 | 89.63 | | sofa | 82.77 | 91.64 | | shelf | 50.44 | 74.32 | | house | 49.64 | 59.81 | | sea | 73.86 | 83.29 | | mirror | 75.01 | 84.91 | | rug | 68.6 | 78.33 | | field | 30.57 | 54.06 | | armchair | 64.08 | 80.35 | | seat | 67.96 | 88.29 | | fence | 49.8 | 69.61 | | desk | 56.44 | 80.93 | | rock | 50.69 | 72.01 | | wardrobe | 53.01 | 71.41 | | lamp | 67.99 | 86.41 | | bathtub | 84.76 | 88.58 | | railing | 43.59 | 64.18 | | cushion | 69.35 | 83.12 | | base | 40.72 | 56.14 | | box | 38.25 | 51.98 | | column | 51.56 | 67.5 | | signboard | 38.83 | 51.43 | | chest of drawers | 39.53 | 61.68 | | counter | 47.44 | 56.07 | | sand | 57.43 | 82.68 | | sink | 80.24 | 87.16 | | skyscraper | 46.86 | 64.95 | | fireplace | 67.47 | 97.14 | | refrigerator | 81.0 | 93.9 | | grandstand | 51.28 | 88.25 | | path | 28.79 | 47.43 | | stairs | 23.82 | 27.34 | | runway | 71.57 | 92.86 | | case | 59.51 | 76.35 | | pool table | 93.48 | 97.57 | | pillow | 63.54 | 71.75 | | screen door | 75.59 | 93.03 | | stairway | 41.85 | 66.52 | | river | 11.7 | 32.95 | | bridge | 67.47 | 89.69 | | bookcase | 40.03 | 49.32 | | blind | 40.4 | 45.86 | | coffee table | 63.82 | 86.08 | | toilet | 89.5 | 95.69 | | flower | 41.54 | 57.91 | | book | 51.73 | 81.5 | | hill | 8.98 | 16.23 | | bench | 55.52 | 67.86 | | countertop | 63.92 | 80.17 | | stove | 83.85 | 91.21 | | palm | 55.25 | 80.33 | | kitchen island | 53.33 | 91.71 | | computer | 77.36 | 89.6 | | swivel chair | 50.36 | 92.64 | | boat | 76.34 | 90.5 | | bar | 60.21 | 89.26 | | arcade machine | 89.71 | 97.78 | | hovel | 48.71 | 59.0 | | bus | 92.24 | 96.18 | | towel | 73.84 | 81.51 | | light | 48.81 | 55.96 | | truck | 42.11 | 57.44 | | tower | 37.91 | 52.15 | | chandelier | 70.82 | 86.42 | | awning | 39.87 | 48.45 | | streetlight | 29.34 | 38.19 | | booth | 45.64 | 79.24 | | television receiver | 77.19 | 91.8 | | airplane | 85.63 | 94.43 | | dirt track | 7.44 | 18.17 | | apparel | 54.28 | 81.07 | | pole | 28.06 | 49.19 | | land | 11.69 | 17.68 | | bannister | 17.33 | 22.42 | | escalator | 59.66 | 88.02 | | ottoman | 53.03 | 68.98 | | bottle | 41.75 | 61.16 | | buffet | 59.8 | 89.5 | | poster | 30.44 | 40.0 | | stage | 19.97 | 41.72 | | van | 44.27 | 61.63 | | ship | 89.74 | 97.03 | | fountain | 31.17 | 32.1 | | conveyer belt | 79.57 | 94.28 | | canopy | 45.24 | 73.26 | | washer | 87.74 | 93.6 | | plaything | 27.95 | 41.39 | | swimming pool | 52.6 | 77.18 | | stool | 40.59 | 75.38 | | barrel | 49.73 | 85.3 | | basket | 42.19 | 53.15 | | waterfall | 61.8 | 74.74 | | tent | 86.81 | 99.29 | | bag | 28.95 | 33.46 | | minibike | 71.95 | 89.76 | | cradle | 83.36 | 98.39 | | oven | 56.72 | 78.14 | | ball | 54.83 | 58.05 | | food | 61.28 | 68.17 | | step | 13.68 | 16.78 | | tank | 82.19 | 91.54 | | trade name | 30.89 | 38.36 | | microwave | 86.73 | 96.82 | | pot | 57.1 | 70.78 | | animal | 65.48 | 67.26 | | bicycle | 59.98 | 84.8 | | lake | 55.41 | 63.61 | | dishwasher | 70.92 | 83.08 | | screen | 54.74 | 81.27 | | blanket | 32.44 | 37.03 | | sculpture | 67.11 | 87.98 | | hood | 59.68 | 74.58 | | sconce | 56.14 | 73.17 | | vase | 43.29 | 66.17 | | traffic light | 40.05 | 57.43 | | tray | 21.54 | 29.37 | | ashcan | 50.17 | 67.47 | | fan | 61.49 | 78.41 | | pier | 40.51 | 44.25 | | crt screen | 12.32 | 20.87 | | plate | 58.98 | 70.43 | | monitor | 57.12 | 72.98 | | bulletin board | 58.6 | 79.83 | | shower | 11.86 | 12.41 | | radiator | 64.77 | 81.78 | | glass | 18.42 | 19.26 | | clock | 49.74 | 60.54 | | flag | 67.25 | 75.2 | +---------------------+-------+-------+ 2024-06-16 11:35:33,069 - mmseg - INFO - Summary: 2024-06-16 11:35:33,069 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.54 | 56.84 | 71.35 | +-------+-------+-------+ 2024-06-16 11:35:33,070 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 11:35:33,070 - mmseg - INFO - Iter(val) [250] aAcc: 0.8554, mIoU: 0.5684, mAcc: 0.7135, IoU.wall: 0.8088, IoU.building: 0.8469, IoU.sky: 0.9442, IoU.floor: 0.8409, IoU.tree: 0.7759, IoU.ceiling: 0.8638, IoU.road: 0.8624, IoU.bed : 0.9137, IoU.windowpane: 0.6571, IoU.grass: 0.6800, IoU.cabinet: 0.6601, IoU.sidewalk: 0.7097, IoU.person: 0.8327, IoU.earth: 0.4134, IoU.door: 0.5924, IoU.table: 0.6777, IoU.mountain: 0.6193, IoU.plant: 0.5746, IoU.curtain: 0.7635, IoU.chair: 0.6330, IoU.car: 0.8597, IoU.water: 0.5730, IoU.painting: 0.7726, IoU.sofa: 0.8277, IoU.shelf: 0.5044, IoU.house: 0.4964, IoU.sea: 0.7386, IoU.mirror: 0.7501, IoU.rug: 0.6860, IoU.field: 0.3057, IoU.armchair: 0.6408, IoU.seat: 0.6796, IoU.fence: 0.4980, IoU.desk: 0.5644, IoU.rock: 0.5069, IoU.wardrobe: 0.5301, IoU.lamp: 0.6799, IoU.bathtub: 0.8476, IoU.railing: 0.4359, IoU.cushion: 0.6935, IoU.base: 0.4072, IoU.box: 0.3825, IoU.column: 0.5156, IoU.signboard: 0.3883, IoU.chest of drawers: 0.3953, IoU.counter: 0.4744, IoU.sand: 0.5743, IoU.sink: 0.8024, IoU.skyscraper: 0.4686, IoU.fireplace: 0.6747, IoU.refrigerator: 0.8100, IoU.grandstand: 0.5128, IoU.path: 0.2879, IoU.stairs: 0.2382, IoU.runway: 0.7157, IoU.case: 0.5951, IoU.pool table: 0.9348, IoU.pillow: 0.6354, IoU.screen door: 0.7559, IoU.stairway: 0.4185, IoU.river: 0.1170, IoU.bridge: 0.6747, IoU.bookcase: 0.4003, IoU.blind: 0.4040, IoU.coffee table: 0.6382, IoU.toilet: 0.8950, IoU.flower: 0.4154, IoU.book: 0.5173, IoU.hill: 0.0898, IoU.bench: 0.5552, IoU.countertop: 0.6392, IoU.stove: 0.8385, IoU.palm: 0.5525, IoU.kitchen island: 0.5333, IoU.computer: 0.7736, IoU.swivel chair: 0.5036, IoU.boat: 0.7634, IoU.bar: 0.6021, IoU.arcade machine: 0.8971, IoU.hovel: 0.4871, IoU.bus: 0.9224, IoU.towel: 0.7384, IoU.light: 0.4881, IoU.truck: 0.4211, IoU.tower: 0.3791, IoU.chandelier: 0.7082, IoU.awning: 0.3987, IoU.streetlight: 0.2934, IoU.booth: 0.4564, IoU.television receiver: 0.7719, IoU.airplane: 0.8563, IoU.dirt track: 0.0744, IoU.apparel: 0.5428, IoU.pole: 0.2806, IoU.land: 0.1169, IoU.bannister: 0.1733, IoU.escalator: 0.5966, IoU.ottoman: 0.5303, IoU.bottle: 0.4175, IoU.buffet: 0.5980, IoU.poster: 0.3044, IoU.stage: 0.1997, IoU.van: 0.4427, IoU.ship: 0.8974, IoU.fountain: 0.3117, IoU.conveyer belt: 0.7957, IoU.canopy: 0.4524, IoU.washer: 0.8774, IoU.plaything: 0.2795, IoU.swimming pool: 0.5260, IoU.stool: 0.4059, IoU.barrel: 0.4973, IoU.basket: 0.4219, IoU.waterfall: 0.6180, IoU.tent: 0.8681, IoU.bag: 0.2895, IoU.minibike: 0.7195, IoU.cradle: 0.8336, IoU.oven: 0.5672, IoU.ball: 0.5483, IoU.food: 0.6128, IoU.step: 0.1368, IoU.tank: 0.8219, IoU.trade name: 0.3089, IoU.microwave: 0.8673, IoU.pot: 0.5710, IoU.animal: 0.6548, IoU.bicycle: 0.5998, IoU.lake: 0.5541, IoU.dishwasher: 0.7092, IoU.screen: 0.5474, IoU.blanket: 0.3244, IoU.sculpture: 0.6711, IoU.hood: 0.5968, IoU.sconce: 0.5614, IoU.vase: 0.4329, IoU.traffic light: 0.4005, IoU.tray: 0.2154, IoU.ashcan: 0.5017, IoU.fan: 0.6149, IoU.pier: 0.4051, IoU.crt screen: 0.1232, IoU.plate: 0.5898, IoU.monitor: 0.5712, IoU.bulletin board: 0.5860, IoU.shower: 0.1186, IoU.radiator: 0.6477, IoU.glass: 0.1842, IoU.clock: 0.4974, IoU.flag: 0.6725, Acc.wall: 0.8806, Acc.building: 0.9274, Acc.sky: 0.9683, Acc.floor: 0.9040, Acc.tree: 0.8939, Acc.ceiling: 0.9227, Acc.road: 0.9139, Acc.bed : 0.9719, Acc.windowpane: 0.8341, Acc.grass: 0.7883, Acc.cabinet: 0.7610, Acc.sidewalk: 0.8253, Acc.person: 0.9333, Acc.earth: 0.5814, Acc.door: 0.7363, Acc.table: 0.8144, Acc.mountain: 0.7251, Acc.plant: 0.6924, Acc.curtain: 0.8864, Acc.chair: 0.7572, Acc.car: 0.9421, Acc.water: 0.7058, Acc.painting: 0.8963, Acc.sofa: 0.9164, Acc.shelf: 0.7432, Acc.house: 0.5981, Acc.sea: 0.8329, Acc.mirror: 0.8491, Acc.rug: 0.7833, Acc.field: 0.5406, Acc.armchair: 0.8035, Acc.seat: 0.8829, Acc.fence: 0.6961, Acc.desk: 0.8093, Acc.rock: 0.7201, Acc.wardrobe: 0.7141, Acc.lamp: 0.8641, Acc.bathtub: 0.8858, Acc.railing: 0.6418, Acc.cushion: 0.8312, Acc.base: 0.5614, Acc.box: 0.5198, Acc.column: 0.6750, Acc.signboard: 0.5143, Acc.chest of drawers: 0.6168, Acc.counter: 0.5607, Acc.sand: 0.8268, Acc.sink: 0.8716, Acc.skyscraper: 0.6495, Acc.fireplace: 0.9714, Acc.refrigerator: 0.9390, Acc.grandstand: 0.8825, Acc.path: 0.4743, Acc.stairs: 0.2734, Acc.runway: 0.9286, Acc.case: 0.7635, Acc.pool table: 0.9757, Acc.pillow: 0.7175, Acc.screen door: 0.9303, Acc.stairway: 0.6652, Acc.river: 0.3295, Acc.bridge: 0.8969, Acc.bookcase: 0.4932, Acc.blind: 0.4586, Acc.coffee table: 0.8608, Acc.toilet: 0.9569, Acc.flower: 0.5791, Acc.book: 0.8150, Acc.hill: 0.1623, Acc.bench: 0.6786, Acc.countertop: 0.8017, Acc.stove: 0.9121, Acc.palm: 0.8033, Acc.kitchen island: 0.9171, Acc.computer: 0.8960, Acc.swivel chair: 0.9264, Acc.boat: 0.9050, Acc.bar: 0.8926, Acc.arcade machine: 0.9778, Acc.hovel: 0.5900, Acc.bus: 0.9618, Acc.towel: 0.8151, Acc.light: 0.5596, Acc.truck: 0.5744, Acc.tower: 0.5215, Acc.chandelier: 0.8642, Acc.awning: 0.4845, Acc.streetlight: 0.3819, Acc.booth: 0.7924, Acc.television receiver: 0.9180, Acc.airplane: 0.9443, Acc.dirt track: 0.1817, Acc.apparel: 0.8107, Acc.pole: 0.4919, Acc.land: 0.1768, Acc.bannister: 0.2242, Acc.escalator: 0.8802, Acc.ottoman: 0.6898, Acc.bottle: 0.6116, Acc.buffet: 0.8950, Acc.poster: 0.4000, Acc.stage: 0.4172, Acc.van: 0.6163, Acc.ship: 0.9703, Acc.fountain: 0.3210, Acc.conveyer belt: 0.9428, Acc.canopy: 0.7326, Acc.washer: 0.9360, Acc.plaything: 0.4139, Acc.swimming pool: 0.7718, Acc.stool: 0.7538, Acc.barrel: 0.8530, Acc.basket: 0.5315, Acc.waterfall: 0.7474, Acc.tent: 0.9929, Acc.bag: 0.3346, Acc.minibike: 0.8976, Acc.cradle: 0.9839, Acc.oven: 0.7814, Acc.ball: 0.5805, Acc.food: 0.6817, Acc.step: 0.1678, Acc.tank: 0.9154, Acc.trade name: 0.3836, Acc.microwave: 0.9682, Acc.pot: 0.7078, Acc.animal: 0.6726, Acc.bicycle: 0.8480, Acc.lake: 0.6361, Acc.dishwasher: 0.8308, Acc.screen: 0.8127, Acc.blanket: 0.3703, Acc.sculpture: 0.8798, Acc.hood: 0.7458, Acc.sconce: 0.7317, Acc.vase: 0.6617, Acc.traffic light: 0.5743, Acc.tray: 0.2937, Acc.ashcan: 0.6747, Acc.fan: 0.7841, Acc.pier: 0.4425, Acc.crt screen: 0.2087, Acc.plate: 0.7043, Acc.monitor: 0.7298, Acc.bulletin board: 0.7983, Acc.shower: 0.1241, Acc.radiator: 0.8178, Acc.glass: 0.1926, Acc.clock: 0.6054, Acc.flag: 0.7520 2024-06-16 11:36:54,030 - mmseg - INFO - Iter [31050/80000] lr: 1.982e-06, eta: 23:35:13, time: 3.287, data_time: 1.682, memory: 65790, decode.loss_ce: 0.2113, decode.acc_seg: 90.5919, aux.loss_ce: 0.0863, aux.acc_seg: 90.4786, loss: 0.2975 2024-06-16 11:38:14,547 - mmseg - INFO - Iter [31100/80000] lr: 1.980e-06, eta: 23:33:36, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2221, decode.acc_seg: 90.8043, aux.loss_ce: 0.0911, aux.acc_seg: 90.7052, loss: 0.3132 2024-06-16 11:39:34,971 - mmseg - INFO - Iter [31150/80000] lr: 1.978e-06, eta: 23:32:00, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2390, decode.acc_seg: 90.3628, aux.loss_ce: 0.0971, aux.acc_seg: 90.3172, loss: 0.3361 2024-06-16 11:40:55,508 - mmseg - INFO - Iter [31200/80000] lr: 1.976e-06, eta: 23:30:23, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2406, decode.acc_seg: 90.1842, aux.loss_ce: 0.0979, aux.acc_seg: 90.0881, loss: 0.3385 2024-06-16 11:42:15,888 - mmseg - INFO - Iter [31250/80000] lr: 1.974e-06, eta: 23:28:47, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2305, decode.acc_seg: 90.2111, aux.loss_ce: 0.0933, aux.acc_seg: 90.2414, loss: 0.3238 2024-06-16 11:43:36,300 - mmseg - INFO - Iter [31300/80000] lr: 1.972e-06, eta: 23:27:10, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2120, decode.acc_seg: 90.6975, aux.loss_ce: 0.0864, aux.acc_seg: 90.6155, loss: 0.2984 2024-06-16 11:44:56,831 - mmseg - INFO - Iter [31350/80000] lr: 1.970e-06, eta: 23:25:34, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2190, decode.acc_seg: 90.6784, aux.loss_ce: 0.0904, aux.acc_seg: 90.4613, loss: 0.3094 2024-06-16 11:46:17,580 - mmseg - INFO - Iter [31400/80000] lr: 1.968e-06, eta: 23:23:58, time: 1.615, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2348, decode.acc_seg: 90.2455, aux.loss_ce: 0.0955, aux.acc_seg: 90.0959, loss: 0.3303 2024-06-16 11:47:38,060 - mmseg - INFO - Iter [31450/80000] lr: 1.966e-06, eta: 23:22:22, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2095, decode.acc_seg: 91.0851, aux.loss_ce: 0.0852, aux.acc_seg: 90.9577, loss: 0.2947 2024-06-16 11:48:58,550 - mmseg - INFO - Iter [31500/80000] lr: 1.964e-06, eta: 23:20:46, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2155, decode.acc_seg: 91.2255, aux.loss_ce: 0.0883, aux.acc_seg: 90.9795, loss: 0.3038 2024-06-16 11:50:19,191 - mmseg - INFO - Iter [31550/80000] lr: 1.962e-06, eta: 23:19:10, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2119, decode.acc_seg: 90.9852, aux.loss_ce: 0.0871, aux.acc_seg: 90.9089, loss: 0.2989 2024-06-16 11:51:42,434 - mmseg - INFO - Iter [31600/80000] lr: 1.960e-06, eta: 23:17:38, time: 1.665, data_time: 0.058, memory: 65790, decode.loss_ce: 0.2067, decode.acc_seg: 90.8953, aux.loss_ce: 0.0845, aux.acc_seg: 90.7497, loss: 0.2912 2024-06-16 11:53:02,932 - mmseg - INFO - Iter [31650/80000] lr: 1.958e-06, eta: 23:16:02, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2114, decode.acc_seg: 90.9928, aux.loss_ce: 0.0866, aux.acc_seg: 90.8522, loss: 0.2980 2024-06-16 11:54:23,694 - mmseg - INFO - Iter [31700/80000] lr: 1.956e-06, eta: 23:14:26, time: 1.615, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2287, decode.acc_seg: 89.9225, aux.loss_ce: 0.0923, aux.acc_seg: 89.9432, loss: 0.3210 2024-06-16 11:55:44,302 - mmseg - INFO - Iter [31750/80000] lr: 1.954e-06, eta: 23:12:51, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2182, decode.acc_seg: 90.5686, aux.loss_ce: 0.0890, aux.acc_seg: 90.5814, loss: 0.3072 2024-06-16 11:57:04,784 - mmseg - INFO - Iter [31800/80000] lr: 1.952e-06, eta: 23:11:15, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2161, decode.acc_seg: 90.9012, aux.loss_ce: 0.0889, aux.acc_seg: 90.8538, loss: 0.3049 2024-06-16 11:58:25,311 - mmseg - INFO - Iter [31850/80000] lr: 1.950e-06, eta: 23:09:39, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2064, decode.acc_seg: 91.1179, aux.loss_ce: 0.0841, aux.acc_seg: 90.9836, loss: 0.2905 2024-06-16 11:59:45,768 - mmseg - INFO - Iter [31900/80000] lr: 1.948e-06, eta: 23:08:03, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2100, decode.acc_seg: 90.7791, aux.loss_ce: 0.0867, aux.acc_seg: 90.5439, loss: 0.2967 2024-06-16 12:01:06,163 - mmseg - INFO - Iter [31950/80000] lr: 1.946e-06, eta: 23:06:27, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2103, decode.acc_seg: 90.9726, aux.loss_ce: 0.0868, aux.acc_seg: 90.8847, loss: 0.2972 2024-06-16 12:02:26,733 - mmseg - INFO - Saving checkpoint at 32000 iterations 2024-06-16 12:03:40,617 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 12:03:40,617 - mmseg - INFO - Iter [32000/80000] lr: 1.944e-06, eta: 23:06:43, time: 3.089, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2206, decode.acc_seg: 90.5193, aux.loss_ce: 0.0901, aux.acc_seg: 90.4713, loss: 0.3106 2024-06-16 12:05:03,812 - mmseg - INFO - per class results: 2024-06-16 12:05:03,819 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 80.91 | 87.14 | | building | 83.79 | 93.3 | | sky | 94.34 | 97.9 | | floor | 84.37 | 91.65 | | tree | 75.13 | 87.89 | | ceiling | 87.08 | 94.29 | | road | 86.13 | 90.62 | | bed | 91.45 | 96.41 | | windowpane | 66.35 | 84.41 | | grass | 67.62 | 84.04 | | cabinet | 65.79 | 74.43 | | sidewalk | 70.8 | 86.27 | | person | 83.85 | 92.99 | | earth | 38.42 | 48.33 | | door | 59.55 | 78.14 | | table | 67.11 | 77.97 | | mountain | 62.55 | 72.13 | | plant | 51.04 | 61.98 | | curtain | 75.93 | 89.92 | | chair | 63.74 | 76.11 | | car | 85.42 | 93.81 | | water | 64.05 | 79.79 | | painting | 76.92 | 90.1 | | sofa | 82.22 | 89.57 | | shelf | 45.68 | 64.66 | | house | 47.5 | 62.09 | | sea | 71.04 | 81.69 | | mirror | 77.17 | 87.46 | | rug | 70.24 | 78.46 | | field | 28.38 | 48.59 | | armchair | 63.49 | 75.14 | | seat | 66.76 | 89.49 | | fence | 51.58 | 64.97 | | desk | 55.25 | 80.39 | | rock | 53.05 | 87.02 | | wardrobe | 54.7 | 74.3 | | lamp | 69.72 | 79.59 | | bathtub | 84.66 | 87.64 | | railing | 42.34 | 64.39 | | cushion | 68.1 | 85.01 | | base | 38.52 | 57.28 | | box | 39.26 | 53.71 | | column | 54.52 | 70.59 | | signboard | 38.32 | 57.25 | | chest of drawers | 49.31 | 75.01 | | counter | 51.34 | 57.11 | | sand | 55.85 | 86.91 | | sink | 76.49 | 80.39 | | skyscraper | 45.8 | 59.49 | | fireplace | 67.24 | 97.84 | | refrigerator | 82.35 | 93.09 | | grandstand | 52.03 | 86.46 | | path | 29.32 | 43.59 | | stairs | 27.87 | 32.14 | | runway | 71.83 | 98.63 | | case | 60.84 | 86.36 | | pool table | 92.97 | 98.3 | | pillow | 65.61 | 76.16 | | screen door | 80.32 | 91.2 | | stairway | 40.24 | 56.95 | | river | 16.0 | 30.46 | | bridge | 65.78 | 74.96 | | bookcase | 38.28 | 58.85 | | blind | 39.97 | 45.17 | | coffee table | 59.82 | 86.86 | | toilet | 88.67 | 94.24 | | flower | 37.61 | 52.93 | | book | 51.1 | 77.39 | | hill | 7.64 | 13.37 | | bench | 57.99 | 66.37 | | countertop | 62.91 | 83.78 | | stove | 85.38 | 90.54 | | palm | 54.97 | 76.33 | | kitchen island | 49.03 | 92.0 | | computer | 77.98 | 89.4 | | swivel chair | 49.2 | 76.0 | | boat | 80.83 | 88.8 | | bar | 59.99 | 91.9 | | arcade machine | 89.82 | 97.85 | | hovel | 27.69 | 30.47 | | bus | 91.35 | 97.14 | | towel | 74.5 | 81.54 | | light | 51.14 | 62.43 | | truck | 46.48 | 63.09 | | tower | 33.51 | 50.58 | | chandelier | 69.27 | 86.17 | | awning | 42.06 | 54.49 | | streetlight | 25.13 | 32.33 | | booth | 44.01 | 60.2 | | television receiver | 78.76 | 86.06 | | airplane | 84.16 | 94.37 | | dirt track | 27.39 | 40.5 | | apparel | 65.95 | 83.56 | | pole | 21.89 | 30.61 | | land | 6.84 | 9.61 | | bannister | 13.66 | 15.75 | | escalator | 65.32 | 83.98 | | ottoman | 55.96 | 77.34 | | bottle | 44.44 | 71.08 | | buffet | 51.54 | 58.96 | | poster | 25.11 | 34.6 | | stage | 21.36 | 41.42 | | van | 43.36 | 57.03 | | ship | 92.95 | 98.08 | | fountain | 53.88 | 62.89 | | conveyer belt | 78.58 | 95.12 | | canopy | 55.77 | 76.31 | | washer | 87.78 | 93.42 | | plaything | 31.9 | 42.38 | | swimming pool | 57.39 | 84.89 | | stool | 43.48 | 64.69 | | barrel | 64.36 | 83.23 | | basket | 38.15 | 52.95 | | waterfall | 53.27 | 66.79 | | tent | 93.78 | 97.7 | | bag | 24.51 | 27.71 | | minibike | 74.31 | 89.27 | | cradle | 83.39 | 96.68 | | oven | 58.85 | 75.71 | | ball | 46.55 | 47.74 | | food | 58.8 | 63.31 | | step | 13.45 | 17.94 | | tank | 73.79 | 86.56 | | trade name | 23.05 | 28.64 | | microwave | 89.12 | 96.29 | | pot | 55.68 | 64.0 | | animal | 66.44 | 68.62 | | bicycle | 60.52 | 76.84 | | lake | 57.64 | 65.02 | | dishwasher | 72.26 | 79.5 | | screen | 53.37 | 92.91 | | blanket | 32.49 | 39.38 | | sculpture | 67.02 | 87.1 | | hood | 66.12 | 81.53 | | sconce | 56.56 | 70.45 | | vase | 46.15 | 64.11 | | traffic light | 36.34 | 59.55 | | tray | 21.93 | 26.26 | | ashcan | 50.94 | 61.4 | | fan | 61.84 | 71.72 | | pier | 38.23 | 45.55 | | crt screen | 2.63 | 3.46 | | plate | 62.68 | 74.12 | | monitor | 68.76 | 82.11 | | bulletin board | 60.07 | 79.98 | | shower | 15.24 | 16.14 | | radiator | 64.06 | 82.22 | | glass | 20.45 | 21.78 | | clock | 46.82 | 61.15 | | flag | 66.78 | 74.46 | +---------------------+-------+-------+ 2024-06-16 12:05:03,819 - mmseg - INFO - Summary: 2024-06-16 12:05:03,819 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.48 | 57.11 | 70.51 | +-------+-------+-------+ 2024-06-16 12:05:03,820 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 12:05:03,820 - mmseg - INFO - Iter(val) [250] aAcc: 0.8548, mIoU: 0.5711, mAcc: 0.7051, IoU.wall: 0.8091, IoU.building: 0.8379, IoU.sky: 0.9434, IoU.floor: 0.8437, IoU.tree: 0.7513, IoU.ceiling: 0.8708, IoU.road: 0.8613, IoU.bed : 0.9145, IoU.windowpane: 0.6635, IoU.grass: 0.6762, IoU.cabinet: 0.6579, IoU.sidewalk: 0.7080, IoU.person: 0.8385, IoU.earth: 0.3842, IoU.door: 0.5955, IoU.table: 0.6711, IoU.mountain: 0.6255, IoU.plant: 0.5104, IoU.curtain: 0.7593, IoU.chair: 0.6374, IoU.car: 0.8542, IoU.water: 0.6405, IoU.painting: 0.7692, IoU.sofa: 0.8222, IoU.shelf: 0.4568, IoU.house: 0.4750, IoU.sea: 0.7104, IoU.mirror: 0.7717, IoU.rug: 0.7024, IoU.field: 0.2838, IoU.armchair: 0.6349, IoU.seat: 0.6676, IoU.fence: 0.5158, IoU.desk: 0.5525, IoU.rock: 0.5305, IoU.wardrobe: 0.5470, IoU.lamp: 0.6972, IoU.bathtub: 0.8466, IoU.railing: 0.4234, IoU.cushion: 0.6810, IoU.base: 0.3852, IoU.box: 0.3926, IoU.column: 0.5452, IoU.signboard: 0.3832, IoU.chest of drawers: 0.4931, IoU.counter: 0.5134, IoU.sand: 0.5585, IoU.sink: 0.7649, IoU.skyscraper: 0.4580, IoU.fireplace: 0.6724, IoU.refrigerator: 0.8235, IoU.grandstand: 0.5203, IoU.path: 0.2932, IoU.stairs: 0.2787, IoU.runway: 0.7183, IoU.case: 0.6084, IoU.pool table: 0.9297, IoU.pillow: 0.6561, IoU.screen door: 0.8032, IoU.stairway: 0.4024, IoU.river: 0.1600, IoU.bridge: 0.6578, IoU.bookcase: 0.3828, IoU.blind: 0.3997, IoU.coffee table: 0.5982, IoU.toilet: 0.8867, IoU.flower: 0.3761, IoU.book: 0.5110, IoU.hill: 0.0764, IoU.bench: 0.5799, IoU.countertop: 0.6291, IoU.stove: 0.8538, IoU.palm: 0.5497, IoU.kitchen island: 0.4903, IoU.computer: 0.7798, IoU.swivel chair: 0.4920, IoU.boat: 0.8083, IoU.bar: 0.5999, IoU.arcade machine: 0.8982, IoU.hovel: 0.2769, IoU.bus: 0.9135, IoU.towel: 0.7450, IoU.light: 0.5114, IoU.truck: 0.4648, IoU.tower: 0.3351, IoU.chandelier: 0.6927, IoU.awning: 0.4206, IoU.streetlight: 0.2513, IoU.booth: 0.4401, IoU.television receiver: 0.7876, IoU.airplane: 0.8416, IoU.dirt track: 0.2739, IoU.apparel: 0.6595, IoU.pole: 0.2189, IoU.land: 0.0684, IoU.bannister: 0.1366, IoU.escalator: 0.6532, IoU.ottoman: 0.5596, IoU.bottle: 0.4444, IoU.buffet: 0.5154, IoU.poster: 0.2511, IoU.stage: 0.2136, IoU.van: 0.4336, IoU.ship: 0.9295, IoU.fountain: 0.5388, IoU.conveyer belt: 0.7858, IoU.canopy: 0.5577, IoU.washer: 0.8778, IoU.plaything: 0.3190, IoU.swimming pool: 0.5739, IoU.stool: 0.4348, IoU.barrel: 0.6436, IoU.basket: 0.3815, IoU.waterfall: 0.5327, IoU.tent: 0.9378, IoU.bag: 0.2451, IoU.minibike: 0.7431, IoU.cradle: 0.8339, IoU.oven: 0.5885, IoU.ball: 0.4655, IoU.food: 0.5880, IoU.step: 0.1345, IoU.tank: 0.7379, IoU.trade name: 0.2305, IoU.microwave: 0.8912, IoU.pot: 0.5568, IoU.animal: 0.6644, IoU.bicycle: 0.6052, IoU.lake: 0.5764, IoU.dishwasher: 0.7226, IoU.screen: 0.5337, IoU.blanket: 0.3249, IoU.sculpture: 0.6702, IoU.hood: 0.6612, IoU.sconce: 0.5656, IoU.vase: 0.4615, IoU.traffic light: 0.3634, IoU.tray: 0.2193, IoU.ashcan: 0.5094, IoU.fan: 0.6184, IoU.pier: 0.3823, IoU.crt screen: 0.0263, IoU.plate: 0.6268, IoU.monitor: 0.6876, IoU.bulletin board: 0.6007, IoU.shower: 0.1524, IoU.radiator: 0.6406, IoU.glass: 0.2045, IoU.clock: 0.4682, IoU.flag: 0.6678, Acc.wall: 0.8714, Acc.building: 0.9330, Acc.sky: 0.9790, Acc.floor: 0.9165, Acc.tree: 0.8789, Acc.ceiling: 0.9429, Acc.road: 0.9062, Acc.bed : 0.9641, Acc.windowpane: 0.8441, Acc.grass: 0.8404, Acc.cabinet: 0.7443, Acc.sidewalk: 0.8627, Acc.person: 0.9299, Acc.earth: 0.4833, Acc.door: 0.7814, Acc.table: 0.7797, Acc.mountain: 0.7213, Acc.plant: 0.6198, Acc.curtain: 0.8992, Acc.chair: 0.7611, Acc.car: 0.9381, Acc.water: 0.7979, Acc.painting: 0.9010, Acc.sofa: 0.8957, Acc.shelf: 0.6466, Acc.house: 0.6209, Acc.sea: 0.8169, Acc.mirror: 0.8746, Acc.rug: 0.7846, Acc.field: 0.4859, Acc.armchair: 0.7514, Acc.seat: 0.8949, Acc.fence: 0.6497, Acc.desk: 0.8039, Acc.rock: 0.8702, Acc.wardrobe: 0.7430, Acc.lamp: 0.7959, Acc.bathtub: 0.8764, Acc.railing: 0.6439, Acc.cushion: 0.8501, Acc.base: 0.5728, Acc.box: 0.5371, Acc.column: 0.7059, Acc.signboard: 0.5725, Acc.chest of drawers: 0.7501, Acc.counter: 0.5711, Acc.sand: 0.8691, Acc.sink: 0.8039, Acc.skyscraper: 0.5949, Acc.fireplace: 0.9784, Acc.refrigerator: 0.9309, Acc.grandstand: 0.8646, Acc.path: 0.4359, Acc.stairs: 0.3214, Acc.runway: 0.9863, Acc.case: 0.8636, Acc.pool table: 0.9830, Acc.pillow: 0.7616, Acc.screen door: 0.9120, Acc.stairway: 0.5695, Acc.river: 0.3046, Acc.bridge: 0.7496, Acc.bookcase: 0.5885, Acc.blind: 0.4517, Acc.coffee table: 0.8686, Acc.toilet: 0.9424, Acc.flower: 0.5293, Acc.book: 0.7739, Acc.hill: 0.1337, Acc.bench: 0.6637, Acc.countertop: 0.8378, Acc.stove: 0.9054, Acc.palm: 0.7633, Acc.kitchen island: 0.9200, Acc.computer: 0.8940, Acc.swivel chair: 0.7600, Acc.boat: 0.8880, Acc.bar: 0.9190, Acc.arcade machine: 0.9785, Acc.hovel: 0.3047, Acc.bus: 0.9714, Acc.towel: 0.8154, Acc.light: 0.6243, Acc.truck: 0.6309, Acc.tower: 0.5058, Acc.chandelier: 0.8617, Acc.awning: 0.5449, Acc.streetlight: 0.3233, Acc.booth: 0.6020, Acc.television receiver: 0.8606, Acc.airplane: 0.9437, Acc.dirt track: 0.4050, Acc.apparel: 0.8356, Acc.pole: 0.3061, Acc.land: 0.0961, Acc.bannister: 0.1575, Acc.escalator: 0.8398, Acc.ottoman: 0.7734, Acc.bottle: 0.7108, Acc.buffet: 0.5896, Acc.poster: 0.3460, Acc.stage: 0.4142, Acc.van: 0.5703, Acc.ship: 0.9808, Acc.fountain: 0.6289, Acc.conveyer belt: 0.9512, Acc.canopy: 0.7631, Acc.washer: 0.9342, Acc.plaything: 0.4238, Acc.swimming pool: 0.8489, Acc.stool: 0.6469, Acc.barrel: 0.8323, Acc.basket: 0.5295, Acc.waterfall: 0.6679, Acc.tent: 0.9770, Acc.bag: 0.2771, Acc.minibike: 0.8927, Acc.cradle: 0.9668, Acc.oven: 0.7571, Acc.ball: 0.4774, Acc.food: 0.6331, Acc.step: 0.1794, Acc.tank: 0.8656, Acc.trade name: 0.2864, Acc.microwave: 0.9629, Acc.pot: 0.6400, Acc.animal: 0.6862, Acc.bicycle: 0.7684, Acc.lake: 0.6502, Acc.dishwasher: 0.7950, Acc.screen: 0.9291, Acc.blanket: 0.3938, Acc.sculpture: 0.8710, Acc.hood: 0.8153, Acc.sconce: 0.7045, Acc.vase: 0.6411, Acc.traffic light: 0.5955, Acc.tray: 0.2626, Acc.ashcan: 0.6140, Acc.fan: 0.7172, Acc.pier: 0.4555, Acc.crt screen: 0.0346, Acc.plate: 0.7412, Acc.monitor: 0.8211, Acc.bulletin board: 0.7998, Acc.shower: 0.1614, Acc.radiator: 0.8222, Acc.glass: 0.2178, Acc.clock: 0.6115, Acc.flag: 0.7446 2024-06-16 12:06:24,729 - mmseg - INFO - Iter [32050/80000] lr: 1.942e-06, eta: 23:07:12, time: 3.282, data_time: 1.678, memory: 65790, decode.loss_ce: 0.2034, decode.acc_seg: 91.2003, aux.loss_ce: 0.0836, aux.acc_seg: 91.0939, loss: 0.2870 2024-06-16 12:07:45,213 - mmseg - INFO - Iter [32100/80000] lr: 1.940e-06, eta: 23:05:36, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2110, decode.acc_seg: 90.8903, aux.loss_ce: 0.0865, aux.acc_seg: 90.7283, loss: 0.2975 2024-06-16 12:09:05,620 - mmseg - INFO - Iter [32150/80000] lr: 1.938e-06, eta: 23:03:59, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2107, decode.acc_seg: 90.7493, aux.loss_ce: 0.0864, aux.acc_seg: 90.6358, loss: 0.2971 2024-06-16 12:10:26,143 - mmseg - INFO - Iter [32200/80000] lr: 1.936e-06, eta: 23:02:23, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2064, decode.acc_seg: 91.1709, aux.loss_ce: 0.0852, aux.acc_seg: 90.9208, loss: 0.2916 2024-06-16 12:11:46,500 - mmseg - INFO - Iter [32250/80000] lr: 1.934e-06, eta: 23:00:47, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2201, decode.acc_seg: 90.5134, aux.loss_ce: 0.0897, aux.acc_seg: 90.3952, loss: 0.3098 2024-06-16 12:13:07,043 - mmseg - INFO - Iter [32300/80000] lr: 1.932e-06, eta: 22:59:11, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2120, decode.acc_seg: 90.6923, aux.loss_ce: 0.0870, aux.acc_seg: 90.6252, loss: 0.2990 2024-06-16 12:14:27,659 - mmseg - INFO - Iter [32350/80000] lr: 1.930e-06, eta: 22:57:35, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2113, decode.acc_seg: 90.8646, aux.loss_ce: 0.0869, aux.acc_seg: 90.8401, loss: 0.2982 2024-06-16 12:15:48,147 - mmseg - INFO - Iter [32400/80000] lr: 1.928e-06, eta: 22:55:59, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2309, decode.acc_seg: 90.2029, aux.loss_ce: 0.0940, aux.acc_seg: 90.1616, loss: 0.3249 2024-06-16 12:17:08,643 - mmseg - INFO - Iter [32450/80000] lr: 1.926e-06, eta: 22:54:24, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2120, decode.acc_seg: 91.1711, aux.loss_ce: 0.0872, aux.acc_seg: 91.0612, loss: 0.2992 2024-06-16 12:18:29,121 - mmseg - INFO - Iter [32500/80000] lr: 1.924e-06, eta: 22:52:48, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2220, decode.acc_seg: 90.5049, aux.loss_ce: 0.0913, aux.acc_seg: 90.3041, loss: 0.3134 2024-06-16 12:19:49,545 - mmseg - INFO - Iter [32550/80000] lr: 1.922e-06, eta: 22:51:12, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2098, decode.acc_seg: 90.8839, aux.loss_ce: 0.0863, aux.acc_seg: 90.6974, loss: 0.2962 2024-06-16 12:21:10,172 - mmseg - INFO - Iter [32600/80000] lr: 1.920e-06, eta: 22:49:36, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1999, decode.acc_seg: 91.1992, aux.loss_ce: 0.0822, aux.acc_seg: 91.0515, loss: 0.2821 2024-06-16 12:22:30,775 - mmseg - INFO - Iter [32650/80000] lr: 1.918e-06, eta: 22:48:01, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2060, decode.acc_seg: 91.1354, aux.loss_ce: 0.0859, aux.acc_seg: 90.8855, loss: 0.2919 2024-06-16 12:23:51,415 - mmseg - INFO - Iter [32700/80000] lr: 1.916e-06, eta: 22:46:26, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2129, decode.acc_seg: 90.7794, aux.loss_ce: 0.0876, aux.acc_seg: 90.5816, loss: 0.3005 2024-06-16 12:25:12,059 - mmseg - INFO - Iter [32750/80000] lr: 1.914e-06, eta: 22:44:50, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2061, decode.acc_seg: 90.9995, aux.loss_ce: 0.0846, aux.acc_seg: 90.9629, loss: 0.2907 2024-06-16 12:26:32,548 - mmseg - INFO - Iter [32800/80000] lr: 1.912e-06, eta: 22:43:15, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2171, decode.acc_seg: 90.8789, aux.loss_ce: 0.0881, aux.acc_seg: 90.9611, loss: 0.3052 2024-06-16 12:27:55,978 - mmseg - INFO - Iter [32850/80000] lr: 1.909e-06, eta: 22:41:43, time: 1.669, data_time: 0.067, memory: 65790, decode.loss_ce: 0.2191, decode.acc_seg: 90.7411, aux.loss_ce: 0.0897, aux.acc_seg: 90.6005, loss: 0.3089 2024-06-16 12:29:16,500 - mmseg - INFO - Iter [32900/80000] lr: 1.907e-06, eta: 22:40:08, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2069, decode.acc_seg: 91.2576, aux.loss_ce: 0.0847, aux.acc_seg: 91.1848, loss: 0.2917 2024-06-16 12:30:37,060 - mmseg - INFO - Iter [32950/80000] lr: 1.905e-06, eta: 22:38:33, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2100, decode.acc_seg: 91.1286, aux.loss_ce: 0.0865, aux.acc_seg: 90.9984, loss: 0.2966 2024-06-16 12:31:57,754 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 12:31:57,755 - mmseg - INFO - Iter [33000/80000] lr: 1.903e-06, eta: 22:36:58, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2001, decode.acc_seg: 91.4847, aux.loss_ce: 0.0820, aux.acc_seg: 91.3984, loss: 0.2820 2024-06-16 12:33:21,288 - mmseg - INFO - per class results: 2024-06-16 12:33:21,294 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 81.12 | 89.17 | | building | 83.88 | 92.97 | | sky | 94.61 | 97.32 | | floor | 83.9 | 89.9 | | tree | 77.04 | 88.16 | | ceiling | 86.86 | 93.99 | | road | 85.03 | 91.17 | | bed | 92.11 | 96.81 | | windowpane | 66.82 | 80.69 | | grass | 66.68 | 84.15 | | cabinet | 65.95 | 76.69 | | sidewalk | 69.35 | 82.65 | | person | 83.97 | 92.11 | | earth | 39.61 | 52.38 | | door | 60.04 | 75.6 | | table | 67.96 | 78.76 | | mountain | 62.77 | 70.05 | | plant | 56.1 | 70.55 | | curtain | 75.82 | 86.59 | | chair | 63.05 | 76.81 | | car | 85.64 | 93.53 | | water | 60.36 | 74.33 | | painting | 78.63 | 89.28 | | sofa | 80.74 | 88.93 | | shelf | 47.08 | 66.7 | | house | 51.96 | 62.81 | | sea | 73.47 | 81.96 | | mirror | 76.91 | 85.8 | | rug | 69.7 | 83.51 | | field | 31.47 | 51.11 | | armchair | 62.19 | 78.01 | | seat | 65.12 | 90.4 | | fence | 51.33 | 62.15 | | desk | 58.15 | 77.69 | | rock | 56.02 | 84.28 | | wardrobe | 52.62 | 73.1 | | lamp | 69.26 | 82.32 | | bathtub | 85.76 | 88.96 | | railing | 42.06 | 58.51 | | cushion | 68.2 | 76.56 | | base | 42.85 | 60.11 | | box | 38.25 | 50.39 | | column | 52.8 | 65.6 | | signboard | 40.77 | 54.22 | | chest of drawers | 45.02 | 74.48 | | counter | 43.6 | 50.96 | | sand | 48.94 | 84.68 | | sink | 79.68 | 86.91 | | skyscraper | 44.31 | 54.56 | | fireplace | 71.26 | 95.34 | | refrigerator | 81.07 | 87.58 | | grandstand | 51.91 | 85.32 | | path | 28.79 | 40.57 | | stairs | 28.77 | 36.23 | | runway | 65.89 | 84.59 | | case | 64.82 | 83.22 | | pool table | 93.5 | 97.77 | | pillow | 67.77 | 84.18 | | screen door | 79.82 | 85.19 | | stairway | 40.04 | 57.42 | | river | 12.35 | 33.41 | | bridge | 50.07 | 60.53 | | bookcase | 44.44 | 69.11 | | blind | 46.06 | 54.87 | | coffee table | 60.54 | 85.56 | | toilet | 89.96 | 95.49 | | flower | 39.27 | 52.2 | | book | 51.72 | 70.73 | | hill | 7.22 | 15.47 | | bench | 56.74 | 61.78 | | countertop | 60.7 | 73.16 | | stove | 83.94 | 91.05 | | palm | 53.06 | 84.17 | | kitchen island | 49.96 | 73.98 | | computer | 76.06 | 92.25 | | swivel chair | 50.68 | 88.55 | | boat | 72.23 | 90.53 | | bar | 60.44 | 80.34 | | arcade machine | 83.26 | 88.79 | | hovel | 40.79 | 47.25 | | bus | 90.38 | 96.74 | | towel | 72.7 | 80.97 | | light | 50.2 | 57.93 | | truck | 47.08 | 64.23 | | tower | 31.81 | 61.43 | | chandelier | 70.76 | 84.5 | | awning | 42.89 | 57.94 | | streetlight | 29.48 | 39.79 | | booth | 40.51 | 55.93 | | television receiver | 77.75 | 87.94 | | airplane | 83.04 | 90.39 | | dirt track | 7.15 | 29.56 | | apparel | 55.18 | 67.12 | | pole | 30.35 | 45.85 | | land | 4.21 | 8.33 | | bannister | 16.73 | 22.53 | | escalator | 64.04 | 84.41 | | ottoman | 52.98 | 68.18 | | bottle | 43.36 | 67.53 | | buffet | 61.2 | 72.12 | | poster | 33.23 | 47.75 | | stage | 24.1 | 42.06 | | van | 45.68 | 68.07 | | ship | 88.51 | 94.95 | | fountain | 47.98 | 49.64 | | conveyer belt | 79.02 | 95.58 | | canopy | 48.34 | 70.63 | | washer | 89.26 | 95.4 | | plaything | 33.68 | 43.28 | | swimming pool | 53.75 | 78.42 | | stool | 45.27 | 65.27 | | barrel | 53.95 | 69.05 | | basket | 45.2 | 60.61 | | waterfall | 61.41 | 74.23 | | tent | 92.95 | 98.25 | | bag | 26.06 | 30.01 | | minibike | 74.8 | 87.34 | | cradle | 82.0 | 97.99 | | oven | 55.1 | 73.98 | | ball | 61.45 | 68.38 | | food | 63.98 | 71.41 | | step | 7.78 | 8.86 | | tank | 74.09 | 81.04 | | trade name | 22.05 | 24.9 | | microwave | 85.74 | 96.96 | | pot | 59.75 | 72.12 | | animal | 59.86 | 61.12 | | bicycle | 58.8 | 86.01 | | lake | 53.84 | 63.72 | | dishwasher | 70.28 | 80.47 | | screen | 63.72 | 88.31 | | blanket | 31.62 | 35.57 | | sculpture | 62.44 | 88.7 | | hood | 61.19 | 75.22 | | sconce | 57.74 | 72.27 | | vase | 47.27 | 60.05 | | traffic light | 37.98 | 59.6 | | tray | 20.37 | 26.05 | | ashcan | 50.48 | 68.71 | | fan | 61.89 | 76.16 | | pier | 38.88 | 46.83 | | crt screen | 18.69 | 23.42 | | plate | 60.98 | 76.94 | | monitor | 68.7 | 85.5 | | bulletin board | 65.26 | 79.06 | | shower | 5.01 | 5.53 | | radiator | 66.71 | 76.53 | | glass | 19.82 | 21.58 | | clock | 50.6 | 61.48 | | flag | 67.63 | 73.36 | +---------------------+-------+-------+ 2024-06-16 12:33:21,294 - mmseg - INFO - Summary: 2024-06-16 12:33:21,295 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.55 | 57.04 | 70.31 | +-------+-------+-------+ 2024-06-16 12:33:21,295 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 12:33:21,296 - mmseg - INFO - Iter(val) [250] aAcc: 0.8555, mIoU: 0.5704, mAcc: 0.7031, IoU.wall: 0.8112, IoU.building: 0.8388, IoU.sky: 0.9461, IoU.floor: 0.8390, IoU.tree: 0.7704, IoU.ceiling: 0.8686, IoU.road: 0.8503, IoU.bed : 0.9211, IoU.windowpane: 0.6682, IoU.grass: 0.6668, IoU.cabinet: 0.6595, IoU.sidewalk: 0.6935, IoU.person: 0.8397, IoU.earth: 0.3961, IoU.door: 0.6004, IoU.table: 0.6796, IoU.mountain: 0.6277, IoU.plant: 0.5610, IoU.curtain: 0.7582, IoU.chair: 0.6305, IoU.car: 0.8564, IoU.water: 0.6036, IoU.painting: 0.7863, IoU.sofa: 0.8074, IoU.shelf: 0.4708, IoU.house: 0.5196, IoU.sea: 0.7347, IoU.mirror: 0.7691, IoU.rug: 0.6970, IoU.field: 0.3147, IoU.armchair: 0.6219, IoU.seat: 0.6512, IoU.fence: 0.5133, IoU.desk: 0.5815, IoU.rock: 0.5602, IoU.wardrobe: 0.5262, IoU.lamp: 0.6926, IoU.bathtub: 0.8576, IoU.railing: 0.4206, IoU.cushion: 0.6820, IoU.base: 0.4285, IoU.box: 0.3825, IoU.column: 0.5280, IoU.signboard: 0.4077, IoU.chest of drawers: 0.4502, IoU.counter: 0.4360, IoU.sand: 0.4894, IoU.sink: 0.7968, IoU.skyscraper: 0.4431, IoU.fireplace: 0.7126, IoU.refrigerator: 0.8107, IoU.grandstand: 0.5191, IoU.path: 0.2879, IoU.stairs: 0.2877, IoU.runway: 0.6589, IoU.case: 0.6482, IoU.pool table: 0.9350, IoU.pillow: 0.6777, IoU.screen door: 0.7982, IoU.stairway: 0.4004, IoU.river: 0.1235, IoU.bridge: 0.5007, IoU.bookcase: 0.4444, IoU.blind: 0.4606, IoU.coffee table: 0.6054, IoU.toilet: 0.8996, IoU.flower: 0.3927, IoU.book: 0.5172, IoU.hill: 0.0722, IoU.bench: 0.5674, IoU.countertop: 0.6070, IoU.stove: 0.8394, IoU.palm: 0.5306, IoU.kitchen island: 0.4996, IoU.computer: 0.7606, IoU.swivel chair: 0.5068, IoU.boat: 0.7223, IoU.bar: 0.6044, IoU.arcade machine: 0.8326, IoU.hovel: 0.4079, IoU.bus: 0.9038, IoU.towel: 0.7270, IoU.light: 0.5020, IoU.truck: 0.4708, IoU.tower: 0.3181, IoU.chandelier: 0.7076, IoU.awning: 0.4289, IoU.streetlight: 0.2948, IoU.booth: 0.4051, IoU.television receiver: 0.7775, IoU.airplane: 0.8304, IoU.dirt track: 0.0715, IoU.apparel: 0.5518, IoU.pole: 0.3035, IoU.land: 0.0421, IoU.bannister: 0.1673, IoU.escalator: 0.6404, IoU.ottoman: 0.5298, IoU.bottle: 0.4336, IoU.buffet: 0.6120, IoU.poster: 0.3323, IoU.stage: 0.2410, IoU.van: 0.4568, IoU.ship: 0.8851, IoU.fountain: 0.4798, IoU.conveyer belt: 0.7902, IoU.canopy: 0.4834, IoU.washer: 0.8926, IoU.plaything: 0.3368, IoU.swimming pool: 0.5375, IoU.stool: 0.4527, IoU.barrel: 0.5395, IoU.basket: 0.4520, IoU.waterfall: 0.6141, IoU.tent: 0.9295, IoU.bag: 0.2606, IoU.minibike: 0.7480, IoU.cradle: 0.8200, IoU.oven: 0.5510, IoU.ball: 0.6145, IoU.food: 0.6398, IoU.step: 0.0778, IoU.tank: 0.7409, IoU.trade name: 0.2205, IoU.microwave: 0.8574, IoU.pot: 0.5975, IoU.animal: 0.5986, IoU.bicycle: 0.5880, IoU.lake: 0.5384, IoU.dishwasher: 0.7028, IoU.screen: 0.6372, IoU.blanket: 0.3162, IoU.sculpture: 0.6244, IoU.hood: 0.6119, IoU.sconce: 0.5774, IoU.vase: 0.4727, IoU.traffic light: 0.3798, IoU.tray: 0.2037, IoU.ashcan: 0.5048, IoU.fan: 0.6189, IoU.pier: 0.3888, IoU.crt screen: 0.1869, IoU.plate: 0.6098, IoU.monitor: 0.6870, IoU.bulletin board: 0.6526, IoU.shower: 0.0501, IoU.radiator: 0.6671, IoU.glass: 0.1982, IoU.clock: 0.5060, IoU.flag: 0.6763, Acc.wall: 0.8917, Acc.building: 0.9297, Acc.sky: 0.9732, Acc.floor: 0.8990, Acc.tree: 0.8816, Acc.ceiling: 0.9399, Acc.road: 0.9117, Acc.bed : 0.9681, Acc.windowpane: 0.8069, Acc.grass: 0.8415, Acc.cabinet: 0.7669, Acc.sidewalk: 0.8265, Acc.person: 0.9211, Acc.earth: 0.5238, Acc.door: 0.7560, Acc.table: 0.7876, Acc.mountain: 0.7005, Acc.plant: 0.7055, Acc.curtain: 0.8659, Acc.chair: 0.7681, Acc.car: 0.9353, Acc.water: 0.7433, Acc.painting: 0.8928, Acc.sofa: 0.8893, Acc.shelf: 0.6670, Acc.house: 0.6281, Acc.sea: 0.8196, Acc.mirror: 0.8580, Acc.rug: 0.8351, Acc.field: 0.5111, Acc.armchair: 0.7801, Acc.seat: 0.9040, Acc.fence: 0.6215, Acc.desk: 0.7769, Acc.rock: 0.8428, Acc.wardrobe: 0.7310, Acc.lamp: 0.8232, Acc.bathtub: 0.8896, Acc.railing: 0.5851, Acc.cushion: 0.7656, Acc.base: 0.6011, Acc.box: 0.5039, Acc.column: 0.6560, Acc.signboard: 0.5422, Acc.chest of drawers: 0.7448, Acc.counter: 0.5096, Acc.sand: 0.8468, Acc.sink: 0.8691, Acc.skyscraper: 0.5456, Acc.fireplace: 0.9534, Acc.refrigerator: 0.8758, Acc.grandstand: 0.8532, Acc.path: 0.4057, Acc.stairs: 0.3623, Acc.runway: 0.8459, Acc.case: 0.8322, Acc.pool table: 0.9777, Acc.pillow: 0.8418, Acc.screen door: 0.8519, Acc.stairway: 0.5742, Acc.river: 0.3341, Acc.bridge: 0.6053, Acc.bookcase: 0.6911, Acc.blind: 0.5487, Acc.coffee table: 0.8556, Acc.toilet: 0.9549, Acc.flower: 0.5220, Acc.book: 0.7073, Acc.hill: 0.1547, Acc.bench: 0.6178, Acc.countertop: 0.7316, Acc.stove: 0.9105, Acc.palm: 0.8417, Acc.kitchen island: 0.7398, Acc.computer: 0.9225, Acc.swivel chair: 0.8855, Acc.boat: 0.9053, Acc.bar: 0.8034, Acc.arcade machine: 0.8879, Acc.hovel: 0.4725, Acc.bus: 0.9674, Acc.towel: 0.8097, Acc.light: 0.5793, Acc.truck: 0.6423, Acc.tower: 0.6143, Acc.chandelier: 0.8450, Acc.awning: 0.5794, Acc.streetlight: 0.3979, Acc.booth: 0.5593, Acc.television receiver: 0.8794, Acc.airplane: 0.9039, Acc.dirt track: 0.2956, Acc.apparel: 0.6712, Acc.pole: 0.4585, Acc.land: 0.0833, Acc.bannister: 0.2253, Acc.escalator: 0.8441, Acc.ottoman: 0.6818, Acc.bottle: 0.6753, Acc.buffet: 0.7212, Acc.poster: 0.4775, Acc.stage: 0.4206, Acc.van: 0.6807, Acc.ship: 0.9495, Acc.fountain: 0.4964, Acc.conveyer belt: 0.9558, Acc.canopy: 0.7063, Acc.washer: 0.9540, Acc.plaything: 0.4328, Acc.swimming pool: 0.7842, Acc.stool: 0.6527, Acc.barrel: 0.6905, Acc.basket: 0.6061, Acc.waterfall: 0.7423, Acc.tent: 0.9825, Acc.bag: 0.3001, Acc.minibike: 0.8734, Acc.cradle: 0.9799, Acc.oven: 0.7398, Acc.ball: 0.6838, Acc.food: 0.7141, Acc.step: 0.0886, Acc.tank: 0.8104, Acc.trade name: 0.2490, Acc.microwave: 0.9696, Acc.pot: 0.7212, Acc.animal: 0.6112, Acc.bicycle: 0.8601, Acc.lake: 0.6372, Acc.dishwasher: 0.8047, Acc.screen: 0.8831, Acc.blanket: 0.3557, Acc.sculpture: 0.8870, Acc.hood: 0.7522, Acc.sconce: 0.7227, Acc.vase: 0.6005, Acc.traffic light: 0.5960, Acc.tray: 0.2605, Acc.ashcan: 0.6871, Acc.fan: 0.7616, Acc.pier: 0.4683, Acc.crt screen: 0.2342, Acc.plate: 0.7694, Acc.monitor: 0.8550, Acc.bulletin board: 0.7906, Acc.shower: 0.0553, Acc.radiator: 0.7653, Acc.glass: 0.2158, Acc.clock: 0.6148, Acc.flag: 0.7336 2024-06-16 12:34:42,079 - mmseg - INFO - Iter [33050/80000] lr: 1.901e-06, eta: 22:37:21, time: 3.286, data_time: 1.684, memory: 65790, decode.loss_ce: 0.2151, decode.acc_seg: 90.8582, aux.loss_ce: 0.0889, aux.acc_seg: 90.7432, loss: 0.3040 2024-06-16 12:36:02,524 - mmseg - INFO - Iter [33100/80000] lr: 1.899e-06, eta: 22:35:46, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2058, decode.acc_seg: 91.0513, aux.loss_ce: 0.0845, aux.acc_seg: 90.8801, loss: 0.2903 2024-06-16 12:37:22,981 - mmseg - INFO - Iter [33150/80000] lr: 1.897e-06, eta: 22:34:10, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1983, decode.acc_seg: 91.4295, aux.loss_ce: 0.0811, aux.acc_seg: 91.2491, loss: 0.2794 2024-06-16 12:38:43,700 - mmseg - INFO - Iter [33200/80000] lr: 1.895e-06, eta: 22:32:35, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2075, decode.acc_seg: 90.8648, aux.loss_ce: 0.0853, aux.acc_seg: 90.8051, loss: 0.2928 2024-06-16 12:40:04,399 - mmseg - INFO - Iter [33250/80000] lr: 1.893e-06, eta: 22:31:00, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2170, decode.acc_seg: 90.8518, aux.loss_ce: 0.0897, aux.acc_seg: 90.7004, loss: 0.3067 2024-06-16 12:41:24,909 - mmseg - INFO - Iter [33300/80000] lr: 1.891e-06, eta: 22:29:24, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2079, decode.acc_seg: 90.9946, aux.loss_ce: 0.0856, aux.acc_seg: 90.8680, loss: 0.2934 2024-06-16 12:42:45,339 - mmseg - INFO - Iter [33350/80000] lr: 1.889e-06, eta: 22:27:49, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2303, decode.acc_seg: 90.4414, aux.loss_ce: 0.0944, aux.acc_seg: 90.3420, loss: 0.3248 2024-06-16 12:44:05,798 - mmseg - INFO - Iter [33400/80000] lr: 1.887e-06, eta: 22:26:14, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2218, decode.acc_seg: 90.4854, aux.loss_ce: 0.0906, aux.acc_seg: 90.4114, loss: 0.3124 2024-06-16 12:45:26,340 - mmseg - INFO - Iter [33450/80000] lr: 1.885e-06, eta: 22:24:38, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2089, decode.acc_seg: 91.0808, aux.loss_ce: 0.0863, aux.acc_seg: 90.8911, loss: 0.2951 2024-06-16 12:46:46,877 - mmseg - INFO - Iter [33500/80000] lr: 1.883e-06, eta: 22:23:03, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2028, decode.acc_seg: 91.2146, aux.loss_ce: 0.0823, aux.acc_seg: 91.1578, loss: 0.2851 2024-06-16 12:48:07,476 - mmseg - INFO - Iter [33550/80000] lr: 1.881e-06, eta: 22:21:28, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2192, decode.acc_seg: 90.8257, aux.loss_ce: 0.0905, aux.acc_seg: 90.7672, loss: 0.3097 2024-06-16 12:49:28,031 - mmseg - INFO - Iter [33600/80000] lr: 1.879e-06, eta: 22:19:53, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2142, decode.acc_seg: 90.7868, aux.loss_ce: 0.0880, aux.acc_seg: 90.5994, loss: 0.3022 2024-06-16 12:50:48,508 - mmseg - INFO - Iter [33650/80000] lr: 1.877e-06, eta: 22:18:18, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2107, decode.acc_seg: 91.3207, aux.loss_ce: 0.0856, aux.acc_seg: 91.2672, loss: 0.2963 2024-06-16 12:52:09,037 - mmseg - INFO - Iter [33700/80000] lr: 1.875e-06, eta: 22:16:43, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2184, decode.acc_seg: 90.6607, aux.loss_ce: 0.0895, aux.acc_seg: 90.4877, loss: 0.3079 2024-06-16 12:53:29,506 - mmseg - INFO - Iter [33750/80000] lr: 1.873e-06, eta: 22:15:08, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1959, decode.acc_seg: 91.5629, aux.loss_ce: 0.0806, aux.acc_seg: 91.4208, loss: 0.2764 2024-06-16 12:54:50,041 - mmseg - INFO - Iter [33800/80000] lr: 1.871e-06, eta: 22:13:33, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2113, decode.acc_seg: 90.9828, aux.loss_ce: 0.0862, aux.acc_seg: 90.9469, loss: 0.2975 2024-06-16 12:56:10,596 - mmseg - INFO - Iter [33850/80000] lr: 1.869e-06, eta: 22:11:58, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1922, decode.acc_seg: 91.6938, aux.loss_ce: 0.0789, aux.acc_seg: 91.6655, loss: 0.2711 2024-06-16 12:57:31,116 - mmseg - INFO - Iter [33900/80000] lr: 1.867e-06, eta: 22:10:24, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2004, decode.acc_seg: 91.6096, aux.loss_ce: 0.0825, aux.acc_seg: 91.5035, loss: 0.2828 2024-06-16 12:58:51,692 - mmseg - INFO - Iter [33950/80000] lr: 1.865e-06, eta: 22:08:49, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1981, decode.acc_seg: 91.3069, aux.loss_ce: 0.0817, aux.acc_seg: 91.1671, loss: 0.2798 2024-06-16 13:00:12,187 - mmseg - INFO - Saving checkpoint at 34000 iterations 2024-06-16 13:01:26,281 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 13:01:26,281 - mmseg - INFO - Iter [34000/80000] lr: 1.863e-06, eta: 22:08:54, time: 3.092, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2183, decode.acc_seg: 90.8343, aux.loss_ce: 0.0894, aux.acc_seg: 90.8025, loss: 0.3076 2024-06-16 13:02:49,889 - mmseg - INFO - per class results: 2024-06-16 13:02:49,895 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 81.38 | 88.75 | | building | 83.76 | 92.26 | | sky | 94.58 | 97.15 | | floor | 84.08 | 91.22 | | tree | 77.21 | 89.33 | | ceiling | 86.53 | 93.18 | | road | 84.95 | 89.57 | | bed | 91.49 | 96.61 | | windowpane | 65.23 | 82.73 | | grass | 65.67 | 80.98 | | cabinet | 67.09 | 76.33 | | sidewalk | 70.65 | 89.57 | | person | 83.8 | 92.83 | | earth | 37.53 | 46.83 | | door | 59.62 | 75.58 | | table | 67.07 | 77.85 | | mountain | 62.26 | 73.97 | | plant | 56.48 | 69.32 | | curtain | 74.74 | 88.52 | | chair | 63.26 | 73.21 | | car | 85.96 | 93.4 | | water | 55.09 | 69.99 | | painting | 78.64 | 87.79 | | sofa | 81.64 | 93.05 | | shelf | 45.62 | 57.22 | | house | 46.94 | 67.23 | | sea | 61.76 | 69.04 | | mirror | 75.1 | 82.87 | | rug | 69.79 | 76.94 | | field | 29.98 | 55.49 | | armchair | 61.96 | 81.93 | | seat | 66.8 | 87.98 | | fence | 54.49 | 70.51 | | desk | 53.54 | 81.32 | | rock | 54.5 | 76.37 | | wardrobe | 55.36 | 82.09 | | lamp | 68.93 | 81.26 | | bathtub | 84.55 | 89.33 | | railing | 45.63 | 63.39 | | cushion | 67.19 | 81.39 | | base | 40.47 | 67.44 | | box | 38.72 | 51.0 | | column | 54.87 | 65.95 | | signboard | 40.05 | 51.97 | | chest of drawers | 46.72 | 66.34 | | counter | 44.93 | 54.43 | | sand | 50.45 | 88.13 | | sink | 81.08 | 89.3 | | skyscraper | 47.32 | 60.92 | | fireplace | 74.31 | 92.9 | | refrigerator | 82.33 | 93.13 | | grandstand | 52.16 | 84.26 | | path | 27.85 | 40.49 | | stairs | 39.91 | 50.91 | | runway | 66.94 | 89.79 | | case | 66.12 | 84.66 | | pool table | 93.31 | 98.23 | | pillow | 63.99 | 73.13 | | screen door | 68.79 | 76.93 | | stairway | 49.24 | 61.86 | | river | 11.97 | 37.32 | | bridge | 65.56 | 80.7 | | bookcase | 41.31 | 61.23 | | blind | 38.69 | 43.12 | | coffee table | 63.85 | 85.4 | | toilet | 89.83 | 92.65 | | flower | 38.79 | 52.66 | | book | 51.38 | 76.19 | | hill | 6.95 | 15.05 | | bench | 63.88 | 74.83 | | countertop | 64.26 | 83.88 | | stove | 85.41 | 94.36 | | palm | 51.42 | 80.77 | | kitchen island | 50.06 | 71.24 | | computer | 78.43 | 89.37 | | swivel chair | 52.39 | 83.75 | | boat | 68.05 | 90.18 | | bar | 60.26 | 84.11 | | arcade machine | 83.56 | 91.87 | | hovel | 36.35 | 42.43 | | bus | 90.98 | 96.97 | | towel | 75.63 | 86.61 | | light | 53.19 | 67.91 | | truck | 47.2 | 60.6 | | tower | 30.81 | 52.69 | | chandelier | 71.8 | 86.09 | | awning | 38.34 | 53.04 | | streetlight | 30.37 | 41.32 | | booth | 43.0 | 57.9 | | television receiver | 79.81 | 86.35 | | airplane | 84.9 | 89.96 | | dirt track | 8.72 | 37.53 | | apparel | 61.73 | 83.55 | | pole | 19.53 | 23.76 | | land | 3.65 | 4.38 | | bannister | 19.5 | 25.15 | | escalator | 63.43 | 86.93 | | ottoman | 46.59 | 56.41 | | bottle | 43.16 | 63.34 | | buffet | 59.48 | 72.21 | | poster | 33.32 | 51.87 | | stage | 24.68 | 47.6 | | van | 44.35 | 64.02 | | ship | 92.18 | 97.17 | | fountain | 48.08 | 50.55 | | conveyer belt | 79.38 | 96.66 | | canopy | 44.51 | 68.97 | | washer | 88.98 | 95.6 | | plaything | 35.56 | 48.84 | | swimming pool | 54.81 | 79.98 | | stool | 47.83 | 62.66 | | barrel | 53.07 | 69.67 | | basket | 45.43 | 59.54 | | waterfall | 69.52 | 84.36 | | tent | 92.13 | 98.56 | | bag | 24.82 | 26.75 | | minibike | 73.24 | 86.94 | | cradle | 65.36 | 98.04 | | oven | 62.97 | 77.1 | | ball | 43.07 | 44.13 | | food | 66.79 | 71.95 | | step | 9.4 | 11.51 | | tank | 80.58 | 93.27 | | trade name | 25.89 | 29.46 | | microwave | 89.61 | 95.72 | | pot | 58.95 | 68.04 | | animal | 73.83 | 78.3 | | bicycle | 57.0 | 67.74 | | lake | 60.16 | 63.6 | | dishwasher | 68.57 | 79.77 | | screen | 55.58 | 86.66 | | blanket | 33.64 | 37.93 | | sculpture | 71.46 | 87.22 | | hood | 59.99 | 69.78 | | sconce | 55.42 | 75.17 | | vase | 46.73 | 62.33 | | traffic light | 31.15 | 56.96 | | tray | 18.41 | 21.94 | | ashcan | 52.19 | 67.18 | | fan | 64.22 | 79.81 | | pier | 39.18 | 44.43 | | crt screen | 12.1 | 15.91 | | plate | 58.93 | 78.95 | | monitor | 67.78 | 84.78 | | bulletin board | 58.99 | 80.24 | | shower | 7.45 | 8.72 | | radiator | 45.93 | 52.55 | | glass | 22.1 | 24.0 | | clock | 47.16 | 56.81 | | flag | 64.28 | 77.88 | +---------------------+-------+-------+ 2024-06-16 13:02:49,895 - mmseg - INFO - Summary: 2024-06-16 13:02:49,896 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.43 | 56.88 | 70.38 | +-------+-------+-------+ 2024-06-16 13:02:49,897 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 13:02:49,897 - mmseg - INFO - Iter(val) [250] aAcc: 0.8543, mIoU: 0.5688, mAcc: 0.7038, IoU.wall: 0.8138, IoU.building: 0.8376, IoU.sky: 0.9458, IoU.floor: 0.8408, IoU.tree: 0.7721, IoU.ceiling: 0.8653, IoU.road: 0.8495, IoU.bed : 0.9149, IoU.windowpane: 0.6523, IoU.grass: 0.6567, IoU.cabinet: 0.6709, IoU.sidewalk: 0.7065, IoU.person: 0.8380, IoU.earth: 0.3753, IoU.door: 0.5962, IoU.table: 0.6707, IoU.mountain: 0.6226, IoU.plant: 0.5648, IoU.curtain: 0.7474, IoU.chair: 0.6326, IoU.car: 0.8596, IoU.water: 0.5509, IoU.painting: 0.7864, IoU.sofa: 0.8164, IoU.shelf: 0.4562, IoU.house: 0.4694, IoU.sea: 0.6176, IoU.mirror: 0.7510, IoU.rug: 0.6979, IoU.field: 0.2998, IoU.armchair: 0.6196, IoU.seat: 0.6680, IoU.fence: 0.5449, IoU.desk: 0.5354, IoU.rock: 0.5450, IoU.wardrobe: 0.5536, IoU.lamp: 0.6893, IoU.bathtub: 0.8455, IoU.railing: 0.4563, IoU.cushion: 0.6719, IoU.base: 0.4047, IoU.box: 0.3872, IoU.column: 0.5487, IoU.signboard: 0.4005, IoU.chest of drawers: 0.4672, IoU.counter: 0.4493, IoU.sand: 0.5045, IoU.sink: 0.8108, IoU.skyscraper: 0.4732, IoU.fireplace: 0.7431, IoU.refrigerator: 0.8233, IoU.grandstand: 0.5216, IoU.path: 0.2785, IoU.stairs: 0.3991, IoU.runway: 0.6694, IoU.case: 0.6612, IoU.pool table: 0.9331, IoU.pillow: 0.6399, IoU.screen door: 0.6879, IoU.stairway: 0.4924, IoU.river: 0.1197, IoU.bridge: 0.6556, IoU.bookcase: 0.4131, IoU.blind: 0.3869, IoU.coffee table: 0.6385, IoU.toilet: 0.8983, IoU.flower: 0.3879, IoU.book: 0.5138, IoU.hill: 0.0695, IoU.bench: 0.6388, IoU.countertop: 0.6426, IoU.stove: 0.8541, IoU.palm: 0.5142, IoU.kitchen island: 0.5006, IoU.computer: 0.7843, IoU.swivel chair: 0.5239, IoU.boat: 0.6805, IoU.bar: 0.6026, IoU.arcade machine: 0.8356, IoU.hovel: 0.3635, IoU.bus: 0.9098, IoU.towel: 0.7563, IoU.light: 0.5319, IoU.truck: 0.4720, IoU.tower: 0.3081, IoU.chandelier: 0.7180, IoU.awning: 0.3834, IoU.streetlight: 0.3037, IoU.booth: 0.4300, IoU.television receiver: 0.7981, IoU.airplane: 0.8490, IoU.dirt track: 0.0872, IoU.apparel: 0.6173, IoU.pole: 0.1953, IoU.land: 0.0365, IoU.bannister: 0.1950, IoU.escalator: 0.6343, IoU.ottoman: 0.4659, IoU.bottle: 0.4316, IoU.buffet: 0.5948, IoU.poster: 0.3332, IoU.stage: 0.2468, IoU.van: 0.4435, IoU.ship: 0.9218, IoU.fountain: 0.4808, IoU.conveyer belt: 0.7938, IoU.canopy: 0.4451, IoU.washer: 0.8898, IoU.plaything: 0.3556, IoU.swimming pool: 0.5481, IoU.stool: 0.4783, IoU.barrel: 0.5307, IoU.basket: 0.4543, IoU.waterfall: 0.6952, IoU.tent: 0.9213, IoU.bag: 0.2482, IoU.minibike: 0.7324, IoU.cradle: 0.6536, IoU.oven: 0.6297, IoU.ball: 0.4307, IoU.food: 0.6679, IoU.step: 0.0940, IoU.tank: 0.8058, IoU.trade name: 0.2589, IoU.microwave: 0.8961, IoU.pot: 0.5895, IoU.animal: 0.7383, IoU.bicycle: 0.5700, IoU.lake: 0.6016, IoU.dishwasher: 0.6857, IoU.screen: 0.5558, IoU.blanket: 0.3364, IoU.sculpture: 0.7146, IoU.hood: 0.5999, IoU.sconce: 0.5542, IoU.vase: 0.4673, IoU.traffic light: 0.3115, IoU.tray: 0.1841, IoU.ashcan: 0.5219, IoU.fan: 0.6422, IoU.pier: 0.3918, IoU.crt screen: 0.1210, IoU.plate: 0.5893, IoU.monitor: 0.6778, IoU.bulletin board: 0.5899, IoU.shower: 0.0745, IoU.radiator: 0.4593, IoU.glass: 0.2210, IoU.clock: 0.4716, IoU.flag: 0.6428, Acc.wall: 0.8875, Acc.building: 0.9226, Acc.sky: 0.9715, Acc.floor: 0.9122, Acc.tree: 0.8933, Acc.ceiling: 0.9318, Acc.road: 0.8957, Acc.bed : 0.9661, Acc.windowpane: 0.8273, Acc.grass: 0.8098, Acc.cabinet: 0.7633, Acc.sidewalk: 0.8957, Acc.person: 0.9283, Acc.earth: 0.4683, Acc.door: 0.7558, Acc.table: 0.7785, Acc.mountain: 0.7397, Acc.plant: 0.6932, Acc.curtain: 0.8852, Acc.chair: 0.7321, Acc.car: 0.9340, Acc.water: 0.6999, Acc.painting: 0.8779, Acc.sofa: 0.9305, Acc.shelf: 0.5722, Acc.house: 0.6723, Acc.sea: 0.6904, Acc.mirror: 0.8287, Acc.rug: 0.7694, Acc.field: 0.5549, Acc.armchair: 0.8193, Acc.seat: 0.8798, Acc.fence: 0.7051, Acc.desk: 0.8132, Acc.rock: 0.7637, Acc.wardrobe: 0.8209, Acc.lamp: 0.8126, Acc.bathtub: 0.8933, Acc.railing: 0.6339, Acc.cushion: 0.8139, Acc.base: 0.6744, Acc.box: 0.5100, Acc.column: 0.6595, Acc.signboard: 0.5197, Acc.chest of drawers: 0.6634, Acc.counter: 0.5443, Acc.sand: 0.8813, Acc.sink: 0.8930, Acc.skyscraper: 0.6092, Acc.fireplace: 0.9290, Acc.refrigerator: 0.9313, Acc.grandstand: 0.8426, Acc.path: 0.4049, Acc.stairs: 0.5091, Acc.runway: 0.8979, Acc.case: 0.8466, Acc.pool table: 0.9823, Acc.pillow: 0.7313, Acc.screen door: 0.7693, Acc.stairway: 0.6186, Acc.river: 0.3732, Acc.bridge: 0.8070, Acc.bookcase: 0.6123, Acc.blind: 0.4312, Acc.coffee table: 0.8540, Acc.toilet: 0.9265, Acc.flower: 0.5266, Acc.book: 0.7619, Acc.hill: 0.1505, Acc.bench: 0.7483, Acc.countertop: 0.8388, Acc.stove: 0.9436, Acc.palm: 0.8077, Acc.kitchen island: 0.7124, Acc.computer: 0.8937, Acc.swivel chair: 0.8375, Acc.boat: 0.9018, Acc.bar: 0.8411, Acc.arcade machine: 0.9187, Acc.hovel: 0.4243, Acc.bus: 0.9697, Acc.towel: 0.8661, Acc.light: 0.6791, Acc.truck: 0.6060, Acc.tower: 0.5269, Acc.chandelier: 0.8609, Acc.awning: 0.5304, Acc.streetlight: 0.4132, Acc.booth: 0.5790, Acc.television receiver: 0.8635, Acc.airplane: 0.8996, Acc.dirt track: 0.3753, Acc.apparel: 0.8355, Acc.pole: 0.2376, Acc.land: 0.0438, Acc.bannister: 0.2515, Acc.escalator: 0.8693, Acc.ottoman: 0.5641, Acc.bottle: 0.6334, Acc.buffet: 0.7221, Acc.poster: 0.5187, Acc.stage: 0.4760, Acc.van: 0.6402, Acc.ship: 0.9717, Acc.fountain: 0.5055, Acc.conveyer belt: 0.9666, Acc.canopy: 0.6897, Acc.washer: 0.9560, Acc.plaything: 0.4884, Acc.swimming pool: 0.7998, Acc.stool: 0.6266, Acc.barrel: 0.6967, Acc.basket: 0.5954, Acc.waterfall: 0.8436, Acc.tent: 0.9856, Acc.bag: 0.2675, Acc.minibike: 0.8694, Acc.cradle: 0.9804, Acc.oven: 0.7710, Acc.ball: 0.4413, Acc.food: 0.7195, Acc.step: 0.1151, Acc.tank: 0.9327, Acc.trade name: 0.2946, Acc.microwave: 0.9572, Acc.pot: 0.6804, Acc.animal: 0.7830, Acc.bicycle: 0.6774, Acc.lake: 0.6360, Acc.dishwasher: 0.7977, Acc.screen: 0.8666, Acc.blanket: 0.3793, Acc.sculpture: 0.8722, Acc.hood: 0.6978, Acc.sconce: 0.7517, Acc.vase: 0.6233, Acc.traffic light: 0.5696, Acc.tray: 0.2194, Acc.ashcan: 0.6718, Acc.fan: 0.7981, Acc.pier: 0.4443, Acc.crt screen: 0.1591, Acc.plate: 0.7895, Acc.monitor: 0.8478, Acc.bulletin board: 0.8024, Acc.shower: 0.0872, Acc.radiator: 0.5255, Acc.glass: 0.2400, Acc.clock: 0.5681, Acc.flag: 0.7788 2024-06-16 13:04:10,828 - mmseg - INFO - Iter [34050/80000] lr: 1.861e-06, eta: 22:09:13, time: 3.291, data_time: 1.687, memory: 65790, decode.loss_ce: 0.2135, decode.acc_seg: 90.8248, aux.loss_ce: 0.0877, aux.acc_seg: 90.7202, loss: 0.3013 2024-06-16 13:05:31,315 - mmseg - INFO - Iter [34100/80000] lr: 1.859e-06, eta: 22:07:37, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2012, decode.acc_seg: 91.5115, aux.loss_ce: 0.0824, aux.acc_seg: 91.4087, loss: 0.2836 2024-06-16 13:06:53,987 - mmseg - INFO - Iter [34150/80000] lr: 1.857e-06, eta: 22:06:05, time: 1.653, data_time: 0.049, memory: 65790, decode.loss_ce: 0.1942, decode.acc_seg: 91.6231, aux.loss_ce: 0.0796, aux.acc_seg: 91.4985, loss: 0.2738 2024-06-16 13:08:14,445 - mmseg - INFO - Iter [34200/80000] lr: 1.855e-06, eta: 22:04:30, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1906, decode.acc_seg: 92.0026, aux.loss_ce: 0.0795, aux.acc_seg: 91.8409, loss: 0.2701 2024-06-16 13:09:34,932 - mmseg - INFO - Iter [34250/80000] lr: 1.853e-06, eta: 22:02:55, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2050, decode.acc_seg: 91.1614, aux.loss_ce: 0.0847, aux.acc_seg: 90.9951, loss: 0.2896 2024-06-16 13:10:55,426 - mmseg - INFO - Iter [34300/80000] lr: 1.851e-06, eta: 22:01:20, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1999, decode.acc_seg: 91.4952, aux.loss_ce: 0.0823, aux.acc_seg: 91.3790, loss: 0.2822 2024-06-16 13:12:15,861 - mmseg - INFO - Iter [34350/80000] lr: 1.849e-06, eta: 21:59:45, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1981, decode.acc_seg: 91.3232, aux.loss_ce: 0.0813, aux.acc_seg: 91.1699, loss: 0.2794 2024-06-16 13:13:36,503 - mmseg - INFO - Iter [34400/80000] lr: 1.847e-06, eta: 21:58:10, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1938, decode.acc_seg: 91.2862, aux.loss_ce: 0.0799, aux.acc_seg: 91.2835, loss: 0.2737 2024-06-16 13:14:57,030 - mmseg - INFO - Iter [34450/80000] lr: 1.845e-06, eta: 21:56:35, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2098, decode.acc_seg: 91.3462, aux.loss_ce: 0.0868, aux.acc_seg: 91.2595, loss: 0.2966 2024-06-16 13:16:17,674 - mmseg - INFO - Iter [34500/80000] lr: 1.843e-06, eta: 21:55:00, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1986, decode.acc_seg: 91.7014, aux.loss_ce: 0.0815, aux.acc_seg: 91.5763, loss: 0.2801 2024-06-16 13:17:38,213 - mmseg - INFO - Iter [34550/80000] lr: 1.841e-06, eta: 21:53:25, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2042, decode.acc_seg: 91.1699, aux.loss_ce: 0.0846, aux.acc_seg: 91.0075, loss: 0.2888 2024-06-16 13:18:58,679 - mmseg - INFO - Iter [34600/80000] lr: 1.839e-06, eta: 21:51:50, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1898, decode.acc_seg: 91.7959, aux.loss_ce: 0.0782, aux.acc_seg: 91.7722, loss: 0.2680 2024-06-16 13:20:19,147 - mmseg - INFO - Iter [34650/80000] lr: 1.837e-06, eta: 21:50:16, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2119, decode.acc_seg: 91.0763, aux.loss_ce: 0.0882, aux.acc_seg: 90.9028, loss: 0.3001 2024-06-16 13:21:39,576 - mmseg - INFO - Iter [34700/80000] lr: 1.835e-06, eta: 21:48:41, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2032, decode.acc_seg: 91.4005, aux.loss_ce: 0.0840, aux.acc_seg: 91.2753, loss: 0.2872 2024-06-16 13:23:00,013 - mmseg - INFO - Iter [34750/80000] lr: 1.833e-06, eta: 21:47:06, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1934, decode.acc_seg: 91.7174, aux.loss_ce: 0.0794, aux.acc_seg: 91.5579, loss: 0.2728 2024-06-16 13:24:20,480 - mmseg - INFO - Iter [34800/80000] lr: 1.831e-06, eta: 21:45:31, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1937, decode.acc_seg: 91.7149, aux.loss_ce: 0.0804, aux.acc_seg: 91.5582, loss: 0.2741 2024-06-16 13:25:40,921 - mmseg - INFO - Iter [34850/80000] lr: 1.828e-06, eta: 21:43:57, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1983, decode.acc_seg: 91.5481, aux.loss_ce: 0.0819, aux.acc_seg: 91.4369, loss: 0.2803 2024-06-16 13:27:01,421 - mmseg - INFO - Iter [34900/80000] lr: 1.826e-06, eta: 21:42:22, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2002, decode.acc_seg: 91.2811, aux.loss_ce: 0.0833, aux.acc_seg: 90.9793, loss: 0.2835 2024-06-16 13:28:22,016 - mmseg - INFO - Iter [34950/80000] lr: 1.824e-06, eta: 21:40:48, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2126, decode.acc_seg: 90.9225, aux.loss_ce: 0.0875, aux.acc_seg: 90.7126, loss: 0.3001 2024-06-16 13:29:42,529 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 13:29:42,529 - mmseg - INFO - Iter [35000/80000] lr: 1.822e-06, eta: 21:39:13, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2023, decode.acc_seg: 91.5125, aux.loss_ce: 0.0828, aux.acc_seg: 91.3869, loss: 0.2851 2024-06-16 13:31:06,493 - mmseg - INFO - per class results: 2024-06-16 13:31:06,499 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 81.18 | 89.01 | | building | 84.37 | 92.54 | | sky | 94.56 | 97.69 | | floor | 84.15 | 92.18 | | tree | 76.92 | 89.52 | | ceiling | 86.16 | 92.25 | | road | 85.22 | 90.85 | | bed | 91.73 | 96.81 | | windowpane | 66.5 | 81.21 | | grass | 65.56 | 80.42 | | cabinet | 67.31 | 76.94 | | sidewalk | 70.21 | 84.96 | | person | 84.13 | 93.36 | | earth | 38.95 | 52.81 | | door | 59.31 | 77.07 | | table | 68.67 | 81.7 | | mountain | 60.96 | 71.76 | | plant | 55.0 | 69.53 | | curtain | 76.33 | 90.07 | | chair | 64.7 | 73.98 | | car | 86.17 | 94.24 | | water | 59.03 | 77.83 | | painting | 77.11 | 91.52 | | sofa | 82.45 | 92.62 | | shelf | 47.95 | 67.64 | | house | 49.84 | 65.0 | | sea | 61.19 | 66.9 | | mirror | 75.19 | 86.9 | | rug | 71.57 | 78.51 | | field | 30.51 | 49.79 | | armchair | 65.25 | 79.54 | | seat | 66.72 | 88.58 | | fence | 50.1 | 58.02 | | desk | 60.04 | 81.02 | | rock | 56.09 | 79.47 | | wardrobe | 55.14 | 71.46 | | lamp | 70.79 | 83.29 | | bathtub | 83.86 | 87.83 | | railing | 44.89 | 61.41 | | cushion | 67.78 | 80.13 | | base | 31.73 | 44.18 | | box | 40.51 | 51.88 | | column | 53.71 | 63.53 | | signboard | 41.6 | 57.6 | | chest of drawers | 43.2 | 66.67 | | counter | 39.66 | 45.48 | | sand | 56.37 | 84.59 | | sink | 77.42 | 88.94 | | skyscraper | 46.11 | 60.94 | | fireplace | 71.78 | 92.17 | | refrigerator | 81.69 | 95.02 | | grandstand | 49.56 | 82.64 | | path | 22.59 | 29.53 | | stairs | 39.6 | 48.62 | | runway | 65.41 | 84.93 | | case | 64.01 | 85.13 | | pool table | 93.48 | 98.24 | | pillow | 67.66 | 82.4 | | screen door | 63.86 | 71.53 | | stairway | 48.64 | 54.47 | | river | 12.72 | 28.33 | | bridge | 55.85 | 61.71 | | bookcase | 42.89 | 61.95 | | blind | 41.6 | 49.35 | | coffee table | 66.09 | 85.11 | | toilet | 86.42 | 95.66 | | flower | 41.65 | 57.02 | | book | 51.55 | 73.15 | | hill | 7.63 | 13.94 | | bench | 57.62 | 62.45 | | countertop | 61.63 | 81.24 | | stove | 84.18 | 93.44 | | palm | 56.23 | 76.38 | | kitchen island | 56.23 | 74.66 | | computer | 77.31 | 90.49 | | swivel chair | 51.83 | 84.59 | | boat | 79.12 | 89.72 | | bar | 61.0 | 84.95 | | arcade machine | 81.62 | 89.5 | | hovel | 44.41 | 50.96 | | bus | 92.27 | 96.23 | | towel | 74.84 | 84.07 | | light | 52.37 | 64.93 | | truck | 47.55 | 62.9 | | tower | 33.72 | 60.83 | | chandelier | 70.63 | 85.96 | | awning | 35.65 | 45.55 | | streetlight | 28.47 | 35.89 | | booth | 40.63 | 54.1 | | television receiver | 77.53 | 89.36 | | airplane | 82.95 | 88.75 | | dirt track | 18.66 | 48.04 | | apparel | 60.87 | 70.36 | | pole | 29.64 | 45.11 | | land | 5.87 | 8.34 | | bannister | 17.67 | 20.8 | | escalator | 63.95 | 83.35 | | ottoman | 56.4 | 75.02 | | bottle | 43.11 | 64.59 | | buffet | 54.48 | 61.69 | | poster | 33.85 | 39.43 | | stage | 22.96 | 49.68 | | van | 43.79 | 56.02 | | ship | 49.64 | 52.45 | | fountain | 42.92 | 47.42 | | conveyer belt | 82.77 | 94.29 | | canopy | 44.11 | 78.43 | | washer | 88.22 | 93.9 | | plaything | 31.13 | 48.6 | | swimming pool | 53.84 | 78.03 | | stool | 46.68 | 63.26 | | barrel | 60.45 | 71.25 | | basket | 45.38 | 60.23 | | waterfall | 59.51 | 76.57 | | tent | 95.16 | 97.43 | | bag | 23.82 | 26.36 | | minibike | 73.93 | 88.84 | | cradle | 87.95 | 97.17 | | oven | 54.98 | 68.19 | | ball | 62.75 | 69.98 | | food | 60.72 | 71.29 | | step | 10.57 | 11.62 | | tank | 62.91 | 65.83 | | trade name | 30.89 | 42.45 | | microwave | 84.35 | 97.0 | | pot | 62.99 | 72.28 | | animal | 61.4 | 62.67 | | bicycle | 59.71 | 75.2 | | lake | 55.67 | 63.52 | | dishwasher | 66.77 | 80.15 | | screen | 60.2 | 88.12 | | blanket | 32.9 | 37.06 | | sculpture | 69.32 | 85.75 | | hood | 61.99 | 77.18 | | sconce | 56.73 | 71.23 | | vase | 46.41 | 63.44 | | traffic light | 39.17 | 55.03 | | tray | 22.25 | 27.25 | | ashcan | 54.36 | 65.75 | | fan | 63.94 | 79.66 | | pier | 39.63 | 42.9 | | crt screen | 10.49 | 12.81 | | plate | 59.83 | 80.91 | | monitor | 69.73 | 81.11 | | bulletin board | 68.84 | 78.14 | | shower | 4.17 | 20.83 | | radiator | 64.69 | 81.7 | | glass | 21.71 | 23.51 | | clock | 40.21 | 63.72 | | flag | 63.59 | 78.74 | +---------------------+-------+-------+ 2024-06-16 13:31:06,499 - mmseg - INFO - Summary: 2024-06-16 13:31:06,499 - mmseg - INFO - +-------+-------+------+ | aAcc | mIoU | mAcc | +-------+-------+------+ | 85.59 | 56.91 | 69.8 | +-------+-------+------+ 2024-06-16 13:31:06,500 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 13:31:06,500 - mmseg - INFO - Iter(val) [250] aAcc: 0.8559, mIoU: 0.5691, mAcc: 0.6980, IoU.wall: 0.8118, IoU.building: 0.8437, IoU.sky: 0.9456, IoU.floor: 0.8415, IoU.tree: 0.7692, IoU.ceiling: 0.8616, IoU.road: 0.8522, IoU.bed : 0.9173, IoU.windowpane: 0.6650, IoU.grass: 0.6556, IoU.cabinet: 0.6731, IoU.sidewalk: 0.7021, IoU.person: 0.8413, IoU.earth: 0.3895, IoU.door: 0.5931, IoU.table: 0.6867, IoU.mountain: 0.6096, IoU.plant: 0.5500, IoU.curtain: 0.7633, IoU.chair: 0.6470, IoU.car: 0.8617, IoU.water: 0.5903, IoU.painting: 0.7711, IoU.sofa: 0.8245, IoU.shelf: 0.4795, IoU.house: 0.4984, IoU.sea: 0.6119, IoU.mirror: 0.7519, IoU.rug: 0.7157, IoU.field: 0.3051, IoU.armchair: 0.6525, IoU.seat: 0.6672, IoU.fence: 0.5010, IoU.desk: 0.6004, IoU.rock: 0.5609, IoU.wardrobe: 0.5514, IoU.lamp: 0.7079, IoU.bathtub: 0.8386, IoU.railing: 0.4489, IoU.cushion: 0.6778, IoU.base: 0.3173, IoU.box: 0.4051, IoU.column: 0.5371, IoU.signboard: 0.4160, IoU.chest of drawers: 0.4320, IoU.counter: 0.3966, IoU.sand: 0.5637, IoU.sink: 0.7742, IoU.skyscraper: 0.4611, IoU.fireplace: 0.7178, IoU.refrigerator: 0.8169, IoU.grandstand: 0.4956, IoU.path: 0.2259, IoU.stairs: 0.3960, IoU.runway: 0.6541, IoU.case: 0.6401, IoU.pool table: 0.9348, IoU.pillow: 0.6766, IoU.screen door: 0.6386, IoU.stairway: 0.4864, IoU.river: 0.1272, IoU.bridge: 0.5585, IoU.bookcase: 0.4289, IoU.blind: 0.4160, IoU.coffee table: 0.6609, IoU.toilet: 0.8642, IoU.flower: 0.4165, IoU.book: 0.5155, IoU.hill: 0.0763, IoU.bench: 0.5762, IoU.countertop: 0.6163, IoU.stove: 0.8418, IoU.palm: 0.5623, IoU.kitchen island: 0.5623, IoU.computer: 0.7731, IoU.swivel chair: 0.5183, IoU.boat: 0.7912, IoU.bar: 0.6100, IoU.arcade machine: 0.8162, IoU.hovel: 0.4441, IoU.bus: 0.9227, IoU.towel: 0.7484, IoU.light: 0.5237, IoU.truck: 0.4755, IoU.tower: 0.3372, IoU.chandelier: 0.7063, IoU.awning: 0.3565, IoU.streetlight: 0.2847, IoU.booth: 0.4063, IoU.television receiver: 0.7753, IoU.airplane: 0.8295, IoU.dirt track: 0.1866, IoU.apparel: 0.6087, IoU.pole: 0.2964, IoU.land: 0.0587, IoU.bannister: 0.1767, IoU.escalator: 0.6395, IoU.ottoman: 0.5640, IoU.bottle: 0.4311, IoU.buffet: 0.5448, IoU.poster: 0.3385, IoU.stage: 0.2296, IoU.van: 0.4379, IoU.ship: 0.4964, IoU.fountain: 0.4292, IoU.conveyer belt: 0.8277, IoU.canopy: 0.4411, IoU.washer: 0.8822, IoU.plaything: 0.3113, IoU.swimming pool: 0.5384, IoU.stool: 0.4668, IoU.barrel: 0.6045, IoU.basket: 0.4538, IoU.waterfall: 0.5951, IoU.tent: 0.9516, IoU.bag: 0.2382, IoU.minibike: 0.7393, IoU.cradle: 0.8795, IoU.oven: 0.5498, IoU.ball: 0.6275, IoU.food: 0.6072, IoU.step: 0.1057, IoU.tank: 0.6291, IoU.trade name: 0.3089, IoU.microwave: 0.8435, IoU.pot: 0.6299, IoU.animal: 0.6140, IoU.bicycle: 0.5971, IoU.lake: 0.5567, IoU.dishwasher: 0.6677, IoU.screen: 0.6020, IoU.blanket: 0.3290, IoU.sculpture: 0.6932, IoU.hood: 0.6199, IoU.sconce: 0.5673, IoU.vase: 0.4641, IoU.traffic light: 0.3917, IoU.tray: 0.2225, IoU.ashcan: 0.5436, IoU.fan: 0.6394, IoU.pier: 0.3963, IoU.crt screen: 0.1049, IoU.plate: 0.5983, IoU.monitor: 0.6973, IoU.bulletin board: 0.6884, IoU.shower: 0.0417, IoU.radiator: 0.6469, IoU.glass: 0.2171, IoU.clock: 0.4021, IoU.flag: 0.6359, Acc.wall: 0.8901, Acc.building: 0.9254, Acc.sky: 0.9769, Acc.floor: 0.9218, Acc.tree: 0.8952, Acc.ceiling: 0.9225, Acc.road: 0.9085, Acc.bed : 0.9681, Acc.windowpane: 0.8121, Acc.grass: 0.8042, Acc.cabinet: 0.7694, Acc.sidewalk: 0.8496, Acc.person: 0.9336, Acc.earth: 0.5281, Acc.door: 0.7707, Acc.table: 0.8170, Acc.mountain: 0.7176, Acc.plant: 0.6953, Acc.curtain: 0.9007, Acc.chair: 0.7398, Acc.car: 0.9424, Acc.water: 0.7783, Acc.painting: 0.9152, Acc.sofa: 0.9262, Acc.shelf: 0.6764, Acc.house: 0.6500, Acc.sea: 0.6690, Acc.mirror: 0.8690, Acc.rug: 0.7851, Acc.field: 0.4979, Acc.armchair: 0.7954, Acc.seat: 0.8858, Acc.fence: 0.5802, Acc.desk: 0.8102, Acc.rock: 0.7947, Acc.wardrobe: 0.7146, Acc.lamp: 0.8329, Acc.bathtub: 0.8783, Acc.railing: 0.6141, Acc.cushion: 0.8013, Acc.base: 0.4418, Acc.box: 0.5188, Acc.column: 0.6353, Acc.signboard: 0.5760, Acc.chest of drawers: 0.6667, Acc.counter: 0.4548, Acc.sand: 0.8459, Acc.sink: 0.8894, Acc.skyscraper: 0.6094, Acc.fireplace: 0.9217, Acc.refrigerator: 0.9502, Acc.grandstand: 0.8264, Acc.path: 0.2953, Acc.stairs: 0.4862, Acc.runway: 0.8493, Acc.case: 0.8513, Acc.pool table: 0.9824, Acc.pillow: 0.8240, Acc.screen door: 0.7153, Acc.stairway: 0.5447, Acc.river: 0.2833, Acc.bridge: 0.6171, Acc.bookcase: 0.6195, Acc.blind: 0.4935, Acc.coffee table: 0.8511, Acc.toilet: 0.9566, Acc.flower: 0.5702, Acc.book: 0.7315, Acc.hill: 0.1394, Acc.bench: 0.6245, Acc.countertop: 0.8124, Acc.stove: 0.9344, Acc.palm: 0.7638, Acc.kitchen island: 0.7466, Acc.computer: 0.9049, Acc.swivel chair: 0.8459, Acc.boat: 0.8972, Acc.bar: 0.8495, Acc.arcade machine: 0.8950, Acc.hovel: 0.5096, Acc.bus: 0.9623, Acc.towel: 0.8407, Acc.light: 0.6493, Acc.truck: 0.6290, Acc.tower: 0.6083, Acc.chandelier: 0.8596, Acc.awning: 0.4555, Acc.streetlight: 0.3589, Acc.booth: 0.5410, Acc.television receiver: 0.8936, Acc.airplane: 0.8875, Acc.dirt track: 0.4804, Acc.apparel: 0.7036, Acc.pole: 0.4511, Acc.land: 0.0834, Acc.bannister: 0.2080, Acc.escalator: 0.8335, Acc.ottoman: 0.7502, Acc.bottle: 0.6459, Acc.buffet: 0.6169, Acc.poster: 0.3943, Acc.stage: 0.4968, Acc.van: 0.5602, Acc.ship: 0.5245, Acc.fountain: 0.4742, Acc.conveyer belt: 0.9429, Acc.canopy: 0.7843, Acc.washer: 0.9390, Acc.plaything: 0.4860, Acc.swimming pool: 0.7803, Acc.stool: 0.6326, Acc.barrel: 0.7125, Acc.basket: 0.6023, Acc.waterfall: 0.7657, Acc.tent: 0.9743, Acc.bag: 0.2636, Acc.minibike: 0.8884, Acc.cradle: 0.9717, Acc.oven: 0.6819, Acc.ball: 0.6998, Acc.food: 0.7129, Acc.step: 0.1162, Acc.tank: 0.6583, Acc.trade name: 0.4245, Acc.microwave: 0.9700, Acc.pot: 0.7228, Acc.animal: 0.6267, Acc.bicycle: 0.7520, Acc.lake: 0.6352, Acc.dishwasher: 0.8015, Acc.screen: 0.8812, Acc.blanket: 0.3706, Acc.sculpture: 0.8575, Acc.hood: 0.7718, Acc.sconce: 0.7123, Acc.vase: 0.6344, Acc.traffic light: 0.5503, Acc.tray: 0.2725, Acc.ashcan: 0.6575, Acc.fan: 0.7966, Acc.pier: 0.4290, Acc.crt screen: 0.1281, Acc.plate: 0.8091, Acc.monitor: 0.8111, Acc.bulletin board: 0.7814, Acc.shower: 0.2083, Acc.radiator: 0.8170, Acc.glass: 0.2351, Acc.clock: 0.6372, Acc.flag: 0.7874 2024-06-16 13:32:27,309 - mmseg - INFO - Iter [35050/80000] lr: 1.820e-06, eta: 21:39:27, time: 3.296, data_time: 1.692, memory: 65790, decode.loss_ce: 0.1967, decode.acc_seg: 91.3422, aux.loss_ce: 0.0817, aux.acc_seg: 91.1802, loss: 0.2784 2024-06-16 13:33:47,872 - mmseg - INFO - Iter [35100/80000] lr: 1.818e-06, eta: 21:37:52, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2076, decode.acc_seg: 91.2534, aux.loss_ce: 0.0859, aux.acc_seg: 91.1348, loss: 0.2935 2024-06-16 13:35:08,342 - mmseg - INFO - Iter [35150/80000] lr: 1.816e-06, eta: 21:36:18, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2053, decode.acc_seg: 90.9986, aux.loss_ce: 0.0838, aux.acc_seg: 90.9315, loss: 0.2890 2024-06-16 13:36:28,778 - mmseg - INFO - Iter [35200/80000] lr: 1.814e-06, eta: 21:34:43, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2017, decode.acc_seg: 91.2418, aux.loss_ce: 0.0833, aux.acc_seg: 91.0245, loss: 0.2850 2024-06-16 13:37:49,216 - mmseg - INFO - Iter [35250/80000] lr: 1.812e-06, eta: 21:33:08, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2016, decode.acc_seg: 91.5602, aux.loss_ce: 0.0828, aux.acc_seg: 91.3424, loss: 0.2844 2024-06-16 13:39:09,635 - mmseg - INFO - Iter [35300/80000] lr: 1.810e-06, eta: 21:31:34, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1958, decode.acc_seg: 91.5772, aux.loss_ce: 0.0814, aux.acc_seg: 91.3750, loss: 0.2772 2024-06-16 13:40:30,204 - mmseg - INFO - Iter [35350/80000] lr: 1.808e-06, eta: 21:29:59, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2003, decode.acc_seg: 91.3281, aux.loss_ce: 0.0823, aux.acc_seg: 91.2141, loss: 0.2827 2024-06-16 13:41:53,914 - mmseg - INFO - Iter [35400/80000] lr: 1.806e-06, eta: 21:28:29, time: 1.674, data_time: 0.068, memory: 65790, decode.loss_ce: 0.2068, decode.acc_seg: 91.0790, aux.loss_ce: 0.0851, aux.acc_seg: 90.9736, loss: 0.2919 2024-06-16 13:43:14,586 - mmseg - INFO - Iter [35450/80000] lr: 1.804e-06, eta: 21:26:55, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2154, decode.acc_seg: 90.7436, aux.loss_ce: 0.0883, aux.acc_seg: 90.7381, loss: 0.3038 2024-06-16 13:44:35,084 - mmseg - INFO - Iter [35500/80000] lr: 1.802e-06, eta: 21:25:20, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1996, decode.acc_seg: 91.2582, aux.loss_ce: 0.0829, aux.acc_seg: 91.1026, loss: 0.2825 2024-06-16 13:45:55,747 - mmseg - INFO - Iter [35550/80000] lr: 1.800e-06, eta: 21:23:46, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1946, decode.acc_seg: 91.7922, aux.loss_ce: 0.0800, aux.acc_seg: 91.6579, loss: 0.2746 2024-06-16 13:47:16,213 - mmseg - INFO - Iter [35600/80000] lr: 1.798e-06, eta: 21:22:12, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2034, decode.acc_seg: 91.3143, aux.loss_ce: 0.0829, aux.acc_seg: 91.2925, loss: 0.2863 2024-06-16 13:48:36,722 - mmseg - INFO - Iter [35650/80000] lr: 1.796e-06, eta: 21:20:37, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2085, decode.acc_seg: 91.1497, aux.loss_ce: 0.0857, aux.acc_seg: 91.0332, loss: 0.2942 2024-06-16 13:49:57,258 - mmseg - INFO - Iter [35700/80000] lr: 1.794e-06, eta: 21:19:03, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1958, decode.acc_seg: 91.6706, aux.loss_ce: 0.0809, aux.acc_seg: 91.5855, loss: 0.2767 2024-06-16 13:51:17,873 - mmseg - INFO - Iter [35750/80000] lr: 1.792e-06, eta: 21:17:29, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2120, decode.acc_seg: 90.9503, aux.loss_ce: 0.0857, aux.acc_seg: 90.8843, loss: 0.2977 2024-06-16 13:52:38,452 - mmseg - INFO - Iter [35800/80000] lr: 1.790e-06, eta: 21:15:55, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2003, decode.acc_seg: 91.4853, aux.loss_ce: 0.0816, aux.acc_seg: 91.3297, loss: 0.2819 2024-06-16 13:53:59,002 - mmseg - INFO - Iter [35850/80000] lr: 1.788e-06, eta: 21:14:21, time: 1.611, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1868, decode.acc_seg: 91.7420, aux.loss_ce: 0.0774, aux.acc_seg: 91.5817, loss: 0.2642 2024-06-16 13:55:19,569 - mmseg - INFO - Iter [35900/80000] lr: 1.786e-06, eta: 21:12:47, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1878, decode.acc_seg: 91.8202, aux.loss_ce: 0.0779, aux.acc_seg: 91.6683, loss: 0.2657 2024-06-16 13:56:40,056 - mmseg - INFO - Iter [35950/80000] lr: 1.784e-06, eta: 21:11:13, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1921, decode.acc_seg: 91.7618, aux.loss_ce: 0.0800, aux.acc_seg: 91.4622, loss: 0.2721 2024-06-16 13:58:00,534 - mmseg - INFO - Saving checkpoint at 36000 iterations 2024-06-16 13:59:12,776 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 13:59:12,776 - mmseg - INFO - Iter [36000/80000] lr: 1.782e-06, eta: 21:11:07, time: 3.054, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1916, decode.acc_seg: 91.9000, aux.loss_ce: 0.0790, aux.acc_seg: 91.7788, loss: 0.2705 2024-06-16 14:00:38,311 - mmseg - INFO - per class results: 2024-06-16 14:00:38,317 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 81.63 | 89.03 | | building | 84.28 | 92.91 | | sky | 94.51 | 97.22 | | floor | 83.62 | 90.3 | | tree | 76.47 | 90.71 | | ceiling | 86.95 | 93.24 | | road | 85.52 | 90.39 | | bed | 91.84 | 96.53 | | windowpane | 65.78 | 82.29 | | grass | 64.19 | 82.36 | | cabinet | 66.88 | 75.5 | | sidewalk | 70.5 | 85.58 | | person | 83.71 | 93.71 | | earth | 38.52 | 49.97 | | door | 62.11 | 74.82 | | table | 68.54 | 80.26 | | mountain | 59.16 | 66.0 | | plant | 53.98 | 65.06 | | curtain | 75.43 | 89.96 | | chair | 62.71 | 74.22 | | car | 86.19 | 93.5 | | water | 64.44 | 79.07 | | painting | 78.96 | 89.89 | | sofa | 81.76 | 91.83 | | shelf | 49.48 | 69.35 | | house | 52.48 | 75.08 | | sea | 74.57 | 85.27 | | mirror | 77.11 | 88.48 | | rug | 68.19 | 86.31 | | field | 26.51 | 42.39 | | armchair | 62.2 | 81.05 | | seat | 64.02 | 88.35 | | fence | 50.02 | 69.01 | | desk | 57.16 | 81.19 | | rock | 56.7 | 84.46 | | wardrobe | 54.24 | 76.12 | | lamp | 71.09 | 82.47 | | bathtub | 83.75 | 85.67 | | railing | 46.4 | 68.56 | | cushion | 69.04 | 81.81 | | base | 41.59 | 63.99 | | box | 38.08 | 50.35 | | column | 57.23 | 70.09 | | signboard | 40.23 | 54.38 | | chest of drawers | 48.76 | 76.41 | | counter | 50.87 | 58.45 | | sand | 52.94 | 86.36 | | sink | 77.26 | 82.75 | | skyscraper | 47.73 | 57.65 | | fireplace | 70.9 | 94.1 | | refrigerator | 83.88 | 89.56 | | grandstand | 52.49 | 85.13 | | path | 27.96 | 34.2 | | stairs | 31.23 | 37.28 | | runway | 72.1 | 97.22 | | case | 60.43 | 83.88 | | pool table | 93.39 | 98.33 | | pillow | 65.25 | 76.04 | | screen door | 77.78 | 87.66 | | stairway | 41.95 | 52.63 | | river | 14.56 | 24.86 | | bridge | 49.53 | 57.99 | | bookcase | 44.72 | 58.3 | | blind | 39.72 | 45.71 | | coffee table | 63.95 | 84.73 | | toilet | 89.38 | 94.78 | | flower | 43.2 | 51.02 | | book | 51.85 | 75.16 | | hill | 7.42 | 14.51 | | bench | 56.48 | 64.79 | | countertop | 65.23 | 81.34 | | stove | 84.86 | 93.35 | | palm | 54.41 | 72.76 | | kitchen island | 55.13 | 74.84 | | computer | 76.51 | 91.35 | | swivel chair | 43.1 | 55.75 | | boat | 77.5 | 91.4 | | bar | 66.34 | 88.73 | | arcade machine | 83.92 | 91.04 | | hovel | 17.37 | 18.76 | | bus | 90.6 | 96.97 | | towel | 74.32 | 82.26 | | light | 49.37 | 56.92 | | truck | 41.33 | 49.82 | | tower | 33.41 | 62.68 | | chandelier | 71.29 | 87.14 | | awning | 35.6 | 44.46 | | streetlight | 30.28 | 43.81 | | booth | 39.88 | 67.45 | | television receiver | 82.71 | 89.61 | | airplane | 79.93 | 87.14 | | dirt track | 3.65 | 12.91 | | apparel | 62.0 | 83.8 | | pole | 22.88 | 29.23 | | land | 5.08 | 6.89 | | bannister | 13.16 | 15.75 | | escalator | 64.16 | 85.96 | | ottoman | 55.97 | 77.82 | | bottle | 42.46 | 70.51 | | buffet | 54.79 | 67.59 | | poster | 38.28 | 53.89 | | stage | 25.0 | 35.78 | | van | 44.0 | 67.77 | | ship | 88.87 | 93.96 | | fountain | 44.19 | 51.51 | | conveyer belt | 86.49 | 94.26 | | canopy | 49.1 | 68.16 | | washer | 89.17 | 95.31 | | plaything | 32.55 | 49.73 | | swimming pool | 57.67 | 85.51 | | stool | 49.81 | 61.32 | | barrel | 59.9 | 71.52 | | basket | 45.28 | 54.3 | | waterfall | 51.23 | 58.6 | | tent | 96.09 | 97.88 | | bag | 28.99 | 34.98 | | minibike | 73.47 | 87.2 | | cradle | 87.74 | 97.16 | | oven | 57.48 | 71.31 | | ball | 64.87 | 73.62 | | food | 61.1 | 69.08 | | step | 7.71 | 8.82 | | tank | 63.36 | 68.79 | | trade name | 24.9 | 29.45 | | microwave | 85.58 | 97.33 | | pot | 61.84 | 74.84 | | animal | 63.85 | 65.47 | | bicycle | 60.82 | 77.01 | | lake | 46.65 | 65.32 | | dishwasher | 67.85 | 84.18 | | screen | 55.05 | 79.74 | | blanket | 33.75 | 38.72 | | sculpture | 65.72 | 86.66 | | hood | 61.57 | 73.68 | | sconce | 57.63 | 72.75 | | vase | 44.99 | 63.09 | | traffic light | 37.09 | 56.85 | | tray | 17.2 | 20.34 | | ashcan | 47.46 | 70.8 | | fan | 64.77 | 81.39 | | pier | 39.03 | 45.5 | | crt screen | 5.17 | 5.8 | | plate | 61.15 | 82.55 | | monitor | 68.71 | 80.57 | | bulletin board | 63.86 | 75.91 | | shower | 2.93 | 2.98 | | radiator | 63.79 | 84.15 | | glass | 22.78 | 25.17 | | clock | 45.83 | 52.64 | | flag | 66.29 | 75.05 | +---------------------+-------+-------+ 2024-06-16 14:00:38,317 - mmseg - INFO - Summary: 2024-06-16 14:00:38,318 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.67 | 56.93 | 69.76 | +-------+-------+-------+ 2024-06-16 14:00:38,318 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 14:00:38,319 - mmseg - INFO - Iter(val) [250] aAcc: 0.8567, mIoU: 0.5693, mAcc: 0.6976, IoU.wall: 0.8163, IoU.building: 0.8428, IoU.sky: 0.9451, IoU.floor: 0.8362, IoU.tree: 0.7647, IoU.ceiling: 0.8695, IoU.road: 0.8552, IoU.bed : 0.9184, IoU.windowpane: 0.6578, IoU.grass: 0.6419, IoU.cabinet: 0.6688, IoU.sidewalk: 0.7050, IoU.person: 0.8371, IoU.earth: 0.3852, IoU.door: 0.6211, IoU.table: 0.6854, IoU.mountain: 0.5916, IoU.plant: 0.5398, IoU.curtain: 0.7543, IoU.chair: 0.6271, IoU.car: 0.8619, IoU.water: 0.6444, IoU.painting: 0.7896, IoU.sofa: 0.8176, IoU.shelf: 0.4948, IoU.house: 0.5248, IoU.sea: 0.7457, IoU.mirror: 0.7711, IoU.rug: 0.6819, IoU.field: 0.2651, IoU.armchair: 0.6220, IoU.seat: 0.6402, IoU.fence: 0.5002, IoU.desk: 0.5716, IoU.rock: 0.5670, IoU.wardrobe: 0.5424, IoU.lamp: 0.7109, IoU.bathtub: 0.8375, IoU.railing: 0.4640, IoU.cushion: 0.6904, IoU.base: 0.4159, IoU.box: 0.3808, IoU.column: 0.5723, IoU.signboard: 0.4023, IoU.chest of drawers: 0.4876, IoU.counter: 0.5087, IoU.sand: 0.5294, IoU.sink: 0.7726, IoU.skyscraper: 0.4773, IoU.fireplace: 0.7090, IoU.refrigerator: 0.8388, IoU.grandstand: 0.5249, IoU.path: 0.2796, IoU.stairs: 0.3123, IoU.runway: 0.7210, IoU.case: 0.6043, IoU.pool table: 0.9339, IoU.pillow: 0.6525, IoU.screen door: 0.7778, IoU.stairway: 0.4195, IoU.river: 0.1456, IoU.bridge: 0.4953, IoU.bookcase: 0.4472, IoU.blind: 0.3972, IoU.coffee table: 0.6395, IoU.toilet: 0.8938, IoU.flower: 0.4320, IoU.book: 0.5185, IoU.hill: 0.0742, IoU.bench: 0.5648, IoU.countertop: 0.6523, IoU.stove: 0.8486, IoU.palm: 0.5441, IoU.kitchen island: 0.5513, IoU.computer: 0.7651, IoU.swivel chair: 0.4310, IoU.boat: 0.7750, IoU.bar: 0.6634, IoU.arcade machine: 0.8392, IoU.hovel: 0.1737, IoU.bus: 0.9060, IoU.towel: 0.7432, IoU.light: 0.4937, IoU.truck: 0.4133, IoU.tower: 0.3341, IoU.chandelier: 0.7129, IoU.awning: 0.3560, IoU.streetlight: 0.3028, IoU.booth: 0.3988, IoU.television receiver: 0.8271, IoU.airplane: 0.7993, IoU.dirt track: 0.0365, IoU.apparel: 0.6200, IoU.pole: 0.2288, IoU.land: 0.0508, IoU.bannister: 0.1316, IoU.escalator: 0.6416, IoU.ottoman: 0.5597, IoU.bottle: 0.4246, IoU.buffet: 0.5479, IoU.poster: 0.3828, IoU.stage: 0.2500, IoU.van: 0.4400, IoU.ship: 0.8887, IoU.fountain: 0.4419, IoU.conveyer belt: 0.8649, IoU.canopy: 0.4910, IoU.washer: 0.8917, IoU.plaything: 0.3255, IoU.swimming pool: 0.5767, IoU.stool: 0.4981, IoU.barrel: 0.5990, IoU.basket: 0.4528, IoU.waterfall: 0.5123, IoU.tent: 0.9609, IoU.bag: 0.2899, IoU.minibike: 0.7347, IoU.cradle: 0.8774, IoU.oven: 0.5748, IoU.ball: 0.6487, IoU.food: 0.6110, IoU.step: 0.0771, IoU.tank: 0.6336, IoU.trade name: 0.2490, IoU.microwave: 0.8558, IoU.pot: 0.6184, IoU.animal: 0.6385, IoU.bicycle: 0.6082, IoU.lake: 0.4665, IoU.dishwasher: 0.6785, IoU.screen: 0.5505, IoU.blanket: 0.3375, IoU.sculpture: 0.6572, IoU.hood: 0.6157, IoU.sconce: 0.5763, IoU.vase: 0.4499, IoU.traffic light: 0.3709, IoU.tray: 0.1720, IoU.ashcan: 0.4746, IoU.fan: 0.6477, IoU.pier: 0.3903, IoU.crt screen: 0.0517, IoU.plate: 0.6115, IoU.monitor: 0.6871, IoU.bulletin board: 0.6386, IoU.shower: 0.0293, IoU.radiator: 0.6379, IoU.glass: 0.2278, IoU.clock: 0.4583, IoU.flag: 0.6629, Acc.wall: 0.8903, Acc.building: 0.9291, Acc.sky: 0.9722, Acc.floor: 0.9030, Acc.tree: 0.9071, Acc.ceiling: 0.9324, Acc.road: 0.9039, Acc.bed : 0.9653, Acc.windowpane: 0.8229, Acc.grass: 0.8236, Acc.cabinet: 0.7550, Acc.sidewalk: 0.8558, Acc.person: 0.9371, Acc.earth: 0.4997, Acc.door: 0.7482, Acc.table: 0.8026, Acc.mountain: 0.6600, Acc.plant: 0.6506, Acc.curtain: 0.8996, Acc.chair: 0.7422, Acc.car: 0.9350, Acc.water: 0.7907, Acc.painting: 0.8989, Acc.sofa: 0.9183, Acc.shelf: 0.6935, Acc.house: 0.7508, Acc.sea: 0.8527, Acc.mirror: 0.8848, Acc.rug: 0.8631, Acc.field: 0.4239, Acc.armchair: 0.8105, Acc.seat: 0.8835, Acc.fence: 0.6901, Acc.desk: 0.8119, Acc.rock: 0.8446, Acc.wardrobe: 0.7612, Acc.lamp: 0.8247, Acc.bathtub: 0.8567, Acc.railing: 0.6856, Acc.cushion: 0.8181, Acc.base: 0.6399, Acc.box: 0.5035, Acc.column: 0.7009, Acc.signboard: 0.5438, Acc.chest of drawers: 0.7641, Acc.counter: 0.5845, Acc.sand: 0.8636, Acc.sink: 0.8275, Acc.skyscraper: 0.5765, Acc.fireplace: 0.9410, Acc.refrigerator: 0.8956, Acc.grandstand: 0.8513, Acc.path: 0.3420, Acc.stairs: 0.3728, Acc.runway: 0.9722, Acc.case: 0.8388, Acc.pool table: 0.9833, Acc.pillow: 0.7604, Acc.screen door: 0.8766, Acc.stairway: 0.5263, Acc.river: 0.2486, Acc.bridge: 0.5799, Acc.bookcase: 0.5830, Acc.blind: 0.4571, Acc.coffee table: 0.8473, Acc.toilet: 0.9478, Acc.flower: 0.5102, Acc.book: 0.7516, Acc.hill: 0.1451, Acc.bench: 0.6479, Acc.countertop: 0.8134, Acc.stove: 0.9335, Acc.palm: 0.7276, Acc.kitchen island: 0.7484, Acc.computer: 0.9135, Acc.swivel chair: 0.5575, Acc.boat: 0.9140, Acc.bar: 0.8873, Acc.arcade machine: 0.9104, Acc.hovel: 0.1876, Acc.bus: 0.9697, Acc.towel: 0.8226, Acc.light: 0.5692, Acc.truck: 0.4982, Acc.tower: 0.6268, Acc.chandelier: 0.8714, Acc.awning: 0.4446, Acc.streetlight: 0.4381, Acc.booth: 0.6745, Acc.television receiver: 0.8961, Acc.airplane: 0.8714, Acc.dirt track: 0.1291, Acc.apparel: 0.8380, Acc.pole: 0.2923, Acc.land: 0.0689, Acc.bannister: 0.1575, Acc.escalator: 0.8596, Acc.ottoman: 0.7782, Acc.bottle: 0.7051, Acc.buffet: 0.6759, Acc.poster: 0.5389, Acc.stage: 0.3578, Acc.van: 0.6777, Acc.ship: 0.9396, Acc.fountain: 0.5151, Acc.conveyer belt: 0.9426, Acc.canopy: 0.6816, Acc.washer: 0.9531, Acc.plaything: 0.4973, Acc.swimming pool: 0.8551, Acc.stool: 0.6132, Acc.barrel: 0.7152, Acc.basket: 0.5430, Acc.waterfall: 0.5860, Acc.tent: 0.9788, Acc.bag: 0.3498, Acc.minibike: 0.8720, Acc.cradle: 0.9716, Acc.oven: 0.7131, Acc.ball: 0.7362, Acc.food: 0.6908, Acc.step: 0.0882, Acc.tank: 0.6879, Acc.trade name: 0.2945, Acc.microwave: 0.9733, Acc.pot: 0.7484, Acc.animal: 0.6547, Acc.bicycle: 0.7701, Acc.lake: 0.6532, Acc.dishwasher: 0.8418, Acc.screen: 0.7974, Acc.blanket: 0.3872, Acc.sculpture: 0.8666, Acc.hood: 0.7368, Acc.sconce: 0.7275, Acc.vase: 0.6309, Acc.traffic light: 0.5685, Acc.tray: 0.2034, Acc.ashcan: 0.7080, Acc.fan: 0.8139, Acc.pier: 0.4550, Acc.crt screen: 0.0580, Acc.plate: 0.8255, Acc.monitor: 0.8057, Acc.bulletin board: 0.7591, Acc.shower: 0.0298, Acc.radiator: 0.8415, Acc.glass: 0.2517, Acc.clock: 0.5264, Acc.flag: 0.7505 2024-06-16 14:01:59,087 - mmseg - INFO - Iter [36050/80000] lr: 1.780e-06, eta: 21:11:18, time: 3.326, data_time: 1.724, memory: 65790, decode.loss_ce: 0.1991, decode.acc_seg: 91.6787, aux.loss_ce: 0.0826, aux.acc_seg: 91.4134, loss: 0.2817 2024-06-16 14:03:19,474 - mmseg - INFO - Iter [36100/80000] lr: 1.778e-06, eta: 21:09:43, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2101, decode.acc_seg: 90.9570, aux.loss_ce: 0.0873, aux.acc_seg: 90.7354, loss: 0.2974 2024-06-16 14:04:39,937 - mmseg - INFO - Iter [36150/80000] lr: 1.776e-06, eta: 21:08:09, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2023, decode.acc_seg: 91.5060, aux.loss_ce: 0.0821, aux.acc_seg: 91.3937, loss: 0.2843 2024-06-16 14:06:00,302 - mmseg - INFO - Iter [36200/80000] lr: 1.774e-06, eta: 21:06:34, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1990, decode.acc_seg: 91.5302, aux.loss_ce: 0.0820, aux.acc_seg: 91.3486, loss: 0.2809 2024-06-16 14:07:20,689 - mmseg - INFO - Iter [36250/80000] lr: 1.772e-06, eta: 21:05:00, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2057, decode.acc_seg: 91.4655, aux.loss_ce: 0.0848, aux.acc_seg: 91.3091, loss: 0.2905 2024-06-16 14:08:41,122 - mmseg - INFO - Iter [36300/80000] lr: 1.770e-06, eta: 21:03:25, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1934, decode.acc_seg: 91.4630, aux.loss_ce: 0.0805, aux.acc_seg: 91.1361, loss: 0.2739 2024-06-16 14:10:01,666 - mmseg - INFO - Iter [36350/80000] lr: 1.768e-06, eta: 21:01:51, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2210, decode.acc_seg: 90.6875, aux.loss_ce: 0.0900, aux.acc_seg: 90.6542, loss: 0.3110 2024-06-16 14:11:22,091 - mmseg - INFO - Iter [36400/80000] lr: 1.766e-06, eta: 21:00:17, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2002, decode.acc_seg: 91.3618, aux.loss_ce: 0.0822, aux.acc_seg: 91.3105, loss: 0.2823 2024-06-16 14:12:42,586 - mmseg - INFO - Iter [36450/80000] lr: 1.764e-06, eta: 20:58:43, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2107, decode.acc_seg: 91.0672, aux.loss_ce: 0.0867, aux.acc_seg: 90.9115, loss: 0.2974 2024-06-16 14:14:03,008 - mmseg - INFO - Iter [36500/80000] lr: 1.762e-06, eta: 20:57:09, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2194, decode.acc_seg: 90.6261, aux.loss_ce: 0.0890, aux.acc_seg: 90.4930, loss: 0.3083 2024-06-16 14:15:23,476 - mmseg - INFO - Iter [36550/80000] lr: 1.760e-06, eta: 20:55:35, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2156, decode.acc_seg: 90.7868, aux.loss_ce: 0.0882, aux.acc_seg: 90.7203, loss: 0.3038 2024-06-16 14:16:44,064 - mmseg - INFO - Iter [36600/80000] lr: 1.758e-06, eta: 20:54:01, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2011, decode.acc_seg: 91.2473, aux.loss_ce: 0.0825, aux.acc_seg: 91.0571, loss: 0.2836 2024-06-16 14:18:07,428 - mmseg - INFO - Iter [36650/80000] lr: 1.756e-06, eta: 20:52:30, time: 1.667, data_time: 0.063, memory: 65790, decode.loss_ce: 0.1991, decode.acc_seg: 91.4464, aux.loss_ce: 0.0820, aux.acc_seg: 91.3206, loss: 0.2811 2024-06-16 14:19:27,970 - mmseg - INFO - Iter [36700/80000] lr: 1.754e-06, eta: 20:50:56, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2017, decode.acc_seg: 91.3975, aux.loss_ce: 0.0844, aux.acc_seg: 91.1132, loss: 0.2861 2024-06-16 14:20:48,470 - mmseg - INFO - Iter [36750/80000] lr: 1.752e-06, eta: 20:49:22, time: 1.610, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1970, decode.acc_seg: 91.5240, aux.loss_ce: 0.0811, aux.acc_seg: 91.3668, loss: 0.2781 2024-06-16 14:22:08,953 - mmseg - INFO - Iter [36800/80000] lr: 1.750e-06, eta: 20:47:48, time: 1.610, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1880, decode.acc_seg: 91.8862, aux.loss_ce: 0.0775, aux.acc_seg: 91.7823, loss: 0.2655 2024-06-16 14:23:29,467 - mmseg - INFO - Iter [36850/80000] lr: 1.748e-06, eta: 20:46:14, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2069, decode.acc_seg: 91.2685, aux.loss_ce: 0.0856, aux.acc_seg: 91.1109, loss: 0.2925 2024-06-16 14:24:50,002 - mmseg - INFO - Iter [36900/80000] lr: 1.745e-06, eta: 20:44:41, time: 1.611, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1933, decode.acc_seg: 91.4621, aux.loss_ce: 0.0810, aux.acc_seg: 91.1915, loss: 0.2743 2024-06-16 14:26:10,455 - mmseg - INFO - Iter [36950/80000] lr: 1.743e-06, eta: 20:43:07, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1989, decode.acc_seg: 91.5055, aux.loss_ce: 0.0825, aux.acc_seg: 91.3348, loss: 0.2814 2024-06-16 14:27:30,873 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 14:27:30,873 - mmseg - INFO - Iter [37000/80000] lr: 1.741e-06, eta: 20:41:33, time: 1.608, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1925, decode.acc_seg: 91.6652, aux.loss_ce: 0.0797, aux.acc_seg: 91.5455, loss: 0.2722 2024-06-16 14:28:54,882 - mmseg - INFO - per class results: 2024-06-16 14:28:54,888 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 81.69 | 90.04 | | building | 84.66 | 93.86 | | sky | 94.59 | 97.65 | | floor | 84.02 | 90.86 | | tree | 77.13 | 88.49 | | ceiling | 86.63 | 92.12 | | road | 85.43 | 91.1 | | bed | 92.16 | 96.45 | | windowpane | 66.77 | 82.88 | | grass | 69.12 | 80.53 | | cabinet | 70.08 | 81.88 | | sidewalk | 71.01 | 86.52 | | person | 83.74 | 93.67 | | earth | 38.66 | 50.66 | | door | 61.15 | 75.39 | | table | 70.15 | 82.06 | | mountain | 61.25 | 73.06 | | plant | 56.69 | 70.9 | | curtain | 78.03 | 87.9 | | chair | 64.03 | 75.18 | | car | 86.57 | 93.5 | | water | 63.32 | 81.93 | | painting | 78.4 | 90.11 | | sofa | 82.13 | 90.95 | | shelf | 46.95 | 62.99 | | house | 52.81 | 67.19 | | sea | 70.48 | 78.46 | | mirror | 74.37 | 81.5 | | rug | 68.12 | 79.3 | | field | 28.98 | 50.83 | | armchair | 62.06 | 84.1 | | seat | 70.39 | 89.21 | | fence | 51.12 | 63.0 | | desk | 57.81 | 79.2 | | rock | 48.91 | 73.43 | | wardrobe | 55.9 | 64.77 | | lamp | 71.37 | 82.9 | | bathtub | 84.87 | 88.03 | | railing | 43.61 | 69.13 | | cushion | 67.65 | 80.63 | | base | 41.31 | 50.46 | | box | 40.5 | 52.09 | | column | 56.69 | 73.23 | | signboard | 39.99 | 51.08 | | chest of drawers | 46.5 | 69.62 | | counter | 47.97 | 58.87 | | sand | 53.92 | 88.3 | | sink | 77.4 | 83.11 | | skyscraper | 48.21 | 57.97 | | fireplace | 74.01 | 90.93 | | refrigerator | 83.95 | 93.3 | | grandstand | 56.7 | 83.89 | | path | 23.53 | 30.44 | | stairs | 30.7 | 37.91 | | runway | 68.25 | 89.06 | | case | 66.16 | 86.82 | | pool table | 93.6 | 97.92 | | pillow | 67.11 | 80.17 | | screen door | 79.9 | 95.73 | | stairway | 40.75 | 58.16 | | river | 13.26 | 24.96 | | bridge | 50.57 | 63.26 | | bookcase | 36.85 | 55.22 | | blind | 39.25 | 42.36 | | coffee table | 67.43 | 85.07 | | toilet | 88.48 | 93.99 | | flower | 39.9 | 56.51 | | book | 50.82 | 79.51 | | hill | 6.88 | 13.02 | | bench | 63.34 | 73.51 | | countertop | 65.41 | 83.84 | | stove | 84.79 | 94.68 | | palm | 53.11 | 74.1 | | kitchen island | 52.45 | 71.75 | | computer | 78.15 | 90.74 | | swivel chair | 47.22 | 69.43 | | boat | 72.32 | 88.08 | | bar | 61.44 | 85.06 | | arcade machine | 80.62 | 85.87 | | hovel | 36.81 | 41.88 | | bus | 91.49 | 96.3 | | towel | 75.04 | 84.83 | | light | 52.21 | 62.32 | | truck | 42.48 | 56.78 | | tower | 6.2 | 7.84 | | chandelier | 71.02 | 84.93 | | awning | 34.1 | 45.31 | | streetlight | 27.27 | 34.93 | | booth | 41.12 | 43.92 | | television receiver | 79.75 | 88.6 | | airplane | 85.06 | 95.18 | | dirt track | 0.0 | 0.0 | | apparel | 59.14 | 70.47 | | pole | 23.85 | 33.33 | | land | 7.26 | 8.61 | | bannister | 14.01 | 17.57 | | escalator | 65.84 | 84.42 | | ottoman | 52.5 | 68.24 | | bottle | 41.53 | 66.2 | | buffet | 60.37 | 74.79 | | poster | 39.8 | 49.97 | | stage | 22.89 | 49.11 | | van | 49.64 | 69.56 | | ship | 77.75 | 80.79 | | fountain | 35.52 | 40.23 | | conveyer belt | 79.08 | 96.6 | | canopy | 44.53 | 66.87 | | washer | 87.26 | 92.7 | | plaything | 30.47 | 43.58 | | swimming pool | 53.52 | 77.6 | | stool | 47.32 | 69.59 | | barrel | 54.61 | 70.16 | | basket | 45.24 | 58.3 | | waterfall | 47.58 | 54.01 | | tent | 95.61 | 96.41 | | bag | 28.64 | 33.86 | | minibike | 72.56 | 89.18 | | cradle | 84.23 | 97.19 | | oven | 57.13 | 65.98 | | ball | 63.12 | 69.27 | | food | 62.17 | 74.47 | | step | 15.3 | 18.62 | | tank | 82.97 | 92.77 | | trade name | 21.53 | 23.71 | | microwave | 88.65 | 95.61 | | pot | 59.31 | 69.1 | | animal | 65.35 | 67.91 | | bicycle | 60.66 | 80.11 | | lake | 56.01 | 64.39 | | dishwasher | 64.59 | 83.77 | | screen | 32.94 | 35.1 | | blanket | 34.36 | 38.15 | | sculpture | 68.07 | 86.46 | | hood | 60.23 | 72.17 | | sconce | 56.7 | 71.72 | | vase | 44.59 | 64.77 | | traffic light | 37.63 | 52.03 | | tray | 23.87 | 32.06 | | ashcan | 48.27 | 65.91 | | fan | 65.83 | 80.31 | | pier | 38.6 | 44.77 | | crt screen | 22.38 | 53.6 | | plate | 62.36 | 72.87 | | monitor | 66.44 | 80.68 | | bulletin board | 60.46 | 77.95 | | shower | 12.66 | 13.44 | | radiator | 64.72 | 79.95 | | glass | 20.31 | 21.65 | | clock | 48.63 | 60.79 | | flag | 66.51 | 76.99 | +---------------------+-------+-------+ 2024-06-16 14:28:54,888 - mmseg - INFO - Summary: 2024-06-16 14:28:54,888 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.93 | 56.85 | 69.21 | +-------+-------+-------+ 2024-06-16 14:28:54,889 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 14:28:54,889 - mmseg - INFO - Iter(val) [250] aAcc: 0.8593, mIoU: 0.5685, mAcc: 0.6921, IoU.wall: 0.8169, IoU.building: 0.8466, IoU.sky: 0.9459, IoU.floor: 0.8402, IoU.tree: 0.7713, IoU.ceiling: 0.8663, IoU.road: 0.8543, IoU.bed : 0.9216, IoU.windowpane: 0.6677, IoU.grass: 0.6912, IoU.cabinet: 0.7008, IoU.sidewalk: 0.7101, IoU.person: 0.8374, IoU.earth: 0.3866, IoU.door: 0.6115, IoU.table: 0.7015, IoU.mountain: 0.6125, IoU.plant: 0.5669, IoU.curtain: 0.7803, IoU.chair: 0.6403, IoU.car: 0.8657, IoU.water: 0.6332, IoU.painting: 0.7840, IoU.sofa: 0.8213, IoU.shelf: 0.4695, IoU.house: 0.5281, IoU.sea: 0.7048, IoU.mirror: 0.7437, IoU.rug: 0.6812, IoU.field: 0.2898, IoU.armchair: 0.6206, IoU.seat: 0.7039, IoU.fence: 0.5112, IoU.desk: 0.5781, IoU.rock: 0.4891, IoU.wardrobe: 0.5590, IoU.lamp: 0.7137, IoU.bathtub: 0.8487, IoU.railing: 0.4361, IoU.cushion: 0.6765, IoU.base: 0.4131, IoU.box: 0.4050, IoU.column: 0.5669, IoU.signboard: 0.3999, IoU.chest of drawers: 0.4650, IoU.counter: 0.4797, IoU.sand: 0.5392, IoU.sink: 0.7740, IoU.skyscraper: 0.4821, IoU.fireplace: 0.7401, IoU.refrigerator: 0.8395, IoU.grandstand: 0.5670, IoU.path: 0.2353, IoU.stairs: 0.3070, IoU.runway: 0.6825, IoU.case: 0.6616, IoU.pool table: 0.9360, IoU.pillow: 0.6711, IoU.screen door: 0.7990, IoU.stairway: 0.4075, IoU.river: 0.1326, IoU.bridge: 0.5057, IoU.bookcase: 0.3685, IoU.blind: 0.3925, IoU.coffee table: 0.6743, IoU.toilet: 0.8848, IoU.flower: 0.3990, IoU.book: 0.5082, IoU.hill: 0.0688, IoU.bench: 0.6334, IoU.countertop: 0.6541, IoU.stove: 0.8479, IoU.palm: 0.5311, IoU.kitchen island: 0.5245, IoU.computer: 0.7815, IoU.swivel chair: 0.4722, IoU.boat: 0.7232, IoU.bar: 0.6144, IoU.arcade machine: 0.8062, IoU.hovel: 0.3681, IoU.bus: 0.9149, IoU.towel: 0.7504, IoU.light: 0.5221, IoU.truck: 0.4248, IoU.tower: 0.0620, IoU.chandelier: 0.7102, IoU.awning: 0.3410, IoU.streetlight: 0.2727, IoU.booth: 0.4112, IoU.television receiver: 0.7975, IoU.airplane: 0.8506, IoU.dirt track: 0.0000, IoU.apparel: 0.5914, IoU.pole: 0.2385, IoU.land: 0.0726, IoU.bannister: 0.1401, IoU.escalator: 0.6584, IoU.ottoman: 0.5250, IoU.bottle: 0.4153, IoU.buffet: 0.6037, IoU.poster: 0.3980, IoU.stage: 0.2289, IoU.van: 0.4964, IoU.ship: 0.7775, IoU.fountain: 0.3552, IoU.conveyer belt: 0.7908, IoU.canopy: 0.4453, IoU.washer: 0.8726, IoU.plaything: 0.3047, IoU.swimming pool: 0.5352, IoU.stool: 0.4732, IoU.barrel: 0.5461, IoU.basket: 0.4524, IoU.waterfall: 0.4758, IoU.tent: 0.9561, IoU.bag: 0.2864, IoU.minibike: 0.7256, IoU.cradle: 0.8423, IoU.oven: 0.5713, IoU.ball: 0.6312, IoU.food: 0.6217, IoU.step: 0.1530, IoU.tank: 0.8297, IoU.trade name: 0.2153, IoU.microwave: 0.8865, IoU.pot: 0.5931, IoU.animal: 0.6535, IoU.bicycle: 0.6066, IoU.lake: 0.5601, IoU.dishwasher: 0.6459, IoU.screen: 0.3294, IoU.blanket: 0.3436, IoU.sculpture: 0.6807, IoU.hood: 0.6023, IoU.sconce: 0.5670, IoU.vase: 0.4459, IoU.traffic light: 0.3763, IoU.tray: 0.2387, IoU.ashcan: 0.4827, IoU.fan: 0.6583, IoU.pier: 0.3860, IoU.crt screen: 0.2238, IoU.plate: 0.6236, IoU.monitor: 0.6644, IoU.bulletin board: 0.6046, IoU.shower: 0.1266, IoU.radiator: 0.6472, IoU.glass: 0.2031, IoU.clock: 0.4863, IoU.flag: 0.6651, Acc.wall: 0.9004, Acc.building: 0.9386, Acc.sky: 0.9765, Acc.floor: 0.9086, Acc.tree: 0.8849, Acc.ceiling: 0.9212, Acc.road: 0.9110, Acc.bed : 0.9645, Acc.windowpane: 0.8288, Acc.grass: 0.8053, Acc.cabinet: 0.8188, Acc.sidewalk: 0.8652, Acc.person: 0.9367, Acc.earth: 0.5066, Acc.door: 0.7539, Acc.table: 0.8206, Acc.mountain: 0.7306, Acc.plant: 0.7090, Acc.curtain: 0.8790, Acc.chair: 0.7518, Acc.car: 0.9350, Acc.water: 0.8193, Acc.painting: 0.9011, Acc.sofa: 0.9095, Acc.shelf: 0.6299, Acc.house: 0.6719, Acc.sea: 0.7846, Acc.mirror: 0.8150, Acc.rug: 0.7930, Acc.field: 0.5083, Acc.armchair: 0.8410, Acc.seat: 0.8921, Acc.fence: 0.6300, Acc.desk: 0.7920, Acc.rock: 0.7343, Acc.wardrobe: 0.6477, Acc.lamp: 0.8290, Acc.bathtub: 0.8803, Acc.railing: 0.6913, Acc.cushion: 0.8063, Acc.base: 0.5046, Acc.box: 0.5209, Acc.column: 0.7323, Acc.signboard: 0.5108, Acc.chest of drawers: 0.6962, Acc.counter: 0.5887, Acc.sand: 0.8830, Acc.sink: 0.8311, Acc.skyscraper: 0.5797, Acc.fireplace: 0.9093, Acc.refrigerator: 0.9330, Acc.grandstand: 0.8389, Acc.path: 0.3044, Acc.stairs: 0.3791, Acc.runway: 0.8906, Acc.case: 0.8682, Acc.pool table: 0.9792, Acc.pillow: 0.8017, Acc.screen door: 0.9573, Acc.stairway: 0.5816, Acc.river: 0.2496, Acc.bridge: 0.6326, Acc.bookcase: 0.5522, Acc.blind: 0.4236, Acc.coffee table: 0.8507, Acc.toilet: 0.9399, Acc.flower: 0.5651, Acc.book: 0.7951, Acc.hill: 0.1302, Acc.bench: 0.7351, Acc.countertop: 0.8384, Acc.stove: 0.9468, Acc.palm: 0.7410, Acc.kitchen island: 0.7175, Acc.computer: 0.9074, Acc.swivel chair: 0.6943, Acc.boat: 0.8808, Acc.bar: 0.8506, Acc.arcade machine: 0.8587, Acc.hovel: 0.4188, Acc.bus: 0.9630, Acc.towel: 0.8483, Acc.light: 0.6232, Acc.truck: 0.5678, Acc.tower: 0.0784, Acc.chandelier: 0.8493, Acc.awning: 0.4531, Acc.streetlight: 0.3493, Acc.booth: 0.4392, Acc.television receiver: 0.8860, Acc.airplane: 0.9518, Acc.dirt track: 0.0000, Acc.apparel: 0.7047, Acc.pole: 0.3333, Acc.land: 0.0861, Acc.bannister: 0.1757, Acc.escalator: 0.8442, Acc.ottoman: 0.6824, Acc.bottle: 0.6620, Acc.buffet: 0.7479, Acc.poster: 0.4997, Acc.stage: 0.4911, Acc.van: 0.6956, Acc.ship: 0.8079, Acc.fountain: 0.4023, Acc.conveyer belt: 0.9660, Acc.canopy: 0.6687, Acc.washer: 0.9270, Acc.plaything: 0.4358, Acc.swimming pool: 0.7760, Acc.stool: 0.6959, Acc.barrel: 0.7016, Acc.basket: 0.5830, Acc.waterfall: 0.5401, Acc.tent: 0.9641, Acc.bag: 0.3386, Acc.minibike: 0.8918, Acc.cradle: 0.9719, Acc.oven: 0.6598, Acc.ball: 0.6927, Acc.food: 0.7447, Acc.step: 0.1862, Acc.tank: 0.9277, Acc.trade name: 0.2371, Acc.microwave: 0.9561, Acc.pot: 0.6910, Acc.animal: 0.6791, Acc.bicycle: 0.8011, Acc.lake: 0.6439, Acc.dishwasher: 0.8377, Acc.screen: 0.3510, Acc.blanket: 0.3815, Acc.sculpture: 0.8646, Acc.hood: 0.7217, Acc.sconce: 0.7172, Acc.vase: 0.6477, Acc.traffic light: 0.5203, Acc.tray: 0.3206, Acc.ashcan: 0.6591, Acc.fan: 0.8031, Acc.pier: 0.4477, Acc.crt screen: 0.5360, Acc.plate: 0.7287, Acc.monitor: 0.8068, Acc.bulletin board: 0.7795, Acc.shower: 0.1344, Acc.radiator: 0.7995, Acc.glass: 0.2165, Acc.clock: 0.6079, Acc.flag: 0.7699 2024-06-16 14:30:15,567 - mmseg - INFO - Iter [37050/80000] lr: 1.739e-06, eta: 20:41:37, time: 3.294, data_time: 1.693, memory: 65790, decode.loss_ce: 0.1950, decode.acc_seg: 91.5911, aux.loss_ce: 0.0802, aux.acc_seg: 91.4537, loss: 0.2752 2024-06-16 14:31:35,976 - mmseg - INFO - Iter [37100/80000] lr: 1.737e-06, eta: 20:40:03, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1924, decode.acc_seg: 91.5926, aux.loss_ce: 0.0797, aux.acc_seg: 91.4126, loss: 0.2721 2024-06-16 14:32:56,534 - mmseg - INFO - Iter [37150/80000] lr: 1.735e-06, eta: 20:38:29, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1862, decode.acc_seg: 92.0328, aux.loss_ce: 0.0774, aux.acc_seg: 91.8510, loss: 0.2636 2024-06-16 14:34:17,027 - mmseg - INFO - Iter [37200/80000] lr: 1.733e-06, eta: 20:36:55, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1980, decode.acc_seg: 91.5167, aux.loss_ce: 0.0819, aux.acc_seg: 91.3286, loss: 0.2799 2024-06-16 14:35:37,459 - mmseg - INFO - Iter [37250/80000] lr: 1.731e-06, eta: 20:35:21, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1889, decode.acc_seg: 91.5659, aux.loss_ce: 0.0775, aux.acc_seg: 91.4905, loss: 0.2665 2024-06-16 14:36:58,034 - mmseg - INFO - Iter [37300/80000] lr: 1.729e-06, eta: 20:33:47, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1864, decode.acc_seg: 91.8705, aux.loss_ce: 0.0775, aux.acc_seg: 91.6037, loss: 0.2639 2024-06-16 14:38:18,490 - mmseg - INFO - Iter [37350/80000] lr: 1.727e-06, eta: 20:32:14, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1881, decode.acc_seg: 91.9692, aux.loss_ce: 0.0782, aux.acc_seg: 91.7427, loss: 0.2663 2024-06-16 14:39:38,972 - mmseg - INFO - Iter [37400/80000] lr: 1.725e-06, eta: 20:30:40, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1936, decode.acc_seg: 91.6349, aux.loss_ce: 0.0807, aux.acc_seg: 91.3519, loss: 0.2743 2024-06-16 14:40:59,428 - mmseg - INFO - Iter [37450/80000] lr: 1.723e-06, eta: 20:29:06, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2017, decode.acc_seg: 91.4209, aux.loss_ce: 0.0827, aux.acc_seg: 91.2646, loss: 0.2845 2024-06-16 14:42:19,907 - mmseg - INFO - Iter [37500/80000] lr: 1.721e-06, eta: 20:27:33, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2008, decode.acc_seg: 91.4475, aux.loss_ce: 0.0828, aux.acc_seg: 91.2982, loss: 0.2836 2024-06-16 14:43:40,427 - mmseg - INFO - Iter [37550/80000] lr: 1.719e-06, eta: 20:25:59, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2044, decode.acc_seg: 91.4380, aux.loss_ce: 0.0841, aux.acc_seg: 91.2606, loss: 0.2886 2024-06-16 14:45:00,914 - mmseg - INFO - Iter [37600/80000] lr: 1.717e-06, eta: 20:24:25, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2010, decode.acc_seg: 91.3122, aux.loss_ce: 0.0818, aux.acc_seg: 91.1831, loss: 0.2828 2024-06-16 14:46:21,394 - mmseg - INFO - Iter [37650/80000] lr: 1.715e-06, eta: 20:22:52, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2075, decode.acc_seg: 91.0945, aux.loss_ce: 0.0854, aux.acc_seg: 90.9038, loss: 0.2929 2024-06-16 14:47:41,918 - mmseg - INFO - Iter [37700/80000] lr: 1.713e-06, eta: 20:21:18, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2065, decode.acc_seg: 91.2138, aux.loss_ce: 0.0837, aux.acc_seg: 91.0616, loss: 0.2902 2024-06-16 14:49:02,535 - mmseg - INFO - Iter [37750/80000] lr: 1.711e-06, eta: 20:19:45, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2023, decode.acc_seg: 91.2791, aux.loss_ce: 0.0845, aux.acc_seg: 91.0910, loss: 0.2868 2024-06-16 14:50:23,028 - mmseg - INFO - Iter [37800/80000] lr: 1.709e-06, eta: 20:18:12, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1958, decode.acc_seg: 91.5509, aux.loss_ce: 0.0799, aux.acc_seg: 91.5131, loss: 0.2757 2024-06-16 14:51:43,698 - mmseg - INFO - Iter [37850/80000] lr: 1.707e-06, eta: 20:16:38, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1893, decode.acc_seg: 91.7485, aux.loss_ce: 0.0788, aux.acc_seg: 91.5202, loss: 0.2681 2024-06-16 14:53:06,361 - mmseg - INFO - Iter [37900/80000] lr: 1.705e-06, eta: 20:15:07, time: 1.653, data_time: 0.048, memory: 65790, decode.loss_ce: 0.1979, decode.acc_seg: 91.4631, aux.loss_ce: 0.0818, aux.acc_seg: 91.3959, loss: 0.2797 2024-06-16 14:54:27,013 - mmseg - INFO - Iter [37950/80000] lr: 1.703e-06, eta: 20:13:34, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1878, decode.acc_seg: 91.7614, aux.loss_ce: 0.0780, aux.acc_seg: 91.5538, loss: 0.2657 2024-06-16 14:55:47,510 - mmseg - INFO - Saving checkpoint at 38000 iterations 2024-06-16 14:57:01,869 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 14:57:01,869 - mmseg - INFO - Iter [38000/80000] lr: 1.701e-06, eta: 20:13:23, time: 3.097, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1834, decode.acc_seg: 92.1445, aux.loss_ce: 0.0767, aux.acc_seg: 91.8834, loss: 0.2601 2024-06-16 14:58:25,072 - mmseg - INFO - per class results: 2024-06-16 14:58:25,079 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 81.37 | 88.94 | | building | 84.69 | 92.72 | | sky | 94.62 | 97.54 | | floor | 83.98 | 90.03 | | tree | 77.06 | 89.19 | | ceiling | 86.49 | 93.8 | | road | 84.96 | 91.06 | | bed | 91.86 | 96.97 | | windowpane | 66.76 | 81.79 | | grass | 68.17 | 84.13 | | cabinet | 66.92 | 75.28 | | sidewalk | 70.08 | 83.43 | | person | 83.23 | 93.81 | | earth | 41.96 | 57.22 | | door | 61.13 | 81.11 | | table | 67.67 | 79.31 | | mountain | 62.19 | 69.35 | | plant | 55.77 | 67.78 | | curtain | 77.64 | 88.18 | | chair | 63.36 | 74.79 | | car | 86.14 | 93.56 | | water | 64.16 | 77.84 | | painting | 74.47 | 91.4 | | sofa | 82.31 | 92.32 | | shelf | 46.17 | 59.38 | | house | 54.03 | 74.09 | | sea | 71.03 | 83.5 | | mirror | 76.87 | 85.49 | | rug | 69.6 | 82.51 | | field | 33.86 | 50.41 | | armchair | 63.12 | 84.71 | | seat | 66.67 | 88.26 | | fence | 50.18 | 63.51 | | desk | 55.29 | 78.17 | | rock | 56.64 | 84.65 | | wardrobe | 52.42 | 69.63 | | lamp | 70.93 | 80.64 | | bathtub | 84.08 | 88.1 | | railing | 43.86 | 59.03 | | cushion | 69.41 | 78.5 | | base | 37.35 | 52.51 | | box | 39.44 | 48.07 | | column | 56.48 | 72.44 | | signboard | 40.13 | 52.44 | | chest of drawers | 47.34 | 71.93 | | counter | 47.94 | 59.84 | | sand | 49.76 | 76.0 | | sink | 78.6 | 85.24 | | skyscraper | 44.67 | 59.97 | | fireplace | 71.66 | 93.41 | | refrigerator | 85.49 | 94.39 | | grandstand | 49.11 | 82.95 | | path | 22.59 | 30.88 | | stairs | 30.69 | 37.72 | | runway | 65.96 | 87.76 | | case | 64.35 | 86.84 | | pool table | 93.13 | 98.37 | | pillow | 66.35 | 77.63 | | screen door | 78.59 | 91.93 | | stairway | 49.46 | 68.68 | | river | 14.21 | 27.44 | | bridge | 51.75 | 62.71 | | bookcase | 35.3 | 55.54 | | blind | 39.81 | 44.9 | | coffee table | 58.68 | 86.98 | | toilet | 89.16 | 94.32 | | flower | 42.14 | 55.71 | | book | 51.13 | 81.16 | | hill | 6.25 | 12.19 | | bench | 60.73 | 73.94 | | countertop | 62.33 | 82.63 | | stove | 85.54 | 94.2 | | palm | 55.17 | 80.37 | | kitchen island | 48.87 | 78.95 | | computer | 78.83 | 90.37 | | swivel chair | 47.92 | 78.41 | | boat | 80.71 | 91.51 | | bar | 60.43 | 86.19 | | arcade machine | 83.91 | 89.98 | | hovel | 30.01 | 34.31 | | bus | 91.49 | 96.53 | | towel | 75.78 | 84.73 | | light | 52.68 | 63.88 | | truck | 47.67 | 65.81 | | tower | 24.97 | 37.77 | | chandelier | 70.38 | 86.79 | | awning | 35.8 | 43.14 | | streetlight | 29.31 | 38.55 | | booth | 50.77 | 56.74 | | television receiver | 79.98 | 91.18 | | airplane | 85.64 | 94.39 | | dirt track | 10.21 | 21.51 | | apparel | 50.08 | 64.77 | | pole | 26.49 | 35.65 | | land | 4.43 | 6.83 | | bannister | 18.41 | 23.4 | | escalator | 65.99 | 85.12 | | ottoman | 53.61 | 76.27 | | bottle | 41.4 | 69.94 | | buffet | 68.0 | 86.29 | | poster | 32.19 | 39.98 | | stage | 26.65 | 47.97 | | van | 44.85 | 60.68 | | ship | 84.87 | 92.18 | | fountain | 40.91 | 42.11 | | conveyer belt | 77.77 | 96.12 | | canopy | 51.16 | 74.51 | | washer | 89.83 | 97.27 | | plaything | 31.41 | 47.55 | | swimming pool | 51.49 | 75.06 | | stool | 51.29 | 68.34 | | barrel | 64.15 | 83.71 | | basket | 44.55 | 59.26 | | waterfall | 58.92 | 76.71 | | tent | 95.76 | 98.38 | | bag | 27.94 | 32.57 | | minibike | 74.4 | 87.46 | | cradle | 81.73 | 98.09 | | oven | 66.47 | 79.51 | | ball | 64.96 | 76.08 | | food | 62.15 | 71.71 | | step | 11.74 | 13.94 | | tank | 62.26 | 67.8 | | trade name | 33.4 | 40.42 | | microwave | 89.48 | 96.25 | | pot | 58.39 | 70.38 | | animal | 66.29 | 68.37 | | bicycle | 56.16 | 79.25 | | lake | 44.52 | 63.57 | | dishwasher | 66.0 | 82.55 | | screen | 58.24 | 86.95 | | blanket | 32.46 | 36.13 | | sculpture | 61.37 | 89.01 | | hood | 61.26 | 74.72 | | sconce | 56.21 | 73.01 | | vase | 44.43 | 59.48 | | traffic light | 34.16 | 59.21 | | tray | 16.86 | 21.19 | | ashcan | 48.5 | 65.61 | | fan | 64.49 | 86.77 | | pier | 39.74 | 43.5 | | crt screen | 12.75 | 14.2 | | plate | 61.48 | 79.35 | | monitor | 70.06 | 85.34 | | bulletin board | 57.6 | 69.58 | | shower | 20.01 | 21.66 | | radiator | 63.64 | 78.05 | | glass | 20.28 | 21.6 | | clock | 49.43 | 59.39 | | flag | 66.97 | 78.88 | +---------------------+-------+-------+ 2024-06-16 14:58:25,079 - mmseg - INFO - Summary: 2024-06-16 14:58:25,079 - mmseg - INFO - +------+-------+-------+ | aAcc | mIoU | mAcc | +------+-------+-------+ | 85.8 | 57.19 | 70.62 | +------+-------+-------+ 2024-06-16 14:58:25,080 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 14:58:25,080 - mmseg - INFO - Iter(val) [250] aAcc: 0.8580, mIoU: 0.5719, mAcc: 0.7062, IoU.wall: 0.8137, IoU.building: 0.8469, IoU.sky: 0.9462, IoU.floor: 0.8398, IoU.tree: 0.7706, IoU.ceiling: 0.8649, IoU.road: 0.8496, IoU.bed : 0.9186, IoU.windowpane: 0.6676, IoU.grass: 0.6817, IoU.cabinet: 0.6692, IoU.sidewalk: 0.7008, IoU.person: 0.8323, IoU.earth: 0.4196, IoU.door: 0.6113, IoU.table: 0.6767, IoU.mountain: 0.6219, IoU.plant: 0.5577, IoU.curtain: 0.7764, IoU.chair: 0.6336, IoU.car: 0.8614, IoU.water: 0.6416, IoU.painting: 0.7447, IoU.sofa: 0.8231, IoU.shelf: 0.4617, IoU.house: 0.5403, IoU.sea: 0.7103, IoU.mirror: 0.7687, IoU.rug: 0.6960, IoU.field: 0.3386, IoU.armchair: 0.6312, IoU.seat: 0.6667, IoU.fence: 0.5018, IoU.desk: 0.5529, IoU.rock: 0.5664, IoU.wardrobe: 0.5242, IoU.lamp: 0.7093, IoU.bathtub: 0.8408, IoU.railing: 0.4386, IoU.cushion: 0.6941, IoU.base: 0.3735, IoU.box: 0.3944, IoU.column: 0.5648, IoU.signboard: 0.4013, IoU.chest of drawers: 0.4734, IoU.counter: 0.4794, IoU.sand: 0.4976, IoU.sink: 0.7860, IoU.skyscraper: 0.4467, IoU.fireplace: 0.7166, IoU.refrigerator: 0.8549, IoU.grandstand: 0.4911, IoU.path: 0.2259, IoU.stairs: 0.3069, IoU.runway: 0.6596, IoU.case: 0.6435, IoU.pool table: 0.9313, IoU.pillow: 0.6635, IoU.screen door: 0.7859, IoU.stairway: 0.4946, IoU.river: 0.1421, IoU.bridge: 0.5175, IoU.bookcase: 0.3530, IoU.blind: 0.3981, IoU.coffee table: 0.5868, IoU.toilet: 0.8916, IoU.flower: 0.4214, IoU.book: 0.5113, IoU.hill: 0.0625, IoU.bench: 0.6073, IoU.countertop: 0.6233, IoU.stove: 0.8554, IoU.palm: 0.5517, IoU.kitchen island: 0.4887, IoU.computer: 0.7883, IoU.swivel chair: 0.4792, IoU.boat: 0.8071, IoU.bar: 0.6043, IoU.arcade machine: 0.8391, IoU.hovel: 0.3001, IoU.bus: 0.9149, IoU.towel: 0.7578, IoU.light: 0.5268, IoU.truck: 0.4767, IoU.tower: 0.2497, IoU.chandelier: 0.7038, IoU.awning: 0.3580, IoU.streetlight: 0.2931, IoU.booth: 0.5077, IoU.television receiver: 0.7998, IoU.airplane: 0.8564, IoU.dirt track: 0.1021, IoU.apparel: 0.5008, IoU.pole: 0.2649, IoU.land: 0.0443, IoU.bannister: 0.1841, IoU.escalator: 0.6599, IoU.ottoman: 0.5361, IoU.bottle: 0.4140, IoU.buffet: 0.6800, IoU.poster: 0.3219, IoU.stage: 0.2665, IoU.van: 0.4485, IoU.ship: 0.8487, IoU.fountain: 0.4091, IoU.conveyer belt: 0.7777, IoU.canopy: 0.5116, IoU.washer: 0.8983, IoU.plaything: 0.3141, IoU.swimming pool: 0.5149, IoU.stool: 0.5129, IoU.barrel: 0.6415, IoU.basket: 0.4455, IoU.waterfall: 0.5892, IoU.tent: 0.9576, IoU.bag: 0.2794, IoU.minibike: 0.7440, IoU.cradle: 0.8173, IoU.oven: 0.6647, IoU.ball: 0.6496, IoU.food: 0.6215, IoU.step: 0.1174, IoU.tank: 0.6226, IoU.trade name: 0.3340, IoU.microwave: 0.8948, IoU.pot: 0.5839, IoU.animal: 0.6629, IoU.bicycle: 0.5616, IoU.lake: 0.4452, IoU.dishwasher: 0.6600, IoU.screen: 0.5824, IoU.blanket: 0.3246, IoU.sculpture: 0.6137, IoU.hood: 0.6126, IoU.sconce: 0.5621, IoU.vase: 0.4443, IoU.traffic light: 0.3416, IoU.tray: 0.1686, IoU.ashcan: 0.4850, IoU.fan: 0.6449, IoU.pier: 0.3974, IoU.crt screen: 0.1275, IoU.plate: 0.6148, IoU.monitor: 0.7006, IoU.bulletin board: 0.5760, IoU.shower: 0.2001, IoU.radiator: 0.6364, IoU.glass: 0.2028, IoU.clock: 0.4943, IoU.flag: 0.6697, Acc.wall: 0.8894, Acc.building: 0.9272, Acc.sky: 0.9754, Acc.floor: 0.9003, Acc.tree: 0.8919, Acc.ceiling: 0.9380, Acc.road: 0.9106, Acc.bed : 0.9697, Acc.windowpane: 0.8179, Acc.grass: 0.8413, Acc.cabinet: 0.7528, Acc.sidewalk: 0.8343, Acc.person: 0.9381, Acc.earth: 0.5722, Acc.door: 0.8111, Acc.table: 0.7931, Acc.mountain: 0.6935, Acc.plant: 0.6778, Acc.curtain: 0.8818, Acc.chair: 0.7479, Acc.car: 0.9356, Acc.water: 0.7784, Acc.painting: 0.9140, Acc.sofa: 0.9232, Acc.shelf: 0.5938, Acc.house: 0.7409, Acc.sea: 0.8350, Acc.mirror: 0.8549, Acc.rug: 0.8251, Acc.field: 0.5041, Acc.armchair: 0.8471, Acc.seat: 0.8826, Acc.fence: 0.6351, Acc.desk: 0.7817, Acc.rock: 0.8465, Acc.wardrobe: 0.6963, Acc.lamp: 0.8064, Acc.bathtub: 0.8810, Acc.railing: 0.5903, Acc.cushion: 0.7850, Acc.base: 0.5251, Acc.box: 0.4807, Acc.column: 0.7244, Acc.signboard: 0.5244, Acc.chest of drawers: 0.7193, Acc.counter: 0.5984, Acc.sand: 0.7600, Acc.sink: 0.8524, Acc.skyscraper: 0.5997, Acc.fireplace: 0.9341, Acc.refrigerator: 0.9439, Acc.grandstand: 0.8295, Acc.path: 0.3088, Acc.stairs: 0.3772, Acc.runway: 0.8776, Acc.case: 0.8684, Acc.pool table: 0.9837, Acc.pillow: 0.7763, Acc.screen door: 0.9193, Acc.stairway: 0.6868, Acc.river: 0.2744, Acc.bridge: 0.6271, Acc.bookcase: 0.5554, Acc.blind: 0.4490, Acc.coffee table: 0.8698, Acc.toilet: 0.9432, Acc.flower: 0.5571, Acc.book: 0.8116, Acc.hill: 0.1219, Acc.bench: 0.7394, Acc.countertop: 0.8263, Acc.stove: 0.9420, Acc.palm: 0.8037, Acc.kitchen island: 0.7895, Acc.computer: 0.9037, Acc.swivel chair: 0.7841, Acc.boat: 0.9151, Acc.bar: 0.8619, Acc.arcade machine: 0.8998, Acc.hovel: 0.3431, Acc.bus: 0.9653, Acc.towel: 0.8473, Acc.light: 0.6388, Acc.truck: 0.6581, Acc.tower: 0.3777, Acc.chandelier: 0.8679, Acc.awning: 0.4314, Acc.streetlight: 0.3855, Acc.booth: 0.5674, Acc.television receiver: 0.9118, Acc.airplane: 0.9439, Acc.dirt track: 0.2151, Acc.apparel: 0.6477, Acc.pole: 0.3565, Acc.land: 0.0683, Acc.bannister: 0.2340, Acc.escalator: 0.8512, Acc.ottoman: 0.7627, Acc.bottle: 0.6994, Acc.buffet: 0.8629, Acc.poster: 0.3998, Acc.stage: 0.4797, Acc.van: 0.6068, Acc.ship: 0.9218, Acc.fountain: 0.4211, Acc.conveyer belt: 0.9612, Acc.canopy: 0.7451, Acc.washer: 0.9727, Acc.plaything: 0.4755, Acc.swimming pool: 0.7506, Acc.stool: 0.6834, Acc.barrel: 0.8371, Acc.basket: 0.5926, Acc.waterfall: 0.7671, Acc.tent: 0.9838, Acc.bag: 0.3257, Acc.minibike: 0.8746, Acc.cradle: 0.9809, Acc.oven: 0.7951, Acc.ball: 0.7608, Acc.food: 0.7171, Acc.step: 0.1394, Acc.tank: 0.6780, Acc.trade name: 0.4042, Acc.microwave: 0.9625, Acc.pot: 0.7038, Acc.animal: 0.6837, Acc.bicycle: 0.7925, Acc.lake: 0.6357, Acc.dishwasher: 0.8255, Acc.screen: 0.8695, Acc.blanket: 0.3613, Acc.sculpture: 0.8901, Acc.hood: 0.7472, Acc.sconce: 0.7301, Acc.vase: 0.5948, Acc.traffic light: 0.5921, Acc.tray: 0.2119, Acc.ashcan: 0.6561, Acc.fan: 0.8677, Acc.pier: 0.4350, Acc.crt screen: 0.1420, Acc.plate: 0.7935, Acc.monitor: 0.8534, Acc.bulletin board: 0.6958, Acc.shower: 0.2166, Acc.radiator: 0.7805, Acc.glass: 0.2160, Acc.clock: 0.5939, Acc.flag: 0.7888 2024-06-16 14:59:45,907 - mmseg - INFO - Iter [38050/80000] lr: 1.699e-06, eta: 20:13:22, time: 3.281, data_time: 1.678, memory: 65790, decode.loss_ce: 0.2064, decode.acc_seg: 90.9438, aux.loss_ce: 0.0853, aux.acc_seg: 90.7403, loss: 0.2918 2024-06-16 15:01:06,424 - mmseg - INFO - Iter [38100/80000] lr: 1.697e-06, eta: 20:11:48, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1766, decode.acc_seg: 92.2870, aux.loss_ce: 0.0730, aux.acc_seg: 92.1077, loss: 0.2496 2024-06-16 15:02:26,850 - mmseg - INFO - Iter [38150/80000] lr: 1.695e-06, eta: 20:10:14, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1902, decode.acc_seg: 91.7199, aux.loss_ce: 0.0788, aux.acc_seg: 91.5869, loss: 0.2690 2024-06-16 15:03:47,363 - mmseg - INFO - Iter [38200/80000] lr: 1.693e-06, eta: 20:08:41, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1895, decode.acc_seg: 91.8126, aux.loss_ce: 0.0790, aux.acc_seg: 91.5296, loss: 0.2685 2024-06-16 15:05:07,816 - mmseg - INFO - Iter [38250/80000] lr: 1.691e-06, eta: 20:07:07, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1941, decode.acc_seg: 91.7540, aux.loss_ce: 0.0808, aux.acc_seg: 91.5039, loss: 0.2749 2024-06-16 15:06:28,265 - mmseg - INFO - Iter [38300/80000] lr: 1.689e-06, eta: 20:05:34, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1808, decode.acc_seg: 92.0901, aux.loss_ce: 0.0753, aux.acc_seg: 91.8447, loss: 0.2561 2024-06-16 15:07:48,677 - mmseg - INFO - Iter [38350/80000] lr: 1.687e-06, eta: 20:04:00, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1931, decode.acc_seg: 91.7008, aux.loss_ce: 0.0799, aux.acc_seg: 91.5238, loss: 0.2730 2024-06-16 15:09:09,108 - mmseg - INFO - Iter [38400/80000] lr: 1.685e-06, eta: 20:02:26, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1975, decode.acc_seg: 91.4740, aux.loss_ce: 0.0814, aux.acc_seg: 91.3399, loss: 0.2790 2024-06-16 15:10:29,638 - mmseg - INFO - Iter [38450/80000] lr: 1.683e-06, eta: 20:00:53, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1996, decode.acc_seg: 91.2562, aux.loss_ce: 0.0828, aux.acc_seg: 91.0852, loss: 0.2824 2024-06-16 15:11:50,095 - mmseg - INFO - Iter [38500/80000] lr: 1.681e-06, eta: 19:59:20, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1909, decode.acc_seg: 91.7093, aux.loss_ce: 0.0782, aux.acc_seg: 91.7171, loss: 0.2691 2024-06-16 15:13:10,539 - mmseg - INFO - Iter [38550/80000] lr: 1.679e-06, eta: 19:57:46, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1973, decode.acc_seg: 91.5119, aux.loss_ce: 0.0825, aux.acc_seg: 91.2684, loss: 0.2797 2024-06-16 15:14:30,980 - mmseg - INFO - Iter [38600/80000] lr: 1.677e-06, eta: 19:56:13, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1829, decode.acc_seg: 92.0212, aux.loss_ce: 0.0762, aux.acc_seg: 91.7944, loss: 0.2591 2024-06-16 15:15:51,542 - mmseg - INFO - Iter [38650/80000] lr: 1.675e-06, eta: 19:54:40, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1984, decode.acc_seg: 91.4451, aux.loss_ce: 0.0821, aux.acc_seg: 91.1995, loss: 0.2804 2024-06-16 15:17:12,034 - mmseg - INFO - Iter [38700/80000] lr: 1.673e-06, eta: 19:53:06, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1883, decode.acc_seg: 91.7495, aux.loss_ce: 0.0770, aux.acc_seg: 91.6721, loss: 0.2653 2024-06-16 15:18:32,493 - mmseg - INFO - Iter [38750/80000] lr: 1.671e-06, eta: 19:51:33, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1963, decode.acc_seg: 91.4109, aux.loss_ce: 0.0823, aux.acc_seg: 91.1701, loss: 0.2786 2024-06-16 15:19:52,970 - mmseg - INFO - Iter [38800/80000] lr: 1.669e-06, eta: 19:50:00, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1884, decode.acc_seg: 91.7552, aux.loss_ce: 0.0782, aux.acc_seg: 91.5726, loss: 0.2666 2024-06-16 15:21:13,428 - mmseg - INFO - Iter [38850/80000] lr: 1.667e-06, eta: 19:48:27, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1904, decode.acc_seg: 91.7995, aux.loss_ce: 0.0784, aux.acc_seg: 91.6863, loss: 0.2687 2024-06-16 15:22:33,832 - mmseg - INFO - Iter [38900/80000] lr: 1.664e-06, eta: 19:46:53, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1773, decode.acc_seg: 92.2963, aux.loss_ce: 0.0746, aux.acc_seg: 92.0746, loss: 0.2519 2024-06-16 15:23:54,290 - mmseg - INFO - Iter [38950/80000] lr: 1.662e-06, eta: 19:45:20, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1922, decode.acc_seg: 91.7040, aux.loss_ce: 0.0798, aux.acc_seg: 91.5121, loss: 0.2720 2024-06-16 15:25:14,746 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 15:25:14,746 - mmseg - INFO - Iter [39000/80000] lr: 1.660e-06, eta: 19:43:47, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1886, decode.acc_seg: 92.0043, aux.loss_ce: 0.0784, aux.acc_seg: 91.7287, loss: 0.2670 2024-06-16 15:26:37,767 - mmseg - INFO - per class results: 2024-06-16 15:26:37,774 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.04 | 90.23 | | building | 84.13 | 92.92 | | sky | 94.67 | 97.46 | | floor | 84.49 | 91.66 | | tree | 77.19 | 90.28 | | ceiling | 86.68 | 93.75 | | road | 85.64 | 90.1 | | bed | 91.76 | 97.02 | | windowpane | 67.16 | 83.69 | | grass | 68.59 | 81.54 | | cabinet | 65.54 | 73.66 | | sidewalk | 70.69 | 87.0 | | person | 83.71 | 92.23 | | earth | 39.36 | 50.21 | | door | 60.37 | 69.78 | | table | 68.82 | 79.48 | | mountain | 62.02 | 75.69 | | plant | 56.38 | 67.74 | | curtain | 77.23 | 88.19 | | chair | 64.38 | 76.24 | | car | 86.45 | 93.12 | | water | 62.38 | 76.17 | | painting | 79.28 | 89.42 | | sofa | 82.41 | 92.4 | | shelf | 44.64 | 61.17 | | house | 43.7 | 52.29 | | sea | 74.12 | 81.22 | | mirror | 75.4 | 84.48 | | rug | 70.13 | 78.61 | | field | 33.62 | 60.71 | | armchair | 62.63 | 80.1 | | seat | 69.35 | 88.85 | | fence | 51.36 | 66.18 | | desk | 57.7 | 79.1 | | rock | 55.38 | 82.54 | | wardrobe | 51.57 | 74.38 | | lamp | 71.1 | 82.4 | | bathtub | 85.48 | 88.92 | | railing | 45.22 | 68.47 | | cushion | 67.97 | 82.65 | | base | 41.78 | 54.33 | | box | 38.7 | 49.66 | | column | 57.52 | 72.7 | | signboard | 40.8 | 53.04 | | chest of drawers | 45.18 | 70.66 | | counter | 53.49 | 71.71 | | sand | 53.81 | 91.58 | | sink | 79.79 | 87.32 | | skyscraper | 49.62 | 66.8 | | fireplace | 73.93 | 94.4 | | refrigerator | 83.5 | 89.95 | | grandstand | 50.82 | 88.27 | | path | 28.48 | 39.29 | | stairs | 27.84 | 32.09 | | runway | 66.46 | 90.13 | | case | 61.86 | 76.25 | | pool table | 93.94 | 97.2 | | pillow | 63.18 | 71.97 | | screen door | 81.01 | 90.94 | | stairway | 46.56 | 67.81 | | river | 13.2 | 29.36 | | bridge | 51.8 | 60.38 | | bookcase | 35.35 | 58.47 | | blind | 40.15 | 45.13 | | coffee table | 61.53 | 91.02 | | toilet | 89.12 | 93.24 | | flower | 42.8 | 67.15 | | book | 52.31 | 77.89 | | hill | 5.92 | 8.4 | | bench | 62.55 | 70.7 | | countertop | 61.87 | 79.79 | | stove | 85.97 | 92.51 | | palm | 52.42 | 81.25 | | kitchen island | 47.53 | 77.71 | | computer | 77.13 | 90.71 | | swivel chair | 47.49 | 71.5 | | boat | 70.72 | 92.65 | | bar | 63.65 | 81.83 | | arcade machine | 81.08 | 85.78 | | hovel | 20.63 | 21.5 | | bus | 91.9 | 96.77 | | towel | 73.72 | 79.74 | | light | 50.23 | 55.82 | | truck | 47.19 | 61.44 | | tower | 30.2 | 51.22 | | chandelier | 71.45 | 85.78 | | awning | 33.28 | 40.07 | | streetlight | 28.01 | 35.77 | | booth | 41.26 | 59.35 | | television receiver | 78.18 | 87.81 | | airplane | 86.72 | 93.1 | | dirt track | 11.06 | 49.67 | | apparel | 54.04 | 79.5 | | pole | 23.76 | 30.43 | | land | 8.08 | 14.95 | | bannister | 15.45 | 20.52 | | escalator | 64.3 | 85.22 | | ottoman | 55.35 | 83.91 | | bottle | 42.13 | 68.05 | | buffet | 61.38 | 74.66 | | poster | 39.15 | 46.19 | | stage | 22.25 | 47.49 | | van | 45.1 | 66.65 | | ship | 85.21 | 90.18 | | fountain | 39.17 | 40.1 | | conveyer belt | 79.02 | 96.35 | | canopy | 55.0 | 75.76 | | washer | 89.27 | 94.84 | | plaything | 29.76 | 41.76 | | swimming pool | 54.37 | 78.73 | | stool | 46.11 | 67.66 | | barrel | 53.29 | 69.91 | | basket | 43.05 | 62.08 | | waterfall | 51.36 | 64.48 | | tent | 95.93 | 98.32 | | bag | 25.65 | 28.42 | | minibike | 73.55 | 86.04 | | cradle | 84.38 | 98.04 | | oven | 61.98 | 71.18 | | ball | 11.06 | 11.11 | | food | 57.88 | 64.82 | | step | 12.75 | 14.94 | | tank | 63.2 | 69.32 | | trade name | 27.46 | 32.56 | | microwave | 89.58 | 95.2 | | pot | 59.94 | 70.35 | | animal | 64.8 | 68.04 | | bicycle | 58.0 | 76.26 | | lake | 57.82 | 63.48 | | dishwasher | 73.79 | 80.39 | | screen | 58.8 | 92.99 | | blanket | 34.48 | 38.88 | | sculpture | 64.62 | 79.41 | | hood | 63.8 | 77.59 | | sconce | 57.49 | 71.91 | | vase | 48.07 | 62.34 | | traffic light | 33.65 | 63.21 | | tray | 17.65 | 21.44 | | ashcan | 52.99 | 64.78 | | fan | 61.63 | 69.21 | | pier | 38.97 | 46.09 | | crt screen | 1.64 | 3.73 | | plate | 60.95 | 71.98 | | monitor | 29.69 | 33.07 | | bulletin board | 58.06 | 74.07 | | shower | 18.12 | 19.69 | | radiator | 65.8 | 81.47 | | glass | 20.12 | 21.21 | | clock | 47.63 | 53.28 | | flag | 68.41 | 73.06 | +---------------------+-------+-------+ 2024-06-16 15:26:37,774 - mmseg - INFO - Summary: 2024-06-16 15:26:37,774 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.83 | 56.42 | 69.39 | +-------+-------+-------+ 2024-06-16 15:26:37,775 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 15:26:37,775 - mmseg - INFO - Iter(val) [250] aAcc: 0.8583, mIoU: 0.5642, mAcc: 0.6939, IoU.wall: 0.8204, IoU.building: 0.8413, IoU.sky: 0.9467, IoU.floor: 0.8449, IoU.tree: 0.7719, IoU.ceiling: 0.8668, IoU.road: 0.8564, IoU.bed : 0.9176, IoU.windowpane: 0.6716, IoU.grass: 0.6859, IoU.cabinet: 0.6554, IoU.sidewalk: 0.7069, IoU.person: 0.8371, IoU.earth: 0.3936, IoU.door: 0.6037, IoU.table: 0.6882, IoU.mountain: 0.6202, IoU.plant: 0.5638, IoU.curtain: 0.7723, IoU.chair: 0.6438, IoU.car: 0.8645, IoU.water: 0.6238, IoU.painting: 0.7928, IoU.sofa: 0.8241, IoU.shelf: 0.4464, IoU.house: 0.4370, IoU.sea: 0.7412, IoU.mirror: 0.7540, IoU.rug: 0.7013, IoU.field: 0.3362, IoU.armchair: 0.6263, IoU.seat: 0.6935, IoU.fence: 0.5136, IoU.desk: 0.5770, IoU.rock: 0.5538, IoU.wardrobe: 0.5157, IoU.lamp: 0.7110, IoU.bathtub: 0.8548, IoU.railing: 0.4522, IoU.cushion: 0.6797, IoU.base: 0.4178, IoU.box: 0.3870, IoU.column: 0.5752, IoU.signboard: 0.4080, IoU.chest of drawers: 0.4518, IoU.counter: 0.5349, IoU.sand: 0.5381, IoU.sink: 0.7979, IoU.skyscraper: 0.4962, IoU.fireplace: 0.7393, IoU.refrigerator: 0.8350, IoU.grandstand: 0.5082, IoU.path: 0.2848, IoU.stairs: 0.2784, IoU.runway: 0.6646, IoU.case: 0.6186, IoU.pool table: 0.9394, IoU.pillow: 0.6318, IoU.screen door: 0.8101, IoU.stairway: 0.4656, IoU.river: 0.1320, IoU.bridge: 0.5180, IoU.bookcase: 0.3535, IoU.blind: 0.4015, IoU.coffee table: 0.6153, IoU.toilet: 0.8912, IoU.flower: 0.4280, IoU.book: 0.5231, IoU.hill: 0.0592, IoU.bench: 0.6255, IoU.countertop: 0.6187, IoU.stove: 0.8597, IoU.palm: 0.5242, IoU.kitchen island: 0.4753, IoU.computer: 0.7713, IoU.swivel chair: 0.4749, IoU.boat: 0.7072, IoU.bar: 0.6365, IoU.arcade machine: 0.8108, IoU.hovel: 0.2063, IoU.bus: 0.9190, IoU.towel: 0.7372, IoU.light: 0.5023, IoU.truck: 0.4719, IoU.tower: 0.3020, IoU.chandelier: 0.7145, IoU.awning: 0.3328, IoU.streetlight: 0.2801, IoU.booth: 0.4126, IoU.television receiver: 0.7818, IoU.airplane: 0.8672, IoU.dirt track: 0.1106, IoU.apparel: 0.5404, IoU.pole: 0.2376, IoU.land: 0.0808, IoU.bannister: 0.1545, IoU.escalator: 0.6430, IoU.ottoman: 0.5535, IoU.bottle: 0.4213, IoU.buffet: 0.6138, IoU.poster: 0.3915, IoU.stage: 0.2225, IoU.van: 0.4510, IoU.ship: 0.8521, IoU.fountain: 0.3917, IoU.conveyer belt: 0.7902, IoU.canopy: 0.5500, IoU.washer: 0.8927, IoU.plaything: 0.2976, IoU.swimming pool: 0.5437, IoU.stool: 0.4611, IoU.barrel: 0.5329, IoU.basket: 0.4305, IoU.waterfall: 0.5136, IoU.tent: 0.9593, IoU.bag: 0.2565, IoU.minibike: 0.7355, IoU.cradle: 0.8438, IoU.oven: 0.6198, IoU.ball: 0.1106, IoU.food: 0.5788, IoU.step: 0.1275, IoU.tank: 0.6320, IoU.trade name: 0.2746, IoU.microwave: 0.8958, IoU.pot: 0.5994, IoU.animal: 0.6480, IoU.bicycle: 0.5800, IoU.lake: 0.5782, IoU.dishwasher: 0.7379, IoU.screen: 0.5880, IoU.blanket: 0.3448, IoU.sculpture: 0.6462, IoU.hood: 0.6380, IoU.sconce: 0.5749, IoU.vase: 0.4807, IoU.traffic light: 0.3365, IoU.tray: 0.1765, IoU.ashcan: 0.5299, IoU.fan: 0.6163, IoU.pier: 0.3897, IoU.crt screen: 0.0164, IoU.plate: 0.6095, IoU.monitor: 0.2969, IoU.bulletin board: 0.5806, IoU.shower: 0.1812, IoU.radiator: 0.6580, IoU.glass: 0.2012, IoU.clock: 0.4763, IoU.flag: 0.6841, Acc.wall: 0.9023, Acc.building: 0.9292, Acc.sky: 0.9746, Acc.floor: 0.9166, Acc.tree: 0.9028, Acc.ceiling: 0.9375, Acc.road: 0.9010, Acc.bed : 0.9702, Acc.windowpane: 0.8369, Acc.grass: 0.8154, Acc.cabinet: 0.7366, Acc.sidewalk: 0.8700, Acc.person: 0.9223, Acc.earth: 0.5021, Acc.door: 0.6978, Acc.table: 0.7948, Acc.mountain: 0.7569, Acc.plant: 0.6774, Acc.curtain: 0.8819, Acc.chair: 0.7624, Acc.car: 0.9312, Acc.water: 0.7617, Acc.painting: 0.8942, Acc.sofa: 0.9240, Acc.shelf: 0.6117, Acc.house: 0.5229, Acc.sea: 0.8122, Acc.mirror: 0.8448, Acc.rug: 0.7861, Acc.field: 0.6071, Acc.armchair: 0.8010, Acc.seat: 0.8885, Acc.fence: 0.6618, Acc.desk: 0.7910, Acc.rock: 0.8254, Acc.wardrobe: 0.7438, Acc.lamp: 0.8240, Acc.bathtub: 0.8892, Acc.railing: 0.6847, Acc.cushion: 0.8265, Acc.base: 0.5433, Acc.box: 0.4966, Acc.column: 0.7270, Acc.signboard: 0.5304, Acc.chest of drawers: 0.7066, Acc.counter: 0.7171, Acc.sand: 0.9158, Acc.sink: 0.8732, Acc.skyscraper: 0.6680, Acc.fireplace: 0.9440, Acc.refrigerator: 0.8995, Acc.grandstand: 0.8827, Acc.path: 0.3929, Acc.stairs: 0.3209, Acc.runway: 0.9013, Acc.case: 0.7625, Acc.pool table: 0.9720, Acc.pillow: 0.7197, Acc.screen door: 0.9094, Acc.stairway: 0.6781, Acc.river: 0.2936, Acc.bridge: 0.6038, Acc.bookcase: 0.5847, Acc.blind: 0.4513, Acc.coffee table: 0.9102, Acc.toilet: 0.9324, Acc.flower: 0.6715, Acc.book: 0.7789, Acc.hill: 0.0840, Acc.bench: 0.7070, Acc.countertop: 0.7979, Acc.stove: 0.9251, Acc.palm: 0.8125, Acc.kitchen island: 0.7771, Acc.computer: 0.9071, Acc.swivel chair: 0.7150, Acc.boat: 0.9265, Acc.bar: 0.8183, Acc.arcade machine: 0.8578, Acc.hovel: 0.2150, Acc.bus: 0.9677, Acc.towel: 0.7974, Acc.light: 0.5582, Acc.truck: 0.6144, Acc.tower: 0.5122, Acc.chandelier: 0.8578, Acc.awning: 0.4007, Acc.streetlight: 0.3577, Acc.booth: 0.5935, Acc.television receiver: 0.8781, Acc.airplane: 0.9310, Acc.dirt track: 0.4967, Acc.apparel: 0.7950, Acc.pole: 0.3043, Acc.land: 0.1495, Acc.bannister: 0.2052, Acc.escalator: 0.8522, Acc.ottoman: 0.8391, Acc.bottle: 0.6805, Acc.buffet: 0.7466, Acc.poster: 0.4619, Acc.stage: 0.4749, Acc.van: 0.6665, Acc.ship: 0.9018, Acc.fountain: 0.4010, Acc.conveyer belt: 0.9635, Acc.canopy: 0.7576, Acc.washer: 0.9484, Acc.plaything: 0.4176, Acc.swimming pool: 0.7873, Acc.stool: 0.6766, Acc.barrel: 0.6991, Acc.basket: 0.6208, Acc.waterfall: 0.6448, Acc.tent: 0.9832, Acc.bag: 0.2842, Acc.minibike: 0.8604, Acc.cradle: 0.9804, Acc.oven: 0.7118, Acc.ball: 0.1111, Acc.food: 0.6482, Acc.step: 0.1494, Acc.tank: 0.6932, Acc.trade name: 0.3256, Acc.microwave: 0.9520, Acc.pot: 0.7035, Acc.animal: 0.6804, Acc.bicycle: 0.7626, Acc.lake: 0.6348, Acc.dishwasher: 0.8039, Acc.screen: 0.9299, Acc.blanket: 0.3888, Acc.sculpture: 0.7941, Acc.hood: 0.7759, Acc.sconce: 0.7191, Acc.vase: 0.6234, Acc.traffic light: 0.6321, Acc.tray: 0.2144, Acc.ashcan: 0.6478, Acc.fan: 0.6921, Acc.pier: 0.4609, Acc.crt screen: 0.0373, Acc.plate: 0.7198, Acc.monitor: 0.3307, Acc.bulletin board: 0.7407, Acc.shower: 0.1969, Acc.radiator: 0.8147, Acc.glass: 0.2121, Acc.clock: 0.5328, Acc.flag: 0.7306 2024-06-16 15:27:58,764 - mmseg - INFO - Iter [39050/80000] lr: 1.658e-06, eta: 19:43:42, time: 3.280, data_time: 1.675, memory: 65790, decode.loss_ce: 0.1864, decode.acc_seg: 91.7691, aux.loss_ce: 0.0778, aux.acc_seg: 91.6056, loss: 0.2642 2024-06-16 15:29:19,234 - mmseg - INFO - Iter [39100/80000] lr: 1.656e-06, eta: 19:42:08, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1851, decode.acc_seg: 91.9464, aux.loss_ce: 0.0776, aux.acc_seg: 91.6191, loss: 0.2627 2024-06-16 15:30:39,619 - mmseg - INFO - Iter [39150/80000] lr: 1.654e-06, eta: 19:40:35, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2128, decode.acc_seg: 90.9744, aux.loss_ce: 0.0868, aux.acc_seg: 90.8779, loss: 0.2997 2024-06-16 15:32:02,701 - mmseg - INFO - Iter [39200/80000] lr: 1.652e-06, eta: 19:39:05, time: 1.662, data_time: 0.058, memory: 65790, decode.loss_ce: 0.2049, decode.acc_seg: 91.1425, aux.loss_ce: 0.0856, aux.acc_seg: 90.8185, loss: 0.2905 2024-06-16 15:33:23,094 - mmseg - INFO - Iter [39250/80000] lr: 1.650e-06, eta: 19:37:31, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1942, decode.acc_seg: 91.7856, aux.loss_ce: 0.0815, aux.acc_seg: 91.4253, loss: 0.2758 2024-06-16 15:34:43,542 - mmseg - INFO - Iter [39300/80000] lr: 1.648e-06, eta: 19:35:58, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1892, decode.acc_seg: 91.7954, aux.loss_ce: 0.0782, aux.acc_seg: 91.6525, loss: 0.2674 2024-06-16 15:36:03,985 - mmseg - INFO - Iter [39350/80000] lr: 1.646e-06, eta: 19:34:25, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2004, decode.acc_seg: 91.3758, aux.loss_ce: 0.0825, aux.acc_seg: 91.2309, loss: 0.2829 2024-06-16 15:37:24,437 - mmseg - INFO - Iter [39400/80000] lr: 1.644e-06, eta: 19:32:52, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1985, decode.acc_seg: 91.4891, aux.loss_ce: 0.0826, aux.acc_seg: 91.3096, loss: 0.2811 2024-06-16 15:38:44,967 - mmseg - INFO - Iter [39450/80000] lr: 1.642e-06, eta: 19:31:19, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1848, decode.acc_seg: 91.7703, aux.loss_ce: 0.0773, aux.acc_seg: 91.5153, loss: 0.2621 2024-06-16 15:40:05,484 - mmseg - INFO - Iter [39500/80000] lr: 1.640e-06, eta: 19:29:46, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1848, decode.acc_seg: 91.8507, aux.loss_ce: 0.0772, aux.acc_seg: 91.5942, loss: 0.2619 2024-06-16 15:41:25,964 - mmseg - INFO - Iter [39550/80000] lr: 1.638e-06, eta: 19:28:13, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1852, decode.acc_seg: 92.1121, aux.loss_ce: 0.0777, aux.acc_seg: 91.8786, loss: 0.2629 2024-06-16 15:42:46,414 - mmseg - INFO - Iter [39600/80000] lr: 1.636e-06, eta: 19:26:40, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1932, decode.acc_seg: 91.5382, aux.loss_ce: 0.0809, aux.acc_seg: 91.2607, loss: 0.2741 2024-06-16 15:44:06,922 - mmseg - INFO - Iter [39650/80000] lr: 1.634e-06, eta: 19:25:07, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1958, decode.acc_seg: 91.6970, aux.loss_ce: 0.0810, aux.acc_seg: 91.5224, loss: 0.2768 2024-06-16 15:45:27,454 - mmseg - INFO - Iter [39700/80000] lr: 1.632e-06, eta: 19:23:34, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1883, decode.acc_seg: 91.8649, aux.loss_ce: 0.0783, aux.acc_seg: 91.6444, loss: 0.2667 2024-06-16 15:46:47,993 - mmseg - INFO - Iter [39750/80000] lr: 1.630e-06, eta: 19:22:02, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1903, decode.acc_seg: 91.6903, aux.loss_ce: 0.0791, aux.acc_seg: 91.5432, loss: 0.2695 2024-06-16 15:48:08,449 - mmseg - INFO - Iter [39800/80000] lr: 1.628e-06, eta: 19:20:29, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1887, decode.acc_seg: 91.8766, aux.loss_ce: 0.0777, aux.acc_seg: 91.6768, loss: 0.2664 2024-06-16 15:49:29,117 - mmseg - INFO - Iter [39850/80000] lr: 1.626e-06, eta: 19:18:56, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1812, decode.acc_seg: 91.9847, aux.loss_ce: 0.0750, aux.acc_seg: 91.8291, loss: 0.2561 2024-06-16 15:50:49,506 - mmseg - INFO - Iter [39900/80000] lr: 1.624e-06, eta: 19:17:23, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1890, decode.acc_seg: 91.9925, aux.loss_ce: 0.0777, aux.acc_seg: 91.8040, loss: 0.2667 2024-06-16 15:52:09,982 - mmseg - INFO - Iter [39950/80000] lr: 1.622e-06, eta: 19:15:51, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1783, decode.acc_seg: 92.0341, aux.loss_ce: 0.0735, aux.acc_seg: 91.9015, loss: 0.2518 2024-06-16 15:53:30,440 - mmseg - INFO - Saving checkpoint at 40000 iterations 2024-06-16 15:54:41,735 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 15:54:41,735 - mmseg - INFO - Iter [40000/80000] lr: 1.620e-06, eta: 19:15:29, time: 3.035, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1859, decode.acc_seg: 91.9865, aux.loss_ce: 0.0773, aux.acc_seg: 91.7567, loss: 0.2632 2024-06-16 15:56:04,261 - mmseg - INFO - per class results: 2024-06-16 15:56:04,267 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 81.27 | 88.02 | | building | 84.83 | 93.99 | | sky | 94.55 | 97.54 | | floor | 84.19 | 91.01 | | tree | 76.18 | 86.96 | | ceiling | 86.7 | 93.34 | | road | 85.95 | 89.75 | | bed | 91.61 | 96.86 | | windowpane | 66.19 | 79.49 | | grass | 68.65 | 83.74 | | cabinet | 65.47 | 75.9 | | sidewalk | 72.08 | 88.28 | | person | 83.59 | 93.13 | | earth | 43.03 | 57.49 | | door | 59.66 | 80.65 | | table | 68.48 | 80.81 | | mountain | 63.17 | 73.87 | | plant | 55.17 | 65.33 | | curtain | 78.48 | 88.04 | | chair | 65.2 | 80.3 | | car | 86.54 | 93.1 | | water | 63.08 | 77.93 | | painting | 78.1 | 90.87 | | sofa | 82.47 | 92.57 | | shelf | 47.04 | 62.96 | | house | 51.14 | 62.33 | | sea | 69.1 | 81.9 | | mirror | 77.96 | 85.78 | | rug | 70.69 | 79.05 | | field | 34.9 | 55.89 | | armchair | 62.88 | 77.01 | | seat | 68.42 | 88.14 | | fence | 49.2 | 68.87 | | desk | 56.44 | 82.48 | | rock | 52.75 | 85.8 | | wardrobe | 53.87 | 71.32 | | lamp | 70.06 | 81.14 | | bathtub | 83.82 | 89.1 | | railing | 43.29 | 66.08 | | cushion | 69.55 | 82.49 | | base | 42.14 | 60.52 | | box | 39.0 | 50.9 | | column | 54.8 | 68.95 | | signboard | 39.86 | 58.71 | | chest of drawers | 45.16 | 75.88 | | counter | 49.18 | 63.58 | | sand | 57.59 | 88.06 | | sink | 79.4 | 84.98 | | skyscraper | 44.58 | 58.35 | | fireplace | 72.96 | 96.55 | | refrigerator | 80.45 | 94.63 | | grandstand | 52.96 | 87.28 | | path | 28.65 | 35.52 | | stairs | 27.52 | 31.49 | | runway | 67.36 | 86.57 | | case | 63.89 | 86.61 | | pool table | 93.58 | 98.44 | | pillow | 64.85 | 74.19 | | screen door | 68.14 | 76.39 | | stairway | 47.23 | 72.74 | | river | 14.13 | 27.28 | | bridge | 75.39 | 87.67 | | bookcase | 37.82 | 55.09 | | blind | 41.58 | 49.42 | | coffee table | 63.78 | 88.88 | | toilet | 87.93 | 95.4 | | flower | 42.4 | 50.87 | | book | 50.99 | 77.59 | | hill | 6.94 | 12.18 | | bench | 67.15 | 78.56 | | countertop | 62.29 | 83.5 | | stove | 86.24 | 93.63 | | palm | 53.46 | 83.02 | | kitchen island | 50.45 | 85.27 | | computer | 77.42 | 89.56 | | swivel chair | 45.95 | 72.27 | | boat | 72.15 | 90.82 | | bar | 65.94 | 87.28 | | arcade machine | 79.58 | 87.47 | | hovel | 36.99 | 43.82 | | bus | 92.17 | 96.83 | | towel | 71.63 | 77.79 | | light | 49.78 | 57.57 | | truck | 48.24 | 61.51 | | tower | 31.21 | 51.87 | | chandelier | 70.63 | 86.92 | | awning | 36.34 | 47.39 | | streetlight | 26.76 | 33.07 | | booth | 49.93 | 80.94 | | television receiver | 81.05 | 88.66 | | airplane | 85.74 | 91.01 | | dirt track | 5.93 | 27.23 | | apparel | 54.62 | 78.33 | | pole | 20.74 | 26.44 | | land | 3.74 | 6.2 | | bannister | 16.19 | 21.71 | | escalator | 64.34 | 83.95 | | ottoman | 57.37 | 73.63 | | bottle | 41.21 | 67.35 | | buffet | 62.01 | 76.85 | | poster | 30.03 | 44.23 | | stage | 19.41 | 48.86 | | van | 48.69 | 67.12 | | ship | 86.63 | 90.31 | | fountain | 28.06 | 28.44 | | conveyer belt | 81.33 | 95.43 | | canopy | 52.92 | 75.25 | | washer | 88.99 | 94.1 | | plaything | 32.52 | 44.49 | | swimming pool | 52.73 | 76.34 | | stool | 50.83 | 69.46 | | barrel | 56.74 | 75.24 | | basket | 41.02 | 52.43 | | waterfall | 42.71 | 50.5 | | tent | 95.35 | 98.3 | | bag | 25.18 | 29.26 | | minibike | 73.76 | 86.13 | | cradle | 85.04 | 97.94 | | oven | 61.44 | 76.79 | | ball | 34.14 | 34.94 | | food | 60.86 | 72.99 | | step | 10.81 | 12.51 | | tank | 65.11 | 69.86 | | trade name | 24.89 | 29.02 | | microwave | 88.97 | 96.41 | | pot | 59.79 | 70.16 | | animal | 60.6 | 61.7 | | bicycle | 58.27 | 74.77 | | lake | 47.8 | 69.65 | | dishwasher | 71.91 | 83.66 | | screen | 59.28 | 92.14 | | blanket | 31.03 | 33.85 | | sculpture | 69.97 | 86.58 | | hood | 71.91 | 88.94 | | sconce | 56.92 | 74.22 | | vase | 48.02 | 60.0 | | traffic light | 33.81 | 55.87 | | tray | 22.22 | 26.64 | | ashcan | 50.38 | 70.05 | | fan | 65.93 | 79.87 | | pier | 40.04 | 43.25 | | crt screen | 2.53 | 4.06 | | plate | 61.83 | 77.26 | | monitor | 58.02 | 66.4 | | bulletin board | 57.14 | 81.71 | | shower | 14.9 | 17.33 | | radiator | 62.87 | 76.99 | | glass | 19.52 | 20.53 | | clock | 49.62 | 57.08 | | flag | 67.45 | 77.35 | +---------------------+-------+-------+ 2024-06-16 15:56:04,267 - mmseg - INFO - Summary: 2024-06-16 15:56:04,267 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.81 | 56.89 | 70.34 | +-------+-------+-------+ 2024-06-16 15:56:04,268 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 15:56:04,268 - mmseg - INFO - Iter(val) [250] aAcc: 0.8581, mIoU: 0.5689, mAcc: 0.7034, IoU.wall: 0.8127, IoU.building: 0.8483, IoU.sky: 0.9455, IoU.floor: 0.8419, IoU.tree: 0.7618, IoU.ceiling: 0.8670, IoU.road: 0.8595, IoU.bed : 0.9161, IoU.windowpane: 0.6619, IoU.grass: 0.6865, IoU.cabinet: 0.6547, IoU.sidewalk: 0.7208, IoU.person: 0.8359, IoU.earth: 0.4303, IoU.door: 0.5966, IoU.table: 0.6848, IoU.mountain: 0.6317, IoU.plant: 0.5517, IoU.curtain: 0.7848, IoU.chair: 0.6520, IoU.car: 0.8654, IoU.water: 0.6308, IoU.painting: 0.7810, IoU.sofa: 0.8247, IoU.shelf: 0.4704, IoU.house: 0.5114, IoU.sea: 0.6910, IoU.mirror: 0.7796, IoU.rug: 0.7069, IoU.field: 0.3490, IoU.armchair: 0.6288, IoU.seat: 0.6842, IoU.fence: 0.4920, IoU.desk: 0.5644, IoU.rock: 0.5275, IoU.wardrobe: 0.5387, IoU.lamp: 0.7006, IoU.bathtub: 0.8382, IoU.railing: 0.4329, IoU.cushion: 0.6955, IoU.base: 0.4214, IoU.box: 0.3900, IoU.column: 0.5480, IoU.signboard: 0.3986, IoU.chest of drawers: 0.4516, IoU.counter: 0.4918, IoU.sand: 0.5759, IoU.sink: 0.7940, IoU.skyscraper: 0.4458, IoU.fireplace: 0.7296, IoU.refrigerator: 0.8045, IoU.grandstand: 0.5296, IoU.path: 0.2865, IoU.stairs: 0.2752, IoU.runway: 0.6736, IoU.case: 0.6389, IoU.pool table: 0.9358, IoU.pillow: 0.6485, IoU.screen door: 0.6814, IoU.stairway: 0.4723, IoU.river: 0.1413, IoU.bridge: 0.7539, IoU.bookcase: 0.3782, IoU.blind: 0.4158, IoU.coffee table: 0.6378, IoU.toilet: 0.8793, IoU.flower: 0.4240, IoU.book: 0.5099, IoU.hill: 0.0694, IoU.bench: 0.6715, IoU.countertop: 0.6229, IoU.stove: 0.8624, IoU.palm: 0.5346, IoU.kitchen island: 0.5045, IoU.computer: 0.7742, IoU.swivel chair: 0.4595, IoU.boat: 0.7215, IoU.bar: 0.6594, IoU.arcade machine: 0.7958, IoU.hovel: 0.3699, IoU.bus: 0.9217, IoU.towel: 0.7163, IoU.light: 0.4978, IoU.truck: 0.4824, IoU.tower: 0.3121, IoU.chandelier: 0.7063, IoU.awning: 0.3634, IoU.streetlight: 0.2676, IoU.booth: 0.4993, IoU.television receiver: 0.8105, IoU.airplane: 0.8574, IoU.dirt track: 0.0593, IoU.apparel: 0.5462, IoU.pole: 0.2074, IoU.land: 0.0374, IoU.bannister: 0.1619, IoU.escalator: 0.6434, IoU.ottoman: 0.5737, IoU.bottle: 0.4121, IoU.buffet: 0.6201, IoU.poster: 0.3003, IoU.stage: 0.1941, IoU.van: 0.4869, IoU.ship: 0.8663, IoU.fountain: 0.2806, IoU.conveyer belt: 0.8133, IoU.canopy: 0.5292, IoU.washer: 0.8899, IoU.plaything: 0.3252, IoU.swimming pool: 0.5273, IoU.stool: 0.5083, IoU.barrel: 0.5674, IoU.basket: 0.4102, IoU.waterfall: 0.4271, IoU.tent: 0.9535, IoU.bag: 0.2518, IoU.minibike: 0.7376, IoU.cradle: 0.8504, IoU.oven: 0.6144, IoU.ball: 0.3414, IoU.food: 0.6086, IoU.step: 0.1081, IoU.tank: 0.6511, IoU.trade name: 0.2489, IoU.microwave: 0.8897, IoU.pot: 0.5979, IoU.animal: 0.6060, IoU.bicycle: 0.5827, IoU.lake: 0.4780, IoU.dishwasher: 0.7191, IoU.screen: 0.5928, IoU.blanket: 0.3103, IoU.sculpture: 0.6997, IoU.hood: 0.7191, IoU.sconce: 0.5692, IoU.vase: 0.4802, IoU.traffic light: 0.3381, IoU.tray: 0.2222, IoU.ashcan: 0.5038, IoU.fan: 0.6593, IoU.pier: 0.4004, IoU.crt screen: 0.0253, IoU.plate: 0.6183, IoU.monitor: 0.5802, IoU.bulletin board: 0.5714, IoU.shower: 0.1490, IoU.radiator: 0.6287, IoU.glass: 0.1952, IoU.clock: 0.4962, IoU.flag: 0.6745, Acc.wall: 0.8802, Acc.building: 0.9399, Acc.sky: 0.9754, Acc.floor: 0.9101, Acc.tree: 0.8696, Acc.ceiling: 0.9334, Acc.road: 0.8975, Acc.bed : 0.9686, Acc.windowpane: 0.7949, Acc.grass: 0.8374, Acc.cabinet: 0.7590, Acc.sidewalk: 0.8828, Acc.person: 0.9313, Acc.earth: 0.5749, Acc.door: 0.8065, Acc.table: 0.8081, Acc.mountain: 0.7387, Acc.plant: 0.6533, Acc.curtain: 0.8804, Acc.chair: 0.8030, Acc.car: 0.9310, Acc.water: 0.7793, Acc.painting: 0.9087, Acc.sofa: 0.9257, Acc.shelf: 0.6296, Acc.house: 0.6233, Acc.sea: 0.8190, Acc.mirror: 0.8578, Acc.rug: 0.7905, Acc.field: 0.5589, Acc.armchair: 0.7701, Acc.seat: 0.8814, Acc.fence: 0.6887, Acc.desk: 0.8248, Acc.rock: 0.8580, Acc.wardrobe: 0.7132, Acc.lamp: 0.8114, Acc.bathtub: 0.8910, Acc.railing: 0.6608, Acc.cushion: 0.8249, Acc.base: 0.6052, Acc.box: 0.5090, Acc.column: 0.6895, Acc.signboard: 0.5871, Acc.chest of drawers: 0.7588, Acc.counter: 0.6358, Acc.sand: 0.8806, Acc.sink: 0.8498, Acc.skyscraper: 0.5835, Acc.fireplace: 0.9655, Acc.refrigerator: 0.9463, Acc.grandstand: 0.8728, Acc.path: 0.3552, Acc.stairs: 0.3149, Acc.runway: 0.8657, Acc.case: 0.8661, Acc.pool table: 0.9844, Acc.pillow: 0.7419, Acc.screen door: 0.7639, Acc.stairway: 0.7274, Acc.river: 0.2728, Acc.bridge: 0.8767, Acc.bookcase: 0.5509, Acc.blind: 0.4942, Acc.coffee table: 0.8888, Acc.toilet: 0.9540, Acc.flower: 0.5087, Acc.book: 0.7759, Acc.hill: 0.1218, Acc.bench: 0.7856, Acc.countertop: 0.8350, Acc.stove: 0.9363, Acc.palm: 0.8302, Acc.kitchen island: 0.8527, Acc.computer: 0.8956, Acc.swivel chair: 0.7227, Acc.boat: 0.9082, Acc.bar: 0.8728, Acc.arcade machine: 0.8747, Acc.hovel: 0.4382, Acc.bus: 0.9683, Acc.towel: 0.7779, Acc.light: 0.5757, Acc.truck: 0.6151, Acc.tower: 0.5187, Acc.chandelier: 0.8692, Acc.awning: 0.4739, Acc.streetlight: 0.3307, Acc.booth: 0.8094, Acc.television receiver: 0.8866, Acc.airplane: 0.9101, Acc.dirt track: 0.2723, Acc.apparel: 0.7833, Acc.pole: 0.2644, Acc.land: 0.0620, Acc.bannister: 0.2171, Acc.escalator: 0.8395, Acc.ottoman: 0.7363, Acc.bottle: 0.6735, Acc.buffet: 0.7685, Acc.poster: 0.4423, Acc.stage: 0.4886, Acc.van: 0.6712, Acc.ship: 0.9031, Acc.fountain: 0.2844, Acc.conveyer belt: 0.9543, Acc.canopy: 0.7525, Acc.washer: 0.9410, Acc.plaything: 0.4449, Acc.swimming pool: 0.7634, Acc.stool: 0.6946, Acc.barrel: 0.7524, Acc.basket: 0.5243, Acc.waterfall: 0.5050, Acc.tent: 0.9830, Acc.bag: 0.2926, Acc.minibike: 0.8613, Acc.cradle: 0.9794, Acc.oven: 0.7679, Acc.ball: 0.3494, Acc.food: 0.7299, Acc.step: 0.1251, Acc.tank: 0.6986, Acc.trade name: 0.2902, Acc.microwave: 0.9641, Acc.pot: 0.7016, Acc.animal: 0.6170, Acc.bicycle: 0.7477, Acc.lake: 0.6965, Acc.dishwasher: 0.8366, Acc.screen: 0.9214, Acc.blanket: 0.3385, Acc.sculpture: 0.8658, Acc.hood: 0.8894, Acc.sconce: 0.7422, Acc.vase: 0.6000, Acc.traffic light: 0.5587, Acc.tray: 0.2664, Acc.ashcan: 0.7005, Acc.fan: 0.7987, Acc.pier: 0.4325, Acc.crt screen: 0.0406, Acc.plate: 0.7726, Acc.monitor: 0.6640, Acc.bulletin board: 0.8171, Acc.shower: 0.1733, Acc.radiator: 0.7699, Acc.glass: 0.2053, Acc.clock: 0.5708, Acc.flag: 0.7735 2024-06-16 15:57:25,033 - mmseg - INFO - Iter [40050/80000] lr: 1.618e-06, eta: 19:15:19, time: 3.266, data_time: 1.664, memory: 65790, decode.loss_ce: 0.1847, decode.acc_seg: 91.8513, aux.loss_ce: 0.0767, aux.acc_seg: 91.7041, loss: 0.2613 2024-06-16 15:58:45,395 - mmseg - INFO - Iter [40100/80000] lr: 1.616e-06, eta: 19:13:46, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1910, decode.acc_seg: 91.5839, aux.loss_ce: 0.0789, aux.acc_seg: 91.4786, loss: 0.2699 2024-06-16 16:00:05,931 - mmseg - INFO - Iter [40150/80000] lr: 1.614e-06, eta: 19:12:13, time: 1.611, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1899, decode.acc_seg: 92.0302, aux.loss_ce: 0.0783, aux.acc_seg: 91.8435, loss: 0.2681 2024-06-16 16:01:26,359 - mmseg - INFO - Iter [40200/80000] lr: 1.612e-06, eta: 19:10:40, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1879, decode.acc_seg: 92.0704, aux.loss_ce: 0.0779, aux.acc_seg: 91.8619, loss: 0.2659 2024-06-16 16:02:46,809 - mmseg - INFO - Iter [40250/80000] lr: 1.610e-06, eta: 19:09:07, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1863, decode.acc_seg: 91.7909, aux.loss_ce: 0.0782, aux.acc_seg: 91.4732, loss: 0.2646 2024-06-16 16:04:07,315 - mmseg - INFO - Iter [40300/80000] lr: 1.608e-06, eta: 19:07:34, time: 1.610, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1975, decode.acc_seg: 91.5085, aux.loss_ce: 0.0818, aux.acc_seg: 91.3417, loss: 0.2793 2024-06-16 16:05:27,727 - mmseg - INFO - Iter [40350/80000] lr: 1.606e-06, eta: 19:06:01, time: 1.608, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1895, decode.acc_seg: 91.7322, aux.loss_ce: 0.0780, aux.acc_seg: 91.6709, loss: 0.2675 2024-06-16 16:06:48,158 - mmseg - INFO - Iter [40400/80000] lr: 1.604e-06, eta: 19:04:28, time: 1.609, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1766, decode.acc_seg: 92.4639, aux.loss_ce: 0.0740, aux.acc_seg: 92.2355, loss: 0.2505 2024-06-16 16:08:11,275 - mmseg - INFO - Iter [40450/80000] lr: 1.602e-06, eta: 19:02:58, time: 1.662, data_time: 0.060, memory: 65790, decode.loss_ce: 0.1745, decode.acc_seg: 92.2296, aux.loss_ce: 0.0722, aux.acc_seg: 92.0473, loss: 0.2467 2024-06-16 16:09:31,774 - mmseg - INFO - Iter [40500/80000] lr: 1.600e-06, eta: 19:01:26, time: 1.610, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1802, decode.acc_seg: 92.3367, aux.loss_ce: 0.0759, aux.acc_seg: 92.0400, loss: 0.2561 2024-06-16 16:10:52,267 - mmseg - INFO - Iter [40550/80000] lr: 1.598e-06, eta: 18:59:53, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1772, decode.acc_seg: 92.2073, aux.loss_ce: 0.0742, aux.acc_seg: 91.9118, loss: 0.2513 2024-06-16 16:12:12,673 - mmseg - INFO - Iter [40600/80000] lr: 1.596e-06, eta: 18:58:20, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1923, decode.acc_seg: 91.5931, aux.loss_ce: 0.0799, aux.acc_seg: 91.4085, loss: 0.2723 2024-06-16 16:13:33,305 - mmseg - INFO - Iter [40650/80000] lr: 1.594e-06, eta: 18:56:47, time: 1.613, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1881, decode.acc_seg: 91.8033, aux.loss_ce: 0.0782, aux.acc_seg: 91.6684, loss: 0.2663 2024-06-16 16:14:53,690 - mmseg - INFO - Iter [40700/80000] lr: 1.592e-06, eta: 18:55:15, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1734, decode.acc_seg: 92.4024, aux.loss_ce: 0.0725, aux.acc_seg: 92.1681, loss: 0.2458 2024-06-16 16:16:14,123 - mmseg - INFO - Iter [40750/80000] lr: 1.590e-06, eta: 18:53:42, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1972, decode.acc_seg: 91.8684, aux.loss_ce: 0.0812, aux.acc_seg: 91.6870, loss: 0.2784 2024-06-16 16:17:34,500 - mmseg - INFO - Iter [40800/80000] lr: 1.588e-06, eta: 18:52:09, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1865, decode.acc_seg: 91.7876, aux.loss_ce: 0.0780, aux.acc_seg: 91.5933, loss: 0.2644 2024-06-16 16:18:54,986 - mmseg - INFO - Iter [40850/80000] lr: 1.586e-06, eta: 18:50:37, time: 1.610, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1741, decode.acc_seg: 92.4515, aux.loss_ce: 0.0727, aux.acc_seg: 92.2414, loss: 0.2468 2024-06-16 16:20:15,392 - mmseg - INFO - Iter [40900/80000] lr: 1.583e-06, eta: 18:49:04, time: 1.608, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1906, decode.acc_seg: 91.8752, aux.loss_ce: 0.0794, aux.acc_seg: 91.6953, loss: 0.2699 2024-06-16 16:21:35,834 - mmseg - INFO - Iter [40950/80000] lr: 1.581e-06, eta: 18:47:32, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1898, decode.acc_seg: 91.8503, aux.loss_ce: 0.0793, aux.acc_seg: 91.5913, loss: 0.2692 2024-06-16 16:22:56,449 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 16:22:56,449 - mmseg - INFO - Iter [41000/80000] lr: 1.579e-06, eta: 18:45:59, time: 1.612, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1939, decode.acc_seg: 91.3929, aux.loss_ce: 0.0809, aux.acc_seg: 91.1678, loss: 0.2748 2024-06-16 16:24:19,663 - mmseg - INFO - per class results: 2024-06-16 16:24:19,669 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 81.71 | 89.88 | | building | 84.42 | 92.8 | | sky | 94.66 | 97.29 | | floor | 84.54 | 91.84 | | tree | 77.18 | 88.45 | | ceiling | 87.11 | 93.24 | | road | 85.93 | 91.66 | | bed | 91.75 | 96.66 | | windowpane | 66.18 | 81.86 | | grass | 67.8 | 83.37 | | cabinet | 64.83 | 73.84 | | sidewalk | 71.03 | 84.48 | | person | 83.99 | 93.94 | | earth | 42.35 | 54.87 | | door | 59.38 | 72.12 | | table | 69.32 | 81.39 | | mountain | 61.43 | 73.24 | | plant | 57.89 | 71.04 | | curtain | 77.86 | 87.32 | | chair | 63.29 | 74.17 | | car | 86.72 | 93.38 | | water | 62.43 | 75.53 | | painting | 77.25 | 89.76 | | sofa | 82.37 | 92.52 | | shelf | 42.45 | 55.17 | | house | 51.38 | 71.01 | | sea | 72.81 | 82.14 | | mirror | 75.71 | 86.29 | | rug | 70.16 | 76.88 | | field | 30.19 | 53.77 | | armchair | 64.83 | 77.61 | | seat | 63.54 | 91.81 | | fence | 50.46 | 59.03 | | desk | 58.51 | 74.74 | | rock | 57.42 | 82.9 | | wardrobe | 48.45 | 72.87 | | lamp | 69.6 | 85.84 | | bathtub | 84.45 | 86.66 | | railing | 44.28 | 59.11 | | cushion | 68.86 | 79.18 | | base | 42.68 | 60.18 | | box | 39.32 | 46.48 | | column | 55.57 | 70.09 | | signboard | 40.12 | 54.46 | | chest of drawers | 47.4 | 78.04 | | counter | 36.93 | 44.19 | | sand | 53.61 | 78.22 | | sink | 76.93 | 83.91 | | skyscraper | 43.69 | 62.54 | | fireplace | 75.07 | 92.84 | | refrigerator | 86.04 | 93.99 | | grandstand | 49.59 | 84.61 | | path | 25.13 | 34.73 | | stairs | 29.56 | 35.02 | | runway | 68.53 | 88.92 | | case | 60.18 | 87.68 | | pool table | 92.82 | 98.28 | | pillow | 67.89 | 80.5 | | screen door | 68.07 | 74.01 | | stairway | 42.84 | 63.23 | | river | 12.5 | 27.86 | | bridge | 68.08 | 82.78 | | bookcase | 37.04 | 61.57 | | blind | 41.25 | 44.72 | | coffee table | 68.53 | 85.5 | | toilet | 88.58 | 95.19 | | flower | 39.81 | 51.0 | | book | 50.38 | 77.85 | | hill | 7.28 | 9.54 | | bench | 57.19 | 64.02 | | countertop | 64.18 | 83.48 | | stove | 85.24 | 89.94 | | palm | 54.04 | 80.44 | | kitchen island | 43.74 | 95.32 | | computer | 78.06 | 91.26 | | swivel chair | 48.73 | 80.74 | | boat | 77.75 | 91.17 | | bar | 60.59 | 84.72 | | arcade machine | 81.94 | 87.05 | | hovel | 28.0 | 33.77 | | bus | 91.61 | 96.65 | | towel | 77.91 | 86.52 | | light | 49.78 | 56.34 | | truck | 46.26 | 61.81 | | tower | 33.58 | 58.05 | | chandelier | 70.74 | 86.63 | | awning | 36.13 | 48.72 | | streetlight | 27.46 | 35.16 | | booth | 42.99 | 75.82 | | television receiver | 79.0 | 88.28 | | airplane | 83.13 | 92.66 | | dirt track | 4.52 | 17.65 | | apparel | 55.58 | 77.43 | | pole | 23.54 | 30.96 | | land | 4.74 | 6.6 | | bannister | 17.87 | 23.11 | | escalator | 65.4 | 83.59 | | ottoman | 55.89 | 72.5 | | bottle | 41.27 | 66.96 | | buffet | 62.54 | 77.81 | | poster | 31.97 | 38.12 | | stage | 21.52 | 51.68 | | van | 51.57 | 72.91 | | ship | 87.36 | 91.8 | | fountain | 42.53 | 46.11 | | conveyer belt | 83.48 | 92.78 | | canopy | 50.72 | 75.52 | | washer | 88.65 | 94.83 | | plaything | 28.45 | 46.48 | | swimming pool | 55.11 | 80.56 | | stool | 42.39 | 61.64 | | barrel | 63.08 | 93.31 | | basket | 36.45 | 46.61 | | waterfall | 48.49 | 63.34 | | tent | 93.76 | 98.43 | | bag | 26.71 | 29.88 | | minibike | 74.36 | 87.91 | | cradle | 83.77 | 98.37 | | oven | 62.2 | 78.77 | | ball | 58.75 | 63.26 | | food | 55.65 | 65.48 | | step | 8.68 | 10.19 | | tank | 69.81 | 79.11 | | trade name | 31.6 | 38.93 | | microwave | 90.44 | 94.89 | | pot | 57.27 | 64.04 | | animal | 69.36 | 72.24 | | bicycle | 59.13 | 73.68 | | lake | 53.51 | 76.51 | | dishwasher | 73.84 | 77.8 | | screen | 59.61 | 90.8 | | blanket | 32.98 | 36.25 | | sculpture | 71.54 | 86.4 | | hood | 70.7 | 88.95 | | sconce | 57.99 | 70.95 | | vase | 47.63 | 57.54 | | traffic light | 36.46 | 53.56 | | tray | 20.96 | 25.4 | | ashcan | 52.31 | 66.32 | | fan | 65.48 | 79.42 | | pier | 38.52 | 45.62 | | crt screen | 2.89 | 3.61 | | plate | 61.13 | 78.74 | | monitor | 63.73 | 72.17 | | bulletin board | 60.88 | 76.41 | | shower | 4.93 | 20.81 | | radiator | 65.44 | 79.96 | | glass | 22.96 | 25.42 | | clock | 48.73 | 60.2 | | flag | 68.86 | 79.35 | +---------------------+-------+-------+ 2024-06-16 16:24:19,670 - mmseg - INFO - Summary: 2024-06-16 16:24:19,670 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.82 | 57.02 | 70.37 | +-------+-------+-------+ 2024-06-16 16:24:19,671 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 16:24:19,671 - mmseg - INFO - Iter(val) [250] aAcc: 0.8582, mIoU: 0.5702, mAcc: 0.7037, IoU.wall: 0.8171, IoU.building: 0.8442, IoU.sky: 0.9466, IoU.floor: 0.8454, IoU.tree: 0.7718, IoU.ceiling: 0.8711, IoU.road: 0.8593, IoU.bed : 0.9175, IoU.windowpane: 0.6618, IoU.grass: 0.6780, IoU.cabinet: 0.6483, IoU.sidewalk: 0.7103, IoU.person: 0.8399, IoU.earth: 0.4235, IoU.door: 0.5938, IoU.table: 0.6932, IoU.mountain: 0.6143, IoU.plant: 0.5789, IoU.curtain: 0.7786, IoU.chair: 0.6329, IoU.car: 0.8672, IoU.water: 0.6243, IoU.painting: 0.7725, IoU.sofa: 0.8237, IoU.shelf: 0.4245, IoU.house: 0.5138, IoU.sea: 0.7281, IoU.mirror: 0.7571, IoU.rug: 0.7016, IoU.field: 0.3019, IoU.armchair: 0.6483, IoU.seat: 0.6354, IoU.fence: 0.5046, IoU.desk: 0.5851, IoU.rock: 0.5742, IoU.wardrobe: 0.4845, IoU.lamp: 0.6960, IoU.bathtub: 0.8445, IoU.railing: 0.4428, IoU.cushion: 0.6886, IoU.base: 0.4268, IoU.box: 0.3932, IoU.column: 0.5557, IoU.signboard: 0.4012, IoU.chest of drawers: 0.4740, IoU.counter: 0.3693, IoU.sand: 0.5361, IoU.sink: 0.7693, IoU.skyscraper: 0.4369, IoU.fireplace: 0.7507, IoU.refrigerator: 0.8604, IoU.grandstand: 0.4959, IoU.path: 0.2513, IoU.stairs: 0.2956, IoU.runway: 0.6853, IoU.case: 0.6018, IoU.pool table: 0.9282, IoU.pillow: 0.6789, IoU.screen door: 0.6807, IoU.stairway: 0.4284, IoU.river: 0.1250, IoU.bridge: 0.6808, IoU.bookcase: 0.3704, IoU.blind: 0.4125, IoU.coffee table: 0.6853, IoU.toilet: 0.8858, IoU.flower: 0.3981, IoU.book: 0.5038, IoU.hill: 0.0728, IoU.bench: 0.5719, IoU.countertop: 0.6418, IoU.stove: 0.8524, IoU.palm: 0.5404, IoU.kitchen island: 0.4374, IoU.computer: 0.7806, IoU.swivel chair: 0.4873, IoU.boat: 0.7775, IoU.bar: 0.6059, IoU.arcade machine: 0.8194, IoU.hovel: 0.2800, IoU.bus: 0.9161, IoU.towel: 0.7791, IoU.light: 0.4978, IoU.truck: 0.4626, IoU.tower: 0.3358, IoU.chandelier: 0.7074, IoU.awning: 0.3613, IoU.streetlight: 0.2746, IoU.booth: 0.4299, IoU.television receiver: 0.7900, IoU.airplane: 0.8313, IoU.dirt track: 0.0452, IoU.apparel: 0.5558, IoU.pole: 0.2354, IoU.land: 0.0474, IoU.bannister: 0.1787, IoU.escalator: 0.6540, IoU.ottoman: 0.5589, IoU.bottle: 0.4127, IoU.buffet: 0.6254, IoU.poster: 0.3197, IoU.stage: 0.2152, IoU.van: 0.5157, IoU.ship: 0.8736, IoU.fountain: 0.4253, IoU.conveyer belt: 0.8348, IoU.canopy: 0.5072, IoU.washer: 0.8865, IoU.plaything: 0.2845, IoU.swimming pool: 0.5511, IoU.stool: 0.4239, IoU.barrel: 0.6308, IoU.basket: 0.3645, IoU.waterfall: 0.4849, IoU.tent: 0.9376, IoU.bag: 0.2671, IoU.minibike: 0.7436, IoU.cradle: 0.8377, IoU.oven: 0.6220, IoU.ball: 0.5875, IoU.food: 0.5565, IoU.step: 0.0868, IoU.tank: 0.6981, IoU.trade name: 0.3160, IoU.microwave: 0.9044, IoU.pot: 0.5727, IoU.animal: 0.6936, IoU.bicycle: 0.5913, IoU.lake: 0.5351, IoU.dishwasher: 0.7384, IoU.screen: 0.5961, IoU.blanket: 0.3298, IoU.sculpture: 0.7154, IoU.hood: 0.7070, IoU.sconce: 0.5799, IoU.vase: 0.4763, IoU.traffic light: 0.3646, IoU.tray: 0.2096, IoU.ashcan: 0.5231, IoU.fan: 0.6548, IoU.pier: 0.3852, IoU.crt screen: 0.0289, IoU.plate: 0.6113, IoU.monitor: 0.6373, IoU.bulletin board: 0.6088, IoU.shower: 0.0493, IoU.radiator: 0.6544, IoU.glass: 0.2296, IoU.clock: 0.4873, IoU.flag: 0.6886, Acc.wall: 0.8988, Acc.building: 0.9280, Acc.sky: 0.9729, Acc.floor: 0.9184, Acc.tree: 0.8845, Acc.ceiling: 0.9324, Acc.road: 0.9166, Acc.bed : 0.9666, Acc.windowpane: 0.8186, Acc.grass: 0.8337, Acc.cabinet: 0.7384, Acc.sidewalk: 0.8448, Acc.person: 0.9394, Acc.earth: 0.5487, Acc.door: 0.7212, Acc.table: 0.8139, Acc.mountain: 0.7324, Acc.plant: 0.7104, Acc.curtain: 0.8732, Acc.chair: 0.7417, Acc.car: 0.9338, Acc.water: 0.7553, Acc.painting: 0.8976, Acc.sofa: 0.9252, Acc.shelf: 0.5517, Acc.house: 0.7101, Acc.sea: 0.8214, Acc.mirror: 0.8629, Acc.rug: 0.7688, Acc.field: 0.5377, Acc.armchair: 0.7761, Acc.seat: 0.9181, Acc.fence: 0.5903, Acc.desk: 0.7474, Acc.rock: 0.8290, Acc.wardrobe: 0.7287, Acc.lamp: 0.8584, Acc.bathtub: 0.8666, Acc.railing: 0.5911, Acc.cushion: 0.7918, Acc.base: 0.6018, Acc.box: 0.4648, Acc.column: 0.7009, Acc.signboard: 0.5446, Acc.chest of drawers: 0.7804, Acc.counter: 0.4419, Acc.sand: 0.7822, Acc.sink: 0.8391, Acc.skyscraper: 0.6254, Acc.fireplace: 0.9284, Acc.refrigerator: 0.9399, Acc.grandstand: 0.8461, Acc.path: 0.3473, Acc.stairs: 0.3502, Acc.runway: 0.8892, Acc.case: 0.8768, Acc.pool table: 0.9828, Acc.pillow: 0.8050, Acc.screen door: 0.7401, Acc.stairway: 0.6323, Acc.river: 0.2786, Acc.bridge: 0.8278, Acc.bookcase: 0.6157, Acc.blind: 0.4472, Acc.coffee table: 0.8550, Acc.toilet: 0.9519, Acc.flower: 0.5100, Acc.book: 0.7785, Acc.hill: 0.0954, Acc.bench: 0.6402, Acc.countertop: 0.8348, Acc.stove: 0.8994, Acc.palm: 0.8044, Acc.kitchen island: 0.9532, Acc.computer: 0.9126, Acc.swivel chair: 0.8074, Acc.boat: 0.9117, Acc.bar: 0.8472, Acc.arcade machine: 0.8705, Acc.hovel: 0.3377, Acc.bus: 0.9665, Acc.towel: 0.8652, Acc.light: 0.5634, Acc.truck: 0.6181, Acc.tower: 0.5805, Acc.chandelier: 0.8663, Acc.awning: 0.4872, Acc.streetlight: 0.3516, Acc.booth: 0.7582, Acc.television receiver: 0.8828, Acc.airplane: 0.9266, Acc.dirt track: 0.1765, Acc.apparel: 0.7743, Acc.pole: 0.3096, Acc.land: 0.0660, Acc.bannister: 0.2311, Acc.escalator: 0.8359, Acc.ottoman: 0.7250, Acc.bottle: 0.6696, Acc.buffet: 0.7781, Acc.poster: 0.3812, Acc.stage: 0.5168, Acc.van: 0.7291, Acc.ship: 0.9180, Acc.fountain: 0.4611, Acc.conveyer belt: 0.9278, Acc.canopy: 0.7552, Acc.washer: 0.9483, Acc.plaything: 0.4648, Acc.swimming pool: 0.8056, Acc.stool: 0.6164, Acc.barrel: 0.9331, Acc.basket: 0.4661, Acc.waterfall: 0.6334, Acc.tent: 0.9843, Acc.bag: 0.2988, Acc.minibike: 0.8791, Acc.cradle: 0.9837, Acc.oven: 0.7877, Acc.ball: 0.6326, Acc.food: 0.6548, Acc.step: 0.1019, Acc.tank: 0.7911, Acc.trade name: 0.3893, Acc.microwave: 0.9489, Acc.pot: 0.6404, Acc.animal: 0.7224, Acc.bicycle: 0.7368, Acc.lake: 0.7651, Acc.dishwasher: 0.7780, Acc.screen: 0.9080, Acc.blanket: 0.3625, Acc.sculpture: 0.8640, Acc.hood: 0.8895, Acc.sconce: 0.7095, Acc.vase: 0.5754, Acc.traffic light: 0.5356, Acc.tray: 0.2540, Acc.ashcan: 0.6632, Acc.fan: 0.7942, Acc.pier: 0.4562, Acc.crt screen: 0.0361, Acc.plate: 0.7874, Acc.monitor: 0.7217, Acc.bulletin board: 0.7641, Acc.shower: 0.2081, Acc.radiator: 0.7996, Acc.glass: 0.2542, Acc.clock: 0.6020, Acc.flag: 0.7935 2024-06-16 16:25:41,359 - mmseg - INFO - Iter [41050/80000] lr: 1.577e-06, eta: 18:45:47, time: 3.298, data_time: 1.678, memory: 65790, decode.loss_ce: 0.1791, decode.acc_seg: 92.1527, aux.loss_ce: 0.0743, aux.acc_seg: 92.0548, loss: 0.2534 2024-06-16 16:27:01,822 - mmseg - INFO - Iter [41100/80000] lr: 1.575e-06, eta: 18:44:14, time: 1.609, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1909, decode.acc_seg: 91.5103, aux.loss_ce: 0.0797, aux.acc_seg: 91.3246, loss: 0.2706 2024-06-16 16:28:22,387 - mmseg - INFO - Iter [41150/80000] lr: 1.573e-06, eta: 18:42:42, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1926, decode.acc_seg: 91.8582, aux.loss_ce: 0.0786, aux.acc_seg: 91.7360, loss: 0.2712 2024-06-16 16:29:42,821 - mmseg - INFO - Iter [41200/80000] lr: 1.571e-06, eta: 18:41:09, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1881, decode.acc_seg: 91.5664, aux.loss_ce: 0.0776, aux.acc_seg: 91.3821, loss: 0.2657 2024-06-16 16:31:03,326 - mmseg - INFO - Iter [41250/80000] lr: 1.569e-06, eta: 18:39:37, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1908, decode.acc_seg: 91.6227, aux.loss_ce: 0.0792, aux.acc_seg: 91.4067, loss: 0.2700 2024-06-16 16:32:23,781 - mmseg - INFO - Iter [41300/80000] lr: 1.567e-06, eta: 18:38:04, time: 1.609, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1816, decode.acc_seg: 92.1405, aux.loss_ce: 0.0754, aux.acc_seg: 92.0041, loss: 0.2569 2024-06-16 16:33:44,319 - mmseg - INFO - Iter [41350/80000] lr: 1.565e-06, eta: 18:36:32, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1968, decode.acc_seg: 91.2972, aux.loss_ce: 0.0805, aux.acc_seg: 91.1416, loss: 0.2773 2024-06-16 16:35:04,762 - mmseg - INFO - Iter [41400/80000] lr: 1.563e-06, eta: 18:34:59, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1886, decode.acc_seg: 91.6963, aux.loss_ce: 0.0776, aux.acc_seg: 91.6695, loss: 0.2662 2024-06-16 16:36:25,245 - mmseg - INFO - Iter [41450/80000] lr: 1.561e-06, eta: 18:33:27, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1894, decode.acc_seg: 91.8329, aux.loss_ce: 0.0784, aux.acc_seg: 91.6964, loss: 0.2678 2024-06-16 16:37:45,679 - mmseg - INFO - Iter [41500/80000] lr: 1.559e-06, eta: 18:31:55, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1884, decode.acc_seg: 92.0004, aux.loss_ce: 0.0781, aux.acc_seg: 91.8310, loss: 0.2666 2024-06-16 16:39:06,128 - mmseg - INFO - Iter [41550/80000] lr: 1.557e-06, eta: 18:30:22, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1779, decode.acc_seg: 92.0635, aux.loss_ce: 0.0743, aux.acc_seg: 91.7986, loss: 0.2522 2024-06-16 16:40:26,697 - mmseg - INFO - Iter [41600/80000] lr: 1.555e-06, eta: 18:28:50, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1877, decode.acc_seg: 91.6971, aux.loss_ce: 0.0786, aux.acc_seg: 91.4502, loss: 0.2663 2024-06-16 16:41:47,165 - mmseg - INFO - Iter [41650/80000] lr: 1.553e-06, eta: 18:27:18, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1959, decode.acc_seg: 91.7387, aux.loss_ce: 0.0810, aux.acc_seg: 91.4804, loss: 0.2769 2024-06-16 16:43:10,419 - mmseg - INFO - Iter [41700/80000] lr: 1.551e-06, eta: 18:25:48, time: 1.665, data_time: 0.060, memory: 65790, decode.loss_ce: 0.1813, decode.acc_seg: 92.0060, aux.loss_ce: 0.0749, aux.acc_seg: 91.8619, loss: 0.2562 2024-06-16 16:44:30,895 - mmseg - INFO - Iter [41750/80000] lr: 1.549e-06, eta: 18:24:16, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1848, decode.acc_seg: 91.8935, aux.loss_ce: 0.0767, aux.acc_seg: 91.6708, loss: 0.2614 2024-06-16 16:45:51,561 - mmseg - INFO - Iter [41800/80000] lr: 1.547e-06, eta: 18:22:44, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1839, decode.acc_seg: 92.1570, aux.loss_ce: 0.0758, aux.acc_seg: 91.9893, loss: 0.2596 2024-06-16 16:47:12,165 - mmseg - INFO - Iter [41850/80000] lr: 1.545e-06, eta: 18:21:12, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1836, decode.acc_seg: 91.9598, aux.loss_ce: 0.0772, aux.acc_seg: 91.6793, loss: 0.2608 2024-06-16 16:48:32,774 - mmseg - INFO - Iter [41900/80000] lr: 1.543e-06, eta: 18:19:40, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1814, decode.acc_seg: 92.3724, aux.loss_ce: 0.0754, aux.acc_seg: 92.1811, loss: 0.2568 2024-06-16 16:49:53,170 - mmseg - INFO - Iter [41950/80000] lr: 1.541e-06, eta: 18:18:07, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1769, decode.acc_seg: 92.4007, aux.loss_ce: 0.0734, aux.acc_seg: 92.2550, loss: 0.2503 2024-06-16 16:51:13,534 - mmseg - INFO - Saving checkpoint at 42000 iterations 2024-06-16 16:52:24,676 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 16:52:24,676 - mmseg - INFO - Iter [42000/80000] lr: 1.539e-06, eta: 18:17:40, time: 3.030, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1778, decode.acc_seg: 92.3448, aux.loss_ce: 0.0745, aux.acc_seg: 92.1138, loss: 0.2523 2024-06-16 16:53:47,218 - mmseg - INFO - per class results: 2024-06-16 16:53:47,226 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 81.56 | 89.35 | | building | 84.8 | 93.57 | | sky | 94.77 | 97.45 | | floor | 85.33 | 92.62 | | tree | 77.59 | 88.63 | | ceiling | 86.68 | 94.02 | | road | 85.63 | 91.22 | | bed | 91.88 | 96.75 | | windowpane | 67.21 | 83.21 | | grass | 69.48 | 82.16 | | cabinet | 65.99 | 74.67 | | sidewalk | 68.96 | 81.73 | | person | 83.93 | 92.4 | | earth | 40.55 | 52.63 | | door | 60.45 | 76.83 | | table | 69.59 | 81.15 | | mountain | 61.7 | 74.6 | | plant | 56.6 | 70.2 | | curtain | 77.57 | 87.48 | | chair | 63.76 | 73.89 | | car | 86.75 | 92.98 | | water | 65.19 | 80.75 | | painting | 77.37 | 89.34 | | sofa | 80.34 | 94.37 | | shelf | 46.73 | 64.09 | | house | 49.89 | 60.67 | | sea | 75.23 | 83.47 | | mirror | 74.93 | 83.88 | | rug | 72.41 | 80.29 | | field | 34.82 | 66.48 | | armchair | 60.76 | 74.27 | | seat | 67.52 | 88.43 | | fence | 52.53 | 66.62 | | desk | 57.55 | 79.18 | | rock | 55.38 | 77.41 | | wardrobe | 49.85 | 71.1 | | lamp | 70.6 | 79.79 | | bathtub | 84.35 | 87.73 | | railing | 45.69 | 63.7 | | cushion | 68.1 | 79.68 | | base | 40.59 | 53.98 | | box | 39.24 | 48.79 | | column | 53.94 | 70.65 | | signboard | 39.88 | 49.89 | | chest of drawers | 48.27 | 75.45 | | counter | 44.94 | 58.61 | | sand | 54.4 | 88.19 | | sink | 78.57 | 84.21 | | skyscraper | 45.9 | 59.6 | | fireplace | 72.91 | 92.77 | | refrigerator | 83.96 | 94.51 | | grandstand | 50.03 | 82.09 | | path | 25.59 | 41.1 | | stairs | 28.01 | 33.97 | | runway | 70.88 | 92.37 | | case | 58.14 | 88.32 | | pool table | 92.97 | 98.24 | | pillow | 63.88 | 73.49 | | screen door | 79.71 | 91.64 | | stairway | 45.43 | 63.17 | | river | 14.1 | 27.33 | | bridge | 64.11 | 75.68 | | bookcase | 41.85 | 59.45 | | blind | 41.3 | 45.93 | | coffee table | 64.87 | 88.29 | | toilet | 90.24 | 95.7 | | flower | 41.12 | 56.56 | | book | 51.79 | 76.91 | | hill | 8.33 | 13.2 | | bench | 67.81 | 77.99 | | countertop | 61.99 | 83.69 | | stove | 84.78 | 94.21 | | palm | 54.9 | 83.24 | | kitchen island | 50.17 | 79.05 | | computer | 77.98 | 91.25 | | swivel chair | 48.7 | 77.23 | | boat | 79.75 | 91.1 | | bar | 60.09 | 84.82 | | arcade machine | 80.33 | 85.08 | | hovel | 22.91 | 26.29 | | bus | 92.18 | 96.65 | | towel | 76.8 | 85.19 | | light | 51.86 | 59.06 | | truck | 44.4 | 61.07 | | tower | 18.52 | 29.97 | | chandelier | 71.26 | 83.28 | | awning | 34.75 | 44.85 | | streetlight | 27.71 | 34.8 | | booth | 53.46 | 66.65 | | television receiver | 82.43 | 89.82 | | airplane | 80.65 | 88.07 | | dirt track | 11.09 | 18.77 | | apparel | 53.68 | 69.92 | | pole | 27.06 | 36.86 | | land | 4.5 | 6.71 | | bannister | 17.66 | 25.86 | | escalator | 62.75 | 87.15 | | ottoman | 55.15 | 78.97 | | bottle | 43.34 | 70.28 | | buffet | 66.05 | 76.33 | | poster | 31.48 | 37.92 | | stage | 27.0 | 46.52 | | van | 47.26 | 72.62 | | ship | 89.4 | 94.02 | | fountain | 30.99 | 31.45 | | conveyer belt | 74.53 | 97.61 | | canopy | 56.24 | 82.09 | | washer | 89.89 | 95.9 | | plaything | 30.01 | 40.06 | | swimming pool | 54.12 | 78.88 | | stool | 50.77 | 61.62 | | barrel | 51.22 | 85.91 | | basket | 37.39 | 50.33 | | waterfall | 49.12 | 55.65 | | tent | 96.21 | 98.88 | | bag | 28.23 | 31.85 | | minibike | 73.38 | 89.57 | | cradle | 84.9 | 98.4 | | oven | 63.17 | 75.45 | | ball | 42.27 | 43.32 | | food | 53.8 | 61.42 | | step | 13.8 | 18.87 | | tank | 63.82 | 74.79 | | trade name | 31.72 | 38.47 | | microwave | 90.11 | 95.84 | | pot | 57.74 | 66.39 | | animal | 66.78 | 69.0 | | bicycle | 60.11 | 84.85 | | lake | 56.02 | 63.49 | | dishwasher | 71.94 | 81.37 | | screen | 70.45 | 93.77 | | blanket | 34.42 | 40.46 | | sculpture | 71.15 | 81.32 | | hood | 66.32 | 81.92 | | sconce | 57.72 | 67.11 | | vase | 47.46 | 61.09 | | traffic light | 37.65 | 55.74 | | tray | 23.49 | 28.74 | | ashcan | 51.91 | 69.24 | | fan | 64.98 | 76.42 | | pier | 39.07 | 45.23 | | crt screen | 2.89 | 3.43 | | plate | 61.85 | 71.57 | | monitor | 67.88 | 76.77 | | bulletin board | 65.0 | 77.35 | | shower | 19.31 | 21.8 | | radiator | 66.74 | 84.75 | | glass | 15.8 | 16.34 | | clock | 49.05 | 57.21 | | flag | 69.24 | 74.85 | +---------------------+-------+-------+ 2024-06-16 16:53:47,226 - mmseg - INFO - Summary: 2024-06-16 16:53:47,226 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.99 | 57.37 | 70.07 | +-------+-------+-------+ 2024-06-16 16:53:47,227 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 16:53:47,227 - mmseg - INFO - Iter(val) [250] aAcc: 0.8599, mIoU: 0.5737, mAcc: 0.7007, IoU.wall: 0.8156, IoU.building: 0.8480, IoU.sky: 0.9477, IoU.floor: 0.8533, IoU.tree: 0.7759, IoU.ceiling: 0.8668, IoU.road: 0.8563, IoU.bed : 0.9188, IoU.windowpane: 0.6721, IoU.grass: 0.6948, IoU.cabinet: 0.6599, IoU.sidewalk: 0.6896, IoU.person: 0.8393, IoU.earth: 0.4055, IoU.door: 0.6045, IoU.table: 0.6959, IoU.mountain: 0.6170, IoU.plant: 0.5660, IoU.curtain: 0.7757, IoU.chair: 0.6376, IoU.car: 0.8675, IoU.water: 0.6519, IoU.painting: 0.7737, IoU.sofa: 0.8034, IoU.shelf: 0.4673, IoU.house: 0.4989, IoU.sea: 0.7523, IoU.mirror: 0.7493, IoU.rug: 0.7241, IoU.field: 0.3482, IoU.armchair: 0.6076, IoU.seat: 0.6752, IoU.fence: 0.5253, IoU.desk: 0.5755, IoU.rock: 0.5538, IoU.wardrobe: 0.4985, IoU.lamp: 0.7060, IoU.bathtub: 0.8435, IoU.railing: 0.4569, IoU.cushion: 0.6810, IoU.base: 0.4059, IoU.box: 0.3924, IoU.column: 0.5394, IoU.signboard: 0.3988, IoU.chest of drawers: 0.4827, IoU.counter: 0.4494, IoU.sand: 0.5440, IoU.sink: 0.7857, IoU.skyscraper: 0.4590, IoU.fireplace: 0.7291, IoU.refrigerator: 0.8396, IoU.grandstand: 0.5003, IoU.path: 0.2559, IoU.stairs: 0.2801, IoU.runway: 0.7088, IoU.case: 0.5814, IoU.pool table: 0.9297, IoU.pillow: 0.6388, IoU.screen door: 0.7971, IoU.stairway: 0.4543, IoU.river: 0.1410, IoU.bridge: 0.6411, IoU.bookcase: 0.4185, IoU.blind: 0.4130, IoU.coffee table: 0.6487, IoU.toilet: 0.9024, IoU.flower: 0.4112, IoU.book: 0.5179, IoU.hill: 0.0833, IoU.bench: 0.6781, IoU.countertop: 0.6199, IoU.stove: 0.8478, IoU.palm: 0.5490, IoU.kitchen island: 0.5017, IoU.computer: 0.7798, IoU.swivel chair: 0.4870, IoU.boat: 0.7975, IoU.bar: 0.6009, IoU.arcade machine: 0.8033, IoU.hovel: 0.2291, IoU.bus: 0.9218, IoU.towel: 0.7680, IoU.light: 0.5186, IoU.truck: 0.4440, IoU.tower: 0.1852, IoU.chandelier: 0.7126, IoU.awning: 0.3475, IoU.streetlight: 0.2771, IoU.booth: 0.5346, IoU.television receiver: 0.8243, IoU.airplane: 0.8065, IoU.dirt track: 0.1109, IoU.apparel: 0.5368, IoU.pole: 0.2706, IoU.land: 0.0450, IoU.bannister: 0.1766, IoU.escalator: 0.6275, IoU.ottoman: 0.5515, IoU.bottle: 0.4334, IoU.buffet: 0.6605, IoU.poster: 0.3148, IoU.stage: 0.2700, IoU.van: 0.4726, IoU.ship: 0.8940, IoU.fountain: 0.3099, IoU.conveyer belt: 0.7453, IoU.canopy: 0.5624, IoU.washer: 0.8989, IoU.plaything: 0.3001, IoU.swimming pool: 0.5412, IoU.stool: 0.5077, IoU.barrel: 0.5122, IoU.basket: 0.3739, IoU.waterfall: 0.4912, IoU.tent: 0.9621, IoU.bag: 0.2823, IoU.minibike: 0.7338, IoU.cradle: 0.8490, IoU.oven: 0.6317, IoU.ball: 0.4227, IoU.food: 0.5380, IoU.step: 0.1380, IoU.tank: 0.6382, IoU.trade name: 0.3172, IoU.microwave: 0.9011, IoU.pot: 0.5774, IoU.animal: 0.6678, IoU.bicycle: 0.6011, IoU.lake: 0.5602, IoU.dishwasher: 0.7194, IoU.screen: 0.7045, IoU.blanket: 0.3442, IoU.sculpture: 0.7115, IoU.hood: 0.6632, IoU.sconce: 0.5772, IoU.vase: 0.4746, IoU.traffic light: 0.3765, IoU.tray: 0.2349, IoU.ashcan: 0.5191, IoU.fan: 0.6498, IoU.pier: 0.3907, IoU.crt screen: 0.0289, IoU.plate: 0.6185, IoU.monitor: 0.6788, IoU.bulletin board: 0.6500, IoU.shower: 0.1931, IoU.radiator: 0.6674, IoU.glass: 0.1580, IoU.clock: 0.4905, IoU.flag: 0.6924, Acc.wall: 0.8935, Acc.building: 0.9357, Acc.sky: 0.9745, Acc.floor: 0.9262, Acc.tree: 0.8863, Acc.ceiling: 0.9402, Acc.road: 0.9122, Acc.bed : 0.9675, Acc.windowpane: 0.8321, Acc.grass: 0.8216, Acc.cabinet: 0.7467, Acc.sidewalk: 0.8173, Acc.person: 0.9240, Acc.earth: 0.5263, Acc.door: 0.7683, Acc.table: 0.8115, Acc.mountain: 0.7460, Acc.plant: 0.7020, Acc.curtain: 0.8748, Acc.chair: 0.7389, Acc.car: 0.9298, Acc.water: 0.8075, Acc.painting: 0.8934, Acc.sofa: 0.9437, Acc.shelf: 0.6409, Acc.house: 0.6067, Acc.sea: 0.8347, Acc.mirror: 0.8388, Acc.rug: 0.8029, Acc.field: 0.6648, Acc.armchair: 0.7427, Acc.seat: 0.8843, Acc.fence: 0.6662, Acc.desk: 0.7918, Acc.rock: 0.7741, Acc.wardrobe: 0.7110, Acc.lamp: 0.7979, Acc.bathtub: 0.8773, Acc.railing: 0.6370, Acc.cushion: 0.7968, Acc.base: 0.5398, Acc.box: 0.4879, Acc.column: 0.7065, Acc.signboard: 0.4989, Acc.chest of drawers: 0.7545, Acc.counter: 0.5861, Acc.sand: 0.8819, Acc.sink: 0.8421, Acc.skyscraper: 0.5960, Acc.fireplace: 0.9277, Acc.refrigerator: 0.9451, Acc.grandstand: 0.8209, Acc.path: 0.4110, Acc.stairs: 0.3397, Acc.runway: 0.9237, Acc.case: 0.8832, Acc.pool table: 0.9824, Acc.pillow: 0.7349, Acc.screen door: 0.9164, Acc.stairway: 0.6317, Acc.river: 0.2733, Acc.bridge: 0.7568, Acc.bookcase: 0.5945, Acc.blind: 0.4593, Acc.coffee table: 0.8829, Acc.toilet: 0.9570, Acc.flower: 0.5656, Acc.book: 0.7691, Acc.hill: 0.1320, Acc.bench: 0.7799, Acc.countertop: 0.8369, Acc.stove: 0.9421, Acc.palm: 0.8324, Acc.kitchen island: 0.7905, Acc.computer: 0.9125, Acc.swivel chair: 0.7723, Acc.boat: 0.9110, Acc.bar: 0.8482, Acc.arcade machine: 0.8508, Acc.hovel: 0.2629, Acc.bus: 0.9665, Acc.towel: 0.8519, Acc.light: 0.5906, Acc.truck: 0.6107, Acc.tower: 0.2997, Acc.chandelier: 0.8328, Acc.awning: 0.4485, Acc.streetlight: 0.3480, Acc.booth: 0.6665, Acc.television receiver: 0.8982, Acc.airplane: 0.8807, Acc.dirt track: 0.1877, Acc.apparel: 0.6992, Acc.pole: 0.3686, Acc.land: 0.0671, Acc.bannister: 0.2586, Acc.escalator: 0.8715, Acc.ottoman: 0.7897, Acc.bottle: 0.7028, Acc.buffet: 0.7633, Acc.poster: 0.3792, Acc.stage: 0.4652, Acc.van: 0.7262, Acc.ship: 0.9402, Acc.fountain: 0.3145, Acc.conveyer belt: 0.9761, Acc.canopy: 0.8209, Acc.washer: 0.9590, Acc.plaything: 0.4006, Acc.swimming pool: 0.7888, Acc.stool: 0.6162, Acc.barrel: 0.8591, Acc.basket: 0.5033, Acc.waterfall: 0.5565, Acc.tent: 0.9888, Acc.bag: 0.3185, Acc.minibike: 0.8957, Acc.cradle: 0.9840, Acc.oven: 0.7545, Acc.ball: 0.4332, Acc.food: 0.6142, Acc.step: 0.1887, Acc.tank: 0.7479, Acc.trade name: 0.3847, Acc.microwave: 0.9584, Acc.pot: 0.6639, Acc.animal: 0.6900, Acc.bicycle: 0.8485, Acc.lake: 0.6349, Acc.dishwasher: 0.8137, Acc.screen: 0.9377, Acc.blanket: 0.4046, Acc.sculpture: 0.8132, Acc.hood: 0.8192, Acc.sconce: 0.6711, Acc.vase: 0.6109, Acc.traffic light: 0.5574, Acc.tray: 0.2874, Acc.ashcan: 0.6924, Acc.fan: 0.7642, Acc.pier: 0.4523, Acc.crt screen: 0.0343, Acc.plate: 0.7157, Acc.monitor: 0.7677, Acc.bulletin board: 0.7735, Acc.shower: 0.2180, Acc.radiator: 0.8475, Acc.glass: 0.1634, Acc.clock: 0.5721, Acc.flag: 0.7485 2024-06-16 16:55:08,055 - mmseg - INFO - Iter [42050/80000] lr: 1.537e-06, eta: 18:17:22, time: 3.268, data_time: 1.664, memory: 65790, decode.loss_ce: 0.1822, decode.acc_seg: 91.8914, aux.loss_ce: 0.0756, aux.acc_seg: 91.6550, loss: 0.2579 2024-06-16 16:56:28,650 - mmseg - INFO - Iter [42100/80000] lr: 1.535e-06, eta: 18:15:50, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1776, decode.acc_seg: 92.0438, aux.loss_ce: 0.0737, aux.acc_seg: 91.9746, loss: 0.2514 2024-06-16 16:57:49,135 - mmseg - INFO - Iter [42150/80000] lr: 1.533e-06, eta: 18:14:18, time: 1.610, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1833, decode.acc_seg: 91.8838, aux.loss_ce: 0.0762, aux.acc_seg: 91.7012, loss: 0.2594 2024-06-16 16:59:09,687 - mmseg - INFO - Iter [42200/80000] lr: 1.531e-06, eta: 18:12:45, time: 1.611, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1829, decode.acc_seg: 92.0463, aux.loss_ce: 0.0750, aux.acc_seg: 92.0125, loss: 0.2579 2024-06-16 17:00:30,237 - mmseg - INFO - Iter [42250/80000] lr: 1.529e-06, eta: 18:11:13, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1706, decode.acc_seg: 92.5978, aux.loss_ce: 0.0710, aux.acc_seg: 92.3731, loss: 0.2416 2024-06-16 17:01:50,676 - mmseg - INFO - Iter [42300/80000] lr: 1.527e-06, eta: 18:09:41, time: 1.609, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1829, decode.acc_seg: 92.1352, aux.loss_ce: 0.0759, aux.acc_seg: 91.9167, loss: 0.2588 2024-06-16 17:03:11,176 - mmseg - INFO - Iter [42350/80000] lr: 1.525e-06, eta: 18:08:08, time: 1.610, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1851, decode.acc_seg: 91.7037, aux.loss_ce: 0.0766, aux.acc_seg: 91.5617, loss: 0.2616 2024-06-16 17:04:31,599 - mmseg - INFO - Iter [42400/80000] lr: 1.523e-06, eta: 18:06:36, time: 1.608, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1893, decode.acc_seg: 91.7080, aux.loss_ce: 0.0785, aux.acc_seg: 91.4973, loss: 0.2677 2024-06-16 17:05:52,153 - mmseg - INFO - Iter [42450/80000] lr: 1.521e-06, eta: 18:05:04, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1922, decode.acc_seg: 91.7517, aux.loss_ce: 0.0804, aux.acc_seg: 91.4820, loss: 0.2726 2024-06-16 17:07:12,500 - mmseg - INFO - Iter [42500/80000] lr: 1.519e-06, eta: 18:03:32, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1954, decode.acc_seg: 91.7405, aux.loss_ce: 0.0813, aux.acc_seg: 91.4995, loss: 0.2767 2024-06-16 17:08:32,882 - mmseg - INFO - Iter [42550/80000] lr: 1.517e-06, eta: 18:02:00, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1888, decode.acc_seg: 91.8578, aux.loss_ce: 0.0780, aux.acc_seg: 91.7081, loss: 0.2669 2024-06-16 17:09:53,272 - mmseg - INFO - Iter [42600/80000] lr: 1.515e-06, eta: 18:00:27, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1730, decode.acc_seg: 92.5442, aux.loss_ce: 0.0734, aux.acc_seg: 92.2168, loss: 0.2464 2024-06-16 17:11:13,680 - mmseg - INFO - Iter [42650/80000] lr: 1.513e-06, eta: 17:58:55, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.2062, decode.acc_seg: 91.3971, aux.loss_ce: 0.0843, aux.acc_seg: 91.2162, loss: 0.2904 2024-06-16 17:12:34,202 - mmseg - INFO - Iter [42700/80000] lr: 1.511e-06, eta: 17:57:23, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1753, decode.acc_seg: 92.1446, aux.loss_ce: 0.0721, aux.acc_seg: 92.0366, loss: 0.2474 2024-06-16 17:13:54,949 - mmseg - INFO - Iter [42750/80000] lr: 1.509e-06, eta: 17:55:51, time: 1.615, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1788, decode.acc_seg: 92.0330, aux.loss_ce: 0.0739, aux.acc_seg: 91.8326, loss: 0.2527 2024-06-16 17:15:15,496 - mmseg - INFO - Iter [42800/80000] lr: 1.507e-06, eta: 17:54:19, time: 1.611, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1770, decode.acc_seg: 92.1438, aux.loss_ce: 0.0740, aux.acc_seg: 91.8546, loss: 0.2510 2024-06-16 17:16:35,930 - mmseg - INFO - Iter [42850/80000] lr: 1.505e-06, eta: 17:52:47, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1788, decode.acc_seg: 92.0072, aux.loss_ce: 0.0751, aux.acc_seg: 91.7669, loss: 0.2540 2024-06-16 17:17:56,448 - mmseg - INFO - Iter [42900/80000] lr: 1.502e-06, eta: 17:51:15, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1842, decode.acc_seg: 91.7247, aux.loss_ce: 0.0770, aux.acc_seg: 91.4762, loss: 0.2612 2024-06-16 17:19:19,497 - mmseg - INFO - Iter [42950/80000] lr: 1.500e-06, eta: 17:49:46, time: 1.661, data_time: 0.058, memory: 65790, decode.loss_ce: 0.1780, decode.acc_seg: 92.2889, aux.loss_ce: 0.0746, aux.acc_seg: 92.1370, loss: 0.2526 2024-06-16 17:20:40,085 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 17:20:40,085 - mmseg - INFO - Iter [43000/80000] lr: 1.498e-06, eta: 17:48:14, time: 1.612, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1772, decode.acc_seg: 92.1249, aux.loss_ce: 0.0727, aux.acc_seg: 91.9994, loss: 0.2499 2024-06-16 17:22:01,803 - mmseg - INFO - per class results: 2024-06-16 17:22:01,809 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 81.61 | 89.04 | | building | 83.69 | 91.03 | | sky | 94.61 | 97.43 | | floor | 85.21 | 91.37 | | tree | 77.33 | 88.4 | | ceiling | 86.75 | 93.54 | | road | 85.88 | 91.23 | | bed | 91.38 | 97.38 | | windowpane | 65.78 | 84.57 | | grass | 69.0 | 82.35 | | cabinet | 66.02 | 75.48 | | sidewalk | 71.28 | 87.37 | | person | 83.86 | 93.32 | | earth | 40.13 | 52.22 | | door | 59.54 | 71.88 | | table | 69.5 | 80.95 | | mountain | 58.82 | 71.35 | | plant | 55.97 | 71.25 | | curtain | 77.79 | 85.72 | | chair | 64.79 | 78.65 | | car | 86.64 | 93.95 | | water | 64.47 | 76.81 | | painting | 78.7 | 90.52 | | sofa | 82.37 | 91.58 | | shelf | 46.18 | 59.71 | | house | 47.96 | 83.05 | | sea | 74.34 | 82.5 | | mirror | 75.12 | 84.42 | | rug | 71.71 | 81.25 | | field | 29.67 | 49.62 | | armchair | 63.29 | 77.72 | | seat | 68.27 | 87.86 | | fence | 50.82 | 61.74 | | desk | 56.85 | 78.97 | | rock | 51.79 | 74.61 | | wardrobe | 49.76 | 76.0 | | lamp | 71.82 | 83.18 | | bathtub | 85.99 | 89.54 | | railing | 43.88 | 61.12 | | cushion | 68.91 | 80.11 | | base | 41.41 | 62.26 | | box | 38.21 | 44.64 | | column | 54.33 | 75.26 | | signboard | 40.28 | 53.76 | | chest of drawers | 48.98 | 73.45 | | counter | 50.29 | 61.21 | | sand | 54.29 | 86.52 | | sink | 77.11 | 84.58 | | skyscraper | 45.35 | 59.06 | | fireplace | 74.82 | 92.45 | | refrigerator | 83.96 | 95.54 | | grandstand | 51.11 | 86.99 | | path | 31.04 | 40.33 | | stairs | 33.09 | 39.76 | | runway | 68.28 | 88.24 | | case | 62.88 | 82.69 | | pool table | 93.4 | 98.26 | | pillow | 64.23 | 73.89 | | screen door | 79.25 | 83.98 | | stairway | 48.77 | 63.79 | | river | 12.09 | 27.73 | | bridge | 70.95 | 82.98 | | bookcase | 40.31 | 54.95 | | blind | 41.2 | 42.66 | | coffee table | 65.37 | 84.81 | | toilet | 89.46 | 94.48 | | flower | 38.98 | 59.62 | | book | 52.16 | 78.29 | | hill | 6.4 | 15.76 | | bench | 66.86 | 75.09 | | countertop | 62.69 | 82.83 | | stove | 84.62 | 91.97 | | palm | 52.74 | 79.41 | | kitchen island | 54.88 | 88.68 | | computer | 78.01 | 91.32 | | swivel chair | 46.27 | 76.4 | | boat | 77.52 | 91.59 | | bar | 61.32 | 82.42 | | arcade machine | 81.13 | 85.77 | | hovel | 30.14 | 36.9 | | bus | 92.02 | 97.03 | | towel | 75.29 | 82.59 | | light | 54.26 | 64.27 | | truck | 47.73 | 65.6 | | tower | 40.06 | 66.95 | | chandelier | 72.28 | 86.52 | | awning | 35.33 | 42.69 | | streetlight | 28.84 | 37.22 | | booth | 49.79 | 64.01 | | television receiver | 80.05 | 86.68 | | airplane | 85.72 | 92.2 | | dirt track | 9.97 | 20.24 | | apparel | 55.21 | 67.91 | | pole | 27.31 | 41.21 | | land | 3.36 | 4.18 | | bannister | 20.19 | 30.98 | | escalator | 63.84 | 86.55 | | ottoman | 55.58 | 74.09 | | bottle | 41.92 | 68.85 | | buffet | 58.76 | 78.49 | | poster | 26.35 | 33.05 | | stage | 20.53 | 46.96 | | van | 47.64 | 62.92 | | ship | 91.59 | 98.74 | | fountain | 42.55 | 43.92 | | conveyer belt | 77.91 | 95.53 | | canopy | 50.02 | 75.35 | | washer | 88.5 | 94.51 | | plaything | 31.25 | 54.07 | | swimming pool | 58.12 | 85.22 | | stool | 49.45 | 65.61 | | barrel | 54.58 | 71.42 | | basket | 39.44 | 54.01 | | waterfall | 57.16 | 69.67 | | tent | 95.58 | 98.92 | | bag | 29.51 | 33.29 | | minibike | 72.33 | 90.39 | | cradle | 84.21 | 98.68 | | oven | 58.57 | 73.12 | | ball | 62.0 | 69.01 | | food | 59.27 | 71.2 | | step | 14.08 | 17.15 | | tank | 59.62 | 69.12 | | trade name | 27.02 | 32.13 | | microwave | 89.07 | 96.69 | | pot | 58.33 | 71.36 | | animal | 66.59 | 68.45 | | bicycle | 62.78 | 82.08 | | lake | 47.32 | 69.83 | | dishwasher | 68.79 | 84.97 | | screen | 64.26 | 94.77 | | blanket | 36.54 | 42.32 | | sculpture | 50.73 | 90.86 | | hood | 62.45 | 76.56 | | sconce | 58.01 | 70.35 | | vase | 46.57 | 65.39 | | traffic light | 36.15 | 63.49 | | tray | 24.26 | 31.7 | | ashcan | 48.38 | 71.01 | | fan | 65.79 | 79.71 | | pier | 39.18 | 45.35 | | crt screen | 1.75 | 1.83 | | plate | 61.01 | 74.26 | | monitor | 68.77 | 80.95 | | bulletin board | 47.47 | 86.33 | | shower | 15.93 | 16.74 | | radiator | 66.31 | 81.62 | | glass | 20.89 | 22.37 | | clock | 46.06 | 54.31 | | flag | 67.97 | 79.81 | +---------------------+-------+-------+ 2024-06-16 17:22:01,809 - mmseg - INFO - Summary: 2024-06-16 17:22:01,809 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.75 | 57.39 | 71.16 | +-------+-------+-------+ 2024-06-16 17:22:01,810 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 17:22:01,810 - mmseg - INFO - Iter(val) [250] aAcc: 0.8575, mIoU: 0.5739, mAcc: 0.7116, IoU.wall: 0.8161, IoU.building: 0.8369, IoU.sky: 0.9461, IoU.floor: 0.8521, IoU.tree: 0.7733, IoU.ceiling: 0.8675, IoU.road: 0.8588, IoU.bed : 0.9138, IoU.windowpane: 0.6578, IoU.grass: 0.6900, IoU.cabinet: 0.6602, IoU.sidewalk: 0.7128, IoU.person: 0.8386, IoU.earth: 0.4013, IoU.door: 0.5954, IoU.table: 0.6950, IoU.mountain: 0.5882, IoU.plant: 0.5597, IoU.curtain: 0.7779, IoU.chair: 0.6479, IoU.car: 0.8664, IoU.water: 0.6447, IoU.painting: 0.7870, IoU.sofa: 0.8237, IoU.shelf: 0.4618, IoU.house: 0.4796, IoU.sea: 0.7434, IoU.mirror: 0.7512, IoU.rug: 0.7171, IoU.field: 0.2967, IoU.armchair: 0.6329, IoU.seat: 0.6827, IoU.fence: 0.5082, IoU.desk: 0.5685, IoU.rock: 0.5179, IoU.wardrobe: 0.4976, IoU.lamp: 0.7182, IoU.bathtub: 0.8599, IoU.railing: 0.4388, IoU.cushion: 0.6891, IoU.base: 0.4141, IoU.box: 0.3821, IoU.column: 0.5433, IoU.signboard: 0.4028, IoU.chest of drawers: 0.4898, IoU.counter: 0.5029, IoU.sand: 0.5429, IoU.sink: 0.7711, IoU.skyscraper: 0.4535, IoU.fireplace: 0.7482, IoU.refrigerator: 0.8396, IoU.grandstand: 0.5111, IoU.path: 0.3104, IoU.stairs: 0.3309, IoU.runway: 0.6828, IoU.case: 0.6288, IoU.pool table: 0.9340, IoU.pillow: 0.6423, IoU.screen door: 0.7925, IoU.stairway: 0.4877, IoU.river: 0.1209, IoU.bridge: 0.7095, IoU.bookcase: 0.4031, IoU.blind: 0.4120, IoU.coffee table: 0.6537, IoU.toilet: 0.8946, IoU.flower: 0.3898, IoU.book: 0.5216, IoU.hill: 0.0640, IoU.bench: 0.6686, IoU.countertop: 0.6269, IoU.stove: 0.8462, IoU.palm: 0.5274, IoU.kitchen island: 0.5488, IoU.computer: 0.7801, IoU.swivel chair: 0.4627, IoU.boat: 0.7752, IoU.bar: 0.6132, IoU.arcade machine: 0.8113, IoU.hovel: 0.3014, IoU.bus: 0.9202, IoU.towel: 0.7529, IoU.light: 0.5426, IoU.truck: 0.4773, IoU.tower: 0.4006, IoU.chandelier: 0.7228, IoU.awning: 0.3533, IoU.streetlight: 0.2884, IoU.booth: 0.4979, IoU.television receiver: 0.8005, IoU.airplane: 0.8572, IoU.dirt track: 0.0997, IoU.apparel: 0.5521, IoU.pole: 0.2731, IoU.land: 0.0336, IoU.bannister: 0.2019, IoU.escalator: 0.6384, IoU.ottoman: 0.5558, IoU.bottle: 0.4192, IoU.buffet: 0.5876, IoU.poster: 0.2635, IoU.stage: 0.2053, IoU.van: 0.4764, IoU.ship: 0.9159, IoU.fountain: 0.4255, IoU.conveyer belt: 0.7791, IoU.canopy: 0.5002, IoU.washer: 0.8850, IoU.plaything: 0.3125, IoU.swimming pool: 0.5812, IoU.stool: 0.4945, IoU.barrel: 0.5458, IoU.basket: 0.3944, IoU.waterfall: 0.5716, IoU.tent: 0.9558, IoU.bag: 0.2951, IoU.minibike: 0.7233, IoU.cradle: 0.8421, IoU.oven: 0.5857, IoU.ball: 0.6200, IoU.food: 0.5927, IoU.step: 0.1408, IoU.tank: 0.5962, IoU.trade name: 0.2702, IoU.microwave: 0.8907, IoU.pot: 0.5833, IoU.animal: 0.6659, IoU.bicycle: 0.6278, IoU.lake: 0.4732, IoU.dishwasher: 0.6879, IoU.screen: 0.6426, IoU.blanket: 0.3654, IoU.sculpture: 0.5073, IoU.hood: 0.6245, IoU.sconce: 0.5801, IoU.vase: 0.4657, IoU.traffic light: 0.3615, IoU.tray: 0.2426, IoU.ashcan: 0.4838, IoU.fan: 0.6579, IoU.pier: 0.3918, IoU.crt screen: 0.0175, IoU.plate: 0.6101, IoU.monitor: 0.6877, IoU.bulletin board: 0.4747, IoU.shower: 0.1593, IoU.radiator: 0.6631, IoU.glass: 0.2089, IoU.clock: 0.4606, IoU.flag: 0.6797, Acc.wall: 0.8904, Acc.building: 0.9103, Acc.sky: 0.9743, Acc.floor: 0.9137, Acc.tree: 0.8840, Acc.ceiling: 0.9354, Acc.road: 0.9123, Acc.bed : 0.9738, Acc.windowpane: 0.8457, Acc.grass: 0.8235, Acc.cabinet: 0.7548, Acc.sidewalk: 0.8737, Acc.person: 0.9332, Acc.earth: 0.5222, Acc.door: 0.7188, Acc.table: 0.8095, Acc.mountain: 0.7135, Acc.plant: 0.7125, Acc.curtain: 0.8572, Acc.chair: 0.7865, Acc.car: 0.9395, Acc.water: 0.7681, Acc.painting: 0.9052, Acc.sofa: 0.9158, Acc.shelf: 0.5971, Acc.house: 0.8305, Acc.sea: 0.8250, Acc.mirror: 0.8442, Acc.rug: 0.8125, Acc.field: 0.4962, Acc.armchair: 0.7772, Acc.seat: 0.8786, Acc.fence: 0.6174, Acc.desk: 0.7897, Acc.rock: 0.7461, Acc.wardrobe: 0.7600, Acc.lamp: 0.8318, Acc.bathtub: 0.8954, Acc.railing: 0.6112, Acc.cushion: 0.8011, Acc.base: 0.6226, Acc.box: 0.4464, Acc.column: 0.7526, Acc.signboard: 0.5376, Acc.chest of drawers: 0.7345, Acc.counter: 0.6121, Acc.sand: 0.8652, Acc.sink: 0.8458, Acc.skyscraper: 0.5906, Acc.fireplace: 0.9245, Acc.refrigerator: 0.9554, Acc.grandstand: 0.8699, Acc.path: 0.4033, Acc.stairs: 0.3976, Acc.runway: 0.8824, Acc.case: 0.8269, Acc.pool table: 0.9826, Acc.pillow: 0.7389, Acc.screen door: 0.8398, Acc.stairway: 0.6379, Acc.river: 0.2773, Acc.bridge: 0.8298, Acc.bookcase: 0.5495, Acc.blind: 0.4266, Acc.coffee table: 0.8481, Acc.toilet: 0.9448, Acc.flower: 0.5962, Acc.book: 0.7829, Acc.hill: 0.1576, Acc.bench: 0.7509, Acc.countertop: 0.8283, Acc.stove: 0.9197, Acc.palm: 0.7941, Acc.kitchen island: 0.8868, Acc.computer: 0.9132, Acc.swivel chair: 0.7640, Acc.boat: 0.9159, Acc.bar: 0.8242, Acc.arcade machine: 0.8577, Acc.hovel: 0.3690, Acc.bus: 0.9703, Acc.towel: 0.8259, Acc.light: 0.6427, Acc.truck: 0.6560, Acc.tower: 0.6695, Acc.chandelier: 0.8652, Acc.awning: 0.4269, Acc.streetlight: 0.3722, Acc.booth: 0.6401, Acc.television receiver: 0.8668, Acc.airplane: 0.9220, Acc.dirt track: 0.2024, Acc.apparel: 0.6791, Acc.pole: 0.4121, Acc.land: 0.0418, Acc.bannister: 0.3098, Acc.escalator: 0.8655, Acc.ottoman: 0.7409, Acc.bottle: 0.6885, Acc.buffet: 0.7849, Acc.poster: 0.3305, Acc.stage: 0.4696, Acc.van: 0.6292, Acc.ship: 0.9874, Acc.fountain: 0.4392, Acc.conveyer belt: 0.9553, Acc.canopy: 0.7535, Acc.washer: 0.9451, Acc.plaything: 0.5407, Acc.swimming pool: 0.8522, Acc.stool: 0.6561, Acc.barrel: 0.7142, Acc.basket: 0.5401, Acc.waterfall: 0.6967, Acc.tent: 0.9892, Acc.bag: 0.3329, Acc.minibike: 0.9039, Acc.cradle: 0.9868, Acc.oven: 0.7312, Acc.ball: 0.6901, Acc.food: 0.7120, Acc.step: 0.1715, Acc.tank: 0.6912, Acc.trade name: 0.3213, Acc.microwave: 0.9669, Acc.pot: 0.7136, Acc.animal: 0.6845, Acc.bicycle: 0.8208, Acc.lake: 0.6983, Acc.dishwasher: 0.8497, Acc.screen: 0.9477, Acc.blanket: 0.4232, Acc.sculpture: 0.9086, Acc.hood: 0.7656, Acc.sconce: 0.7035, Acc.vase: 0.6539, Acc.traffic light: 0.6349, Acc.tray: 0.3170, Acc.ashcan: 0.7101, Acc.fan: 0.7971, Acc.pier: 0.4535, Acc.crt screen: 0.0183, Acc.plate: 0.7426, Acc.monitor: 0.8095, Acc.bulletin board: 0.8633, Acc.shower: 0.1674, Acc.radiator: 0.8162, Acc.glass: 0.2237, Acc.clock: 0.5431, Acc.flag: 0.7981 2024-06-16 17:23:22,760 - mmseg - INFO - Iter [43050/80000] lr: 1.496e-06, eta: 17:47:53, time: 3.253, data_time: 1.648, memory: 65790, decode.loss_ce: 0.1735, decode.acc_seg: 92.2574, aux.loss_ce: 0.0727, aux.acc_seg: 92.0133, loss: 0.2462 2024-06-16 17:24:43,159 - mmseg - INFO - Iter [43100/80000] lr: 1.494e-06, eta: 17:46:20, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1813, decode.acc_seg: 91.9883, aux.loss_ce: 0.0757, aux.acc_seg: 91.7869, loss: 0.2570 2024-06-16 17:26:03,650 - mmseg - INFO - Iter [43150/80000] lr: 1.492e-06, eta: 17:44:49, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1779, decode.acc_seg: 92.2597, aux.loss_ce: 0.0749, aux.acc_seg: 92.0564, loss: 0.2528 2024-06-16 17:27:24,076 - mmseg - INFO - Iter [43200/80000] lr: 1.490e-06, eta: 17:43:16, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1724, decode.acc_seg: 92.3842, aux.loss_ce: 0.0723, aux.acc_seg: 92.1413, loss: 0.2447 2024-06-16 17:28:44,495 - mmseg - INFO - Iter [43250/80000] lr: 1.488e-06, eta: 17:41:44, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1682, decode.acc_seg: 92.4447, aux.loss_ce: 0.0714, aux.acc_seg: 92.0087, loss: 0.2396 2024-06-16 17:30:04,947 - mmseg - INFO - Iter [43300/80000] lr: 1.486e-06, eta: 17:40:13, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1945, decode.acc_seg: 91.7525, aux.loss_ce: 0.0813, aux.acc_seg: 91.5704, loss: 0.2758 2024-06-16 17:31:25,429 - mmseg - INFO - Iter [43350/80000] lr: 1.484e-06, eta: 17:38:41, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1751, decode.acc_seg: 92.2086, aux.loss_ce: 0.0721, aux.acc_seg: 92.0002, loss: 0.2472 2024-06-16 17:32:45,829 - mmseg - INFO - Iter [43400/80000] lr: 1.482e-06, eta: 17:37:09, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1805, decode.acc_seg: 92.0510, aux.loss_ce: 0.0755, aux.acc_seg: 91.8798, loss: 0.2560 2024-06-16 17:34:06,313 - mmseg - INFO - Iter [43450/80000] lr: 1.480e-06, eta: 17:35:37, time: 1.610, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1751, decode.acc_seg: 92.3091, aux.loss_ce: 0.0727, aux.acc_seg: 92.2123, loss: 0.2478 2024-06-16 17:35:26,723 - mmseg - INFO - Iter [43500/80000] lr: 1.478e-06, eta: 17:34:05, time: 1.608, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1666, decode.acc_seg: 92.6004, aux.loss_ce: 0.0698, aux.acc_seg: 92.4152, loss: 0.2364 2024-06-16 17:36:47,152 - mmseg - INFO - Iter [43550/80000] lr: 1.476e-06, eta: 17:32:33, time: 1.609, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1829, decode.acc_seg: 92.2076, aux.loss_ce: 0.0766, aux.acc_seg: 91.9932, loss: 0.2596 2024-06-16 17:38:07,719 - mmseg - INFO - Iter [43600/80000] lr: 1.474e-06, eta: 17:31:01, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1694, decode.acc_seg: 92.4128, aux.loss_ce: 0.0713, aux.acc_seg: 92.1448, loss: 0.2406 2024-06-16 17:39:28,324 - mmseg - INFO - Iter [43650/80000] lr: 1.472e-06, eta: 17:29:30, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1737, decode.acc_seg: 92.4557, aux.loss_ce: 0.0729, aux.acc_seg: 92.1645, loss: 0.2466 2024-06-16 17:40:48,813 - mmseg - INFO - Iter [43700/80000] lr: 1.470e-06, eta: 17:27:58, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1818, decode.acc_seg: 91.9685, aux.loss_ce: 0.0763, aux.acc_seg: 91.7034, loss: 0.2582 2024-06-16 17:42:09,165 - mmseg - INFO - Iter [43750/80000] lr: 1.468e-06, eta: 17:26:26, time: 1.607, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1903, decode.acc_seg: 91.6224, aux.loss_ce: 0.0791, aux.acc_seg: 91.3434, loss: 0.2694 2024-06-16 17:43:29,572 - mmseg - INFO - Iter [43800/80000] lr: 1.466e-06, eta: 17:24:55, time: 1.608, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1719, decode.acc_seg: 92.4978, aux.loss_ce: 0.0721, aux.acc_seg: 92.2990, loss: 0.2440 2024-06-16 17:44:49,978 - mmseg - INFO - Iter [43850/80000] lr: 1.464e-06, eta: 17:23:23, time: 1.608, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1841, decode.acc_seg: 92.1317, aux.loss_ce: 0.0771, aux.acc_seg: 91.8218, loss: 0.2612 2024-06-16 17:46:10,342 - mmseg - INFO - Iter [43900/80000] lr: 1.462e-06, eta: 17:21:51, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1818, decode.acc_seg: 91.9064, aux.loss_ce: 0.0753, aux.acc_seg: 91.6474, loss: 0.2571 2024-06-16 17:47:30,950 - mmseg - INFO - Iter [43950/80000] lr: 1.460e-06, eta: 17:20:20, time: 1.612, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1664, decode.acc_seg: 92.7012, aux.loss_ce: 0.0701, aux.acc_seg: 92.4248, loss: 0.2364 2024-06-16 17:48:51,360 - mmseg - INFO - Saving checkpoint at 44000 iterations 2024-06-16 17:50:04,470 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 17:50:04,470 - mmseg - INFO - Iter [44000/80000] lr: 1.458e-06, eta: 17:19:48, time: 3.070, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1721, decode.acc_seg: 92.2752, aux.loss_ce: 0.0714, aux.acc_seg: 92.0667, loss: 0.2435 2024-06-16 17:51:59,050 - mmseg - INFO - per class results: 2024-06-16 17:51:59,056 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 81.72 | 89.34 | | building | 84.27 | 94.63 | | sky | 94.55 | 97.54 | | floor | 84.78 | 91.32 | | tree | 76.67 | 86.46 | | ceiling | 87.04 | 93.47 | | road | 85.65 | 90.98 | | bed | 91.99 | 96.23 | | windowpane | 67.04 | 81.11 | | grass | 67.89 | 81.82 | | cabinet | 66.45 | 76.73 | | sidewalk | 70.04 | 82.15 | | person | 83.94 | 93.07 | | earth | 38.97 | 49.95 | | door | 61.32 | 74.05 | | table | 70.01 | 81.84 | | mountain | 59.44 | 78.92 | | plant | 55.47 | 72.96 | | curtain | 76.37 | 90.69 | | chair | 64.36 | 76.81 | | car | 86.15 | 93.37 | | water | 65.26 | 79.64 | | painting | 77.0 | 88.94 | | sofa | 80.84 | 88.31 | | shelf | 47.06 | 60.16 | | house | 52.07 | 66.08 | | sea | 72.97 | 81.84 | | mirror | 75.96 | 87.77 | | rug | 70.39 | 79.73 | | field | 31.15 | 58.69 | | armchair | 61.76 | 84.61 | | seat | 68.69 | 87.31 | | fence | 51.0 | 64.65 | | desk | 58.12 | 76.63 | | rock | 48.97 | 66.12 | | wardrobe | 50.63 | 70.75 | | lamp | 71.15 | 81.51 | | bathtub | 87.15 | 89.86 | | railing | 43.33 | 59.51 | | cushion | 69.64 | 79.16 | | base | 44.89 | 65.9 | | box | 39.96 | 48.21 | | column | 57.14 | 69.45 | | signboard | 39.59 | 53.39 | | chest of drawers | 45.96 | 65.25 | | counter | 49.8 | 56.83 | | sand | 57.93 | 86.3 | | sink | 78.01 | 84.48 | | skyscraper | 43.84 | 46.39 | | fireplace | 75.0 | 93.97 | | refrigerator | 82.89 | 90.7 | | grandstand | 50.61 | 83.4 | | path | 28.67 | 47.13 | | stairs | 29.67 | 36.27 | | runway | 68.12 | 88.39 | | case | 63.9 | 79.3 | | pool table | 93.04 | 98.51 | | pillow | 69.27 | 86.08 | | screen door | 83.91 | 89.45 | | stairway | 44.98 | 60.34 | | river | 12.51 | 24.16 | | bridge | 64.28 | 75.48 | | bookcase | 42.06 | 58.2 | | blind | 48.0 | 57.26 | | coffee table | 67.38 | 84.75 | | toilet | 90.61 | 95.06 | | flower | 38.11 | 51.85 | | book | 52.47 | 75.25 | | hill | 6.16 | 9.75 | | bench | 63.9 | 71.25 | | countertop | 62.87 | 83.87 | | stove | 86.99 | 93.39 | | palm | 53.74 | 86.15 | | kitchen island | 50.2 | 72.95 | | computer | 78.46 | 90.1 | | swivel chair | 45.17 | 71.33 | | boat | 79.2 | 90.03 | | bar | 57.05 | 91.49 | | arcade machine | 80.39 | 85.0 | | hovel | 20.62 | 22.15 | | bus | 93.09 | 96.63 | | towel | 77.35 | 86.54 | | light | 53.0 | 65.14 | | truck | 48.64 | 63.71 | | tower | 13.32 | 17.48 | | chandelier | 72.43 | 84.96 | | awning | 34.25 | 43.77 | | streetlight | 27.11 | 32.41 | | booth | 46.46 | 68.29 | | television receiver | 79.91 | 90.3 | | airplane | 77.14 | 82.41 | | dirt track | 6.23 | 32.6 | | apparel | 60.16 | 84.72 | | pole | 23.52 | 31.64 | | land | 4.4 | 5.69 | | bannister | 13.61 | 15.76 | | escalator | 65.28 | 85.07 | | ottoman | 53.27 | 71.43 | | bottle | 43.68 | 70.68 | | buffet | 60.5 | 77.51 | | poster | 29.75 | 42.31 | | stage | 28.81 | 54.87 | | van | 44.85 | 64.03 | | ship | 91.94 | 97.73 | | fountain | 39.3 | 41.14 | | conveyer belt | 80.37 | 96.03 | | canopy | 50.09 | 70.8 | | washer | 88.93 | 95.18 | | plaything | 28.82 | 46.44 | | swimming pool | 52.01 | 74.88 | | stool | 49.87 | 66.03 | | barrel | 58.37 | 83.58 | | basket | 45.91 | 58.22 | | waterfall | 55.19 | 68.5 | | tent | 95.9 | 98.59 | | bag | 30.19 | 34.51 | | minibike | 74.72 | 88.96 | | cradle | 84.29 | 97.95 | | oven | 57.64 | 67.33 | | ball | 57.72 | 61.95 | | food | 64.25 | 74.19 | | step | 13.64 | 17.03 | | tank | 65.19 | 70.78 | | trade name | 24.55 | 27.25 | | microwave | 87.97 | 96.61 | | pot | 56.99 | 64.17 | | animal | 66.96 | 69.77 | | bicycle | 59.12 | 78.97 | | lake | 43.68 | 63.64 | | dishwasher | 70.72 | 82.37 | | screen | 56.42 | 77.32 | | blanket | 35.89 | 40.29 | | sculpture | 72.49 | 86.74 | | hood | 61.19 | 69.96 | | sconce | 54.55 | 61.37 | | vase | 47.12 | 65.47 | | traffic light | 33.96 | 61.98 | | tray | 25.25 | 32.33 | | ashcan | 51.32 | 66.25 | | fan | 66.34 | 82.31 | | pier | 40.01 | 44.36 | | crt screen | 12.23 | 21.95 | | plate | 61.04 | 76.98 | | monitor | 60.12 | 71.4 | | bulletin board | 55.23 | 82.1 | | shower | 15.41 | 16.22 | | radiator | 65.75 | 83.07 | | glass | 19.11 | 20.13 | | clock | 47.04 | 54.37 | | flag | 67.16 | 78.44 | +---------------------+-------+-------+ 2024-06-16 17:51:59,056 - mmseg - INFO - Summary: 2024-06-16 17:51:59,056 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.86 | 57.22 | 69.98 | +-------+-------+-------+ 2024-06-16 17:51:59,057 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 17:51:59,057 - mmseg - INFO - Iter(val) [250] aAcc: 0.8586, mIoU: 0.5722, mAcc: 0.6998, IoU.wall: 0.8172, IoU.building: 0.8427, IoU.sky: 0.9455, IoU.floor: 0.8478, IoU.tree: 0.7667, IoU.ceiling: 0.8704, IoU.road: 0.8565, IoU.bed : 0.9199, IoU.windowpane: 0.6704, IoU.grass: 0.6789, IoU.cabinet: 0.6645, IoU.sidewalk: 0.7004, IoU.person: 0.8394, IoU.earth: 0.3897, IoU.door: 0.6132, IoU.table: 0.7001, IoU.mountain: 0.5944, IoU.plant: 0.5547, IoU.curtain: 0.7637, IoU.chair: 0.6436, IoU.car: 0.8615, IoU.water: 0.6526, IoU.painting: 0.7700, IoU.sofa: 0.8084, IoU.shelf: 0.4706, IoU.house: 0.5207, IoU.sea: 0.7297, IoU.mirror: 0.7596, IoU.rug: 0.7039, IoU.field: 0.3115, IoU.armchair: 0.6176, IoU.seat: 0.6869, IoU.fence: 0.5100, IoU.desk: 0.5812, IoU.rock: 0.4897, IoU.wardrobe: 0.5063, IoU.lamp: 0.7115, IoU.bathtub: 0.8715, IoU.railing: 0.4333, IoU.cushion: 0.6964, IoU.base: 0.4489, IoU.box: 0.3996, IoU.column: 0.5714, IoU.signboard: 0.3959, IoU.chest of drawers: 0.4596, IoU.counter: 0.4980, IoU.sand: 0.5793, IoU.sink: 0.7801, IoU.skyscraper: 0.4384, IoU.fireplace: 0.7500, IoU.refrigerator: 0.8289, IoU.grandstand: 0.5061, IoU.path: 0.2867, IoU.stairs: 0.2967, IoU.runway: 0.6812, IoU.case: 0.6390, IoU.pool table: 0.9304, IoU.pillow: 0.6927, IoU.screen door: 0.8391, IoU.stairway: 0.4498, IoU.river: 0.1251, IoU.bridge: 0.6428, IoU.bookcase: 0.4206, IoU.blind: 0.4800, IoU.coffee table: 0.6738, IoU.toilet: 0.9061, IoU.flower: 0.3811, IoU.book: 0.5247, IoU.hill: 0.0616, IoU.bench: 0.6390, IoU.countertop: 0.6287, IoU.stove: 0.8699, IoU.palm: 0.5374, IoU.kitchen island: 0.5020, IoU.computer: 0.7846, IoU.swivel chair: 0.4517, IoU.boat: 0.7920, IoU.bar: 0.5705, IoU.arcade machine: 0.8039, IoU.hovel: 0.2062, IoU.bus: 0.9309, IoU.towel: 0.7735, IoU.light: 0.5300, IoU.truck: 0.4864, IoU.tower: 0.1332, IoU.chandelier: 0.7243, IoU.awning: 0.3425, IoU.streetlight: 0.2711, IoU.booth: 0.4646, IoU.television receiver: 0.7991, IoU.airplane: 0.7714, IoU.dirt track: 0.0623, IoU.apparel: 0.6016, IoU.pole: 0.2352, IoU.land: 0.0440, IoU.bannister: 0.1361, IoU.escalator: 0.6528, IoU.ottoman: 0.5327, IoU.bottle: 0.4368, IoU.buffet: 0.6050, IoU.poster: 0.2975, IoU.stage: 0.2881, IoU.van: 0.4485, IoU.ship: 0.9194, IoU.fountain: 0.3930, IoU.conveyer belt: 0.8037, IoU.canopy: 0.5009, IoU.washer: 0.8893, IoU.plaything: 0.2882, IoU.swimming pool: 0.5201, IoU.stool: 0.4987, IoU.barrel: 0.5837, IoU.basket: 0.4591, IoU.waterfall: 0.5519, IoU.tent: 0.9590, IoU.bag: 0.3019, IoU.minibike: 0.7472, IoU.cradle: 0.8429, IoU.oven: 0.5764, IoU.ball: 0.5772, IoU.food: 0.6425, IoU.step: 0.1364, IoU.tank: 0.6519, IoU.trade name: 0.2455, IoU.microwave: 0.8797, IoU.pot: 0.5699, IoU.animal: 0.6696, IoU.bicycle: 0.5912, IoU.lake: 0.4368, IoU.dishwasher: 0.7072, IoU.screen: 0.5642, IoU.blanket: 0.3589, IoU.sculpture: 0.7249, IoU.hood: 0.6119, IoU.sconce: 0.5455, IoU.vase: 0.4712, IoU.traffic light: 0.3396, IoU.tray: 0.2525, IoU.ashcan: 0.5132, IoU.fan: 0.6634, IoU.pier: 0.4001, IoU.crt screen: 0.1223, IoU.plate: 0.6104, IoU.monitor: 0.6012, IoU.bulletin board: 0.5523, IoU.shower: 0.1541, IoU.radiator: 0.6575, IoU.glass: 0.1911, IoU.clock: 0.4704, IoU.flag: 0.6716, Acc.wall: 0.8934, Acc.building: 0.9463, Acc.sky: 0.9754, Acc.floor: 0.9132, Acc.tree: 0.8646, Acc.ceiling: 0.9347, Acc.road: 0.9098, Acc.bed : 0.9623, Acc.windowpane: 0.8111, Acc.grass: 0.8182, Acc.cabinet: 0.7673, Acc.sidewalk: 0.8215, Acc.person: 0.9307, Acc.earth: 0.4995, Acc.door: 0.7405, Acc.table: 0.8184, Acc.mountain: 0.7892, Acc.plant: 0.7296, Acc.curtain: 0.9069, Acc.chair: 0.7681, Acc.car: 0.9337, Acc.water: 0.7964, Acc.painting: 0.8894, Acc.sofa: 0.8831, Acc.shelf: 0.6016, Acc.house: 0.6608, Acc.sea: 0.8184, Acc.mirror: 0.8777, Acc.rug: 0.7973, Acc.field: 0.5869, Acc.armchair: 0.8461, Acc.seat: 0.8731, Acc.fence: 0.6465, Acc.desk: 0.7663, Acc.rock: 0.6612, Acc.wardrobe: 0.7075, Acc.lamp: 0.8151, Acc.bathtub: 0.8986, Acc.railing: 0.5951, Acc.cushion: 0.7916, Acc.base: 0.6590, Acc.box: 0.4821, Acc.column: 0.6945, Acc.signboard: 0.5339, Acc.chest of drawers: 0.6525, Acc.counter: 0.5683, Acc.sand: 0.8630, Acc.sink: 0.8448, Acc.skyscraper: 0.4639, Acc.fireplace: 0.9397, Acc.refrigerator: 0.9070, Acc.grandstand: 0.8340, Acc.path: 0.4713, Acc.stairs: 0.3627, Acc.runway: 0.8839, Acc.case: 0.7930, Acc.pool table: 0.9851, Acc.pillow: 0.8608, Acc.screen door: 0.8945, Acc.stairway: 0.6034, Acc.river: 0.2416, Acc.bridge: 0.7548, Acc.bookcase: 0.5820, Acc.blind: 0.5726, Acc.coffee table: 0.8475, Acc.toilet: 0.9506, Acc.flower: 0.5185, Acc.book: 0.7525, Acc.hill: 0.0975, Acc.bench: 0.7125, Acc.countertop: 0.8387, Acc.stove: 0.9339, Acc.palm: 0.8615, Acc.kitchen island: 0.7295, Acc.computer: 0.9010, Acc.swivel chair: 0.7133, Acc.boat: 0.9003, Acc.bar: 0.9149, Acc.arcade machine: 0.8500, Acc.hovel: 0.2215, Acc.bus: 0.9663, Acc.towel: 0.8654, Acc.light: 0.6514, Acc.truck: 0.6371, Acc.tower: 0.1748, Acc.chandelier: 0.8496, Acc.awning: 0.4377, Acc.streetlight: 0.3241, Acc.booth: 0.6829, Acc.television receiver: 0.9030, Acc.airplane: 0.8241, Acc.dirt track: 0.3260, Acc.apparel: 0.8472, Acc.pole: 0.3164, Acc.land: 0.0569, Acc.bannister: 0.1576, Acc.escalator: 0.8507, Acc.ottoman: 0.7143, Acc.bottle: 0.7068, Acc.buffet: 0.7751, Acc.poster: 0.4231, Acc.stage: 0.5487, Acc.van: 0.6403, Acc.ship: 0.9773, Acc.fountain: 0.4114, Acc.conveyer belt: 0.9603, Acc.canopy: 0.7080, Acc.washer: 0.9518, Acc.plaything: 0.4644, Acc.swimming pool: 0.7488, Acc.stool: 0.6603, Acc.barrel: 0.8358, Acc.basket: 0.5822, Acc.waterfall: 0.6850, Acc.tent: 0.9859, Acc.bag: 0.3451, Acc.minibike: 0.8896, Acc.cradle: 0.9795, Acc.oven: 0.6733, Acc.ball: 0.6195, Acc.food: 0.7419, Acc.step: 0.1703, Acc.tank: 0.7078, Acc.trade name: 0.2725, Acc.microwave: 0.9661, Acc.pot: 0.6417, Acc.animal: 0.6977, Acc.bicycle: 0.7897, Acc.lake: 0.6364, Acc.dishwasher: 0.8237, Acc.screen: 0.7732, Acc.blanket: 0.4029, Acc.sculpture: 0.8674, Acc.hood: 0.6996, Acc.sconce: 0.6137, Acc.vase: 0.6547, Acc.traffic light: 0.6198, Acc.tray: 0.3233, Acc.ashcan: 0.6625, Acc.fan: 0.8231, Acc.pier: 0.4436, Acc.crt screen: 0.2195, Acc.plate: 0.7698, Acc.monitor: 0.7140, Acc.bulletin board: 0.8210, Acc.shower: 0.1622, Acc.radiator: 0.8307, Acc.glass: 0.2013, Acc.clock: 0.5437, Acc.flag: 0.7844 2024-06-16 17:53:19,870 - mmseg - INFO - Iter [44050/80000] lr: 1.456e-06, eta: 17:19:50, time: 3.908, data_time: 2.307, memory: 65790, decode.loss_ce: 0.1845, decode.acc_seg: 92.1114, aux.loss_ce: 0.0770, aux.acc_seg: 91.8878, loss: 0.2615 2024-06-16 17:54:40,397 - mmseg - INFO - Iter [44100/80000] lr: 1.454e-06, eta: 17:18:18, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1795, decode.acc_seg: 92.2009, aux.loss_ce: 0.0739, aux.acc_seg: 91.9758, loss: 0.2534 2024-06-16 17:56:00,857 - mmseg - INFO - Iter [44150/80000] lr: 1.452e-06, eta: 17:16:46, time: 1.609, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1850, decode.acc_seg: 92.1498, aux.loss_ce: 0.0768, aux.acc_seg: 91.9290, loss: 0.2618 2024-06-16 17:57:21,366 - mmseg - INFO - Iter [44200/80000] lr: 1.450e-06, eta: 17:15:14, time: 1.610, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1728, decode.acc_seg: 92.4109, aux.loss_ce: 0.0723, aux.acc_seg: 92.1609, loss: 0.2451 2024-06-16 17:58:44,805 - mmseg - INFO - Iter [44250/80000] lr: 1.448e-06, eta: 17:13:45, time: 1.669, data_time: 0.065, memory: 65790, decode.loss_ce: 0.1705, decode.acc_seg: 92.4498, aux.loss_ce: 0.0711, aux.acc_seg: 92.2050, loss: 0.2417 2024-06-16 18:00:05,236 - mmseg - INFO - Iter [44300/80000] lr: 1.446e-06, eta: 17:12:13, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1738, decode.acc_seg: 92.1745, aux.loss_ce: 0.0723, aux.acc_seg: 91.9274, loss: 0.2460 2024-06-16 18:01:25,624 - mmseg - INFO - Iter [44350/80000] lr: 1.444e-06, eta: 17:10:41, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1808, decode.acc_seg: 92.1848, aux.loss_ce: 0.0755, aux.acc_seg: 91.9579, loss: 0.2563 2024-06-16 18:02:46,096 - mmseg - INFO - Iter [44400/80000] lr: 1.442e-06, eta: 17:09:10, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1702, decode.acc_seg: 92.5396, aux.loss_ce: 0.0720, aux.acc_seg: 92.1338, loss: 0.2422 2024-06-16 18:04:06,521 - mmseg - INFO - Iter [44450/80000] lr: 1.440e-06, eta: 17:07:38, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1746, decode.acc_seg: 92.0668, aux.loss_ce: 0.0727, aux.acc_seg: 91.9296, loss: 0.2472 2024-06-16 18:05:26,957 - mmseg - INFO - Iter [44500/80000] lr: 1.438e-06, eta: 17:06:06, time: 1.609, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1810, decode.acc_seg: 92.0055, aux.loss_ce: 0.0757, aux.acc_seg: 91.7190, loss: 0.2568 2024-06-16 18:06:47,578 - mmseg - INFO - Iter [44550/80000] lr: 1.436e-06, eta: 17:04:34, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1748, decode.acc_seg: 92.1948, aux.loss_ce: 0.0734, aux.acc_seg: 91.9155, loss: 0.2483 2024-06-16 18:08:07,985 - mmseg - INFO - Iter [44600/80000] lr: 1.434e-06, eta: 17:03:03, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1642, decode.acc_seg: 92.6001, aux.loss_ce: 0.0688, aux.acc_seg: 92.3062, loss: 0.2330 2024-06-16 18:09:28,476 - mmseg - INFO - Iter [44650/80000] lr: 1.432e-06, eta: 17:01:31, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1742, decode.acc_seg: 92.2691, aux.loss_ce: 0.0725, aux.acc_seg: 92.0789, loss: 0.2466 2024-06-16 18:10:49,043 - mmseg - INFO - Iter [44700/80000] lr: 1.430e-06, eta: 17:00:00, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1836, decode.acc_seg: 91.8715, aux.loss_ce: 0.0768, aux.acc_seg: 91.6534, loss: 0.2603 2024-06-16 18:12:09,445 - mmseg - INFO - Iter [44750/80000] lr: 1.428e-06, eta: 16:58:28, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1747, decode.acc_seg: 92.2986, aux.loss_ce: 0.0723, aux.acc_seg: 92.1031, loss: 0.2469 2024-06-16 18:13:29,904 - mmseg - INFO - Iter [44800/80000] lr: 1.426e-06, eta: 16:56:56, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1691, decode.acc_seg: 92.4812, aux.loss_ce: 0.0707, aux.acc_seg: 92.1990, loss: 0.2398 2024-06-16 18:14:50,443 - mmseg - INFO - Iter [44850/80000] lr: 1.424e-06, eta: 16:55:25, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1805, decode.acc_seg: 92.1139, aux.loss_ce: 0.0743, aux.acc_seg: 91.8950, loss: 0.2547 2024-06-16 18:16:10,943 - mmseg - INFO - Iter [44900/80000] lr: 1.421e-06, eta: 16:53:53, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1650, decode.acc_seg: 92.6464, aux.loss_ce: 0.0692, aux.acc_seg: 92.4390, loss: 0.2343 2024-06-16 18:17:31,588 - mmseg - INFO - Iter [44950/80000] lr: 1.419e-06, eta: 16:52:22, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1700, decode.acc_seg: 92.6081, aux.loss_ce: 0.0715, aux.acc_seg: 92.3805, loss: 0.2415 2024-06-16 18:18:52,138 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 18:18:52,138 - mmseg - INFO - Iter [45000/80000] lr: 1.417e-06, eta: 16:50:51, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1776, decode.acc_seg: 92.2250, aux.loss_ce: 0.0741, aux.acc_seg: 92.0026, loss: 0.2517 2024-06-16 18:20:15,223 - mmseg - INFO - per class results: 2024-06-16 18:20:15,229 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 81.71 | 89.17 | | building | 84.75 | 93.6 | | sky | 94.23 | 97.8 | | floor | 84.73 | 91.69 | | tree | 76.23 | 85.93 | | ceiling | 86.48 | 93.9 | | road | 86.46 | 90.84 | | bed | 91.75 | 96.98 | | windowpane | 66.33 | 80.28 | | grass | 65.75 | 78.3 | | cabinet | 67.05 | 76.87 | | sidewalk | 70.8 | 83.58 | | person | 84.09 | 93.79 | | earth | 39.48 | 54.15 | | door | 60.2 | 79.92 | | table | 69.76 | 83.09 | | mountain | 62.57 | 72.16 | | plant | 55.15 | 69.81 | | curtain | 77.98 | 87.63 | | chair | 63.93 | 75.67 | | car | 86.66 | 93.98 | | water | 66.23 | 79.43 | | painting | 79.03 | 89.52 | | sofa | 83.18 | 91.18 | | shelf | 48.64 | 63.76 | | house | 52.26 | 64.0 | | sea | 74.48 | 82.05 | | mirror | 77.4 | 89.78 | | rug | 70.72 | 77.21 | | field | 30.9 | 58.07 | | armchair | 63.04 | 80.94 | | seat | 65.52 | 88.19 | | fence | 52.03 | 64.96 | | desk | 58.44 | 77.14 | | rock | 56.94 | 87.78 | | wardrobe | 52.56 | 75.92 | | lamp | 72.13 | 81.75 | | bathtub | 85.57 | 88.86 | | railing | 43.61 | 59.47 | | cushion | 66.83 | 78.97 | | base | 44.55 | 61.05 | | box | 40.04 | 48.42 | | column | 56.5 | 68.61 | | signboard | 39.84 | 51.12 | | chest of drawers | 52.82 | 80.42 | | counter | 42.35 | 50.46 | | sand | 56.31 | 84.7 | | sink | 78.0 | 83.8 | | skyscraper | 46.49 | 64.18 | | fireplace | 72.25 | 95.09 | | refrigerator | 82.02 | 95.99 | | grandstand | 50.05 | 87.39 | | path | 30.83 | 41.96 | | stairs | 36.27 | 44.81 | | runway | 73.54 | 96.4 | | case | 60.68 | 91.14 | | pool table | 93.71 | 98.19 | | pillow | 63.39 | 73.23 | | screen door | 74.11 | 79.73 | | stairway | 42.43 | 49.33 | | river | 14.68 | 29.99 | | bridge | 71.18 | 87.66 | | bookcase | 38.97 | 53.04 | | blind | 41.84 | 44.43 | | coffee table | 65.07 | 86.67 | | toilet | 89.62 | 94.77 | | flower | 39.92 | 52.43 | | book | 51.7 | 80.54 | | hill | 8.0 | 12.12 | | bench | 61.95 | 69.5 | | countertop | 64.57 | 82.53 | | stove | 85.27 | 92.89 | | palm | 51.79 | 77.25 | | kitchen island | 52.35 | 83.21 | | computer | 78.1 | 90.84 | | swivel chair | 47.08 | 84.74 | | boat | 77.11 | 90.75 | | bar | 60.33 | 84.45 | | arcade machine | 76.89 | 80.9 | | hovel | 33.32 | 39.67 | | bus | 89.91 | 96.81 | | towel | 77.87 | 86.69 | | light | 50.83 | 56.29 | | truck | 48.71 | 61.96 | | tower | 33.96 | 61.42 | | chandelier | 71.93 | 87.37 | | awning | 36.08 | 45.07 | | streetlight | 28.51 | 35.81 | | booth | 52.07 | 69.51 | | television receiver | 79.3 | 88.46 | | airplane | 72.41 | 78.73 | | dirt track | 5.31 | 24.01 | | apparel | 55.85 | 79.05 | | pole | 25.13 | 35.39 | | land | 2.9 | 4.74 | | bannister | 16.58 | 20.48 | | escalator | 64.2 | 86.75 | | ottoman | 55.0 | 75.15 | | bottle | 42.36 | 66.18 | | buffet | 55.75 | 61.75 | | poster | 30.09 | 39.97 | | stage | 27.31 | 68.54 | | van | 48.55 | 70.16 | | ship | 91.82 | 99.31 | | fountain | 35.37 | 36.17 | | conveyer belt | 79.04 | 96.27 | | canopy | 55.15 | 76.19 | | washer | 88.61 | 94.84 | | plaything | 32.26 | 48.36 | | swimming pool | 51.65 | 79.39 | | stool | 52.65 | 68.05 | | barrel | 50.99 | 68.26 | | basket | 42.6 | 57.01 | | waterfall | 62.78 | 75.42 | | tent | 94.61 | 98.49 | | bag | 24.48 | 27.45 | | minibike | 73.38 | 88.96 | | cradle | 87.26 | 96.1 | | oven | 54.32 | 64.53 | | ball | 63.02 | 77.12 | | food | 57.05 | 67.4 | | step | 12.24 | 17.97 | | tank | 60.3 | 68.7 | | trade name | 34.22 | 41.81 | | microwave | 88.9 | 95.61 | | pot | 59.66 | 70.58 | | animal | 65.65 | 67.96 | | bicycle | 62.85 | 82.6 | | lake | 45.93 | 64.56 | | dishwasher | 72.69 | 78.56 | | screen | 56.86 | 89.93 | | blanket | 34.71 | 39.43 | | sculpture | 69.99 | 86.68 | | hood | 64.31 | 75.84 | | sconce | 58.18 | 67.57 | | vase | 50.06 | 61.1 | | traffic light | 37.59 | 59.15 | | tray | 16.51 | 18.31 | | ashcan | 53.14 | 68.49 | | fan | 63.43 | 79.19 | | pier | 39.12 | 45.79 | | crt screen | 1.96 | 4.12 | | plate | 61.96 | 78.8 | | monitor | 34.24 | 37.88 | | bulletin board | 55.95 | 81.19 | | shower | 10.87 | 21.93 | | radiator | 65.42 | 78.49 | | glass | 20.47 | 21.89 | | clock | 47.49 | 53.54 | | flag | 69.23 | 73.99 | +---------------------+-------+-------+ 2024-06-16 18:20:15,229 - mmseg - INFO - Summary: 2024-06-16 18:20:15,229 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.89 | 57.22 | 70.43 | +-------+-------+-------+ 2024-06-16 18:20:15,230 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 18:20:15,230 - mmseg - INFO - Iter(val) [250] aAcc: 0.8589, mIoU: 0.5722, mAcc: 0.7043, IoU.wall: 0.8171, IoU.building: 0.8475, IoU.sky: 0.9423, IoU.floor: 0.8473, IoU.tree: 0.7623, IoU.ceiling: 0.8648, IoU.road: 0.8646, IoU.bed : 0.9175, IoU.windowpane: 0.6633, IoU.grass: 0.6575, IoU.cabinet: 0.6705, IoU.sidewalk: 0.7080, IoU.person: 0.8409, IoU.earth: 0.3948, IoU.door: 0.6020, IoU.table: 0.6976, IoU.mountain: 0.6257, IoU.plant: 0.5515, IoU.curtain: 0.7798, IoU.chair: 0.6393, IoU.car: 0.8666, IoU.water: 0.6623, IoU.painting: 0.7903, IoU.sofa: 0.8318, IoU.shelf: 0.4864, IoU.house: 0.5226, IoU.sea: 0.7448, IoU.mirror: 0.7740, IoU.rug: 0.7072, IoU.field: 0.3090, IoU.armchair: 0.6304, IoU.seat: 0.6552, IoU.fence: 0.5203, IoU.desk: 0.5844, IoU.rock: 0.5694, IoU.wardrobe: 0.5256, IoU.lamp: 0.7213, IoU.bathtub: 0.8557, IoU.railing: 0.4361, IoU.cushion: 0.6683, IoU.base: 0.4455, IoU.box: 0.4004, IoU.column: 0.5650, IoU.signboard: 0.3984, IoU.chest of drawers: 0.5282, IoU.counter: 0.4235, IoU.sand: 0.5631, IoU.sink: 0.7800, IoU.skyscraper: 0.4649, IoU.fireplace: 0.7225, IoU.refrigerator: 0.8202, IoU.grandstand: 0.5005, IoU.path: 0.3083, IoU.stairs: 0.3627, IoU.runway: 0.7354, IoU.case: 0.6068, IoU.pool table: 0.9371, IoU.pillow: 0.6339, IoU.screen door: 0.7411, IoU.stairway: 0.4243, IoU.river: 0.1468, IoU.bridge: 0.7118, IoU.bookcase: 0.3897, IoU.blind: 0.4184, IoU.coffee table: 0.6507, IoU.toilet: 0.8962, IoU.flower: 0.3992, IoU.book: 0.5170, IoU.hill: 0.0800, IoU.bench: 0.6195, IoU.countertop: 0.6457, IoU.stove: 0.8527, IoU.palm: 0.5179, IoU.kitchen island: 0.5235, IoU.computer: 0.7810, IoU.swivel chair: 0.4708, IoU.boat: 0.7711, IoU.bar: 0.6033, IoU.arcade machine: 0.7689, IoU.hovel: 0.3332, IoU.bus: 0.8991, IoU.towel: 0.7787, IoU.light: 0.5083, IoU.truck: 0.4871, IoU.tower: 0.3396, IoU.chandelier: 0.7193, IoU.awning: 0.3608, IoU.streetlight: 0.2851, IoU.booth: 0.5207, IoU.television receiver: 0.7930, IoU.airplane: 0.7241, IoU.dirt track: 0.0531, IoU.apparel: 0.5585, IoU.pole: 0.2513, IoU.land: 0.0290, IoU.bannister: 0.1658, IoU.escalator: 0.6420, IoU.ottoman: 0.5500, IoU.bottle: 0.4236, IoU.buffet: 0.5575, IoU.poster: 0.3009, IoU.stage: 0.2731, IoU.van: 0.4855, IoU.ship: 0.9182, IoU.fountain: 0.3537, IoU.conveyer belt: 0.7904, IoU.canopy: 0.5515, IoU.washer: 0.8861, IoU.plaything: 0.3226, IoU.swimming pool: 0.5165, IoU.stool: 0.5265, IoU.barrel: 0.5099, IoU.basket: 0.4260, IoU.waterfall: 0.6278, IoU.tent: 0.9461, IoU.bag: 0.2448, IoU.minibike: 0.7338, IoU.cradle: 0.8726, IoU.oven: 0.5432, IoU.ball: 0.6302, IoU.food: 0.5705, IoU.step: 0.1224, IoU.tank: 0.6030, IoU.trade name: 0.3422, IoU.microwave: 0.8890, IoU.pot: 0.5966, IoU.animal: 0.6565, IoU.bicycle: 0.6285, IoU.lake: 0.4593, IoU.dishwasher: 0.7269, IoU.screen: 0.5686, IoU.blanket: 0.3471, IoU.sculpture: 0.6999, IoU.hood: 0.6431, IoU.sconce: 0.5818, IoU.vase: 0.5006, IoU.traffic light: 0.3759, IoU.tray: 0.1651, IoU.ashcan: 0.5314, IoU.fan: 0.6343, IoU.pier: 0.3912, IoU.crt screen: 0.0196, IoU.plate: 0.6196, IoU.monitor: 0.3424, IoU.bulletin board: 0.5595, IoU.shower: 0.1087, IoU.radiator: 0.6542, IoU.glass: 0.2047, IoU.clock: 0.4749, IoU.flag: 0.6923, Acc.wall: 0.8917, Acc.building: 0.9360, Acc.sky: 0.9780, Acc.floor: 0.9169, Acc.tree: 0.8593, Acc.ceiling: 0.9390, Acc.road: 0.9084, Acc.bed : 0.9698, Acc.windowpane: 0.8028, Acc.grass: 0.7830, Acc.cabinet: 0.7687, Acc.sidewalk: 0.8358, Acc.person: 0.9379, Acc.earth: 0.5415, Acc.door: 0.7992, Acc.table: 0.8309, Acc.mountain: 0.7216, Acc.plant: 0.6981, Acc.curtain: 0.8763, Acc.chair: 0.7567, Acc.car: 0.9398, Acc.water: 0.7943, Acc.painting: 0.8952, Acc.sofa: 0.9118, Acc.shelf: 0.6376, Acc.house: 0.6400, Acc.sea: 0.8205, Acc.mirror: 0.8978, Acc.rug: 0.7721, Acc.field: 0.5807, Acc.armchair: 0.8094, Acc.seat: 0.8819, Acc.fence: 0.6496, Acc.desk: 0.7714, Acc.rock: 0.8778, Acc.wardrobe: 0.7592, Acc.lamp: 0.8175, Acc.bathtub: 0.8886, Acc.railing: 0.5947, Acc.cushion: 0.7897, Acc.base: 0.6105, Acc.box: 0.4842, Acc.column: 0.6861, Acc.signboard: 0.5112, Acc.chest of drawers: 0.8042, Acc.counter: 0.5046, Acc.sand: 0.8470, Acc.sink: 0.8380, Acc.skyscraper: 0.6418, Acc.fireplace: 0.9509, Acc.refrigerator: 0.9599, Acc.grandstand: 0.8739, Acc.path: 0.4196, Acc.stairs: 0.4481, Acc.runway: 0.9640, Acc.case: 0.9114, Acc.pool table: 0.9819, Acc.pillow: 0.7323, Acc.screen door: 0.7973, Acc.stairway: 0.4933, Acc.river: 0.2999, Acc.bridge: 0.8766, Acc.bookcase: 0.5304, Acc.blind: 0.4443, Acc.coffee table: 0.8667, Acc.toilet: 0.9477, Acc.flower: 0.5243, Acc.book: 0.8054, Acc.hill: 0.1212, Acc.bench: 0.6950, Acc.countertop: 0.8253, Acc.stove: 0.9289, Acc.palm: 0.7725, Acc.kitchen island: 0.8321, Acc.computer: 0.9084, Acc.swivel chair: 0.8474, Acc.boat: 0.9075, Acc.bar: 0.8445, Acc.arcade machine: 0.8090, Acc.hovel: 0.3967, Acc.bus: 0.9681, Acc.towel: 0.8669, Acc.light: 0.5629, Acc.truck: 0.6196, Acc.tower: 0.6142, Acc.chandelier: 0.8737, Acc.awning: 0.4507, Acc.streetlight: 0.3581, Acc.booth: 0.6951, Acc.television receiver: 0.8846, Acc.airplane: 0.7873, Acc.dirt track: 0.2401, Acc.apparel: 0.7905, Acc.pole: 0.3539, Acc.land: 0.0474, Acc.bannister: 0.2048, Acc.escalator: 0.8675, Acc.ottoman: 0.7515, Acc.bottle: 0.6618, Acc.buffet: 0.6175, Acc.poster: 0.3997, Acc.stage: 0.6854, Acc.van: 0.7016, Acc.ship: 0.9931, Acc.fountain: 0.3617, Acc.conveyer belt: 0.9627, Acc.canopy: 0.7619, Acc.washer: 0.9484, Acc.plaything: 0.4836, Acc.swimming pool: 0.7939, Acc.stool: 0.6805, Acc.barrel: 0.6826, Acc.basket: 0.5701, Acc.waterfall: 0.7542, Acc.tent: 0.9849, Acc.bag: 0.2745, Acc.minibike: 0.8896, Acc.cradle: 0.9610, Acc.oven: 0.6453, Acc.ball: 0.7712, Acc.food: 0.6740, Acc.step: 0.1797, Acc.tank: 0.6870, Acc.trade name: 0.4181, Acc.microwave: 0.9561, Acc.pot: 0.7058, Acc.animal: 0.6796, Acc.bicycle: 0.8260, Acc.lake: 0.6456, Acc.dishwasher: 0.7856, Acc.screen: 0.8993, Acc.blanket: 0.3943, Acc.sculpture: 0.8668, Acc.hood: 0.7584, Acc.sconce: 0.6757, Acc.vase: 0.6110, Acc.traffic light: 0.5915, Acc.tray: 0.1831, Acc.ashcan: 0.6849, Acc.fan: 0.7919, Acc.pier: 0.4579, Acc.crt screen: 0.0412, Acc.plate: 0.7880, Acc.monitor: 0.3788, Acc.bulletin board: 0.8119, Acc.shower: 0.2193, Acc.radiator: 0.7849, Acc.glass: 0.2189, Acc.clock: 0.5354, Acc.flag: 0.7399 2024-06-16 18:21:36,021 - mmseg - INFO - Iter [45050/80000] lr: 1.415e-06, eta: 16:50:24, time: 3.278, data_time: 1.675, memory: 65790, decode.loss_ce: 0.1597, decode.acc_seg: 92.7161, aux.loss_ce: 0.0673, aux.acc_seg: 92.4419, loss: 0.2269 2024-06-16 18:22:56,555 - mmseg - INFO - Iter [45100/80000] lr: 1.413e-06, eta: 16:48:52, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1726, decode.acc_seg: 92.4044, aux.loss_ce: 0.0721, aux.acc_seg: 92.1326, loss: 0.2447 2024-06-16 18:24:16,931 - mmseg - INFO - Iter [45150/80000] lr: 1.411e-06, eta: 16:47:21, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1788, decode.acc_seg: 92.2354, aux.loss_ce: 0.0749, aux.acc_seg: 92.0152, loss: 0.2537 2024-06-16 18:25:37,336 - mmseg - INFO - Iter [45200/80000] lr: 1.409e-06, eta: 16:45:49, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1676, decode.acc_seg: 92.6960, aux.loss_ce: 0.0703, aux.acc_seg: 92.4997, loss: 0.2379 2024-06-16 18:26:57,701 - mmseg - INFO - Iter [45250/80000] lr: 1.407e-06, eta: 16:44:18, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1778, decode.acc_seg: 92.2044, aux.loss_ce: 0.0742, aux.acc_seg: 92.0493, loss: 0.2520 2024-06-16 18:28:18,066 - mmseg - INFO - Iter [45300/80000] lr: 1.405e-06, eta: 16:42:46, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1717, decode.acc_seg: 92.4237, aux.loss_ce: 0.0713, aux.acc_seg: 92.2595, loss: 0.2430 2024-06-16 18:29:38,431 - mmseg - INFO - Iter [45350/80000] lr: 1.403e-06, eta: 16:41:15, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1789, decode.acc_seg: 92.2238, aux.loss_ce: 0.0746, aux.acc_seg: 91.9996, loss: 0.2534 2024-06-16 18:30:58,885 - mmseg - INFO - Iter [45400/80000] lr: 1.401e-06, eta: 16:39:43, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1713, decode.acc_seg: 92.4651, aux.loss_ce: 0.0720, aux.acc_seg: 92.1317, loss: 0.2434 2024-06-16 18:32:19,473 - mmseg - INFO - Iter [45450/80000] lr: 1.399e-06, eta: 16:38:12, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1724, decode.acc_seg: 92.4625, aux.loss_ce: 0.0722, aux.acc_seg: 92.1883, loss: 0.2446 2024-06-16 18:33:42,874 - mmseg - INFO - Iter [45500/80000] lr: 1.397e-06, eta: 16:36:43, time: 1.668, data_time: 0.064, memory: 65790, decode.loss_ce: 0.1665, decode.acc_seg: 92.7165, aux.loss_ce: 0.0697, aux.acc_seg: 92.4539, loss: 0.2362 2024-06-16 18:35:03,305 - mmseg - INFO - Iter [45550/80000] lr: 1.395e-06, eta: 16:35:11, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1803, decode.acc_seg: 92.0523, aux.loss_ce: 0.0747, aux.acc_seg: 91.7709, loss: 0.2550 2024-06-16 18:36:23,739 - mmseg - INFO - Iter [45600/80000] lr: 1.393e-06, eta: 16:33:40, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1698, decode.acc_seg: 92.3639, aux.loss_ce: 0.0715, aux.acc_seg: 92.1128, loss: 0.2413 2024-06-16 18:37:44,158 - mmseg - INFO - Iter [45650/80000] lr: 1.391e-06, eta: 16:32:09, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1650, decode.acc_seg: 92.5643, aux.loss_ce: 0.0696, aux.acc_seg: 92.3452, loss: 0.2346 2024-06-16 18:39:04,573 - mmseg - INFO - Iter [45700/80000] lr: 1.389e-06, eta: 16:30:37, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1707, decode.acc_seg: 92.2745, aux.loss_ce: 0.0714, aux.acc_seg: 91.9923, loss: 0.2421 2024-06-16 18:40:24,979 - mmseg - INFO - Iter [45750/80000] lr: 1.387e-06, eta: 16:29:06, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1786, decode.acc_seg: 92.1783, aux.loss_ce: 0.0747, aux.acc_seg: 91.9955, loss: 0.2533 2024-06-16 18:41:45,631 - mmseg - INFO - Iter [45800/80000] lr: 1.385e-06, eta: 16:27:35, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1740, decode.acc_seg: 92.3644, aux.loss_ce: 0.0725, aux.acc_seg: 92.1794, loss: 0.2464 2024-06-16 18:43:06,048 - mmseg - INFO - Iter [45850/80000] lr: 1.383e-06, eta: 16:26:04, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1805, decode.acc_seg: 92.1601, aux.loss_ce: 0.0761, aux.acc_seg: 91.8014, loss: 0.2566 2024-06-16 18:44:26,447 - mmseg - INFO - Iter [45900/80000] lr: 1.381e-06, eta: 16:24:32, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1651, decode.acc_seg: 92.6853, aux.loss_ce: 0.0691, aux.acc_seg: 92.4650, loss: 0.2342 2024-06-16 18:45:46,853 - mmseg - INFO - Iter [45950/80000] lr: 1.379e-06, eta: 16:23:01, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1629, decode.acc_seg: 92.7413, aux.loss_ce: 0.0679, aux.acc_seg: 92.5425, loss: 0.2308 2024-06-16 18:47:07,289 - mmseg - INFO - Saving checkpoint at 46000 iterations 2024-06-16 18:48:18,469 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 18:48:18,469 - mmseg - INFO - Iter [46000/80000] lr: 1.377e-06, eta: 16:22:23, time: 3.032, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1751, decode.acc_seg: 92.2474, aux.loss_ce: 0.0734, aux.acc_seg: 92.0537, loss: 0.2485 2024-06-16 18:49:41,608 - mmseg - INFO - per class results: 2024-06-16 18:49:41,614 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 81.57 | 89.56 | | building | 85.04 | 94.2 | | sky | 94.41 | 97.16 | | floor | 84.47 | 91.71 | | tree | 77.35 | 89.31 | | ceiling | 86.39 | 93.76 | | road | 85.95 | 90.33 | | bed | 91.5 | 97.12 | | windowpane | 66.72 | 80.37 | | grass | 67.57 | 82.48 | | cabinet | 65.24 | 71.84 | | sidewalk | 70.86 | 85.77 | | person | 83.91 | 94.33 | | earth | 41.38 | 53.63 | | door | 59.66 | 76.34 | | table | 69.71 | 83.14 | | mountain | 61.96 | 73.1 | | plant | 55.95 | 68.17 | | curtain | 77.23 | 87.8 | | chair | 63.41 | 73.82 | | car | 86.96 | 92.99 | | water | 61.9 | 75.74 | | painting | 79.26 | 90.72 | | sofa | 82.83 | 93.57 | | shelf | 46.36 | 63.02 | | house | 52.66 | 62.56 | | sea | 74.1 | 83.25 | | mirror | 74.98 | 81.55 | | rug | 64.8 | 70.36 | | field | 33.97 | 61.46 | | armchair | 63.96 | 79.26 | | seat | 66.84 | 89.15 | | fence | 50.53 | 62.59 | | desk | 59.29 | 79.23 | | rock | 58.55 | 81.29 | | wardrobe | 51.74 | 75.68 | | lamp | 71.37 | 82.29 | | bathtub | 85.6 | 89.33 | | railing | 43.49 | 60.22 | | cushion | 68.68 | 80.77 | | base | 42.89 | 61.43 | | box | 40.75 | 58.04 | | column | 55.05 | 63.36 | | signboard | 39.59 | 54.31 | | chest of drawers | 50.08 | 87.48 | | counter | 51.04 | 59.47 | | sand | 53.19 | 88.34 | | sink | 77.75 | 83.6 | | skyscraper | 48.12 | 56.84 | | fireplace | 76.06 | 90.41 | | refrigerator | 84.96 | 93.07 | | grandstand | 58.26 | 82.65 | | path | 27.94 | 38.07 | | stairs | 31.54 | 38.04 | | runway | 67.25 | 88.35 | | case | 64.12 | 82.66 | | pool table | 93.05 | 98.6 | | pillow | 59.5 | 66.31 | | screen door | 67.26 | 76.71 | | stairway | 36.49 | 53.06 | | river | 11.78 | 28.78 | | bridge | 73.89 | 88.07 | | bookcase | 40.16 | 59.67 | | blind | 41.48 | 44.36 | | coffee table | 67.53 | 85.48 | | toilet | 89.69 | 94.69 | | flower | 41.64 | 56.12 | | book | 51.55 | 75.87 | | hill | 8.29 | 15.19 | | bench | 62.37 | 71.99 | | countertop | 61.9 | 87.4 | | stove | 85.5 | 94.28 | | palm | 54.69 | 80.54 | | kitchen island | 54.44 | 84.74 | | computer | 79.01 | 90.44 | | swivel chair | 46.55 | 84.8 | | boat | 77.86 | 91.15 | | bar | 59.72 | 86.09 | | arcade machine | 88.22 | 94.61 | | hovel | 40.86 | 48.27 | | bus | 92.09 | 96.93 | | towel | 78.76 | 88.72 | | light | 52.27 | 59.17 | | truck | 49.74 | 64.33 | | tower | 17.8 | 24.7 | | chandelier | 70.35 | 84.49 | | awning | 35.14 | 42.31 | | streetlight | 29.32 | 36.79 | | booth | 59.21 | 65.44 | | television receiver | 81.22 | 88.78 | | airplane | 79.16 | 85.11 | | dirt track | 3.4 | 21.88 | | apparel | 55.13 | 72.79 | | pole | 24.34 | 35.1 | | land | 3.5 | 5.05 | | bannister | 17.93 | 23.97 | | escalator | 60.81 | 87.72 | | ottoman | 54.58 | 74.33 | | bottle | 42.37 | 68.42 | | buffet | 60.42 | 77.52 | | poster | 32.07 | 39.44 | | stage | 23.89 | 47.65 | | van | 50.8 | 70.21 | | ship | 89.05 | 93.7 | | fountain | 37.67 | 38.46 | | conveyer belt | 81.84 | 94.67 | | canopy | 53.87 | 76.73 | | washer | 87.17 | 92.66 | | plaything | 33.91 | 43.38 | | swimming pool | 52.02 | 75.69 | | stool | 48.21 | 67.87 | | barrel | 50.65 | 69.95 | | basket | 46.29 | 60.55 | | waterfall | 57.3 | 69.1 | | tent | 91.5 | 98.41 | | bag | 24.27 | 27.66 | | minibike | 74.44 | 87.62 | | cradle | 84.07 | 98.49 | | oven | 63.77 | 75.92 | | ball | 10.79 | 10.87 | | food | 62.96 | 74.84 | | step | 13.92 | 17.6 | | tank | 64.01 | 74.37 | | trade name | 22.15 | 24.79 | | microwave | 89.13 | 96.41 | | pot | 58.59 | 69.61 | | animal | 56.37 | 57.6 | | bicycle | 60.27 | 78.88 | | lake | 45.12 | 63.68 | | dishwasher | 73.35 | 84.21 | | screen | 51.78 | 76.67 | | blanket | 34.17 | 38.6 | | sculpture | 73.41 | 87.23 | | hood | 63.92 | 75.88 | | sconce | 58.18 | 68.07 | | vase | 47.13 | 64.37 | | traffic light | 36.74 | 57.98 | | tray | 24.63 | 33.31 | | ashcan | 52.18 | 65.37 | | fan | 64.7 | 76.11 | | pier | 39.6 | 45.2 | | crt screen | 9.02 | 26.35 | | plate | 62.34 | 72.85 | | monitor | 20.75 | 23.91 | | bulletin board | 57.24 | 80.74 | | shower | 21.55 | 23.68 | | radiator | 65.08 | 76.9 | | glass | 17.93 | 18.76 | | clock | 48.62 | 61.12 | | flag | 66.02 | 79.91 | +---------------------+-------+-------+ 2024-06-16 18:49:41,614 - mmseg - INFO - Summary: 2024-06-16 18:49:41,614 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.87 | 56.88 | 69.67 | +-------+-------+-------+ 2024-06-16 18:49:41,615 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 18:49:41,615 - mmseg - INFO - Iter(val) [250] aAcc: 0.8587, mIoU: 0.5688, mAcc: 0.6967, IoU.wall: 0.8157, IoU.building: 0.8504, IoU.sky: 0.9441, IoU.floor: 0.8447, IoU.tree: 0.7735, IoU.ceiling: 0.8639, IoU.road: 0.8595, IoU.bed : 0.9150, IoU.windowpane: 0.6672, IoU.grass: 0.6757, IoU.cabinet: 0.6524, IoU.sidewalk: 0.7086, IoU.person: 0.8391, IoU.earth: 0.4138, IoU.door: 0.5966, IoU.table: 0.6971, IoU.mountain: 0.6196, IoU.plant: 0.5595, IoU.curtain: 0.7723, IoU.chair: 0.6341, IoU.car: 0.8696, IoU.water: 0.6190, IoU.painting: 0.7926, IoU.sofa: 0.8283, IoU.shelf: 0.4636, IoU.house: 0.5266, IoU.sea: 0.7410, IoU.mirror: 0.7498, IoU.rug: 0.6480, IoU.field: 0.3397, IoU.armchair: 0.6396, IoU.seat: 0.6684, IoU.fence: 0.5053, IoU.desk: 0.5929, IoU.rock: 0.5855, IoU.wardrobe: 0.5174, IoU.lamp: 0.7137, IoU.bathtub: 0.8560, IoU.railing: 0.4349, IoU.cushion: 0.6868, IoU.base: 0.4289, IoU.box: 0.4075, IoU.column: 0.5505, IoU.signboard: 0.3959, IoU.chest of drawers: 0.5008, IoU.counter: 0.5104, IoU.sand: 0.5319, IoU.sink: 0.7775, IoU.skyscraper: 0.4812, IoU.fireplace: 0.7606, IoU.refrigerator: 0.8496, IoU.grandstand: 0.5826, IoU.path: 0.2794, IoU.stairs: 0.3154, IoU.runway: 0.6725, IoU.case: 0.6412, IoU.pool table: 0.9305, IoU.pillow: 0.5950, IoU.screen door: 0.6726, IoU.stairway: 0.3649, IoU.river: 0.1178, IoU.bridge: 0.7389, IoU.bookcase: 0.4016, IoU.blind: 0.4148, IoU.coffee table: 0.6753, IoU.toilet: 0.8969, IoU.flower: 0.4164, IoU.book: 0.5155, IoU.hill: 0.0829, IoU.bench: 0.6237, IoU.countertop: 0.6190, IoU.stove: 0.8550, IoU.palm: 0.5469, IoU.kitchen island: 0.5444, IoU.computer: 0.7901, IoU.swivel chair: 0.4655, IoU.boat: 0.7786, IoU.bar: 0.5972, IoU.arcade machine: 0.8822, IoU.hovel: 0.4086, IoU.bus: 0.9209, IoU.towel: 0.7876, IoU.light: 0.5227, IoU.truck: 0.4974, IoU.tower: 0.1780, IoU.chandelier: 0.7035, IoU.awning: 0.3514, IoU.streetlight: 0.2932, IoU.booth: 0.5921, IoU.television receiver: 0.8122, IoU.airplane: 0.7916, IoU.dirt track: 0.0340, IoU.apparel: 0.5513, IoU.pole: 0.2434, IoU.land: 0.0350, IoU.bannister: 0.1793, IoU.escalator: 0.6081, IoU.ottoman: 0.5458, IoU.bottle: 0.4237, IoU.buffet: 0.6042, IoU.poster: 0.3207, IoU.stage: 0.2389, IoU.van: 0.5080, IoU.ship: 0.8905, IoU.fountain: 0.3767, IoU.conveyer belt: 0.8184, IoU.canopy: 0.5387, IoU.washer: 0.8717, IoU.plaything: 0.3391, IoU.swimming pool: 0.5202, IoU.stool: 0.4821, IoU.barrel: 0.5065, IoU.basket: 0.4629, IoU.waterfall: 0.5730, IoU.tent: 0.9150, IoU.bag: 0.2427, IoU.minibike: 0.7444, IoU.cradle: 0.8407, IoU.oven: 0.6377, IoU.ball: 0.1079, IoU.food: 0.6296, IoU.step: 0.1392, IoU.tank: 0.6401, IoU.trade name: 0.2215, IoU.microwave: 0.8913, IoU.pot: 0.5859, IoU.animal: 0.5637, IoU.bicycle: 0.6027, IoU.lake: 0.4512, IoU.dishwasher: 0.7335, IoU.screen: 0.5178, IoU.blanket: 0.3417, IoU.sculpture: 0.7341, IoU.hood: 0.6392, IoU.sconce: 0.5818, IoU.vase: 0.4713, IoU.traffic light: 0.3674, IoU.tray: 0.2463, IoU.ashcan: 0.5218, IoU.fan: 0.6470, IoU.pier: 0.3960, IoU.crt screen: 0.0902, IoU.plate: 0.6234, IoU.monitor: 0.2075, IoU.bulletin board: 0.5724, IoU.shower: 0.2155, IoU.radiator: 0.6508, IoU.glass: 0.1793, IoU.clock: 0.4862, IoU.flag: 0.6602, Acc.wall: 0.8956, Acc.building: 0.9420, Acc.sky: 0.9716, Acc.floor: 0.9171, Acc.tree: 0.8931, Acc.ceiling: 0.9376, Acc.road: 0.9033, Acc.bed : 0.9712, Acc.windowpane: 0.8037, Acc.grass: 0.8248, Acc.cabinet: 0.7184, Acc.sidewalk: 0.8577, Acc.person: 0.9433, Acc.earth: 0.5363, Acc.door: 0.7634, Acc.table: 0.8314, Acc.mountain: 0.7310, Acc.plant: 0.6817, Acc.curtain: 0.8780, Acc.chair: 0.7382, Acc.car: 0.9299, Acc.water: 0.7574, Acc.painting: 0.9072, Acc.sofa: 0.9357, Acc.shelf: 0.6302, Acc.house: 0.6256, Acc.sea: 0.8325, Acc.mirror: 0.8155, Acc.rug: 0.7036, Acc.field: 0.6146, Acc.armchair: 0.7926, Acc.seat: 0.8915, Acc.fence: 0.6259, Acc.desk: 0.7923, Acc.rock: 0.8129, Acc.wardrobe: 0.7568, Acc.lamp: 0.8229, Acc.bathtub: 0.8933, Acc.railing: 0.6022, Acc.cushion: 0.8077, Acc.base: 0.6143, Acc.box: 0.5804, Acc.column: 0.6336, Acc.signboard: 0.5431, Acc.chest of drawers: 0.8748, Acc.counter: 0.5947, Acc.sand: 0.8834, Acc.sink: 0.8360, Acc.skyscraper: 0.5684, Acc.fireplace: 0.9041, Acc.refrigerator: 0.9307, Acc.grandstand: 0.8265, Acc.path: 0.3807, Acc.stairs: 0.3804, Acc.runway: 0.8835, Acc.case: 0.8266, Acc.pool table: 0.9860, Acc.pillow: 0.6631, Acc.screen door: 0.7671, Acc.stairway: 0.5306, Acc.river: 0.2878, Acc.bridge: 0.8807, Acc.bookcase: 0.5967, Acc.blind: 0.4436, Acc.coffee table: 0.8548, Acc.toilet: 0.9469, Acc.flower: 0.5612, Acc.book: 0.7587, Acc.hill: 0.1519, Acc.bench: 0.7199, Acc.countertop: 0.8740, Acc.stove: 0.9428, Acc.palm: 0.8054, Acc.kitchen island: 0.8474, Acc.computer: 0.9044, Acc.swivel chair: 0.8480, Acc.boat: 0.9115, Acc.bar: 0.8609, Acc.arcade machine: 0.9461, Acc.hovel: 0.4827, Acc.bus: 0.9693, Acc.towel: 0.8872, Acc.light: 0.5917, Acc.truck: 0.6433, Acc.tower: 0.2470, Acc.chandelier: 0.8449, Acc.awning: 0.4231, Acc.streetlight: 0.3679, Acc.booth: 0.6544, Acc.television receiver: 0.8878, Acc.airplane: 0.8511, Acc.dirt track: 0.2188, Acc.apparel: 0.7279, Acc.pole: 0.3510, Acc.land: 0.0505, Acc.bannister: 0.2397, Acc.escalator: 0.8772, Acc.ottoman: 0.7433, Acc.bottle: 0.6842, Acc.buffet: 0.7752, Acc.poster: 0.3944, Acc.stage: 0.4765, Acc.van: 0.7021, Acc.ship: 0.9370, Acc.fountain: 0.3846, Acc.conveyer belt: 0.9467, Acc.canopy: 0.7673, Acc.washer: 0.9266, Acc.plaything: 0.4338, Acc.swimming pool: 0.7569, Acc.stool: 0.6787, Acc.barrel: 0.6995, Acc.basket: 0.6055, Acc.waterfall: 0.6910, Acc.tent: 0.9841, Acc.bag: 0.2766, Acc.minibike: 0.8762, Acc.cradle: 0.9849, Acc.oven: 0.7592, Acc.ball: 0.1087, Acc.food: 0.7484, Acc.step: 0.1760, Acc.tank: 0.7437, Acc.trade name: 0.2479, Acc.microwave: 0.9641, Acc.pot: 0.6961, Acc.animal: 0.5760, Acc.bicycle: 0.7888, Acc.lake: 0.6368, Acc.dishwasher: 0.8421, Acc.screen: 0.7667, Acc.blanket: 0.3860, Acc.sculpture: 0.8723, Acc.hood: 0.7588, Acc.sconce: 0.6807, Acc.vase: 0.6437, Acc.traffic light: 0.5798, Acc.tray: 0.3331, Acc.ashcan: 0.6537, Acc.fan: 0.7611, Acc.pier: 0.4520, Acc.crt screen: 0.2635, Acc.plate: 0.7285, Acc.monitor: 0.2391, Acc.bulletin board: 0.8074, Acc.shower: 0.2368, Acc.radiator: 0.7690, Acc.glass: 0.1876, Acc.clock: 0.6112, Acc.flag: 0.7991 2024-06-16 18:51:02,476 - mmseg - INFO - Iter [46050/80000] lr: 1.375e-06, eta: 16:21:53, time: 3.280, data_time: 1.676, memory: 65790, decode.loss_ce: 0.1736, decode.acc_seg: 92.5320, aux.loss_ce: 0.0728, aux.acc_seg: 92.2354, loss: 0.2464 2024-06-16 18:52:22,875 - mmseg - INFO - Iter [46100/80000] lr: 1.373e-06, eta: 16:20:21, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1672, decode.acc_seg: 92.3887, aux.loss_ce: 0.0706, aux.acc_seg: 92.1473, loss: 0.2377 2024-06-16 18:53:43,313 - mmseg - INFO - Iter [46150/80000] lr: 1.371e-06, eta: 16:18:50, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1764, decode.acc_seg: 92.2709, aux.loss_ce: 0.0730, aux.acc_seg: 92.0326, loss: 0.2494 2024-06-16 18:55:03,828 - mmseg - INFO - Iter [46200/80000] lr: 1.369e-06, eta: 16:17:19, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1614, decode.acc_seg: 92.8372, aux.loss_ce: 0.0689, aux.acc_seg: 92.4726, loss: 0.2303 2024-06-16 18:56:24,336 - mmseg - INFO - Iter [46250/80000] lr: 1.367e-06, eta: 16:15:47, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1657, decode.acc_seg: 92.6978, aux.loss_ce: 0.0694, aux.acc_seg: 92.5058, loss: 0.2351 2024-06-16 18:57:44,817 - mmseg - INFO - Iter [46300/80000] lr: 1.365e-06, eta: 16:14:16, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1682, decode.acc_seg: 92.5594, aux.loss_ce: 0.0700, aux.acc_seg: 92.3160, loss: 0.2382 2024-06-16 18:59:05,413 - mmseg - INFO - Iter [46350/80000] lr: 1.363e-06, eta: 16:12:45, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1662, decode.acc_seg: 92.6826, aux.loss_ce: 0.0694, aux.acc_seg: 92.4112, loss: 0.2356 2024-06-16 19:00:26,015 - mmseg - INFO - Iter [46400/80000] lr: 1.361e-06, eta: 16:11:14, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1691, decode.acc_seg: 92.3824, aux.loss_ce: 0.0698, aux.acc_seg: 92.1368, loss: 0.2388 2024-06-16 19:01:46,431 - mmseg - INFO - Iter [46450/80000] lr: 1.359e-06, eta: 16:09:43, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1801, decode.acc_seg: 92.0024, aux.loss_ce: 0.0747, aux.acc_seg: 91.8456, loss: 0.2548 2024-06-16 19:03:06,941 - mmseg - INFO - Iter [46500/80000] lr: 1.357e-06, eta: 16:08:11, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1676, decode.acc_seg: 92.5176, aux.loss_ce: 0.0700, aux.acc_seg: 92.3037, loss: 0.2376 2024-06-16 19:04:27,371 - mmseg - INFO - Iter [46550/80000] lr: 1.355e-06, eta: 16:06:40, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1797, decode.acc_seg: 92.0677, aux.loss_ce: 0.0750, aux.acc_seg: 91.8744, loss: 0.2547 2024-06-16 19:05:47,798 - mmseg - INFO - Iter [46600/80000] lr: 1.353e-06, eta: 16:05:09, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1715, decode.acc_seg: 92.7092, aux.loss_ce: 0.0710, aux.acc_seg: 92.4620, loss: 0.2425 2024-06-16 19:07:08,334 - mmseg - INFO - Iter [46650/80000] lr: 1.351e-06, eta: 16:03:38, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1654, decode.acc_seg: 92.7084, aux.loss_ce: 0.0693, aux.acc_seg: 92.5263, loss: 0.2347 2024-06-16 19:08:28,865 - mmseg - INFO - Iter [46700/80000] lr: 1.349e-06, eta: 16:02:07, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1789, decode.acc_seg: 92.0724, aux.loss_ce: 0.0746, aux.acc_seg: 91.7634, loss: 0.2535 2024-06-16 19:09:52,060 - mmseg - INFO - Iter [46750/80000] lr: 1.347e-06, eta: 16:00:38, time: 1.664, data_time: 0.059, memory: 65790, decode.loss_ce: 0.1743, decode.acc_seg: 92.6504, aux.loss_ce: 0.0728, aux.acc_seg: 92.4177, loss: 0.2471 2024-06-16 19:11:12,442 - mmseg - INFO - Iter [46800/80000] lr: 1.345e-06, eta: 15:59:06, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1650, decode.acc_seg: 92.8270, aux.loss_ce: 0.0698, aux.acc_seg: 92.5607, loss: 0.2348 2024-06-16 19:12:32,850 - mmseg - INFO - Iter [46850/80000] lr: 1.343e-06, eta: 15:57:35, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1754, decode.acc_seg: 92.2917, aux.loss_ce: 0.0740, aux.acc_seg: 92.0802, loss: 0.2495 2024-06-16 19:13:53,216 - mmseg - INFO - Iter [46900/80000] lr: 1.341e-06, eta: 15:56:04, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1624, decode.acc_seg: 92.8145, aux.loss_ce: 0.0683, aux.acc_seg: 92.6159, loss: 0.2307 2024-06-16 19:15:13,642 - mmseg - INFO - Iter [46950/80000] lr: 1.338e-06, eta: 15:54:33, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1648, decode.acc_seg: 92.7059, aux.loss_ce: 0.0690, aux.acc_seg: 92.4316, loss: 0.2338 2024-06-16 19:16:34,262 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 19:16:34,262 - mmseg - INFO - Iter [47000/80000] lr: 1.336e-06, eta: 15:53:02, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1721, decode.acc_seg: 92.6793, aux.loss_ce: 0.0723, aux.acc_seg: 92.4746, loss: 0.2444 2024-06-16 19:17:56,161 - mmseg - INFO - per class results: 2024-06-16 19:17:56,167 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 81.28 | 88.79 | | building | 84.33 | 92.57 | | sky | 94.62 | 96.94 | | floor | 84.66 | 90.98 | | tree | 77.37 | 89.2 | | ceiling | 86.76 | 93.15 | | road | 84.95 | 90.18 | | bed | 92.43 | 97.02 | | windowpane | 66.8 | 82.42 | | grass | 66.77 | 82.58 | | cabinet | 65.92 | 73.72 | | sidewalk | 70.17 | 85.15 | | person | 84.33 | 93.74 | | earth | 40.1 | 49.72 | | door | 61.99 | 77.49 | | table | 69.84 | 80.44 | | mountain | 63.55 | 76.22 | | plant | 55.71 | 69.3 | | curtain | 76.69 | 89.52 | | chair | 65.06 | 78.04 | | car | 87.02 | 93.24 | | water | 62.24 | 78.4 | | painting | 78.93 | 91.69 | | sofa | 83.39 | 92.43 | | shelf | 46.33 | 63.28 | | house | 53.16 | 75.38 | | sea | 80.3 | 90.81 | | mirror | 75.85 | 86.26 | | rug | 70.75 | 81.18 | | field | 33.47 | 62.22 | | armchair | 66.14 | 83.93 | | seat | 66.17 | 89.19 | | fence | 52.41 | 70.9 | | desk | 58.96 | 78.78 | | rock | 57.17 | 74.95 | | wardrobe | 50.76 | 73.28 | | lamp | 70.57 | 86.58 | | bathtub | 87.93 | 91.73 | | railing | 43.73 | 63.78 | | cushion | 67.92 | 83.74 | | base | 43.76 | 62.44 | | box | 39.83 | 49.19 | | column | 56.13 | 73.29 | | signboard | 39.3 | 54.93 | | chest of drawers | 50.82 | 80.22 | | counter | 53.26 | 64.36 | | sand | 55.65 | 86.82 | | sink | 79.93 | 87.01 | | skyscraper | 49.33 | 56.85 | | fireplace | 72.31 | 94.82 | | refrigerator | 82.17 | 93.76 | | grandstand | 47.42 | 85.95 | | path | 25.56 | 32.13 | | stairs | 30.2 | 35.89 | | runway | 70.6 | 92.18 | | case | 63.92 | 83.47 | | pool table | 93.2 | 98.57 | | pillow | 64.5 | 73.92 | | screen door | 81.83 | 93.52 | | stairway | 50.36 | 70.5 | | river | 13.44 | 27.05 | | bridge | 72.58 | 88.05 | | bookcase | 40.3 | 57.23 | | blind | 41.5 | 46.06 | | coffee table | 66.82 | 85.53 | | toilet | 89.9 | 94.68 | | flower | 43.62 | 61.98 | | book | 50.9 | 75.97 | | hill | 10.09 | 20.33 | | bench | 61.8 | 70.17 | | countertop | 65.65 | 83.71 | | stove | 86.32 | 94.26 | | palm | 54.6 | 82.56 | | kitchen island | 53.23 | 82.06 | | computer | 78.43 | 91.35 | | swivel chair | 45.26 | 71.67 | | boat | 78.68 | 89.84 | | bar | 60.16 | 85.48 | | arcade machine | 88.44 | 94.94 | | hovel | 32.26 | 35.81 | | bus | 91.73 | 97.0 | | towel | 78.13 | 88.46 | | light | 53.1 | 61.29 | | truck | 48.5 | 66.28 | | tower | 13.76 | 20.74 | | chandelier | 70.8 | 84.92 | | awning | 34.22 | 41.54 | | streetlight | 28.78 | 36.95 | | booth | 55.14 | 63.11 | | television receiver | 81.94 | 92.53 | | airplane | 78.24 | 83.4 | | dirt track | 9.21 | 35.43 | | apparel | 53.43 | 79.29 | | pole | 23.87 | 33.16 | | land | 3.95 | 5.63 | | bannister | 13.95 | 17.45 | | escalator | 65.94 | 85.13 | | ottoman | 55.15 | 71.57 | | bottle | 43.13 | 72.93 | | buffet | 56.08 | 67.12 | | poster | 30.64 | 33.86 | | stage | 25.19 | 52.47 | | van | 50.62 | 70.39 | | ship | 88.96 | 96.34 | | fountain | 39.64 | 40.61 | | conveyer belt | 80.75 | 95.93 | | canopy | 49.42 | 68.95 | | washer | 82.57 | 87.71 | | plaything | 32.75 | 48.4 | | swimming pool | 56.2 | 82.59 | | stool | 50.37 | 66.58 | | barrel | 55.36 | 83.83 | | basket | 45.74 | 63.44 | | waterfall | 46.67 | 53.59 | | tent | 89.53 | 98.23 | | bag | 28.21 | 33.95 | | minibike | 73.98 | 90.12 | | cradle | 86.53 | 98.58 | | oven | 58.44 | 70.95 | | ball | 64.0 | 75.1 | | food | 62.26 | 72.6 | | step | 12.88 | 15.98 | | tank | 61.92 | 66.94 | | trade name | 20.12 | 22.49 | | microwave | 89.24 | 96.25 | | pot | 58.73 | 67.55 | | animal | 62.68 | 65.1 | | bicycle | 60.6 | 80.83 | | lake | 46.59 | 63.66 | | dishwasher | 72.19 | 83.87 | | screen | 60.26 | 95.72 | | blanket | 43.5 | 50.68 | | sculpture | 70.39 | 87.14 | | hood | 73.18 | 92.83 | | sconce | 56.88 | 72.45 | | vase | 49.11 | 62.79 | | traffic light | 37.19 | 60.86 | | tray | 22.76 | 30.91 | | ashcan | 49.2 | 68.67 | | fan | 63.9 | 79.22 | | pier | 39.1 | 41.24 | | crt screen | 1.75 | 3.44 | | plate | 61.21 | 76.82 | | monitor | 36.36 | 41.45 | | bulletin board | 58.05 | 78.87 | | shower | 11.04 | 22.29 | | radiator | 64.92 | 88.1 | | glass | 21.45 | 23.38 | | clock | 49.52 | 65.26 | | flag | 67.76 | 79.51 | +---------------------+-------+-------+ 2024-06-16 19:17:56,167 - mmseg - INFO - Summary: 2024-06-16 19:17:56,167 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.91 | 57.53 | 71.13 | +-------+-------+-------+ 2024-06-16 19:17:56,168 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 19:17:56,168 - mmseg - INFO - Iter(val) [250] aAcc: 0.8591, mIoU: 0.5753, mAcc: 0.7113, IoU.wall: 0.8128, IoU.building: 0.8433, IoU.sky: 0.9462, IoU.floor: 0.8466, IoU.tree: 0.7737, IoU.ceiling: 0.8676, IoU.road: 0.8495, IoU.bed : 0.9243, IoU.windowpane: 0.6680, IoU.grass: 0.6677, IoU.cabinet: 0.6592, IoU.sidewalk: 0.7017, IoU.person: 0.8433, IoU.earth: 0.4010, IoU.door: 0.6199, IoU.table: 0.6984, IoU.mountain: 0.6355, IoU.plant: 0.5571, IoU.curtain: 0.7669, IoU.chair: 0.6506, IoU.car: 0.8702, IoU.water: 0.6224, IoU.painting: 0.7893, IoU.sofa: 0.8339, IoU.shelf: 0.4633, IoU.house: 0.5316, IoU.sea: 0.8030, IoU.mirror: 0.7585, IoU.rug: 0.7075, IoU.field: 0.3347, IoU.armchair: 0.6614, IoU.seat: 0.6617, IoU.fence: 0.5241, IoU.desk: 0.5896, IoU.rock: 0.5717, IoU.wardrobe: 0.5076, IoU.lamp: 0.7057, IoU.bathtub: 0.8793, IoU.railing: 0.4373, IoU.cushion: 0.6792, IoU.base: 0.4376, IoU.box: 0.3983, IoU.column: 0.5613, IoU.signboard: 0.3930, IoU.chest of drawers: 0.5082, IoU.counter: 0.5326, IoU.sand: 0.5565, IoU.sink: 0.7993, IoU.skyscraper: 0.4933, IoU.fireplace: 0.7231, IoU.refrigerator: 0.8217, IoU.grandstand: 0.4742, IoU.path: 0.2556, IoU.stairs: 0.3020, IoU.runway: 0.7060, IoU.case: 0.6392, IoU.pool table: 0.9320, IoU.pillow: 0.6450, IoU.screen door: 0.8183, IoU.stairway: 0.5036, IoU.river: 0.1344, IoU.bridge: 0.7258, IoU.bookcase: 0.4030, IoU.blind: 0.4150, IoU.coffee table: 0.6682, IoU.toilet: 0.8990, IoU.flower: 0.4362, IoU.book: 0.5090, IoU.hill: 0.1009, IoU.bench: 0.6180, IoU.countertop: 0.6565, IoU.stove: 0.8632, IoU.palm: 0.5460, IoU.kitchen island: 0.5323, IoU.computer: 0.7843, IoU.swivel chair: 0.4526, IoU.boat: 0.7868, IoU.bar: 0.6016, IoU.arcade machine: 0.8844, IoU.hovel: 0.3226, IoU.bus: 0.9173, IoU.towel: 0.7813, IoU.light: 0.5310, IoU.truck: 0.4850, IoU.tower: 0.1376, IoU.chandelier: 0.7080, IoU.awning: 0.3422, IoU.streetlight: 0.2878, IoU.booth: 0.5514, IoU.television receiver: 0.8194, IoU.airplane: 0.7824, IoU.dirt track: 0.0921, IoU.apparel: 0.5343, IoU.pole: 0.2387, IoU.land: 0.0395, IoU.bannister: 0.1395, IoU.escalator: 0.6594, IoU.ottoman: 0.5515, IoU.bottle: 0.4313, IoU.buffet: 0.5608, IoU.poster: 0.3064, IoU.stage: 0.2519, IoU.van: 0.5062, IoU.ship: 0.8896, IoU.fountain: 0.3964, IoU.conveyer belt: 0.8075, IoU.canopy: 0.4942, IoU.washer: 0.8257, IoU.plaything: 0.3275, IoU.swimming pool: 0.5620, IoU.stool: 0.5037, IoU.barrel: 0.5536, IoU.basket: 0.4574, IoU.waterfall: 0.4667, IoU.tent: 0.8953, IoU.bag: 0.2821, IoU.minibike: 0.7398, IoU.cradle: 0.8653, IoU.oven: 0.5844, IoU.ball: 0.6400, IoU.food: 0.6226, IoU.step: 0.1288, IoU.tank: 0.6192, IoU.trade name: 0.2012, IoU.microwave: 0.8924, IoU.pot: 0.5873, IoU.animal: 0.6268, IoU.bicycle: 0.6060, IoU.lake: 0.4659, IoU.dishwasher: 0.7219, IoU.screen: 0.6026, IoU.blanket: 0.4350, IoU.sculpture: 0.7039, IoU.hood: 0.7318, IoU.sconce: 0.5688, IoU.vase: 0.4911, IoU.traffic light: 0.3719, IoU.tray: 0.2276, IoU.ashcan: 0.4920, IoU.fan: 0.6390, IoU.pier: 0.3910, IoU.crt screen: 0.0175, IoU.plate: 0.6121, IoU.monitor: 0.3636, IoU.bulletin board: 0.5805, IoU.shower: 0.1104, IoU.radiator: 0.6492, IoU.glass: 0.2145, IoU.clock: 0.4952, IoU.flag: 0.6776, Acc.wall: 0.8879, Acc.building: 0.9257, Acc.sky: 0.9694, Acc.floor: 0.9098, Acc.tree: 0.8920, Acc.ceiling: 0.9315, Acc.road: 0.9018, Acc.bed : 0.9702, Acc.windowpane: 0.8242, Acc.grass: 0.8258, Acc.cabinet: 0.7372, Acc.sidewalk: 0.8515, Acc.person: 0.9374, Acc.earth: 0.4972, Acc.door: 0.7749, Acc.table: 0.8044, Acc.mountain: 0.7622, Acc.plant: 0.6930, Acc.curtain: 0.8952, Acc.chair: 0.7804, Acc.car: 0.9324, Acc.water: 0.7840, Acc.painting: 0.9169, Acc.sofa: 0.9243, Acc.shelf: 0.6328, Acc.house: 0.7538, Acc.sea: 0.9081, Acc.mirror: 0.8626, Acc.rug: 0.8118, Acc.field: 0.6222, Acc.armchair: 0.8393, Acc.seat: 0.8919, Acc.fence: 0.7090, Acc.desk: 0.7878, Acc.rock: 0.7495, Acc.wardrobe: 0.7328, Acc.lamp: 0.8658, Acc.bathtub: 0.9173, Acc.railing: 0.6378, Acc.cushion: 0.8374, Acc.base: 0.6244, Acc.box: 0.4919, Acc.column: 0.7329, Acc.signboard: 0.5493, Acc.chest of drawers: 0.8022, Acc.counter: 0.6436, Acc.sand: 0.8682, Acc.sink: 0.8701, Acc.skyscraper: 0.5685, Acc.fireplace: 0.9482, Acc.refrigerator: 0.9376, Acc.grandstand: 0.8595, Acc.path: 0.3213, Acc.stairs: 0.3589, Acc.runway: 0.9218, Acc.case: 0.8347, Acc.pool table: 0.9857, Acc.pillow: 0.7392, Acc.screen door: 0.9352, Acc.stairway: 0.7050, Acc.river: 0.2705, Acc.bridge: 0.8805, Acc.bookcase: 0.5723, Acc.blind: 0.4606, Acc.coffee table: 0.8553, Acc.toilet: 0.9468, Acc.flower: 0.6198, Acc.book: 0.7597, Acc.hill: 0.2033, Acc.bench: 0.7017, Acc.countertop: 0.8371, Acc.stove: 0.9426, Acc.palm: 0.8256, Acc.kitchen island: 0.8206, Acc.computer: 0.9135, Acc.swivel chair: 0.7167, Acc.boat: 0.8984, Acc.bar: 0.8548, Acc.arcade machine: 0.9494, Acc.hovel: 0.3581, Acc.bus: 0.9700, Acc.towel: 0.8846, Acc.light: 0.6129, Acc.truck: 0.6628, Acc.tower: 0.2074, Acc.chandelier: 0.8492, Acc.awning: 0.4154, Acc.streetlight: 0.3695, Acc.booth: 0.6311, Acc.television receiver: 0.9253, Acc.airplane: 0.8340, Acc.dirt track: 0.3543, Acc.apparel: 0.7929, Acc.pole: 0.3316, Acc.land: 0.0563, Acc.bannister: 0.1745, Acc.escalator: 0.8513, Acc.ottoman: 0.7157, Acc.bottle: 0.7293, Acc.buffet: 0.6712, Acc.poster: 0.3386, Acc.stage: 0.5247, Acc.van: 0.7039, Acc.ship: 0.9634, Acc.fountain: 0.4061, Acc.conveyer belt: 0.9593, Acc.canopy: 0.6895, Acc.washer: 0.8771, Acc.plaything: 0.4840, Acc.swimming pool: 0.8259, Acc.stool: 0.6658, Acc.barrel: 0.8383, Acc.basket: 0.6344, Acc.waterfall: 0.5359, Acc.tent: 0.9823, Acc.bag: 0.3395, Acc.minibike: 0.9012, Acc.cradle: 0.9858, Acc.oven: 0.7095, Acc.ball: 0.7510, Acc.food: 0.7260, Acc.step: 0.1598, Acc.tank: 0.6694, Acc.trade name: 0.2249, Acc.microwave: 0.9625, Acc.pot: 0.6755, Acc.animal: 0.6510, Acc.bicycle: 0.8083, Acc.lake: 0.6366, Acc.dishwasher: 0.8387, Acc.screen: 0.9572, Acc.blanket: 0.5068, Acc.sculpture: 0.8714, Acc.hood: 0.9283, Acc.sconce: 0.7245, Acc.vase: 0.6279, Acc.traffic light: 0.6086, Acc.tray: 0.3091, Acc.ashcan: 0.6867, Acc.fan: 0.7922, Acc.pier: 0.4124, Acc.crt screen: 0.0344, Acc.plate: 0.7682, Acc.monitor: 0.4145, Acc.bulletin board: 0.7887, Acc.shower: 0.2229, Acc.radiator: 0.8810, Acc.glass: 0.2338, Acc.clock: 0.6526, Acc.flag: 0.7951 2024-06-16 19:19:16,902 - mmseg - INFO - Iter [47050/80000] lr: 1.334e-06, eta: 15:52:29, time: 3.253, data_time: 1.652, memory: 65790, decode.loss_ce: 0.1747, decode.acc_seg: 92.3558, aux.loss_ce: 0.0744, aux.acc_seg: 92.1338, loss: 0.2491 2024-06-16 19:20:37,514 - mmseg - INFO - Iter [47100/80000] lr: 1.332e-06, eta: 15:50:58, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1717, decode.acc_seg: 92.5252, aux.loss_ce: 0.0718, aux.acc_seg: 92.2321, loss: 0.2435 2024-06-16 19:21:58,010 - mmseg - INFO - Iter [47150/80000] lr: 1.330e-06, eta: 15:49:27, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1663, decode.acc_seg: 92.7132, aux.loss_ce: 0.0697, aux.acc_seg: 92.4138, loss: 0.2360 2024-06-16 19:23:18,383 - mmseg - INFO - Iter [47200/80000] lr: 1.328e-06, eta: 15:47:56, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1709, decode.acc_seg: 92.6979, aux.loss_ce: 0.0716, aux.acc_seg: 92.4045, loss: 0.2425 2024-06-16 19:24:38,874 - mmseg - INFO - Iter [47250/80000] lr: 1.326e-06, eta: 15:46:25, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1639, decode.acc_seg: 92.6943, aux.loss_ce: 0.0686, aux.acc_seg: 92.5206, loss: 0.2324 2024-06-16 19:25:59,291 - mmseg - INFO - Iter [47300/80000] lr: 1.324e-06, eta: 15:44:54, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1560, decode.acc_seg: 93.0225, aux.loss_ce: 0.0664, aux.acc_seg: 92.7281, loss: 0.2224 2024-06-16 19:27:19,815 - mmseg - INFO - Iter [47350/80000] lr: 1.322e-06, eta: 15:43:23, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1738, decode.acc_seg: 92.1943, aux.loss_ce: 0.0726, aux.acc_seg: 91.9003, loss: 0.2464 2024-06-16 19:28:40,244 - mmseg - INFO - Iter [47400/80000] lr: 1.320e-06, eta: 15:41:52, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1659, decode.acc_seg: 92.6235, aux.loss_ce: 0.0693, aux.acc_seg: 92.4067, loss: 0.2352 2024-06-16 19:30:00,623 - mmseg - INFO - Iter [47450/80000] lr: 1.318e-06, eta: 15:40:21, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1852, decode.acc_seg: 92.0023, aux.loss_ce: 0.0773, aux.acc_seg: 91.6363, loss: 0.2625 2024-06-16 19:31:21,018 - mmseg - INFO - Iter [47500/80000] lr: 1.316e-06, eta: 15:38:50, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1760, decode.acc_seg: 92.1691, aux.loss_ce: 0.0735, aux.acc_seg: 91.9287, loss: 0.2495 2024-06-16 19:32:41,513 - mmseg - INFO - Iter [47550/80000] lr: 1.314e-06, eta: 15:37:19, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1601, decode.acc_seg: 92.8333, aux.loss_ce: 0.0672, aux.acc_seg: 92.5740, loss: 0.2273 2024-06-16 19:34:01,928 - mmseg - INFO - Iter [47600/80000] lr: 1.312e-06, eta: 15:35:48, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1752, decode.acc_seg: 92.5962, aux.loss_ce: 0.0729, aux.acc_seg: 92.3656, loss: 0.2481 2024-06-16 19:35:22,661 - mmseg - INFO - Iter [47650/80000] lr: 1.310e-06, eta: 15:34:17, time: 1.615, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1686, decode.acc_seg: 92.4502, aux.loss_ce: 0.0712, aux.acc_seg: 92.2187, loss: 0.2398 2024-06-16 19:36:43,091 - mmseg - INFO - Iter [47700/80000] lr: 1.308e-06, eta: 15:32:47, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1670, decode.acc_seg: 92.5058, aux.loss_ce: 0.0707, aux.acc_seg: 92.2393, loss: 0.2378 2024-06-16 19:38:03,474 - mmseg - INFO - Iter [47750/80000] lr: 1.306e-06, eta: 15:31:16, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1788, decode.acc_seg: 92.2244, aux.loss_ce: 0.0745, aux.acc_seg: 92.0113, loss: 0.2533 2024-06-16 19:39:23,878 - mmseg - INFO - Iter [47800/80000] lr: 1.304e-06, eta: 15:29:45, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1711, decode.acc_seg: 92.4791, aux.loss_ce: 0.0718, aux.acc_seg: 92.1402, loss: 0.2430 2024-06-16 19:40:44,320 - mmseg - INFO - Iter [47850/80000] lr: 1.302e-06, eta: 15:28:14, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1563, decode.acc_seg: 93.0557, aux.loss_ce: 0.0658, aux.acc_seg: 92.7479, loss: 0.2221 2024-06-16 19:42:04,744 - mmseg - INFO - Iter [47900/80000] lr: 1.300e-06, eta: 15:26:43, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1771, decode.acc_seg: 92.4733, aux.loss_ce: 0.0742, aux.acc_seg: 92.1884, loss: 0.2513 2024-06-16 19:43:25,347 - mmseg - INFO - Iter [47950/80000] lr: 1.298e-06, eta: 15:25:13, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1752, decode.acc_seg: 92.5176, aux.loss_ce: 0.0734, aux.acc_seg: 92.2377, loss: 0.2487 2024-06-16 19:44:47,896 - mmseg - INFO - Saving checkpoint at 48000 iterations 2024-06-16 19:45:57,348 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 19:45:57,348 - mmseg - INFO - Iter [48000/80000] lr: 1.296e-06, eta: 15:24:30, time: 3.040, data_time: 0.049, memory: 65790, decode.loss_ce: 0.1678, decode.acc_seg: 92.5571, aux.loss_ce: 0.0706, aux.acc_seg: 92.3300, loss: 0.2384 2024-06-16 19:47:19,695 - mmseg - INFO - per class results: 2024-06-16 19:47:19,701 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 81.33 | 87.78 | | building | 84.83 | 93.59 | | sky | 94.64 | 97.48 | | floor | 84.75 | 91.72 | | tree | 77.79 | 89.42 | | ceiling | 87.06 | 94.61 | | road | 85.31 | 90.38 | | bed | 91.89 | 96.7 | | windowpane | 65.7 | 83.35 | | grass | 67.85 | 83.03 | | cabinet | 67.0 | 78.02 | | sidewalk | 71.28 | 86.93 | | person | 84.22 | 94.07 | | earth | 40.92 | 54.53 | | door | 61.02 | 76.29 | | table | 70.0 | 81.38 | | mountain | 63.86 | 72.53 | | plant | 56.38 | 71.36 | | curtain | 75.69 | 90.3 | | chair | 63.86 | 75.23 | | car | 86.72 | 93.49 | | water | 65.03 | 80.65 | | painting | 78.43 | 91.5 | | sofa | 82.91 | 92.54 | | shelf | 48.58 | 64.78 | | house | 51.94 | 63.95 | | sea | 78.33 | 86.03 | | mirror | 77.41 | 84.84 | | rug | 69.92 | 81.21 | | field | 38.18 | 61.97 | | armchair | 63.5 | 83.68 | | seat | 63.83 | 88.6 | | fence | 49.9 | 64.19 | | desk | 59.65 | 78.84 | | rock | 59.04 | 83.61 | | wardrobe | 51.76 | 73.94 | | lamp | 72.09 | 85.61 | | bathtub | 85.76 | 89.54 | | railing | 43.35 | 64.38 | | cushion | 68.58 | 82.12 | | base | 39.27 | 54.18 | | box | 37.75 | 50.69 | | column | 55.87 | 75.29 | | signboard | 38.34 | 52.83 | | chest of drawers | 43.71 | 66.17 | | counter | 39.14 | 42.75 | | sand | 51.35 | 77.12 | | sink | 78.58 | 86.02 | | skyscraper | 46.92 | 59.86 | | fireplace | 73.9 | 96.0 | | refrigerator | 85.36 | 96.41 | | grandstand | 53.47 | 86.72 | | path | 30.61 | 44.57 | | stairs | 30.35 | 36.39 | | runway | 66.89 | 87.54 | | case | 62.13 | 83.86 | | pool table | 94.01 | 97.9 | | pillow | 65.84 | 78.5 | | screen door | 77.29 | 84.43 | | stairway | 40.91 | 59.62 | | river | 14.68 | 26.37 | | bridge | 69.57 | 89.24 | | bookcase | 41.93 | 65.15 | | blind | 42.76 | 49.21 | | coffee table | 66.0 | 84.58 | | toilet | 89.04 | 94.35 | | flower | 38.16 | 46.54 | | book | 53.24 | 71.56 | | hill | 7.52 | 14.34 | | bench | 61.61 | 69.75 | | countertop | 64.06 | 82.82 | | stove | 86.78 | 93.06 | | palm | 50.39 | 66.1 | | kitchen island | 60.04 | 82.85 | | computer | 77.88 | 92.23 | | swivel chair | 46.43 | 65.43 | | boat | 77.96 | 88.89 | | bar | 61.4 | 89.33 | | arcade machine | 82.62 | 87.9 | | hovel | 33.82 | 36.66 | | bus | 91.21 | 96.89 | | towel | 74.85 | 81.18 | | light | 54.04 | 61.68 | | truck | 47.96 | 59.96 | | tower | 3.16 | 4.08 | | chandelier | 72.21 | 83.53 | | awning | 34.32 | 42.99 | | streetlight | 30.44 | 42.61 | | booth | 57.28 | 70.44 | | television receiver | 80.88 | 90.63 | | airplane | 84.55 | 94.89 | | dirt track | 10.48 | 48.26 | | apparel | 56.7 | 77.74 | | pole | 23.91 | 32.9 | | land | 4.74 | 6.63 | | bannister | 19.18 | 25.26 | | escalator | 66.59 | 84.43 | | ottoman | 54.63 | 69.9 | | bottle | 44.78 | 66.73 | | buffet | 52.55 | 59.81 | | poster | 32.68 | 40.7 | | stage | 21.63 | 49.49 | | van | 44.98 | 65.27 | | ship | 91.24 | 97.5 | | fountain | 40.22 | 41.25 | | conveyer belt | 78.54 | 95.42 | | canopy | 51.72 | 71.84 | | washer | 83.77 | 89.83 | | plaything | 33.4 | 45.98 | | swimming pool | 52.81 | 76.77 | | stool | 53.29 | 66.51 | | barrel | 52.97 | 70.71 | | basket | 44.95 | 57.39 | | waterfall | 48.15 | 59.84 | | tent | 90.66 | 98.46 | | bag | 26.09 | 30.74 | | minibike | 75.01 | 87.6 | | cradle | 86.71 | 97.49 | | oven | 57.87 | 73.07 | | ball | 10.54 | 10.64 | | food | 64.68 | 76.46 | | step | 7.66 | 9.53 | | tank | 60.22 | 69.13 | | trade name | 25.78 | 31.38 | | microwave | 90.08 | 95.97 | | pot | 59.69 | 68.84 | | animal | 63.29 | 64.81 | | bicycle | 59.05 | 75.94 | | lake | 53.14 | 63.66 | | dishwasher | 71.94 | 82.68 | | screen | 58.81 | 91.72 | | blanket | 33.37 | 37.43 | | sculpture | 68.14 | 87.91 | | hood | 61.29 | 74.16 | | sconce | 58.14 | 69.74 | | vase | 48.65 | 61.97 | | traffic light | 37.23 | 58.0 | | tray | 21.88 | 28.02 | | ashcan | 51.07 | 66.16 | | fan | 65.57 | 77.42 | | pier | 38.12 | 45.06 | | crt screen | 2.46 | 3.98 | | plate | 60.79 | 76.72 | | monitor | 52.22 | 61.2 | | bulletin board | 60.95 | 75.78 | | shower | 12.24 | 24.73 | | radiator | 63.68 | 80.02 | | glass | 17.76 | 18.54 | | clock | 43.19 | 50.44 | | flag | 67.57 | 75.02 | +---------------------+-------+-------+ 2024-06-16 19:47:19,701 - mmseg - INFO - Summary: 2024-06-16 19:47:19,702 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.99 | 56.85 | 69.51 | +-------+-------+-------+ 2024-06-16 19:47:19,703 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 19:47:19,703 - mmseg - INFO - Iter(val) [250] aAcc: 0.8599, mIoU: 0.5685, mAcc: 0.6951, IoU.wall: 0.8133, IoU.building: 0.8483, IoU.sky: 0.9464, IoU.floor: 0.8475, IoU.tree: 0.7779, IoU.ceiling: 0.8706, IoU.road: 0.8531, IoU.bed : 0.9189, IoU.windowpane: 0.6570, IoU.grass: 0.6785, IoU.cabinet: 0.6700, IoU.sidewalk: 0.7128, IoU.person: 0.8422, IoU.earth: 0.4092, IoU.door: 0.6102, IoU.table: 0.7000, IoU.mountain: 0.6386, IoU.plant: 0.5638, IoU.curtain: 0.7569, IoU.chair: 0.6386, IoU.car: 0.8672, IoU.water: 0.6503, IoU.painting: 0.7843, IoU.sofa: 0.8291, IoU.shelf: 0.4858, IoU.house: 0.5194, IoU.sea: 0.7833, IoU.mirror: 0.7741, IoU.rug: 0.6992, IoU.field: 0.3818, IoU.armchair: 0.6350, IoU.seat: 0.6383, IoU.fence: 0.4990, IoU.desk: 0.5965, IoU.rock: 0.5904, IoU.wardrobe: 0.5176, IoU.lamp: 0.7209, IoU.bathtub: 0.8576, IoU.railing: 0.4335, IoU.cushion: 0.6858, IoU.base: 0.3927, IoU.box: 0.3775, IoU.column: 0.5587, IoU.signboard: 0.3834, IoU.chest of drawers: 0.4371, IoU.counter: 0.3914, IoU.sand: 0.5135, IoU.sink: 0.7858, IoU.skyscraper: 0.4692, IoU.fireplace: 0.7390, IoU.refrigerator: 0.8536, IoU.grandstand: 0.5347, IoU.path: 0.3061, IoU.stairs: 0.3035, IoU.runway: 0.6689, IoU.case: 0.6213, IoU.pool table: 0.9401, IoU.pillow: 0.6584, IoU.screen door: 0.7729, IoU.stairway: 0.4091, IoU.river: 0.1468, IoU.bridge: 0.6957, IoU.bookcase: 0.4193, IoU.blind: 0.4276, IoU.coffee table: 0.6600, IoU.toilet: 0.8904, IoU.flower: 0.3816, IoU.book: 0.5324, IoU.hill: 0.0752, IoU.bench: 0.6161, IoU.countertop: 0.6406, IoU.stove: 0.8678, IoU.palm: 0.5039, IoU.kitchen island: 0.6004, IoU.computer: 0.7788, IoU.swivel chair: 0.4643, IoU.boat: 0.7796, IoU.bar: 0.6140, IoU.arcade machine: 0.8262, IoU.hovel: 0.3382, IoU.bus: 0.9121, IoU.towel: 0.7485, IoU.light: 0.5404, IoU.truck: 0.4796, IoU.tower: 0.0316, IoU.chandelier: 0.7221, IoU.awning: 0.3432, IoU.streetlight: 0.3044, IoU.booth: 0.5728, IoU.television receiver: 0.8088, IoU.airplane: 0.8455, IoU.dirt track: 0.1048, IoU.apparel: 0.5670, IoU.pole: 0.2391, IoU.land: 0.0474, IoU.bannister: 0.1918, IoU.escalator: 0.6659, IoU.ottoman: 0.5463, IoU.bottle: 0.4478, IoU.buffet: 0.5255, IoU.poster: 0.3268, IoU.stage: 0.2163, IoU.van: 0.4498, IoU.ship: 0.9124, IoU.fountain: 0.4022, IoU.conveyer belt: 0.7854, IoU.canopy: 0.5172, IoU.washer: 0.8377, IoU.plaything: 0.3340, IoU.swimming pool: 0.5281, IoU.stool: 0.5329, IoU.barrel: 0.5297, IoU.basket: 0.4495, IoU.waterfall: 0.4815, IoU.tent: 0.9066, IoU.bag: 0.2609, IoU.minibike: 0.7501, IoU.cradle: 0.8671, IoU.oven: 0.5787, IoU.ball: 0.1054, IoU.food: 0.6468, IoU.step: 0.0766, IoU.tank: 0.6022, IoU.trade name: 0.2578, IoU.microwave: 0.9008, IoU.pot: 0.5969, IoU.animal: 0.6329, IoU.bicycle: 0.5905, IoU.lake: 0.5314, IoU.dishwasher: 0.7194, IoU.screen: 0.5881, IoU.blanket: 0.3337, IoU.sculpture: 0.6814, IoU.hood: 0.6129, IoU.sconce: 0.5814, IoU.vase: 0.4865, IoU.traffic light: 0.3723, IoU.tray: 0.2188, IoU.ashcan: 0.5107, IoU.fan: 0.6557, IoU.pier: 0.3812, IoU.crt screen: 0.0246, IoU.plate: 0.6079, IoU.monitor: 0.5222, IoU.bulletin board: 0.6095, IoU.shower: 0.1224, IoU.radiator: 0.6368, IoU.glass: 0.1776, IoU.clock: 0.4319, IoU.flag: 0.6757, Acc.wall: 0.8778, Acc.building: 0.9359, Acc.sky: 0.9748, Acc.floor: 0.9172, Acc.tree: 0.8942, Acc.ceiling: 0.9461, Acc.road: 0.9038, Acc.bed : 0.9670, Acc.windowpane: 0.8335, Acc.grass: 0.8303, Acc.cabinet: 0.7802, Acc.sidewalk: 0.8693, Acc.person: 0.9407, Acc.earth: 0.5453, Acc.door: 0.7629, Acc.table: 0.8138, Acc.mountain: 0.7253, Acc.plant: 0.7136, Acc.curtain: 0.9030, Acc.chair: 0.7523, Acc.car: 0.9349, Acc.water: 0.8065, Acc.painting: 0.9150, Acc.sofa: 0.9254, Acc.shelf: 0.6478, Acc.house: 0.6395, Acc.sea: 0.8603, Acc.mirror: 0.8484, Acc.rug: 0.8121, Acc.field: 0.6197, Acc.armchair: 0.8368, Acc.seat: 0.8860, Acc.fence: 0.6419, Acc.desk: 0.7884, Acc.rock: 0.8361, Acc.wardrobe: 0.7394, Acc.lamp: 0.8561, Acc.bathtub: 0.8954, Acc.railing: 0.6438, Acc.cushion: 0.8212, Acc.base: 0.5418, Acc.box: 0.5069, Acc.column: 0.7529, Acc.signboard: 0.5283, Acc.chest of drawers: 0.6617, Acc.counter: 0.4275, Acc.sand: 0.7712, Acc.sink: 0.8602, Acc.skyscraper: 0.5986, Acc.fireplace: 0.9600, Acc.refrigerator: 0.9641, Acc.grandstand: 0.8672, Acc.path: 0.4457, Acc.stairs: 0.3639, Acc.runway: 0.8754, Acc.case: 0.8386, Acc.pool table: 0.9790, Acc.pillow: 0.7850, Acc.screen door: 0.8443, Acc.stairway: 0.5962, Acc.river: 0.2637, Acc.bridge: 0.8924, Acc.bookcase: 0.6515, Acc.blind: 0.4921, Acc.coffee table: 0.8458, Acc.toilet: 0.9435, Acc.flower: 0.4654, Acc.book: 0.7156, Acc.hill: 0.1434, Acc.bench: 0.6975, Acc.countertop: 0.8282, Acc.stove: 0.9306, Acc.palm: 0.6610, Acc.kitchen island: 0.8285, Acc.computer: 0.9223, Acc.swivel chair: 0.6543, Acc.boat: 0.8889, Acc.bar: 0.8933, Acc.arcade machine: 0.8790, Acc.hovel: 0.3666, Acc.bus: 0.9689, Acc.towel: 0.8118, Acc.light: 0.6168, Acc.truck: 0.5996, Acc.tower: 0.0408, Acc.chandelier: 0.8353, Acc.awning: 0.4299, Acc.streetlight: 0.4261, Acc.booth: 0.7044, Acc.television receiver: 0.9063, Acc.airplane: 0.9489, Acc.dirt track: 0.4826, Acc.apparel: 0.7774, Acc.pole: 0.3290, Acc.land: 0.0663, Acc.bannister: 0.2526, Acc.escalator: 0.8443, Acc.ottoman: 0.6990, Acc.bottle: 0.6673, Acc.buffet: 0.5981, Acc.poster: 0.4070, Acc.stage: 0.4949, Acc.van: 0.6527, Acc.ship: 0.9750, Acc.fountain: 0.4125, Acc.conveyer belt: 0.9542, Acc.canopy: 0.7184, Acc.washer: 0.8983, Acc.plaything: 0.4598, Acc.swimming pool: 0.7677, Acc.stool: 0.6651, Acc.barrel: 0.7071, Acc.basket: 0.5739, Acc.waterfall: 0.5984, Acc.tent: 0.9846, Acc.bag: 0.3074, Acc.minibike: 0.8760, Acc.cradle: 0.9749, Acc.oven: 0.7307, Acc.ball: 0.1064, Acc.food: 0.7646, Acc.step: 0.0953, Acc.tank: 0.6913, Acc.trade name: 0.3138, Acc.microwave: 0.9597, Acc.pot: 0.6884, Acc.animal: 0.6481, Acc.bicycle: 0.7594, Acc.lake: 0.6366, Acc.dishwasher: 0.8268, Acc.screen: 0.9172, Acc.blanket: 0.3743, Acc.sculpture: 0.8791, Acc.hood: 0.7416, Acc.sconce: 0.6974, Acc.vase: 0.6197, Acc.traffic light: 0.5800, Acc.tray: 0.2802, Acc.ashcan: 0.6616, Acc.fan: 0.7742, Acc.pier: 0.4506, Acc.crt screen: 0.0398, Acc.plate: 0.7672, Acc.monitor: 0.6120, Acc.bulletin board: 0.7578, Acc.shower: 0.2473, Acc.radiator: 0.8002, Acc.glass: 0.1854, Acc.clock: 0.5044, Acc.flag: 0.7502 2024-06-16 19:48:40,430 - mmseg - INFO - Iter [48050/80000] lr: 1.294e-06, eta: 15:23:54, time: 3.262, data_time: 1.660, memory: 65790, decode.loss_ce: 0.1643, decode.acc_seg: 92.6502, aux.loss_ce: 0.0700, aux.acc_seg: 92.3515, loss: 0.2342 2024-06-16 19:50:00,791 - mmseg - INFO - Iter [48100/80000] lr: 1.292e-06, eta: 15:22:23, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1760, decode.acc_seg: 92.3152, aux.loss_ce: 0.0745, aux.acc_seg: 92.0654, loss: 0.2505 2024-06-16 19:51:21,197 - mmseg - INFO - Iter [48150/80000] lr: 1.290e-06, eta: 15:20:52, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1617, decode.acc_seg: 92.6635, aux.loss_ce: 0.0680, aux.acc_seg: 92.3627, loss: 0.2297 2024-06-16 19:52:41,667 - mmseg - INFO - Iter [48200/80000] lr: 1.288e-06, eta: 15:19:21, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1605, decode.acc_seg: 92.8091, aux.loss_ce: 0.0670, aux.acc_seg: 92.6392, loss: 0.2276 2024-06-16 19:54:02,141 - mmseg - INFO - Iter [48250/80000] lr: 1.286e-06, eta: 15:17:50, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1631, decode.acc_seg: 92.6413, aux.loss_ce: 0.0681, aux.acc_seg: 92.4219, loss: 0.2313 2024-06-16 19:55:22,630 - mmseg - INFO - Iter [48300/80000] lr: 1.284e-06, eta: 15:16:19, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1739, decode.acc_seg: 92.4274, aux.loss_ce: 0.0725, aux.acc_seg: 92.2051, loss: 0.2464 2024-06-16 19:56:43,089 - mmseg - INFO - Iter [48350/80000] lr: 1.282e-06, eta: 15:14:49, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1592, decode.acc_seg: 92.9589, aux.loss_ce: 0.0672, aux.acc_seg: 92.6568, loss: 0.2265 2024-06-16 19:58:03,482 - mmseg - INFO - Iter [48400/80000] lr: 1.280e-06, eta: 15:13:18, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1615, decode.acc_seg: 92.7287, aux.loss_ce: 0.0684, aux.acc_seg: 92.4604, loss: 0.2299 2024-06-16 19:59:23,871 - mmseg - INFO - Iter [48450/80000] lr: 1.278e-06, eta: 15:11:47, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1600, decode.acc_seg: 92.8972, aux.loss_ce: 0.0673, aux.acc_seg: 92.6980, loss: 0.2273 2024-06-16 20:00:44,302 - mmseg - INFO - Iter [48500/80000] lr: 1.276e-06, eta: 15:10:16, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1648, decode.acc_seg: 92.8333, aux.loss_ce: 0.0701, aux.acc_seg: 92.5116, loss: 0.2349 2024-06-16 20:02:04,873 - mmseg - INFO - Iter [48550/80000] lr: 1.274e-06, eta: 15:08:45, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1556, decode.acc_seg: 93.2721, aux.loss_ce: 0.0658, aux.acc_seg: 92.9393, loss: 0.2214 2024-06-16 20:03:25,371 - mmseg - INFO - Iter [48600/80000] lr: 1.272e-06, eta: 15:07:15, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1655, decode.acc_seg: 92.7670, aux.loss_ce: 0.0693, aux.acc_seg: 92.6068, loss: 0.2348 2024-06-16 20:04:45,783 - mmseg - INFO - Iter [48650/80000] lr: 1.270e-06, eta: 15:05:44, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1638, decode.acc_seg: 92.8684, aux.loss_ce: 0.0688, aux.acc_seg: 92.5790, loss: 0.2326 2024-06-16 20:06:06,188 - mmseg - INFO - Iter [48700/80000] lr: 1.268e-06, eta: 15:04:13, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1700, decode.acc_seg: 92.5646, aux.loss_ce: 0.0716, aux.acc_seg: 92.2787, loss: 0.2416 2024-06-16 20:07:26,580 - mmseg - INFO - Iter [48750/80000] lr: 1.266e-06, eta: 15:02:43, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1658, decode.acc_seg: 92.7373, aux.loss_ce: 0.0692, aux.acc_seg: 92.4860, loss: 0.2350 2024-06-16 20:08:47,034 - mmseg - INFO - Iter [48800/80000] lr: 1.264e-06, eta: 15:01:12, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1657, decode.acc_seg: 92.6266, aux.loss_ce: 0.0694, aux.acc_seg: 92.3744, loss: 0.2351 2024-06-16 20:10:07,638 - mmseg - INFO - Iter [48850/80000] lr: 1.262e-06, eta: 14:59:42, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1669, decode.acc_seg: 92.3786, aux.loss_ce: 0.0701, aux.acc_seg: 92.1394, loss: 0.2370 2024-06-16 20:11:28,163 - mmseg - INFO - Iter [48900/80000] lr: 1.260e-06, eta: 14:58:11, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1628, decode.acc_seg: 92.6956, aux.loss_ce: 0.0685, aux.acc_seg: 92.4338, loss: 0.2313 2024-06-16 20:12:48,570 - mmseg - INFO - Iter [48950/80000] lr: 1.257e-06, eta: 14:56:40, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1728, decode.acc_seg: 92.3996, aux.loss_ce: 0.0724, aux.acc_seg: 92.1855, loss: 0.2453 2024-06-16 20:14:09,000 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 20:14:09,001 - mmseg - INFO - Iter [49000/80000] lr: 1.255e-06, eta: 14:55:10, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1694, decode.acc_seg: 92.6450, aux.loss_ce: 0.0716, aux.acc_seg: 92.3710, loss: 0.2410 2024-06-16 20:15:32,270 - mmseg - INFO - per class results: 2024-06-16 20:15:32,276 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 81.82 | 89.51 | | building | 84.19 | 92.32 | | sky | 94.45 | 97.29 | | floor | 83.59 | 91.83 | | tree | 77.31 | 89.13 | | ceiling | 86.72 | 94.28 | | road | 84.36 | 90.39 | | bed | 92.2 | 96.7 | | windowpane | 66.84 | 81.67 | | grass | 67.16 | 82.57 | | cabinet | 65.75 | 73.89 | | sidewalk | 67.43 | 85.34 | | person | 84.1 | 93.54 | | earth | 40.01 | 50.47 | | door | 60.78 | 75.86 | | table | 69.52 | 82.48 | | mountain | 62.84 | 73.41 | | plant | 54.83 | 66.88 | | curtain | 77.23 | 89.89 | | chair | 65.44 | 78.8 | | car | 86.44 | 94.3 | | water | 60.98 | 75.65 | | painting | 79.48 | 89.44 | | sofa | 80.89 | 87.96 | | shelf | 46.19 | 59.7 | | house | 49.98 | 67.24 | | sea | 77.0 | 91.14 | | mirror | 74.65 | 81.41 | | rug | 58.32 | 65.37 | | field | 35.26 | 63.67 | | armchair | 62.18 | 81.43 | | seat | 68.02 | 88.42 | | fence | 50.38 | 68.49 | | desk | 60.12 | 78.67 | | rock | 56.4 | 84.44 | | wardrobe | 51.7 | 77.55 | | lamp | 72.27 | 83.03 | | bathtub | 85.29 | 88.59 | | railing | 42.48 | 59.27 | | cushion | 66.79 | 83.93 | | base | 43.72 | 58.1 | | box | 36.19 | 41.61 | | column | 58.45 | 73.86 | | signboard | 39.28 | 55.44 | | chest of drawers | 49.83 | 82.59 | | counter | 46.08 | 57.4 | | sand | 50.38 | 77.05 | | sink | 77.14 | 83.84 | | skyscraper | 46.98 | 58.72 | | fireplace | 73.29 | 94.22 | | refrigerator | 85.26 | 97.4 | | grandstand | 61.52 | 85.34 | | path | 20.96 | 25.37 | | stairs | 31.31 | 38.55 | | runway | 67.96 | 86.92 | | case | 60.05 | 81.64 | | pool table | 94.14 | 97.92 | | pillow | 64.57 | 74.53 | | screen door | 78.95 | 84.8 | | stairway | 40.74 | 65.87 | | river | 13.87 | 26.15 | | bridge | 72.6 | 82.6 | | bookcase | 40.19 | 57.96 | | blind | 44.85 | 51.96 | | coffee table | 65.58 | 85.39 | | toilet | 90.18 | 94.4 | | flower | 39.87 | 55.31 | | book | 51.76 | 79.13 | | hill | 7.56 | 13.07 | | bench | 67.44 | 77.77 | | countertop | 64.21 | 83.69 | | stove | 86.09 | 91.62 | | palm | 52.78 | 78.41 | | kitchen island | 57.98 | 88.96 | | computer | 78.41 | 90.69 | | swivel chair | 45.28 | 66.81 | | boat | 77.39 | 91.23 | | bar | 60.24 | 85.89 | | arcade machine | 81.54 | 86.42 | | hovel | 49.36 | 57.32 | | bus | 91.44 | 96.99 | | towel | 75.08 | 84.7 | | light | 50.27 | 56.18 | | truck | 46.33 | 61.91 | | tower | 20.59 | 33.59 | | chandelier | 71.74 | 84.51 | | awning | 35.73 | 45.69 | | streetlight | 29.57 | 37.76 | | booth | 65.44 | 67.88 | | television receiver | 80.16 | 87.71 | | airplane | 86.57 | 94.99 | | dirt track | 18.74 | 35.27 | | apparel | 55.91 | 73.3 | | pole | 23.56 | 35.48 | | land | 5.0 | 7.28 | | bannister | 13.01 | 15.09 | | escalator | 67.0 | 84.1 | | ottoman | 56.13 | 73.79 | | bottle | 43.91 | 73.92 | | buffet | 57.43 | 63.74 | | poster | 33.16 | 40.26 | | stage | 24.6 | 46.39 | | van | 48.22 | 67.74 | | ship | 91.4 | 97.99 | | fountain | 39.62 | 40.5 | | conveyer belt | 79.21 | 96.56 | | canopy | 54.77 | 77.04 | | washer | 85.79 | 92.22 | | plaything | 31.06 | 48.27 | | swimming pool | 52.39 | 75.65 | | stool | 45.88 | 65.56 | | barrel | 56.19 | 81.28 | | basket | 45.17 | 60.55 | | waterfall | 50.35 | 62.09 | | tent | 93.03 | 98.59 | | bag | 26.4 | 29.97 | | minibike | 74.9 | 86.09 | | cradle | 86.9 | 96.63 | | oven | 59.83 | 75.5 | | ball | 62.32 | 76.47 | | food | 56.48 | 63.7 | | step | 10.98 | 17.31 | | tank | 61.37 | 66.09 | | trade name | 24.72 | 30.37 | | microwave | 90.19 | 96.29 | | pot | 58.76 | 67.97 | | animal | 59.2 | 60.6 | | bicycle | 58.8 | 81.84 | | lake | 51.7 | 63.58 | | dishwasher | 70.68 | 82.77 | | screen | 53.88 | 79.25 | | blanket | 38.34 | 45.89 | | sculpture | 70.25 | 85.67 | | hood | 62.39 | 70.68 | | sconce | 57.78 | 67.17 | | vase | 47.54 | 64.88 | | traffic light | 37.88 | 59.14 | | tray | 24.18 | 28.45 | | ashcan | 50.85 | 69.0 | | fan | 64.57 | 76.1 | | pier | 39.41 | 45.42 | | crt screen | 9.06 | 21.32 | | plate | 62.27 | 78.4 | | monitor | 35.0 | 39.46 | | bulletin board | 59.33 | 74.25 | | shower | 23.74 | 26.57 | | radiator | 65.36 | 78.82 | | glass | 20.32 | 21.66 | | clock | 47.01 | 57.67 | | flag | 65.36 | 75.55 | +---------------------+-------+-------+ 2024-06-16 20:15:32,276 - mmseg - INFO - Summary: 2024-06-16 20:15:32,276 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.75 | 57.45 | 70.25 | +-------+-------+-------+ 2024-06-16 20:15:32,277 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 20:15:32,277 - mmseg - INFO - Iter(val) [250] aAcc: 0.8575, mIoU: 0.5745, mAcc: 0.7025, IoU.wall: 0.8182, IoU.building: 0.8419, IoU.sky: 0.9445, IoU.floor: 0.8359, IoU.tree: 0.7731, IoU.ceiling: 0.8672, IoU.road: 0.8436, IoU.bed : 0.9220, IoU.windowpane: 0.6684, IoU.grass: 0.6716, IoU.cabinet: 0.6575, IoU.sidewalk: 0.6743, IoU.person: 0.8410, IoU.earth: 0.4001, IoU.door: 0.6078, IoU.table: 0.6952, IoU.mountain: 0.6284, IoU.plant: 0.5483, IoU.curtain: 0.7723, IoU.chair: 0.6544, IoU.car: 0.8644, IoU.water: 0.6098, IoU.painting: 0.7948, IoU.sofa: 0.8089, IoU.shelf: 0.4619, IoU.house: 0.4998, IoU.sea: 0.7700, IoU.mirror: 0.7465, IoU.rug: 0.5832, IoU.field: 0.3526, IoU.armchair: 0.6218, IoU.seat: 0.6802, IoU.fence: 0.5038, IoU.desk: 0.6012, IoU.rock: 0.5640, IoU.wardrobe: 0.5170, IoU.lamp: 0.7227, IoU.bathtub: 0.8529, IoU.railing: 0.4248, IoU.cushion: 0.6679, IoU.base: 0.4372, IoU.box: 0.3619, IoU.column: 0.5845, IoU.signboard: 0.3928, IoU.chest of drawers: 0.4983, IoU.counter: 0.4608, IoU.sand: 0.5038, IoU.sink: 0.7714, IoU.skyscraper: 0.4698, IoU.fireplace: 0.7329, IoU.refrigerator: 0.8526, IoU.grandstand: 0.6152, IoU.path: 0.2096, IoU.stairs: 0.3131, IoU.runway: 0.6796, IoU.case: 0.6005, IoU.pool table: 0.9414, IoU.pillow: 0.6457, IoU.screen door: 0.7895, IoU.stairway: 0.4074, IoU.river: 0.1387, IoU.bridge: 0.7260, IoU.bookcase: 0.4019, IoU.blind: 0.4485, IoU.coffee table: 0.6558, IoU.toilet: 0.9018, IoU.flower: 0.3987, IoU.book: 0.5176, IoU.hill: 0.0756, IoU.bench: 0.6744, IoU.countertop: 0.6421, IoU.stove: 0.8609, IoU.palm: 0.5278, IoU.kitchen island: 0.5798, IoU.computer: 0.7841, IoU.swivel chair: 0.4528, IoU.boat: 0.7739, IoU.bar: 0.6024, IoU.arcade machine: 0.8154, IoU.hovel: 0.4936, IoU.bus: 0.9144, IoU.towel: 0.7508, IoU.light: 0.5027, IoU.truck: 0.4633, IoU.tower: 0.2059, IoU.chandelier: 0.7174, IoU.awning: 0.3573, IoU.streetlight: 0.2957, IoU.booth: 0.6544, IoU.television receiver: 0.8016, IoU.airplane: 0.8657, IoU.dirt track: 0.1874, IoU.apparel: 0.5591, IoU.pole: 0.2356, IoU.land: 0.0500, IoU.bannister: 0.1301, IoU.escalator: 0.6700, IoU.ottoman: 0.5613, IoU.bottle: 0.4391, IoU.buffet: 0.5743, IoU.poster: 0.3316, IoU.stage: 0.2460, IoU.van: 0.4822, IoU.ship: 0.9140, IoU.fountain: 0.3962, IoU.conveyer belt: 0.7921, IoU.canopy: 0.5477, IoU.washer: 0.8579, IoU.plaything: 0.3106, IoU.swimming pool: 0.5239, IoU.stool: 0.4588, IoU.barrel: 0.5619, IoU.basket: 0.4517, IoU.waterfall: 0.5035, IoU.tent: 0.9303, IoU.bag: 0.2640, IoU.minibike: 0.7490, IoU.cradle: 0.8690, IoU.oven: 0.5983, IoU.ball: 0.6232, IoU.food: 0.5648, IoU.step: 0.1098, IoU.tank: 0.6137, IoU.trade name: 0.2472, IoU.microwave: 0.9019, IoU.pot: 0.5876, IoU.animal: 0.5920, IoU.bicycle: 0.5880, IoU.lake: 0.5170, IoU.dishwasher: 0.7068, IoU.screen: 0.5388, IoU.blanket: 0.3834, IoU.sculpture: 0.7025, IoU.hood: 0.6239, IoU.sconce: 0.5778, IoU.vase: 0.4754, IoU.traffic light: 0.3788, IoU.tray: 0.2418, IoU.ashcan: 0.5085, IoU.fan: 0.6457, IoU.pier: 0.3941, IoU.crt screen: 0.0906, IoU.plate: 0.6227, IoU.monitor: 0.3500, IoU.bulletin board: 0.5933, IoU.shower: 0.2374, IoU.radiator: 0.6536, IoU.glass: 0.2032, IoU.clock: 0.4701, IoU.flag: 0.6536, Acc.wall: 0.8951, Acc.building: 0.9232, Acc.sky: 0.9729, Acc.floor: 0.9183, Acc.tree: 0.8913, Acc.ceiling: 0.9428, Acc.road: 0.9039, Acc.bed : 0.9670, Acc.windowpane: 0.8167, Acc.grass: 0.8257, Acc.cabinet: 0.7389, Acc.sidewalk: 0.8534, Acc.person: 0.9354, Acc.earth: 0.5047, Acc.door: 0.7586, Acc.table: 0.8248, Acc.mountain: 0.7341, Acc.plant: 0.6688, Acc.curtain: 0.8989, Acc.chair: 0.7880, Acc.car: 0.9430, Acc.water: 0.7565, Acc.painting: 0.8944, Acc.sofa: 0.8796, Acc.shelf: 0.5970, Acc.house: 0.6724, Acc.sea: 0.9114, Acc.mirror: 0.8141, Acc.rug: 0.6537, Acc.field: 0.6367, Acc.armchair: 0.8143, Acc.seat: 0.8842, Acc.fence: 0.6849, Acc.desk: 0.7867, Acc.rock: 0.8444, Acc.wardrobe: 0.7755, Acc.lamp: 0.8303, Acc.bathtub: 0.8859, Acc.railing: 0.5927, Acc.cushion: 0.8393, Acc.base: 0.5810, Acc.box: 0.4161, Acc.column: 0.7386, Acc.signboard: 0.5544, Acc.chest of drawers: 0.8259, Acc.counter: 0.5740, Acc.sand: 0.7705, Acc.sink: 0.8384, Acc.skyscraper: 0.5872, Acc.fireplace: 0.9422, Acc.refrigerator: 0.9740, Acc.grandstand: 0.8534, Acc.path: 0.2537, Acc.stairs: 0.3855, Acc.runway: 0.8692, Acc.case: 0.8164, Acc.pool table: 0.9792, Acc.pillow: 0.7453, Acc.screen door: 0.8480, Acc.stairway: 0.6587, Acc.river: 0.2615, Acc.bridge: 0.8260, Acc.bookcase: 0.5796, Acc.blind: 0.5196, Acc.coffee table: 0.8539, Acc.toilet: 0.9440, Acc.flower: 0.5531, Acc.book: 0.7913, Acc.hill: 0.1307, Acc.bench: 0.7777, Acc.countertop: 0.8369, Acc.stove: 0.9162, Acc.palm: 0.7841, Acc.kitchen island: 0.8896, Acc.computer: 0.9069, Acc.swivel chair: 0.6681, Acc.boat: 0.9123, Acc.bar: 0.8589, Acc.arcade machine: 0.8642, Acc.hovel: 0.5732, Acc.bus: 0.9699, Acc.towel: 0.8470, Acc.light: 0.5618, Acc.truck: 0.6191, Acc.tower: 0.3359, Acc.chandelier: 0.8451, Acc.awning: 0.4569, Acc.streetlight: 0.3776, Acc.booth: 0.6788, Acc.television receiver: 0.8771, Acc.airplane: 0.9499, Acc.dirt track: 0.3527, Acc.apparel: 0.7330, Acc.pole: 0.3548, Acc.land: 0.0728, Acc.bannister: 0.1509, Acc.escalator: 0.8410, Acc.ottoman: 0.7379, Acc.bottle: 0.7392, Acc.buffet: 0.6374, Acc.poster: 0.4026, Acc.stage: 0.4639, Acc.van: 0.6774, Acc.ship: 0.9799, Acc.fountain: 0.4050, Acc.conveyer belt: 0.9656, Acc.canopy: 0.7704, Acc.washer: 0.9222, Acc.plaything: 0.4827, Acc.swimming pool: 0.7565, Acc.stool: 0.6556, Acc.barrel: 0.8128, Acc.basket: 0.6055, Acc.waterfall: 0.6209, Acc.tent: 0.9859, Acc.bag: 0.2997, Acc.minibike: 0.8609, Acc.cradle: 0.9663, Acc.oven: 0.7550, Acc.ball: 0.7647, Acc.food: 0.6370, Acc.step: 0.1731, Acc.tank: 0.6609, Acc.trade name: 0.3037, Acc.microwave: 0.9629, Acc.pot: 0.6797, Acc.animal: 0.6060, Acc.bicycle: 0.8184, Acc.lake: 0.6358, Acc.dishwasher: 0.8277, Acc.screen: 0.7925, Acc.blanket: 0.4589, Acc.sculpture: 0.8567, Acc.hood: 0.7068, Acc.sconce: 0.6717, Acc.vase: 0.6488, Acc.traffic light: 0.5914, Acc.tray: 0.2845, Acc.ashcan: 0.6900, Acc.fan: 0.7610, Acc.pier: 0.4542, Acc.crt screen: 0.2132, Acc.plate: 0.7840, Acc.monitor: 0.3946, Acc.bulletin board: 0.7425, Acc.shower: 0.2657, Acc.radiator: 0.7882, Acc.glass: 0.2166, Acc.clock: 0.5767, Acc.flag: 0.7555 2024-06-16 20:16:52,991 - mmseg - INFO - Iter [49050/80000] lr: 1.253e-06, eta: 14:54:32, time: 3.280, data_time: 1.679, memory: 65790, decode.loss_ce: 0.1663, decode.acc_seg: 92.8030, aux.loss_ce: 0.0697, aux.acc_seg: 92.5546, loss: 0.2360 2024-06-16 20:18:13,418 - mmseg - INFO - Iter [49100/80000] lr: 1.251e-06, eta: 14:53:01, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1589, decode.acc_seg: 92.9792, aux.loss_ce: 0.0667, aux.acc_seg: 92.7984, loss: 0.2256 2024-06-16 20:19:33,990 - mmseg - INFO - Iter [49150/80000] lr: 1.249e-06, eta: 14:51:31, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1714, decode.acc_seg: 92.5738, aux.loss_ce: 0.0716, aux.acc_seg: 92.3376, loss: 0.2430 2024-06-16 20:20:54,410 - mmseg - INFO - Iter [49200/80000] lr: 1.247e-06, eta: 14:50:00, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1628, decode.acc_seg: 92.7268, aux.loss_ce: 0.0683, aux.acc_seg: 92.4550, loss: 0.2311 2024-06-16 20:22:14,797 - mmseg - INFO - Iter [49250/80000] lr: 1.245e-06, eta: 14:48:30, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1755, decode.acc_seg: 92.3808, aux.loss_ce: 0.0738, aux.acc_seg: 92.0685, loss: 0.2492 2024-06-16 20:23:38,377 - mmseg - INFO - Iter [49300/80000] lr: 1.243e-06, eta: 14:47:01, time: 1.672, data_time: 0.066, memory: 65790, decode.loss_ce: 0.1532, decode.acc_seg: 93.1053, aux.loss_ce: 0.0642, aux.acc_seg: 92.8751, loss: 0.2175 2024-06-16 20:24:58,734 - mmseg - INFO - Iter [49350/80000] lr: 1.241e-06, eta: 14:45:30, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1544, decode.acc_seg: 93.1187, aux.loss_ce: 0.0647, aux.acc_seg: 92.9333, loss: 0.2190 2024-06-16 20:26:19,204 - mmseg - INFO - Iter [49400/80000] lr: 1.239e-06, eta: 14:44:00, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1512, decode.acc_seg: 93.3211, aux.loss_ce: 0.0642, aux.acc_seg: 92.9569, loss: 0.2153 2024-06-16 20:27:39,675 - mmseg - INFO - Iter [49450/80000] lr: 1.237e-06, eta: 14:42:29, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1609, decode.acc_seg: 92.9034, aux.loss_ce: 0.0676, aux.acc_seg: 92.7089, loss: 0.2286 2024-06-16 20:29:00,086 - mmseg - INFO - Iter [49500/80000] lr: 1.235e-06, eta: 14:40:59, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1591, decode.acc_seg: 92.9088, aux.loss_ce: 0.0675, aux.acc_seg: 92.6369, loss: 0.2267 2024-06-16 20:30:20,519 - mmseg - INFO - Iter [49550/80000] lr: 1.233e-06, eta: 14:39:28, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1605, decode.acc_seg: 92.8859, aux.loss_ce: 0.0675, aux.acc_seg: 92.6159, loss: 0.2280 2024-06-16 20:31:40,949 - mmseg - INFO - Iter [49600/80000] lr: 1.231e-06, eta: 14:37:58, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1674, decode.acc_seg: 92.7154, aux.loss_ce: 0.0705, aux.acc_seg: 92.3655, loss: 0.2379 2024-06-16 20:33:01,335 - mmseg - INFO - Iter [49650/80000] lr: 1.229e-06, eta: 14:36:27, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1565, decode.acc_seg: 93.0974, aux.loss_ce: 0.0664, aux.acc_seg: 92.8242, loss: 0.2229 2024-06-16 20:34:21,774 - mmseg - INFO - Iter [49700/80000] lr: 1.227e-06, eta: 14:34:57, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1879, decode.acc_seg: 92.3157, aux.loss_ce: 0.0795, aux.acc_seg: 91.9462, loss: 0.2674 2024-06-16 20:35:42,292 - mmseg - INFO - Iter [49750/80000] lr: 1.225e-06, eta: 14:33:27, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1638, decode.acc_seg: 92.8340, aux.loss_ce: 0.0690, aux.acc_seg: 92.5288, loss: 0.2327 2024-06-16 20:37:02,879 - mmseg - INFO - Iter [49800/80000] lr: 1.223e-06, eta: 14:31:56, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1721, decode.acc_seg: 92.4613, aux.loss_ce: 0.0719, aux.acc_seg: 92.1964, loss: 0.2440 2024-06-16 20:38:23,435 - mmseg - INFO - Iter [49850/80000] lr: 1.221e-06, eta: 14:30:26, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1632, decode.acc_seg: 92.9043, aux.loss_ce: 0.0679, aux.acc_seg: 92.6827, loss: 0.2311 2024-06-16 20:39:43,931 - mmseg - INFO - Iter [49900/80000] lr: 1.219e-06, eta: 14:28:56, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1748, decode.acc_seg: 92.2396, aux.loss_ce: 0.0743, aux.acc_seg: 91.9107, loss: 0.2491 2024-06-16 20:41:04,339 - mmseg - INFO - Iter [49950/80000] lr: 1.217e-06, eta: 14:27:25, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1638, decode.acc_seg: 92.6747, aux.loss_ce: 0.0688, aux.acc_seg: 92.4989, loss: 0.2326 2024-06-16 20:42:24,784 - mmseg - INFO - Saving checkpoint at 50000 iterations 2024-06-16 20:43:37,257 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 20:43:37,257 - mmseg - INFO - Iter [50000/80000] lr: 1.215e-06, eta: 14:26:39, time: 3.058, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1650, decode.acc_seg: 92.6190, aux.loss_ce: 0.0700, aux.acc_seg: 92.3068, loss: 0.2351 2024-06-16 20:45:02,399 - mmseg - INFO - per class results: 2024-06-16 20:45:02,405 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 81.72 | 89.47 | | building | 84.92 | 92.89 | | sky | 94.48 | 97.9 | | floor | 84.2 | 90.83 | | tree | 76.9 | 88.73 | | ceiling | 87.52 | 94.14 | | road | 85.25 | 91.27 | | bed | 92.12 | 96.73 | | windowpane | 66.72 | 82.97 | | grass | 68.21 | 79.33 | | cabinet | 65.09 | 73.7 | | sidewalk | 69.5 | 84.58 | | person | 84.51 | 94.21 | | earth | 39.13 | 52.3 | | door | 59.42 | 73.92 | | table | 68.93 | 79.88 | | mountain | 62.77 | 71.63 | | plant | 54.95 | 68.8 | | curtain | 78.84 | 88.86 | | chair | 64.52 | 78.41 | | car | 86.67 | 93.63 | | water | 64.15 | 78.67 | | painting | 77.7 | 92.52 | | sofa | 82.63 | 91.6 | | shelf | 44.43 | 60.04 | | house | 50.95 | 62.94 | | sea | 76.83 | 85.54 | | mirror | 78.82 | 88.46 | | rug | 67.51 | 82.5 | | field | 30.06 | 57.05 | | armchair | 61.78 | 78.18 | | seat | 64.83 | 89.81 | | fence | 52.92 | 66.37 | | desk | 56.46 | 75.73 | | rock | 58.49 | 86.62 | | wardrobe | 52.04 | 75.08 | | lamp | 72.27 | 84.34 | | bathtub | 85.75 | 88.67 | | railing | 43.27 | 59.69 | | cushion | 67.81 | 84.89 | | base | 43.37 | 57.93 | | box | 39.73 | 52.21 | | column | 57.04 | 70.63 | | signboard | 39.73 | 55.99 | | chest of drawers | 50.83 | 75.29 | | counter | 46.07 | 52.07 | | sand | 52.15 | 78.01 | | sink | 78.33 | 85.85 | | skyscraper | 47.51 | 59.59 | | fireplace | 74.62 | 93.92 | | refrigerator | 84.73 | 93.56 | | grandstand | 56.87 | 83.91 | | path | 25.8 | 31.48 | | stairs | 26.96 | 31.18 | | runway | 69.33 | 91.09 | | case | 59.21 | 74.19 | | pool table | 93.2 | 98.43 | | pillow | 65.24 | 76.26 | | screen door | 73.31 | 80.94 | | stairway | 40.06 | 65.87 | | river | 13.87 | 28.47 | | bridge | 72.52 | 88.54 | | bookcase | 39.85 | 59.96 | | blind | 40.79 | 45.03 | | coffee table | 61.61 | 87.36 | | toilet | 90.73 | 94.73 | | flower | 42.1 | 60.3 | | book | 53.03 | 77.69 | | hill | 10.16 | 17.15 | | bench | 56.58 | 62.55 | | countertop | 61.11 | 87.01 | | stove | 86.04 | 91.93 | | palm | 53.03 | 74.96 | | kitchen island | 55.29 | 90.02 | | computer | 77.64 | 91.86 | | swivel chair | 47.74 | 70.22 | | boat | 78.22 | 89.43 | | bar | 61.03 | 89.34 | | arcade machine | 80.34 | 85.57 | | hovel | 24.75 | 26.47 | | bus | 91.43 | 96.93 | | towel | 76.67 | 84.72 | | light | 54.92 | 68.17 | | truck | 46.55 | 64.31 | | tower | 29.47 | 47.77 | | chandelier | 72.23 | 87.54 | | awning | 35.25 | 42.16 | | streetlight | 30.58 | 42.02 | | booth | 49.53 | 67.94 | | television receiver | 81.0 | 90.11 | | airplane | 85.57 | 91.79 | | dirt track | 17.5 | 27.92 | | apparel | 53.28 | 71.55 | | pole | 24.69 | 38.61 | | land | 4.62 | 6.41 | | bannister | 17.84 | 22.1 | | escalator | 66.5 | 87.23 | | ottoman | 53.36 | 74.44 | | bottle | 41.25 | 65.07 | | buffet | 60.69 | 69.27 | | poster | 29.97 | 38.46 | | stage | 20.03 | 51.12 | | van | 48.86 | 69.68 | | ship | 90.97 | 98.04 | | fountain | 36.85 | 37.67 | | conveyer belt | 78.6 | 94.86 | | canopy | 51.22 | 63.83 | | washer | 82.72 | 88.2 | | plaything | 31.79 | 48.07 | | swimming pool | 54.1 | 78.68 | | stool | 45.92 | 69.42 | | barrel | 50.34 | 70.7 | | basket | 45.57 | 62.05 | | waterfall | 52.28 | 66.61 | | tent | 95.25 | 98.75 | | bag | 25.45 | 29.18 | | minibike | 73.98 | 89.9 | | cradle | 88.66 | 97.62 | | oven | 58.63 | 72.44 | | ball | 63.82 | 76.89 | | food | 58.63 | 72.86 | | step | 10.91 | 16.19 | | tank | 61.34 | 66.76 | | trade name | 23.67 | 27.62 | | microwave | 89.89 | 96.18 | | pot | 60.62 | 72.08 | | animal | 64.58 | 66.7 | | bicycle | 60.29 | 80.31 | | lake | 46.63 | 63.64 | | dishwasher | 70.78 | 80.61 | | screen | 60.91 | 89.55 | | blanket | 34.86 | 39.44 | | sculpture | 70.9 | 86.91 | | hood | 62.57 | 74.11 | | sconce | 59.03 | 71.57 | | vase | 48.68 | 63.86 | | traffic light | 38.37 | 53.61 | | tray | 23.67 | 42.09 | | ashcan | 52.72 | 71.48 | | fan | 66.28 | 81.69 | | pier | 37.88 | 45.63 | | crt screen | 5.01 | 13.26 | | plate | 60.81 | 81.25 | | monitor | 17.35 | 19.05 | | bulletin board | 60.21 | 78.46 | | shower | 16.79 | 17.51 | | radiator | 64.6 | 78.33 | | glass | 21.08 | 22.91 | | clock | 49.72 | 61.76 | | flag | 68.59 | 74.11 | +---------------------+-------+-------+ 2024-06-16 20:45:02,405 - mmseg - INFO - Summary: 2024-06-16 20:45:02,405 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.83 | 57.07 | 70.25 | +-------+-------+-------+ 2024-06-16 20:45:02,406 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 20:45:02,406 - mmseg - INFO - Iter(val) [250] aAcc: 0.8583, mIoU: 0.5707, mAcc: 0.7025, IoU.wall: 0.8172, IoU.building: 0.8492, IoU.sky: 0.9448, IoU.floor: 0.8420, IoU.tree: 0.7690, IoU.ceiling: 0.8752, IoU.road: 0.8525, IoU.bed : 0.9212, IoU.windowpane: 0.6672, IoU.grass: 0.6821, IoU.cabinet: 0.6509, IoU.sidewalk: 0.6950, IoU.person: 0.8451, IoU.earth: 0.3913, IoU.door: 0.5942, IoU.table: 0.6893, IoU.mountain: 0.6277, IoU.plant: 0.5495, IoU.curtain: 0.7884, IoU.chair: 0.6452, IoU.car: 0.8667, IoU.water: 0.6415, IoU.painting: 0.7770, IoU.sofa: 0.8263, IoU.shelf: 0.4443, IoU.house: 0.5095, IoU.sea: 0.7683, IoU.mirror: 0.7882, IoU.rug: 0.6751, IoU.field: 0.3006, IoU.armchair: 0.6178, IoU.seat: 0.6483, IoU.fence: 0.5292, IoU.desk: 0.5646, IoU.rock: 0.5849, IoU.wardrobe: 0.5204, IoU.lamp: 0.7227, IoU.bathtub: 0.8575, IoU.railing: 0.4327, IoU.cushion: 0.6781, IoU.base: 0.4337, IoU.box: 0.3973, IoU.column: 0.5704, IoU.signboard: 0.3973, IoU.chest of drawers: 0.5083, IoU.counter: 0.4607, IoU.sand: 0.5215, IoU.sink: 0.7833, IoU.skyscraper: 0.4751, IoU.fireplace: 0.7462, IoU.refrigerator: 0.8473, IoU.grandstand: 0.5687, IoU.path: 0.2580, IoU.stairs: 0.2696, IoU.runway: 0.6933, IoU.case: 0.5921, IoU.pool table: 0.9320, IoU.pillow: 0.6524, IoU.screen door: 0.7331, IoU.stairway: 0.4006, IoU.river: 0.1387, IoU.bridge: 0.7252, IoU.bookcase: 0.3985, IoU.blind: 0.4079, IoU.coffee table: 0.6161, IoU.toilet: 0.9073, IoU.flower: 0.4210, IoU.book: 0.5303, IoU.hill: 0.1016, IoU.bench: 0.5658, IoU.countertop: 0.6111, IoU.stove: 0.8604, IoU.palm: 0.5303, IoU.kitchen island: 0.5529, IoU.computer: 0.7764, IoU.swivel chair: 0.4774, IoU.boat: 0.7822, IoU.bar: 0.6103, IoU.arcade machine: 0.8034, IoU.hovel: 0.2475, IoU.bus: 0.9143, IoU.towel: 0.7667, IoU.light: 0.5492, IoU.truck: 0.4655, IoU.tower: 0.2947, IoU.chandelier: 0.7223, IoU.awning: 0.3525, IoU.streetlight: 0.3058, IoU.booth: 0.4953, IoU.television receiver: 0.8100, IoU.airplane: 0.8557, IoU.dirt track: 0.1750, IoU.apparel: 0.5328, IoU.pole: 0.2469, IoU.land: 0.0462, IoU.bannister: 0.1784, IoU.escalator: 0.6650, IoU.ottoman: 0.5336, IoU.bottle: 0.4125, IoU.buffet: 0.6069, IoU.poster: 0.2997, IoU.stage: 0.2003, IoU.van: 0.4886, IoU.ship: 0.9097, IoU.fountain: 0.3685, IoU.conveyer belt: 0.7860, IoU.canopy: 0.5122, IoU.washer: 0.8272, IoU.plaything: 0.3179, IoU.swimming pool: 0.5410, IoU.stool: 0.4592, IoU.barrel: 0.5034, IoU.basket: 0.4557, IoU.waterfall: 0.5228, IoU.tent: 0.9525, IoU.bag: 0.2545, IoU.minibike: 0.7398, IoU.cradle: 0.8866, IoU.oven: 0.5863, IoU.ball: 0.6382, IoU.food: 0.5863, IoU.step: 0.1091, IoU.tank: 0.6134, IoU.trade name: 0.2367, IoU.microwave: 0.8989, IoU.pot: 0.6062, IoU.animal: 0.6458, IoU.bicycle: 0.6029, IoU.lake: 0.4663, IoU.dishwasher: 0.7078, IoU.screen: 0.6091, IoU.blanket: 0.3486, IoU.sculpture: 0.7090, IoU.hood: 0.6257, IoU.sconce: 0.5903, IoU.vase: 0.4868, IoU.traffic light: 0.3837, IoU.tray: 0.2367, IoU.ashcan: 0.5272, IoU.fan: 0.6628, IoU.pier: 0.3788, IoU.crt screen: 0.0501, IoU.plate: 0.6081, IoU.monitor: 0.1735, IoU.bulletin board: 0.6021, IoU.shower: 0.1679, IoU.radiator: 0.6460, IoU.glass: 0.2108, IoU.clock: 0.4972, IoU.flag: 0.6859, Acc.wall: 0.8947, Acc.building: 0.9289, Acc.sky: 0.9790, Acc.floor: 0.9083, Acc.tree: 0.8873, Acc.ceiling: 0.9414, Acc.road: 0.9127, Acc.bed : 0.9673, Acc.windowpane: 0.8297, Acc.grass: 0.7933, Acc.cabinet: 0.7370, Acc.sidewalk: 0.8458, Acc.person: 0.9421, Acc.earth: 0.5230, Acc.door: 0.7392, Acc.table: 0.7988, Acc.mountain: 0.7163, Acc.plant: 0.6880, Acc.curtain: 0.8886, Acc.chair: 0.7841, Acc.car: 0.9363, Acc.water: 0.7867, Acc.painting: 0.9252, Acc.sofa: 0.9160, Acc.shelf: 0.6004, Acc.house: 0.6294, Acc.sea: 0.8554, Acc.mirror: 0.8846, Acc.rug: 0.8250, Acc.field: 0.5705, Acc.armchair: 0.7818, Acc.seat: 0.8981, Acc.fence: 0.6637, Acc.desk: 0.7573, Acc.rock: 0.8662, Acc.wardrobe: 0.7508, Acc.lamp: 0.8434, Acc.bathtub: 0.8867, Acc.railing: 0.5969, Acc.cushion: 0.8489, Acc.base: 0.5793, Acc.box: 0.5221, Acc.column: 0.7063, Acc.signboard: 0.5599, Acc.chest of drawers: 0.7529, Acc.counter: 0.5207, Acc.sand: 0.7801, Acc.sink: 0.8585, Acc.skyscraper: 0.5959, Acc.fireplace: 0.9392, Acc.refrigerator: 0.9356, Acc.grandstand: 0.8391, Acc.path: 0.3148, Acc.stairs: 0.3118, Acc.runway: 0.9109, Acc.case: 0.7419, Acc.pool table: 0.9843, Acc.pillow: 0.7626, Acc.screen door: 0.8094, Acc.stairway: 0.6587, Acc.river: 0.2847, Acc.bridge: 0.8854, Acc.bookcase: 0.5996, Acc.blind: 0.4503, Acc.coffee table: 0.8736, Acc.toilet: 0.9473, Acc.flower: 0.6030, Acc.book: 0.7769, Acc.hill: 0.1715, Acc.bench: 0.6255, Acc.countertop: 0.8701, Acc.stove: 0.9193, Acc.palm: 0.7496, Acc.kitchen island: 0.9002, Acc.computer: 0.9186, Acc.swivel chair: 0.7022, Acc.boat: 0.8943, Acc.bar: 0.8934, Acc.arcade machine: 0.8557, Acc.hovel: 0.2647, Acc.bus: 0.9693, Acc.towel: 0.8472, Acc.light: 0.6817, Acc.truck: 0.6431, Acc.tower: 0.4777, Acc.chandelier: 0.8754, Acc.awning: 0.4216, Acc.streetlight: 0.4202, Acc.booth: 0.6794, Acc.television receiver: 0.9011, Acc.airplane: 0.9179, Acc.dirt track: 0.2792, Acc.apparel: 0.7155, Acc.pole: 0.3861, Acc.land: 0.0641, Acc.bannister: 0.2210, Acc.escalator: 0.8723, Acc.ottoman: 0.7444, Acc.bottle: 0.6507, Acc.buffet: 0.6927, Acc.poster: 0.3846, Acc.stage: 0.5112, Acc.van: 0.6968, Acc.ship: 0.9804, Acc.fountain: 0.3767, Acc.conveyer belt: 0.9486, Acc.canopy: 0.6383, Acc.washer: 0.8820, Acc.plaything: 0.4807, Acc.swimming pool: 0.7868, Acc.stool: 0.6942, Acc.barrel: 0.7070, Acc.basket: 0.6205, Acc.waterfall: 0.6661, Acc.tent: 0.9875, Acc.bag: 0.2918, Acc.minibike: 0.8990, Acc.cradle: 0.9762, Acc.oven: 0.7244, Acc.ball: 0.7689, Acc.food: 0.7286, Acc.step: 0.1619, Acc.tank: 0.6676, Acc.trade name: 0.2762, Acc.microwave: 0.9618, Acc.pot: 0.7208, Acc.animal: 0.6670, Acc.bicycle: 0.8031, Acc.lake: 0.6364, Acc.dishwasher: 0.8061, Acc.screen: 0.8955, Acc.blanket: 0.3944, Acc.sculpture: 0.8691, Acc.hood: 0.7411, Acc.sconce: 0.7157, Acc.vase: 0.6386, Acc.traffic light: 0.5361, Acc.tray: 0.4209, Acc.ashcan: 0.7148, Acc.fan: 0.8169, Acc.pier: 0.4563, Acc.crt screen: 0.1326, Acc.plate: 0.8125, Acc.monitor: 0.1905, Acc.bulletin board: 0.7846, Acc.shower: 0.1751, Acc.radiator: 0.7833, Acc.glass: 0.2291, Acc.clock: 0.6176, Acc.flag: 0.7411 2024-06-16 20:46:23,105 - mmseg - INFO - Iter [50050/80000] lr: 1.213e-06, eta: 14:25:59, time: 3.317, data_time: 1.716, memory: 65790, decode.loss_ce: 0.1693, decode.acc_seg: 92.6708, aux.loss_ce: 0.0712, aux.acc_seg: 92.3911, loss: 0.2405 2024-06-16 20:47:43,467 - mmseg - INFO - Iter [50100/80000] lr: 1.211e-06, eta: 14:24:29, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1557, decode.acc_seg: 93.0718, aux.loss_ce: 0.0660, aux.acc_seg: 92.7592, loss: 0.2217 2024-06-16 20:49:03,954 - mmseg - INFO - Iter [50150/80000] lr: 1.209e-06, eta: 14:22:58, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1606, decode.acc_seg: 92.9112, aux.loss_ce: 0.0678, aux.acc_seg: 92.6478, loss: 0.2284 2024-06-16 20:50:24,364 - mmseg - INFO - Iter [50200/80000] lr: 1.207e-06, eta: 14:21:28, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1665, decode.acc_seg: 92.7201, aux.loss_ce: 0.0706, aux.acc_seg: 92.4069, loss: 0.2372 2024-06-16 20:51:44,748 - mmseg - INFO - Iter [50250/80000] lr: 1.205e-06, eta: 14:19:57, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1683, decode.acc_seg: 92.5915, aux.loss_ce: 0.0710, aux.acc_seg: 92.2603, loss: 0.2394 2024-06-16 20:53:05,149 - mmseg - INFO - Iter [50300/80000] lr: 1.203e-06, eta: 14:18:27, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1661, decode.acc_seg: 92.6355, aux.loss_ce: 0.0702, aux.acc_seg: 92.2632, loss: 0.2363 2024-06-16 20:54:25,797 - mmseg - INFO - Iter [50350/80000] lr: 1.201e-06, eta: 14:16:57, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1598, decode.acc_seg: 92.9340, aux.loss_ce: 0.0677, aux.acc_seg: 92.6614, loss: 0.2275 2024-06-16 20:55:46,234 - mmseg - INFO - Iter [50400/80000] lr: 1.199e-06, eta: 14:15:26, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1719, decode.acc_seg: 92.3454, aux.loss_ce: 0.0726, aux.acc_seg: 92.1065, loss: 0.2445 2024-06-16 20:57:06,765 - mmseg - INFO - Iter [50450/80000] lr: 1.197e-06, eta: 14:13:56, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1715, decode.acc_seg: 92.5404, aux.loss_ce: 0.0719, aux.acc_seg: 92.3264, loss: 0.2434 2024-06-16 20:58:27,252 - mmseg - INFO - Iter [50500/80000] lr: 1.195e-06, eta: 14:12:26, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1546, decode.acc_seg: 93.2453, aux.loss_ce: 0.0655, aux.acc_seg: 92.9523, loss: 0.2201 2024-06-16 20:59:50,638 - mmseg - INFO - Iter [50550/80000] lr: 1.193e-06, eta: 14:10:57, time: 1.668, data_time: 0.065, memory: 65790, decode.loss_ce: 0.1622, decode.acc_seg: 92.6909, aux.loss_ce: 0.0690, aux.acc_seg: 92.4407, loss: 0.2312 2024-06-16 21:01:11,004 - mmseg - INFO - Iter [50600/80000] lr: 1.191e-06, eta: 14:09:27, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1563, decode.acc_seg: 93.1903, aux.loss_ce: 0.0667, aux.acc_seg: 92.9613, loss: 0.2230 2024-06-16 21:02:31,481 - mmseg - INFO - Iter [50650/80000] lr: 1.189e-06, eta: 14:07:56, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1558, decode.acc_seg: 92.9959, aux.loss_ce: 0.0662, aux.acc_seg: 92.6790, loss: 0.2220 2024-06-16 21:03:52,205 - mmseg - INFO - Iter [50700/80000] lr: 1.187e-06, eta: 14:06:26, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1599, decode.acc_seg: 92.6918, aux.loss_ce: 0.0681, aux.acc_seg: 92.3672, loss: 0.2280 2024-06-16 21:05:12,609 - mmseg - INFO - Iter [50750/80000] lr: 1.185e-06, eta: 14:04:56, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1724, decode.acc_seg: 92.4003, aux.loss_ce: 0.0723, aux.acc_seg: 92.1195, loss: 0.2447 2024-06-16 21:06:32,981 - mmseg - INFO - Iter [50800/80000] lr: 1.183e-06, eta: 14:03:26, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1580, decode.acc_seg: 92.9956, aux.loss_ce: 0.0669, aux.acc_seg: 92.7371, loss: 0.2250 2024-06-16 21:07:53,410 - mmseg - INFO - Iter [50850/80000] lr: 1.181e-06, eta: 14:01:55, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1617, decode.acc_seg: 92.5728, aux.loss_ce: 0.0681, aux.acc_seg: 92.2573, loss: 0.2298 2024-06-16 21:09:13,770 - mmseg - INFO - Iter [50900/80000] lr: 1.179e-06, eta: 14:00:25, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1576, decode.acc_seg: 92.8672, aux.loss_ce: 0.0665, aux.acc_seg: 92.6094, loss: 0.2241 2024-06-16 21:10:34,103 - mmseg - INFO - Iter [50950/80000] lr: 1.176e-06, eta: 13:58:55, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1726, decode.acc_seg: 92.3137, aux.loss_ce: 0.0736, aux.acc_seg: 91.9347, loss: 0.2462 2024-06-16 21:11:54,640 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 21:11:54,640 - mmseg - INFO - Iter [51000/80000] lr: 1.174e-06, eta: 13:57:25, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1632, decode.acc_seg: 92.6402, aux.loss_ce: 0.0685, aux.acc_seg: 92.3962, loss: 0.2318 2024-06-16 21:13:17,384 - mmseg - INFO - per class results: 2024-06-16 21:13:17,390 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.11 | 89.39 | | building | 84.17 | 91.31 | | sky | 94.7 | 97.15 | | floor | 84.46 | 92.18 | | tree | 77.57 | 89.34 | | ceiling | 87.39 | 94.1 | | road | 86.36 | 91.17 | | bed | 91.85 | 96.62 | | windowpane | 66.99 | 84.05 | | grass | 70.19 | 87.88 | | cabinet | 65.46 | 74.8 | | sidewalk | 70.0 | 84.1 | | person | 84.58 | 93.45 | | earth | 41.72 | 54.92 | | door | 59.16 | 71.87 | | table | 70.06 | 83.2 | | mountain | 64.33 | 74.34 | | plant | 55.83 | 68.08 | | curtain | 78.18 | 90.06 | | chair | 65.28 | 75.84 | | car | 86.93 | 93.28 | | water | 60.19 | 72.43 | | painting | 80.72 | 90.42 | | sofa | 81.91 | 90.38 | | shelf | 48.89 | 66.35 | | house | 49.38 | 79.44 | | sea | 75.97 | 83.94 | | mirror | 77.8 | 86.65 | | rug | 61.48 | 65.71 | | field | 34.66 | 49.74 | | armchair | 62.69 | 79.76 | | seat | 67.84 | 89.55 | | fence | 51.27 | 64.96 | | desk | 58.46 | 80.17 | | rock | 56.14 | 82.23 | | wardrobe | 51.65 | 74.06 | | lamp | 72.66 | 84.72 | | bathtub | 85.5 | 89.24 | | railing | 42.73 | 57.96 | | cushion | 67.39 | 83.02 | | base | 45.3 | 63.57 | | box | 40.39 | 52.04 | | column | 56.06 | 76.09 | | signboard | 39.69 | 53.4 | | chest of drawers | 50.56 | 76.29 | | counter | 45.92 | 56.96 | | sand | 49.22 | 80.98 | | sink | 78.23 | 83.2 | | skyscraper | 46.06 | 60.13 | | fireplace | 73.47 | 93.93 | | refrigerator | 85.8 | 97.26 | | grandstand | 57.64 | 86.6 | | path | 26.63 | 39.6 | | stairs | 34.2 | 44.44 | | runway | 67.94 | 87.41 | | case | 60.27 | 81.38 | | pool table | 93.14 | 98.34 | | pillow | 65.4 | 75.81 | | screen door | 85.15 | 92.25 | | stairway | 43.53 | 64.1 | | river | 10.24 | 28.4 | | bridge | 74.04 | 89.01 | | bookcase | 40.97 | 56.05 | | blind | 41.49 | 47.09 | | coffee table | 67.48 | 86.42 | | toilet | 89.75 | 94.41 | | flower | 42.24 | 60.27 | | book | 52.46 | 75.47 | | hill | 6.57 | 13.91 | | bench | 57.53 | 67.67 | | countertop | 62.67 | 87.08 | | stove | 86.08 | 91.5 | | palm | 53.35 | 81.19 | | kitchen island | 54.49 | 87.18 | | computer | 78.32 | 91.65 | | swivel chair | 49.45 | 82.05 | | boat | 84.19 | 89.72 | | bar | 57.58 | 83.79 | | arcade machine | 79.42 | 83.76 | | hovel | 28.24 | 32.78 | | bus | 92.06 | 97.27 | | towel | 75.11 | 85.88 | | light | 55.5 | 64.62 | | truck | 50.38 | 64.31 | | tower | 27.16 | 49.77 | | chandelier | 71.73 | 87.73 | | awning | 38.05 | 49.48 | | streetlight | 31.17 | 42.45 | | booth | 51.19 | 65.4 | | television receiver | 81.5 | 90.29 | | airplane | 85.93 | 92.48 | | dirt track | 6.26 | 19.44 | | apparel | 55.02 | 75.54 | | pole | 21.64 | 34.46 | | land | 4.32 | 5.88 | | bannister | 19.9 | 27.5 | | escalator | 66.27 | 86.45 | | ottoman | 53.04 | 67.3 | | bottle | 43.88 | 71.19 | | buffet | 52.13 | 62.37 | | poster | 31.47 | 39.49 | | stage | 21.61 | 45.77 | | van | 50.11 | 68.98 | | ship | 86.47 | 89.04 | | fountain | 39.58 | 40.61 | | conveyer belt | 80.83 | 95.04 | | canopy | 54.5 | 69.76 | | washer | 84.59 | 91.34 | | plaything | 33.25 | 47.04 | | swimming pool | 53.23 | 77.17 | | stool | 44.43 | 70.29 | | barrel | 52.13 | 72.4 | | basket | 45.13 | 58.56 | | waterfall | 48.02 | 69.29 | | tent | 91.39 | 98.29 | | bag | 26.55 | 30.71 | | minibike | 73.5 | 89.46 | | cradle | 87.93 | 97.69 | | oven | 59.89 | 71.99 | | ball | 63.35 | 73.13 | | food | 57.81 | 69.79 | | step | 11.66 | 16.33 | | tank | 62.67 | 65.89 | | trade name | 26.11 | 31.14 | | microwave | 90.05 | 95.96 | | pot | 60.06 | 67.99 | | animal | 60.56 | 62.57 | | bicycle | 60.95 | 74.61 | | lake | 45.38 | 63.62 | | dishwasher | 73.05 | 80.05 | | screen | 59.91 | 96.39 | | blanket | 31.85 | 35.93 | | sculpture | 68.35 | 87.28 | | hood | 62.61 | 73.69 | | sconce | 58.74 | 69.99 | | vase | 46.08 | 65.23 | | traffic light | 38.14 | 63.1 | | tray | 19.22 | 22.78 | | ashcan | 51.21 | 63.45 | | fan | 66.44 | 80.04 | | pier | 38.98 | 45.01 | | crt screen | 2.24 | 3.65 | | plate | 60.89 | 78.55 | | monitor | 49.49 | 58.26 | | bulletin board | 61.65 | 83.02 | | shower | 15.46 | 15.89 | | radiator | 62.2 | 76.57 | | glass | 21.23 | 22.97 | | clock | 49.68 | 61.22 | | flag | 66.53 | 76.38 | +---------------------+-------+-------+ 2024-06-16 21:13:17,390 - mmseg - INFO - Summary: 2024-06-16 21:13:17,390 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.95 | 57.37 | 70.56 | +-------+-------+-------+ 2024-06-16 21:13:17,391 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 21:13:17,391 - mmseg - INFO - Iter(val) [250] aAcc: 0.8595, mIoU: 0.5737, mAcc: 0.7056, IoU.wall: 0.8211, IoU.building: 0.8417, IoU.sky: 0.9470, IoU.floor: 0.8446, IoU.tree: 0.7757, IoU.ceiling: 0.8739, IoU.road: 0.8636, IoU.bed : 0.9185, IoU.windowpane: 0.6699, IoU.grass: 0.7019, IoU.cabinet: 0.6546, IoU.sidewalk: 0.7000, IoU.person: 0.8458, IoU.earth: 0.4172, IoU.door: 0.5916, IoU.table: 0.7006, IoU.mountain: 0.6433, IoU.plant: 0.5583, IoU.curtain: 0.7818, IoU.chair: 0.6528, IoU.car: 0.8693, IoU.water: 0.6019, IoU.painting: 0.8072, IoU.sofa: 0.8191, IoU.shelf: 0.4889, IoU.house: 0.4938, IoU.sea: 0.7597, IoU.mirror: 0.7780, IoU.rug: 0.6148, IoU.field: 0.3466, IoU.armchair: 0.6269, IoU.seat: 0.6784, IoU.fence: 0.5127, IoU.desk: 0.5846, IoU.rock: 0.5614, IoU.wardrobe: 0.5165, IoU.lamp: 0.7266, IoU.bathtub: 0.8550, IoU.railing: 0.4273, IoU.cushion: 0.6739, IoU.base: 0.4530, IoU.box: 0.4039, IoU.column: 0.5606, IoU.signboard: 0.3969, IoU.chest of drawers: 0.5056, IoU.counter: 0.4592, IoU.sand: 0.4922, IoU.sink: 0.7823, IoU.skyscraper: 0.4606, IoU.fireplace: 0.7347, IoU.refrigerator: 0.8580, IoU.grandstand: 0.5764, IoU.path: 0.2663, IoU.stairs: 0.3420, IoU.runway: 0.6794, IoU.case: 0.6027, IoU.pool table: 0.9314, IoU.pillow: 0.6540, IoU.screen door: 0.8515, IoU.stairway: 0.4353, IoU.river: 0.1024, IoU.bridge: 0.7404, IoU.bookcase: 0.4097, IoU.blind: 0.4149, IoU.coffee table: 0.6748, IoU.toilet: 0.8975, IoU.flower: 0.4224, IoU.book: 0.5246, IoU.hill: 0.0657, IoU.bench: 0.5753, IoU.countertop: 0.6267, IoU.stove: 0.8608, IoU.palm: 0.5335, IoU.kitchen island: 0.5449, IoU.computer: 0.7832, IoU.swivel chair: 0.4945, IoU.boat: 0.8419, IoU.bar: 0.5758, IoU.arcade machine: 0.7942, IoU.hovel: 0.2824, IoU.bus: 0.9206, IoU.towel: 0.7511, IoU.light: 0.5550, IoU.truck: 0.5038, IoU.tower: 0.2716, IoU.chandelier: 0.7173, IoU.awning: 0.3805, IoU.streetlight: 0.3117, IoU.booth: 0.5119, IoU.television receiver: 0.8150, IoU.airplane: 0.8593, IoU.dirt track: 0.0626, IoU.apparel: 0.5502, IoU.pole: 0.2164, IoU.land: 0.0432, IoU.bannister: 0.1990, IoU.escalator: 0.6627, IoU.ottoman: 0.5304, IoU.bottle: 0.4388, IoU.buffet: 0.5213, IoU.poster: 0.3147, IoU.stage: 0.2161, IoU.van: 0.5011, IoU.ship: 0.8647, IoU.fountain: 0.3958, IoU.conveyer belt: 0.8083, IoU.canopy: 0.5450, IoU.washer: 0.8459, IoU.plaything: 0.3325, IoU.swimming pool: 0.5323, IoU.stool: 0.4443, IoU.barrel: 0.5213, IoU.basket: 0.4513, IoU.waterfall: 0.4802, IoU.tent: 0.9139, IoU.bag: 0.2655, IoU.minibike: 0.7350, IoU.cradle: 0.8793, IoU.oven: 0.5989, IoU.ball: 0.6335, IoU.food: 0.5781, IoU.step: 0.1166, IoU.tank: 0.6267, IoU.trade name: 0.2611, IoU.microwave: 0.9005, IoU.pot: 0.6006, IoU.animal: 0.6056, IoU.bicycle: 0.6095, IoU.lake: 0.4538, IoU.dishwasher: 0.7305, IoU.screen: 0.5991, IoU.blanket: 0.3185, IoU.sculpture: 0.6835, IoU.hood: 0.6261, IoU.sconce: 0.5874, IoU.vase: 0.4608, IoU.traffic light: 0.3814, IoU.tray: 0.1922, IoU.ashcan: 0.5121, IoU.fan: 0.6644, IoU.pier: 0.3898, IoU.crt screen: 0.0224, IoU.plate: 0.6089, IoU.monitor: 0.4949, IoU.bulletin board: 0.6165, IoU.shower: 0.1546, IoU.radiator: 0.6220, IoU.glass: 0.2123, IoU.clock: 0.4968, IoU.flag: 0.6653, Acc.wall: 0.8939, Acc.building: 0.9131, Acc.sky: 0.9715, Acc.floor: 0.9218, Acc.tree: 0.8934, Acc.ceiling: 0.9410, Acc.road: 0.9117, Acc.bed : 0.9662, Acc.windowpane: 0.8405, Acc.grass: 0.8788, Acc.cabinet: 0.7480, Acc.sidewalk: 0.8410, Acc.person: 0.9345, Acc.earth: 0.5492, Acc.door: 0.7187, Acc.table: 0.8320, Acc.mountain: 0.7434, Acc.plant: 0.6808, Acc.curtain: 0.9006, Acc.chair: 0.7584, Acc.car: 0.9328, Acc.water: 0.7243, Acc.painting: 0.9042, Acc.sofa: 0.9038, Acc.shelf: 0.6635, Acc.house: 0.7944, Acc.sea: 0.8394, Acc.mirror: 0.8665, Acc.rug: 0.6571, Acc.field: 0.4974, Acc.armchair: 0.7976, Acc.seat: 0.8955, Acc.fence: 0.6496, Acc.desk: 0.8017, Acc.rock: 0.8223, Acc.wardrobe: 0.7406, Acc.lamp: 0.8472, Acc.bathtub: 0.8924, Acc.railing: 0.5796, Acc.cushion: 0.8302, Acc.base: 0.6357, Acc.box: 0.5204, Acc.column: 0.7609, Acc.signboard: 0.5340, Acc.chest of drawers: 0.7629, Acc.counter: 0.5696, Acc.sand: 0.8098, Acc.sink: 0.8320, Acc.skyscraper: 0.6013, Acc.fireplace: 0.9393, Acc.refrigerator: 0.9726, Acc.grandstand: 0.8660, Acc.path: 0.3960, Acc.stairs: 0.4444, Acc.runway: 0.8741, Acc.case: 0.8138, Acc.pool table: 0.9834, Acc.pillow: 0.7581, Acc.screen door: 0.9225, Acc.stairway: 0.6410, Acc.river: 0.2840, Acc.bridge: 0.8901, Acc.bookcase: 0.5605, Acc.blind: 0.4709, Acc.coffee table: 0.8642, Acc.toilet: 0.9441, Acc.flower: 0.6027, Acc.book: 0.7547, Acc.hill: 0.1391, Acc.bench: 0.6767, Acc.countertop: 0.8708, Acc.stove: 0.9150, Acc.palm: 0.8119, Acc.kitchen island: 0.8718, Acc.computer: 0.9165, Acc.swivel chair: 0.8205, Acc.boat: 0.8972, Acc.bar: 0.8379, Acc.arcade machine: 0.8376, Acc.hovel: 0.3278, Acc.bus: 0.9727, Acc.towel: 0.8588, Acc.light: 0.6462, Acc.truck: 0.6431, Acc.tower: 0.4977, Acc.chandelier: 0.8773, Acc.awning: 0.4948, Acc.streetlight: 0.4245, Acc.booth: 0.6540, Acc.television receiver: 0.9029, Acc.airplane: 0.9248, Acc.dirt track: 0.1944, Acc.apparel: 0.7554, Acc.pole: 0.3446, Acc.land: 0.0588, Acc.bannister: 0.2750, Acc.escalator: 0.8645, Acc.ottoman: 0.6730, Acc.bottle: 0.7119, Acc.buffet: 0.6237, Acc.poster: 0.3949, Acc.stage: 0.4577, Acc.van: 0.6898, Acc.ship: 0.8904, Acc.fountain: 0.4061, Acc.conveyer belt: 0.9504, Acc.canopy: 0.6976, Acc.washer: 0.9134, Acc.plaything: 0.4704, Acc.swimming pool: 0.7717, Acc.stool: 0.7029, Acc.barrel: 0.7240, Acc.basket: 0.5856, Acc.waterfall: 0.6929, Acc.tent: 0.9829, Acc.bag: 0.3071, Acc.minibike: 0.8946, Acc.cradle: 0.9769, Acc.oven: 0.7199, Acc.ball: 0.7313, Acc.food: 0.6979, Acc.step: 0.1633, Acc.tank: 0.6589, Acc.trade name: 0.3114, Acc.microwave: 0.9596, Acc.pot: 0.6799, Acc.animal: 0.6257, Acc.bicycle: 0.7461, Acc.lake: 0.6362, Acc.dishwasher: 0.8005, Acc.screen: 0.9639, Acc.blanket: 0.3593, Acc.sculpture: 0.8728, Acc.hood: 0.7369, Acc.sconce: 0.6999, Acc.vase: 0.6523, Acc.traffic light: 0.6310, Acc.tray: 0.2278, Acc.ashcan: 0.6345, Acc.fan: 0.8004, Acc.pier: 0.4501, Acc.crt screen: 0.0365, Acc.plate: 0.7855, Acc.monitor: 0.5826, Acc.bulletin board: 0.8302, Acc.shower: 0.1589, Acc.radiator: 0.7657, Acc.glass: 0.2297, Acc.clock: 0.6122, Acc.flag: 0.7638 2024-06-16 21:14:38,270 - mmseg - INFO - Iter [51050/80000] lr: 1.172e-06, eta: 13:56:42, time: 3.273, data_time: 1.668, memory: 65790, decode.loss_ce: 0.1645, decode.acc_seg: 92.9483, aux.loss_ce: 0.0699, aux.acc_seg: 92.6358, loss: 0.2344 2024-06-16 21:15:58,684 - mmseg - INFO - Iter [51100/80000] lr: 1.170e-06, eta: 13:55:12, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1605, decode.acc_seg: 92.6527, aux.loss_ce: 0.0677, aux.acc_seg: 92.4830, loss: 0.2282 2024-06-16 21:17:19,080 - mmseg - INFO - Iter [51150/80000] lr: 1.168e-06, eta: 13:53:41, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1678, decode.acc_seg: 92.7445, aux.loss_ce: 0.0712, aux.acc_seg: 92.4297, loss: 0.2390 2024-06-16 21:18:39,514 - mmseg - INFO - Iter [51200/80000] lr: 1.166e-06, eta: 13:52:11, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1490, decode.acc_seg: 93.4532, aux.loss_ce: 0.0626, aux.acc_seg: 93.2245, loss: 0.2116 2024-06-16 21:20:00,054 - mmseg - INFO - Iter [51250/80000] lr: 1.164e-06, eta: 13:50:41, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1529, decode.acc_seg: 93.2258, aux.loss_ce: 0.0651, aux.acc_seg: 92.9436, loss: 0.2181 2024-06-16 21:21:20,473 - mmseg - INFO - Iter [51300/80000] lr: 1.162e-06, eta: 13:49:11, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1591, decode.acc_seg: 92.9167, aux.loss_ce: 0.0674, aux.acc_seg: 92.6194, loss: 0.2265 2024-06-16 21:22:40,901 - mmseg - INFO - Iter [51350/80000] lr: 1.160e-06, eta: 13:47:41, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1593, decode.acc_seg: 93.0100, aux.loss_ce: 0.0671, aux.acc_seg: 92.7502, loss: 0.2264 2024-06-16 21:24:01,433 - mmseg - INFO - Iter [51400/80000] lr: 1.158e-06, eta: 13:46:11, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1647, decode.acc_seg: 92.8570, aux.loss_ce: 0.0692, aux.acc_seg: 92.5494, loss: 0.2338 2024-06-16 21:25:21,833 - mmseg - INFO - Iter [51450/80000] lr: 1.156e-06, eta: 13:44:40, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1598, decode.acc_seg: 92.9749, aux.loss_ce: 0.0673, aux.acc_seg: 92.7224, loss: 0.2272 2024-06-16 21:26:42,235 - mmseg - INFO - Iter [51500/80000] lr: 1.154e-06, eta: 13:43:10, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1536, decode.acc_seg: 93.3640, aux.loss_ce: 0.0648, aux.acc_seg: 93.1322, loss: 0.2184 2024-06-16 21:28:02,635 - mmseg - INFO - Iter [51550/80000] lr: 1.152e-06, eta: 13:41:40, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1556, decode.acc_seg: 93.0513, aux.loss_ce: 0.0655, aux.acc_seg: 92.8450, loss: 0.2211 2024-06-16 21:29:23,134 - mmseg - INFO - Iter [51600/80000] lr: 1.150e-06, eta: 13:40:10, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1569, decode.acc_seg: 93.0421, aux.loss_ce: 0.0667, aux.acc_seg: 92.7175, loss: 0.2237 2024-06-16 21:30:43,530 - mmseg - INFO - Iter [51650/80000] lr: 1.148e-06, eta: 13:38:40, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1510, decode.acc_seg: 93.1672, aux.loss_ce: 0.0641, aux.acc_seg: 92.8376, loss: 0.2151 2024-06-16 21:32:04,024 - mmseg - INFO - Iter [51700/80000] lr: 1.146e-06, eta: 13:37:10, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1604, decode.acc_seg: 92.8172, aux.loss_ce: 0.0673, aux.acc_seg: 92.6180, loss: 0.2278 2024-06-16 21:33:24,420 - mmseg - INFO - Iter [51750/80000] lr: 1.144e-06, eta: 13:35:40, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1635, decode.acc_seg: 92.8181, aux.loss_ce: 0.0694, aux.acc_seg: 92.5136, loss: 0.2329 2024-06-16 21:34:47,617 - mmseg - INFO - Iter [51800/80000] lr: 1.142e-06, eta: 13:34:12, time: 1.664, data_time: 0.061, memory: 65790, decode.loss_ce: 0.1769, decode.acc_seg: 92.4294, aux.loss_ce: 0.0741, aux.acc_seg: 92.1207, loss: 0.2510 2024-06-16 21:36:08,042 - mmseg - INFO - Iter [51850/80000] lr: 1.140e-06, eta: 13:32:42, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1580, decode.acc_seg: 93.0605, aux.loss_ce: 0.0664, aux.acc_seg: 92.8522, loss: 0.2245 2024-06-16 21:37:28,613 - mmseg - INFO - Iter [51900/80000] lr: 1.138e-06, eta: 13:31:12, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1546, decode.acc_seg: 93.2703, aux.loss_ce: 0.0652, aux.acc_seg: 92.9614, loss: 0.2197 2024-06-16 21:38:49,040 - mmseg - INFO - Iter [51950/80000] lr: 1.136e-06, eta: 13:29:42, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1584, decode.acc_seg: 92.6705, aux.loss_ce: 0.0671, aux.acc_seg: 92.3428, loss: 0.2255 2024-06-16 21:40:09,504 - mmseg - INFO - Saving checkpoint at 52000 iterations 2024-06-16 21:41:21,656 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 21:41:21,656 - mmseg - INFO - Iter [52000/80000] lr: 1.134e-06, eta: 13:28:51, time: 3.052, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1497, decode.acc_seg: 93.1243, aux.loss_ce: 0.0641, aux.acc_seg: 92.8224, loss: 0.2139 2024-06-16 21:42:44,298 - mmseg - INFO - per class results: 2024-06-16 21:42:44,304 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.11 | 89.75 | | building | 84.56 | 92.69 | | sky | 94.86 | 97.32 | | floor | 84.27 | 91.36 | | tree | 76.62 | 89.66 | | ceiling | 87.55 | 94.24 | | road | 85.79 | 91.04 | | bed | 91.74 | 96.78 | | windowpane | 67.44 | 82.16 | | grass | 68.27 | 86.45 | | cabinet | 65.83 | 76.94 | | sidewalk | 70.82 | 83.57 | | person | 84.51 | 93.62 | | earth | 41.77 | 55.87 | | door | 60.51 | 76.25 | | table | 70.19 | 82.74 | | mountain | 62.85 | 72.21 | | plant | 52.37 | 62.67 | | curtain | 77.15 | 89.48 | | chair | 65.39 | 75.86 | | car | 87.14 | 93.21 | | water | 65.58 | 81.3 | | painting | 78.68 | 90.47 | | sofa | 80.52 | 88.39 | | shelf | 46.1 | 61.58 | | house | 47.76 | 63.24 | | sea | 80.63 | 88.36 | | mirror | 77.18 | 85.8 | | rug | 66.0 | 79.61 | | field | 33.32 | 50.65 | | armchair | 63.48 | 81.28 | | seat | 65.15 | 89.28 | | fence | 52.49 | 66.89 | | desk | 60.67 | 79.05 | | rock | 53.61 | 81.73 | | wardrobe | 52.11 | 72.31 | | lamp | 72.41 | 83.08 | | bathtub | 83.66 | 87.9 | | railing | 44.0 | 61.82 | | cushion | 67.58 | 83.82 | | base | 43.11 | 62.14 | | box | 40.07 | 52.86 | | column | 57.2 | 70.3 | | signboard | 39.92 | 55.19 | | chest of drawers | 42.79 | 59.2 | | counter | 46.9 | 53.79 | | sand | 53.96 | 88.41 | | sink | 77.45 | 82.4 | | skyscraper | 44.95 | 59.64 | | fireplace | 74.25 | 91.52 | | refrigerator | 86.95 | 96.74 | | grandstand | 51.55 | 85.52 | | path | 27.18 | 34.17 | | stairs | 35.1 | 41.99 | | runway | 67.73 | 87.14 | | case | 60.75 | 82.37 | | pool table | 94.33 | 97.84 | | pillow | 61.87 | 70.54 | | screen door | 82.66 | 85.24 | | stairway | 54.21 | 71.06 | | river | 15.82 | 27.05 | | bridge | 73.53 | 88.54 | | bookcase | 37.39 | 53.25 | | blind | 42.12 | 51.41 | | coffee table | 66.27 | 85.38 | | toilet | 90.02 | 94.52 | | flower | 41.5 | 56.98 | | book | 51.15 | 81.06 | | hill | 8.36 | 13.97 | | bench | 58.26 | 66.5 | | countertop | 66.11 | 84.05 | | stove | 84.77 | 91.1 | | palm | 54.11 | 81.56 | | kitchen island | 57.17 | 90.15 | | computer | 79.04 | 90.8 | | swivel chair | 49.18 | 75.55 | | boat | 79.75 | 91.21 | | bar | 61.68 | 89.8 | | arcade machine | 82.71 | 88.11 | | hovel | 28.8 | 32.76 | | bus | 92.31 | 97.05 | | towel | 72.06 | 79.4 | | light | 52.73 | 59.4 | | truck | 50.2 | 64.07 | | tower | 29.36 | 53.73 | | chandelier | 71.89 | 82.2 | | awning | 37.81 | 48.98 | | streetlight | 31.06 | 41.12 | | booth | 48.43 | 57.01 | | television receiver | 79.97 | 88.51 | | airplane | 86.4 | 93.51 | | dirt track | 4.74 | 19.46 | | apparel | 56.42 | 80.14 | | pole | 24.05 | 37.55 | | land | 2.82 | 3.91 | | bannister | 19.74 | 24.05 | | escalator | 65.8 | 86.49 | | ottoman | 54.52 | 68.32 | | bottle | 42.95 | 70.63 | | buffet | 33.57 | 36.91 | | poster | 32.23 | 39.31 | | stage | 27.58 | 45.96 | | van | 53.49 | 75.38 | | ship | 89.37 | 96.26 | | fountain | 36.96 | 37.66 | | conveyer belt | 81.54 | 96.14 | | canopy | 54.64 | 67.95 | | washer | 85.36 | 91.2 | | plaything | 33.94 | 45.52 | | swimming pool | 53.54 | 77.73 | | stool | 44.09 | 68.39 | | barrel | 61.36 | 87.17 | | basket | 45.56 | 59.01 | | waterfall | 55.05 | 70.13 | | tent | 92.25 | 98.16 | | bag | 25.9 | 28.93 | | minibike | 73.55 | 89.89 | | cradle | 85.4 | 98.13 | | oven | 60.52 | 70.06 | | ball | 60.75 | 65.94 | | food | 59.43 | 66.78 | | step | 13.13 | 15.83 | | tank | 58.8 | 67.94 | | trade name | 26.61 | 32.21 | | microwave | 89.25 | 95.95 | | pot | 59.94 | 68.1 | | animal | 58.88 | 60.2 | | bicycle | 60.54 | 76.0 | | lake | 53.39 | 63.68 | | dishwasher | 70.77 | 81.79 | | screen | 55.26 | 87.74 | | blanket | 35.19 | 41.23 | | sculpture | 73.83 | 86.61 | | hood | 63.28 | 71.81 | | sconce | 56.55 | 64.64 | | vase | 49.01 | 60.64 | | traffic light | 37.8 | 62.35 | | tray | 22.14 | 28.51 | | ashcan | 51.88 | 69.07 | | fan | 66.25 | 81.64 | | pier | 41.28 | 46.7 | | crt screen | 2.66 | 3.81 | | plate | 61.7 | 77.32 | | monitor | 63.01 | 76.56 | | bulletin board | 59.16 | 76.6 | | shower | 15.62 | 16.07 | | radiator | 65.31 | 81.68 | | glass | 18.72 | 19.67 | | clock | 49.31 | 60.13 | | flag | 69.21 | 75.02 | +---------------------+-------+-------+ 2024-06-16 21:42:44,304 - mmseg - INFO - Summary: 2024-06-16 21:42:44,304 - mmseg - INFO - +-------+-------+------+ | aAcc | mIoU | mAcc | +-------+-------+------+ | 86.03 | 57.61 | 70.2 | +-------+-------+------+ 2024-06-16 21:42:44,305 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 21:42:44,305 - mmseg - INFO - Iter(val) [250] aAcc: 0.8603, mIoU: 0.5761, mAcc: 0.7020, IoU.wall: 0.8211, IoU.building: 0.8456, IoU.sky: 0.9486, IoU.floor: 0.8427, IoU.tree: 0.7662, IoU.ceiling: 0.8755, IoU.road: 0.8579, IoU.bed : 0.9174, IoU.windowpane: 0.6744, IoU.grass: 0.6827, IoU.cabinet: 0.6583, IoU.sidewalk: 0.7082, IoU.person: 0.8451, IoU.earth: 0.4177, IoU.door: 0.6051, IoU.table: 0.7019, IoU.mountain: 0.6285, IoU.plant: 0.5237, IoU.curtain: 0.7715, IoU.chair: 0.6539, IoU.car: 0.8714, IoU.water: 0.6558, IoU.painting: 0.7868, IoU.sofa: 0.8052, IoU.shelf: 0.4610, IoU.house: 0.4776, IoU.sea: 0.8063, IoU.mirror: 0.7718, IoU.rug: 0.6600, IoU.field: 0.3332, IoU.armchair: 0.6348, IoU.seat: 0.6515, IoU.fence: 0.5249, IoU.desk: 0.6067, IoU.rock: 0.5361, IoU.wardrobe: 0.5211, IoU.lamp: 0.7241, IoU.bathtub: 0.8366, IoU.railing: 0.4400, IoU.cushion: 0.6758, IoU.base: 0.4311, IoU.box: 0.4007, IoU.column: 0.5720, IoU.signboard: 0.3992, IoU.chest of drawers: 0.4279, IoU.counter: 0.4690, IoU.sand: 0.5396, IoU.sink: 0.7745, IoU.skyscraper: 0.4495, IoU.fireplace: 0.7425, IoU.refrigerator: 0.8695, IoU.grandstand: 0.5155, IoU.path: 0.2718, IoU.stairs: 0.3510, IoU.runway: 0.6773, IoU.case: 0.6075, IoU.pool table: 0.9433, IoU.pillow: 0.6187, IoU.screen door: 0.8266, IoU.stairway: 0.5421, IoU.river: 0.1582, IoU.bridge: 0.7353, IoU.bookcase: 0.3739, IoU.blind: 0.4212, IoU.coffee table: 0.6627, IoU.toilet: 0.9002, IoU.flower: 0.4150, IoU.book: 0.5115, IoU.hill: 0.0836, IoU.bench: 0.5826, IoU.countertop: 0.6611, IoU.stove: 0.8477, IoU.palm: 0.5411, IoU.kitchen island: 0.5717, IoU.computer: 0.7904, IoU.swivel chair: 0.4918, IoU.boat: 0.7975, IoU.bar: 0.6168, IoU.arcade machine: 0.8271, IoU.hovel: 0.2880, IoU.bus: 0.9231, IoU.towel: 0.7206, IoU.light: 0.5273, IoU.truck: 0.5020, IoU.tower: 0.2936, IoU.chandelier: 0.7189, IoU.awning: 0.3781, IoU.streetlight: 0.3106, IoU.booth: 0.4843, IoU.television receiver: 0.7997, IoU.airplane: 0.8640, IoU.dirt track: 0.0474, IoU.apparel: 0.5642, IoU.pole: 0.2405, IoU.land: 0.0282, IoU.bannister: 0.1974, IoU.escalator: 0.6580, IoU.ottoman: 0.5452, IoU.bottle: 0.4295, IoU.buffet: 0.3357, IoU.poster: 0.3223, IoU.stage: 0.2758, IoU.van: 0.5349, IoU.ship: 0.8937, IoU.fountain: 0.3696, IoU.conveyer belt: 0.8154, IoU.canopy: 0.5464, IoU.washer: 0.8536, IoU.plaything: 0.3394, IoU.swimming pool: 0.5354, IoU.stool: 0.4409, IoU.barrel: 0.6136, IoU.basket: 0.4556, IoU.waterfall: 0.5505, IoU.tent: 0.9225, IoU.bag: 0.2590, IoU.minibike: 0.7355, IoU.cradle: 0.8540, IoU.oven: 0.6052, IoU.ball: 0.6075, IoU.food: 0.5943, IoU.step: 0.1313, IoU.tank: 0.5880, IoU.trade name: 0.2661, IoU.microwave: 0.8925, IoU.pot: 0.5994, IoU.animal: 0.5888, IoU.bicycle: 0.6054, IoU.lake: 0.5339, IoU.dishwasher: 0.7077, IoU.screen: 0.5526, IoU.blanket: 0.3519, IoU.sculpture: 0.7383, IoU.hood: 0.6328, IoU.sconce: 0.5655, IoU.vase: 0.4901, IoU.traffic light: 0.3780, IoU.tray: 0.2214, IoU.ashcan: 0.5188, IoU.fan: 0.6625, IoU.pier: 0.4128, IoU.crt screen: 0.0266, IoU.plate: 0.6170, IoU.monitor: 0.6301, IoU.bulletin board: 0.5916, IoU.shower: 0.1562, IoU.radiator: 0.6531, IoU.glass: 0.1872, IoU.clock: 0.4931, IoU.flag: 0.6921, Acc.wall: 0.8975, Acc.building: 0.9269, Acc.sky: 0.9732, Acc.floor: 0.9136, Acc.tree: 0.8966, Acc.ceiling: 0.9424, Acc.road: 0.9104, Acc.bed : 0.9678, Acc.windowpane: 0.8216, Acc.grass: 0.8645, Acc.cabinet: 0.7694, Acc.sidewalk: 0.8357, Acc.person: 0.9362, Acc.earth: 0.5587, Acc.door: 0.7625, Acc.table: 0.8274, Acc.mountain: 0.7221, Acc.plant: 0.6267, Acc.curtain: 0.8948, Acc.chair: 0.7586, Acc.car: 0.9321, Acc.water: 0.8130, Acc.painting: 0.9047, Acc.sofa: 0.8839, Acc.shelf: 0.6158, Acc.house: 0.6324, Acc.sea: 0.8836, Acc.mirror: 0.8580, Acc.rug: 0.7961, Acc.field: 0.5065, Acc.armchair: 0.8128, Acc.seat: 0.8928, Acc.fence: 0.6689, Acc.desk: 0.7905, Acc.rock: 0.8173, Acc.wardrobe: 0.7231, Acc.lamp: 0.8308, Acc.bathtub: 0.8790, Acc.railing: 0.6182, Acc.cushion: 0.8382, Acc.base: 0.6214, Acc.box: 0.5286, Acc.column: 0.7030, Acc.signboard: 0.5519, Acc.chest of drawers: 0.5920, Acc.counter: 0.5379, Acc.sand: 0.8841, Acc.sink: 0.8240, Acc.skyscraper: 0.5964, Acc.fireplace: 0.9152, Acc.refrigerator: 0.9674, Acc.grandstand: 0.8552, Acc.path: 0.3417, Acc.stairs: 0.4199, Acc.runway: 0.8714, Acc.case: 0.8237, Acc.pool table: 0.9784, Acc.pillow: 0.7054, Acc.screen door: 0.8524, Acc.stairway: 0.7106, Acc.river: 0.2705, Acc.bridge: 0.8854, Acc.bookcase: 0.5325, Acc.blind: 0.5141, Acc.coffee table: 0.8538, Acc.toilet: 0.9452, Acc.flower: 0.5698, Acc.book: 0.8106, Acc.hill: 0.1397, Acc.bench: 0.6650, Acc.countertop: 0.8405, Acc.stove: 0.9110, Acc.palm: 0.8156, Acc.kitchen island: 0.9015, Acc.computer: 0.9080, Acc.swivel chair: 0.7555, Acc.boat: 0.9121, Acc.bar: 0.8980, Acc.arcade machine: 0.8811, Acc.hovel: 0.3276, Acc.bus: 0.9705, Acc.towel: 0.7940, Acc.light: 0.5940, Acc.truck: 0.6407, Acc.tower: 0.5373, Acc.chandelier: 0.8220, Acc.awning: 0.4898, Acc.streetlight: 0.4112, Acc.booth: 0.5701, Acc.television receiver: 0.8851, Acc.airplane: 0.9351, Acc.dirt track: 0.1946, Acc.apparel: 0.8014, Acc.pole: 0.3755, Acc.land: 0.0391, Acc.bannister: 0.2405, Acc.escalator: 0.8649, Acc.ottoman: 0.6832, Acc.bottle: 0.7063, Acc.buffet: 0.3691, Acc.poster: 0.3931, Acc.stage: 0.4596, Acc.van: 0.7538, Acc.ship: 0.9626, Acc.fountain: 0.3766, Acc.conveyer belt: 0.9614, Acc.canopy: 0.6795, Acc.washer: 0.9120, Acc.plaything: 0.4552, Acc.swimming pool: 0.7773, Acc.stool: 0.6839, Acc.barrel: 0.8717, Acc.basket: 0.5901, Acc.waterfall: 0.7013, Acc.tent: 0.9816, Acc.bag: 0.2893, Acc.minibike: 0.8989, Acc.cradle: 0.9813, Acc.oven: 0.7006, Acc.ball: 0.6594, Acc.food: 0.6678, Acc.step: 0.1583, Acc.tank: 0.6794, Acc.trade name: 0.3221, Acc.microwave: 0.9595, Acc.pot: 0.6810, Acc.animal: 0.6020, Acc.bicycle: 0.7600, Acc.lake: 0.6368, Acc.dishwasher: 0.8179, Acc.screen: 0.8774, Acc.blanket: 0.4123, Acc.sculpture: 0.8661, Acc.hood: 0.7181, Acc.sconce: 0.6464, Acc.vase: 0.6064, Acc.traffic light: 0.6235, Acc.tray: 0.2851, Acc.ashcan: 0.6907, Acc.fan: 0.8164, Acc.pier: 0.4670, Acc.crt screen: 0.0381, Acc.plate: 0.7732, Acc.monitor: 0.7656, Acc.bulletin board: 0.7660, Acc.shower: 0.1607, Acc.radiator: 0.8168, Acc.glass: 0.1967, Acc.clock: 0.6013, Acc.flag: 0.7502 2024-06-16 21:44:05,001 - mmseg - INFO - Iter [52050/80000] lr: 1.132e-06, eta: 13:28:05, time: 3.267, data_time: 1.667, memory: 65790, decode.loss_ce: 0.1636, decode.acc_seg: 92.7805, aux.loss_ce: 0.0694, aux.acc_seg: 92.4361, loss: 0.2330 2024-06-16 21:45:25,368 - mmseg - INFO - Iter [52100/80000] lr: 1.130e-06, eta: 13:26:35, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1586, decode.acc_seg: 92.9911, aux.loss_ce: 0.0669, aux.acc_seg: 92.7403, loss: 0.2255 2024-06-16 21:46:45,715 - mmseg - INFO - Iter [52150/80000] lr: 1.128e-06, eta: 13:25:05, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1562, decode.acc_seg: 93.0060, aux.loss_ce: 0.0667, aux.acc_seg: 92.6523, loss: 0.2229 2024-06-16 21:48:06,244 - mmseg - INFO - Iter [52200/80000] lr: 1.126e-06, eta: 13:23:35, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1586, decode.acc_seg: 92.9079, aux.loss_ce: 0.0674, aux.acc_seg: 92.5554, loss: 0.2261 2024-06-16 21:49:26,701 - mmseg - INFO - Iter [52250/80000] lr: 1.124e-06, eta: 13:22:05, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1617, decode.acc_seg: 92.8549, aux.loss_ce: 0.0685, aux.acc_seg: 92.4531, loss: 0.2302 2024-06-16 21:50:47,102 - mmseg - INFO - Iter [52300/80000] lr: 1.122e-06, eta: 13:20:35, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1505, decode.acc_seg: 93.3650, aux.loss_ce: 0.0638, aux.acc_seg: 93.0316, loss: 0.2142 2024-06-16 21:52:07,531 - mmseg - INFO - Iter [52350/80000] lr: 1.120e-06, eta: 13:19:05, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1616, decode.acc_seg: 92.8974, aux.loss_ce: 0.0690, aux.acc_seg: 92.5592, loss: 0.2307 2024-06-16 21:53:27,922 - mmseg - INFO - Iter [52400/80000] lr: 1.118e-06, eta: 13:17:35, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1554, decode.acc_seg: 93.0858, aux.loss_ce: 0.0654, aux.acc_seg: 92.8386, loss: 0.2208 2024-06-16 21:54:48,323 - mmseg - INFO - Iter [52450/80000] lr: 1.116e-06, eta: 13:16:05, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1519, decode.acc_seg: 93.1706, aux.loss_ce: 0.0646, aux.acc_seg: 92.8733, loss: 0.2165 2024-06-16 21:56:08,879 - mmseg - INFO - Iter [52500/80000] lr: 1.114e-06, eta: 13:14:35, time: 1.611, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1579, decode.acc_seg: 93.0255, aux.loss_ce: 0.0670, aux.acc_seg: 92.7417, loss: 0.2249 2024-06-16 21:57:29,420 - mmseg - INFO - Iter [52550/80000] lr: 1.112e-06, eta: 13:13:05, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1619, decode.acc_seg: 92.9322, aux.loss_ce: 0.0683, aux.acc_seg: 92.6114, loss: 0.2302 2024-06-16 21:58:59,883 - mmseg - INFO - Iter [52600/80000] lr: 1.110e-06, eta: 13:11:40, time: 1.809, data_time: 0.201, memory: 65790, decode.loss_ce: 0.1567, decode.acc_seg: 92.9952, aux.loss_ce: 0.0660, aux.acc_seg: 92.7077, loss: 0.2227 2024-06-16 22:00:20,321 - mmseg - INFO - Iter [52650/80000] lr: 1.108e-06, eta: 13:10:10, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1609, decode.acc_seg: 92.8108, aux.loss_ce: 0.0683, aux.acc_seg: 92.4720, loss: 0.2291 2024-06-16 22:01:40,828 - mmseg - INFO - Iter [52700/80000] lr: 1.106e-06, eta: 13:08:41, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1653, decode.acc_seg: 92.7738, aux.loss_ce: 0.0702, aux.acc_seg: 92.4571, loss: 0.2354 2024-06-16 22:03:01,156 - mmseg - INFO - Iter [52750/80000] lr: 1.104e-06, eta: 13:07:11, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1537, decode.acc_seg: 93.0700, aux.loss_ce: 0.0647, aux.acc_seg: 92.8332, loss: 0.2185 2024-06-16 22:04:21,537 - mmseg - INFO - Iter [52800/80000] lr: 1.102e-06, eta: 13:05:41, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1550, decode.acc_seg: 93.1590, aux.loss_ce: 0.0656, aux.acc_seg: 92.8679, loss: 0.2207 2024-06-16 22:05:42,001 - mmseg - INFO - Iter [52850/80000] lr: 1.100e-06, eta: 13:04:11, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1559, decode.acc_seg: 92.8315, aux.loss_ce: 0.0663, aux.acc_seg: 92.4572, loss: 0.2222 2024-06-16 22:07:02,817 - mmseg - INFO - Iter [52900/80000] lr: 1.098e-06, eta: 13:02:41, time: 1.616, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1610, decode.acc_seg: 92.8226, aux.loss_ce: 0.0677, aux.acc_seg: 92.5323, loss: 0.2286 2024-06-16 22:08:23,298 - mmseg - INFO - Iter [52950/80000] lr: 1.095e-06, eta: 13:01:11, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1473, decode.acc_seg: 93.2753, aux.loss_ce: 0.0627, aux.acc_seg: 92.9911, loss: 0.2100 2024-06-16 22:09:43,798 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 22:09:43,799 - mmseg - INFO - Iter [53000/80000] lr: 1.093e-06, eta: 12:59:42, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1523, decode.acc_seg: 93.2155, aux.loss_ce: 0.0652, aux.acc_seg: 92.9096, loss: 0.2175 2024-06-16 22:11:08,099 - mmseg - INFO - per class results: 2024-06-16 22:11:08,105 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.07 | 89.68 | | building | 84.16 | 93.51 | | sky | 94.68 | 97.78 | | floor | 84.31 | 91.33 | | tree | 76.92 | 89.38 | | ceiling | 87.73 | 94.87 | | road | 86.2 | 90.16 | | bed | 92.06 | 96.14 | | windowpane | 66.95 | 81.65 | | grass | 68.75 | 83.95 | | cabinet | 66.28 | 75.21 | | sidewalk | 71.3 | 86.51 | | person | 84.78 | 93.11 | | earth | 43.0 | 59.29 | | door | 60.85 | 74.62 | | table | 68.87 | 78.9 | | mountain | 62.46 | 73.15 | | plant | 53.89 | 64.99 | | curtain | 78.23 | 89.02 | | chair | 66.04 | 77.28 | | car | 86.97 | 94.19 | | water | 65.35 | 80.3 | | painting | 77.78 | 90.22 | | sofa | 82.13 | 90.55 | | shelf | 47.93 | 65.79 | | house | 37.87 | 44.69 | | sea | 75.05 | 84.19 | | mirror | 77.62 | 86.11 | | rug | 68.21 | 84.84 | | field | 31.83 | 41.86 | | armchair | 64.49 | 82.72 | | seat | 70.21 | 88.3 | | fence | 50.75 | 63.59 | | desk | 60.86 | 77.22 | | rock | 59.25 | 79.92 | | wardrobe | 51.4 | 74.63 | | lamp | 73.08 | 84.09 | | bathtub | 83.97 | 88.02 | | railing | 44.45 | 60.91 | | cushion | 67.64 | 84.43 | | base | 42.69 | 58.97 | | box | 38.27 | 49.36 | | column | 56.53 | 72.69 | | signboard | 39.31 | 54.27 | | chest of drawers | 46.44 | 74.8 | | counter | 50.16 | 58.71 | | sand | 56.6 | 78.35 | | sink | 79.19 | 84.81 | | skyscraper | 47.3 | 63.26 | | fireplace | 74.61 | 93.37 | | refrigerator | 87.12 | 96.1 | | grandstand | 55.89 | 85.81 | | path | 24.65 | 37.93 | | stairs | 32.09 | 38.26 | | runway | 73.53 | 96.73 | | case | 63.68 | 80.22 | | pool table | 94.14 | 97.87 | | pillow | 66.82 | 77.65 | | screen door | 83.89 | 93.37 | | stairway | 46.8 | 65.62 | | river | 14.46 | 28.28 | | bridge | 74.58 | 89.2 | | bookcase | 44.6 | 67.58 | | blind | 44.53 | 53.21 | | coffee table | 58.7 | 88.39 | | toilet | 89.93 | 93.41 | | flower | 44.65 | 64.85 | | book | 51.66 | 72.25 | | hill | 13.49 | 27.66 | | bench | 64.5 | 74.76 | | countertop | 65.36 | 84.23 | | stove | 85.61 | 91.64 | | palm | 54.01 | 77.02 | | kitchen island | 55.4 | 78.11 | | computer | 79.04 | 90.09 | | swivel chair | 47.36 | 70.35 | | boat | 80.77 | 90.82 | | bar | 61.58 | 88.26 | | arcade machine | 89.7 | 94.75 | | hovel | 32.43 | 35.76 | | bus | 91.48 | 97.5 | | towel | 73.83 | 83.99 | | light | 53.97 | 61.69 | | truck | 48.82 | 66.34 | | tower | 8.96 | 14.67 | | chandelier | 72.5 | 85.56 | | awning | 34.53 | 45.15 | | streetlight | 30.12 | 40.3 | | booth | 55.09 | 66.84 | | television receiver | 81.78 | 88.19 | | airplane | 83.97 | 91.7 | | dirt track | 8.56 | 13.34 | | apparel | 59.26 | 81.66 | | pole | 23.99 | 34.68 | | land | 3.35 | 4.52 | | bannister | 19.03 | 22.77 | | escalator | 66.51 | 84.75 | | ottoman | 51.24 | 73.03 | | bottle | 45.15 | 71.51 | | buffet | 62.14 | 71.87 | | poster | 31.3 | 39.44 | | stage | 22.6 | 47.19 | | van | 51.37 | 68.22 | | ship | 91.17 | 96.12 | | fountain | 39.4 | 40.38 | | conveyer belt | 80.29 | 95.94 | | canopy | 53.83 | 69.85 | | washer | 85.3 | 90.97 | | plaything | 34.37 | 45.97 | | swimming pool | 53.02 | 77.5 | | stool | 45.67 | 67.8 | | barrel | 33.15 | 70.29 | | basket | 44.28 | 59.86 | | waterfall | 56.6 | 70.2 | | tent | 91.59 | 98.55 | | bag | 26.98 | 31.65 | | minibike | 74.1 | 88.54 | | cradle | 86.17 | 97.52 | | oven | 53.74 | 68.27 | | ball | 32.87 | 33.64 | | food | 64.8 | 80.02 | | step | 12.68 | 15.19 | | tank | 59.6 | 69.56 | | trade name | 23.2 | 26.94 | | microwave | 88.14 | 96.64 | | pot | 60.67 | 70.11 | | animal | 63.74 | 65.44 | | bicycle | 62.8 | 84.21 | | lake | 53.38 | 63.6 | | dishwasher | 70.01 | 83.0 | | screen | 57.96 | 89.66 | | blanket | 26.64 | 29.59 | | sculpture | 70.32 | 83.53 | | hood | 61.71 | 74.23 | | sconce | 57.43 | 67.56 | | vase | 47.85 | 64.39 | | traffic light | 38.71 | 59.84 | | tray | 25.72 | 33.43 | | ashcan | 53.81 | 65.95 | | fan | 67.31 | 82.47 | | pier | 38.5 | 47.28 | | crt screen | 2.49 | 3.71 | | plate | 61.1 | 83.19 | | monitor | 62.15 | 71.7 | | bulletin board | 60.37 | 77.43 | | shower | 21.25 | 22.77 | | radiator | 64.76 | 79.14 | | glass | 21.75 | 23.66 | | clock | 52.65 | 62.87 | | flag | 68.8 | 80.11 | +---------------------+-------+-------+ 2024-06-16 22:11:08,105 - mmseg - INFO - Summary: 2024-06-16 22:11:08,106 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 86.13 | 57.67 | 70.41 | +-------+-------+-------+ 2024-06-16 22:11:08,106 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 22:11:08,107 - mmseg - INFO - Iter(val) [250] aAcc: 0.8613, mIoU: 0.5767, mAcc: 0.7041, IoU.wall: 0.8207, IoU.building: 0.8416, IoU.sky: 0.9468, IoU.floor: 0.8431, IoU.tree: 0.7692, IoU.ceiling: 0.8773, IoU.road: 0.8620, IoU.bed : 0.9206, IoU.windowpane: 0.6695, IoU.grass: 0.6875, IoU.cabinet: 0.6628, IoU.sidewalk: 0.7130, IoU.person: 0.8478, IoU.earth: 0.4300, IoU.door: 0.6085, IoU.table: 0.6887, IoU.mountain: 0.6246, IoU.plant: 0.5389, IoU.curtain: 0.7823, IoU.chair: 0.6604, IoU.car: 0.8697, IoU.water: 0.6535, IoU.painting: 0.7778, IoU.sofa: 0.8213, IoU.shelf: 0.4793, IoU.house: 0.3787, IoU.sea: 0.7505, IoU.mirror: 0.7762, IoU.rug: 0.6821, IoU.field: 0.3183, IoU.armchair: 0.6449, IoU.seat: 0.7021, IoU.fence: 0.5075, IoU.desk: 0.6086, IoU.rock: 0.5925, IoU.wardrobe: 0.5140, IoU.lamp: 0.7308, IoU.bathtub: 0.8397, IoU.railing: 0.4445, IoU.cushion: 0.6764, IoU.base: 0.4269, IoU.box: 0.3827, IoU.column: 0.5653, IoU.signboard: 0.3931, IoU.chest of drawers: 0.4644, IoU.counter: 0.5016, IoU.sand: 0.5660, IoU.sink: 0.7919, IoU.skyscraper: 0.4730, IoU.fireplace: 0.7461, IoU.refrigerator: 0.8712, IoU.grandstand: 0.5589, IoU.path: 0.2465, IoU.stairs: 0.3209, IoU.runway: 0.7353, IoU.case: 0.6368, IoU.pool table: 0.9414, IoU.pillow: 0.6682, IoU.screen door: 0.8389, IoU.stairway: 0.4680, IoU.river: 0.1446, IoU.bridge: 0.7458, IoU.bookcase: 0.4460, IoU.blind: 0.4453, IoU.coffee table: 0.5870, IoU.toilet: 0.8993, IoU.flower: 0.4465, IoU.book: 0.5166, IoU.hill: 0.1349, IoU.bench: 0.6450, IoU.countertop: 0.6536, IoU.stove: 0.8561, IoU.palm: 0.5401, IoU.kitchen island: 0.5540, IoU.computer: 0.7904, IoU.swivel chair: 0.4736, IoU.boat: 0.8077, IoU.bar: 0.6158, IoU.arcade machine: 0.8970, IoU.hovel: 0.3243, IoU.bus: 0.9148, IoU.towel: 0.7383, IoU.light: 0.5397, IoU.truck: 0.4882, IoU.tower: 0.0896, IoU.chandelier: 0.7250, IoU.awning: 0.3453, IoU.streetlight: 0.3012, IoU.booth: 0.5509, IoU.television receiver: 0.8178, IoU.airplane: 0.8397, IoU.dirt track: 0.0856, IoU.apparel: 0.5926, IoU.pole: 0.2399, IoU.land: 0.0335, IoU.bannister: 0.1903, IoU.escalator: 0.6651, IoU.ottoman: 0.5124, IoU.bottle: 0.4515, IoU.buffet: 0.6214, IoU.poster: 0.3130, IoU.stage: 0.2260, IoU.van: 0.5137, IoU.ship: 0.9117, IoU.fountain: 0.3940, IoU.conveyer belt: 0.8029, IoU.canopy: 0.5383, IoU.washer: 0.8530, IoU.plaything: 0.3437, IoU.swimming pool: 0.5302, IoU.stool: 0.4567, IoU.barrel: 0.3315, IoU.basket: 0.4428, IoU.waterfall: 0.5660, IoU.tent: 0.9159, IoU.bag: 0.2698, IoU.minibike: 0.7410, IoU.cradle: 0.8617, IoU.oven: 0.5374, IoU.ball: 0.3287, IoU.food: 0.6480, IoU.step: 0.1268, IoU.tank: 0.5960, IoU.trade name: 0.2320, IoU.microwave: 0.8814, IoU.pot: 0.6067, IoU.animal: 0.6374, IoU.bicycle: 0.6280, IoU.lake: 0.5338, IoU.dishwasher: 0.7001, IoU.screen: 0.5796, IoU.blanket: 0.2664, IoU.sculpture: 0.7032, IoU.hood: 0.6171, IoU.sconce: 0.5743, IoU.vase: 0.4785, IoU.traffic light: 0.3871, IoU.tray: 0.2572, IoU.ashcan: 0.5381, IoU.fan: 0.6731, IoU.pier: 0.3850, IoU.crt screen: 0.0249, IoU.plate: 0.6110, IoU.monitor: 0.6215, IoU.bulletin board: 0.6037, IoU.shower: 0.2125, IoU.radiator: 0.6476, IoU.glass: 0.2175, IoU.clock: 0.5265, IoU.flag: 0.6880, Acc.wall: 0.8968, Acc.building: 0.9351, Acc.sky: 0.9778, Acc.floor: 0.9133, Acc.tree: 0.8938, Acc.ceiling: 0.9487, Acc.road: 0.9016, Acc.bed : 0.9614, Acc.windowpane: 0.8165, Acc.grass: 0.8395, Acc.cabinet: 0.7521, Acc.sidewalk: 0.8651, Acc.person: 0.9311, Acc.earth: 0.5929, Acc.door: 0.7462, Acc.table: 0.7890, Acc.mountain: 0.7315, Acc.plant: 0.6499, Acc.curtain: 0.8902, Acc.chair: 0.7728, Acc.car: 0.9419, Acc.water: 0.8030, Acc.painting: 0.9022, Acc.sofa: 0.9055, Acc.shelf: 0.6579, Acc.house: 0.4469, Acc.sea: 0.8419, Acc.mirror: 0.8611, Acc.rug: 0.8484, Acc.field: 0.4186, Acc.armchair: 0.8272, Acc.seat: 0.8830, Acc.fence: 0.6359, Acc.desk: 0.7722, Acc.rock: 0.7992, Acc.wardrobe: 0.7463, Acc.lamp: 0.8409, Acc.bathtub: 0.8802, Acc.railing: 0.6091, Acc.cushion: 0.8443, Acc.base: 0.5897, Acc.box: 0.4936, Acc.column: 0.7269, Acc.signboard: 0.5427, Acc.chest of drawers: 0.7480, Acc.counter: 0.5871, Acc.sand: 0.7835, Acc.sink: 0.8481, Acc.skyscraper: 0.6326, Acc.fireplace: 0.9337, Acc.refrigerator: 0.9610, Acc.grandstand: 0.8581, Acc.path: 0.3793, Acc.stairs: 0.3826, Acc.runway: 0.9673, Acc.case: 0.8022, Acc.pool table: 0.9787, Acc.pillow: 0.7765, Acc.screen door: 0.9337, Acc.stairway: 0.6562, Acc.river: 0.2828, Acc.bridge: 0.8920, Acc.bookcase: 0.6758, Acc.blind: 0.5321, Acc.coffee table: 0.8839, Acc.toilet: 0.9341, Acc.flower: 0.6485, Acc.book: 0.7225, Acc.hill: 0.2766, Acc.bench: 0.7476, Acc.countertop: 0.8423, Acc.stove: 0.9164, Acc.palm: 0.7702, Acc.kitchen island: 0.7811, Acc.computer: 0.9009, Acc.swivel chair: 0.7035, Acc.boat: 0.9082, Acc.bar: 0.8826, Acc.arcade machine: 0.9475, Acc.hovel: 0.3576, Acc.bus: 0.9750, Acc.towel: 0.8399, Acc.light: 0.6169, Acc.truck: 0.6634, Acc.tower: 0.1467, Acc.chandelier: 0.8556, Acc.awning: 0.4515, Acc.streetlight: 0.4030, Acc.booth: 0.6684, Acc.television receiver: 0.8819, Acc.airplane: 0.9170, Acc.dirt track: 0.1334, Acc.apparel: 0.8166, Acc.pole: 0.3468, Acc.land: 0.0452, Acc.bannister: 0.2277, Acc.escalator: 0.8475, Acc.ottoman: 0.7303, Acc.bottle: 0.7151, Acc.buffet: 0.7187, Acc.poster: 0.3944, Acc.stage: 0.4719, Acc.van: 0.6822, Acc.ship: 0.9612, Acc.fountain: 0.4038, Acc.conveyer belt: 0.9594, Acc.canopy: 0.6985, Acc.washer: 0.9097, Acc.plaything: 0.4597, Acc.swimming pool: 0.7750, Acc.stool: 0.6780, Acc.barrel: 0.7029, Acc.basket: 0.5986, Acc.waterfall: 0.7020, Acc.tent: 0.9855, Acc.bag: 0.3165, Acc.minibike: 0.8854, Acc.cradle: 0.9752, Acc.oven: 0.6827, Acc.ball: 0.3364, Acc.food: 0.8002, Acc.step: 0.1519, Acc.tank: 0.6956, Acc.trade name: 0.2694, Acc.microwave: 0.9664, Acc.pot: 0.7011, Acc.animal: 0.6544, Acc.bicycle: 0.8421, Acc.lake: 0.6360, Acc.dishwasher: 0.8300, Acc.screen: 0.8966, Acc.blanket: 0.2959, Acc.sculpture: 0.8353, Acc.hood: 0.7423, Acc.sconce: 0.6756, Acc.vase: 0.6439, Acc.traffic light: 0.5984, Acc.tray: 0.3343, Acc.ashcan: 0.6595, Acc.fan: 0.8247, Acc.pier: 0.4728, Acc.crt screen: 0.0371, Acc.plate: 0.8319, Acc.monitor: 0.7170, Acc.bulletin board: 0.7743, Acc.shower: 0.2277, Acc.radiator: 0.7914, Acc.glass: 0.2366, Acc.clock: 0.6287, Acc.flag: 0.8011 2024-06-16 22:12:31,659 - mmseg - INFO - Iter [53050/80000] lr: 1.091e-06, eta: 12:58:56, time: 3.357, data_time: 1.752, memory: 65790, decode.loss_ce: 0.1536, decode.acc_seg: 93.2020, aux.loss_ce: 0.0656, aux.acc_seg: 92.8571, loss: 0.2191 2024-06-16 22:13:52,136 - mmseg - INFO - Iter [53100/80000] lr: 1.089e-06, eta: 12:57:26, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1513, decode.acc_seg: 93.2920, aux.loss_ce: 0.0641, aux.acc_seg: 92.9925, loss: 0.2154 2024-06-16 22:15:12,549 - mmseg - INFO - Iter [53150/80000] lr: 1.087e-06, eta: 12:55:57, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1522, decode.acc_seg: 93.3301, aux.loss_ce: 0.0649, aux.acc_seg: 93.0245, loss: 0.2171 2024-06-16 22:16:33,234 - mmseg - INFO - Iter [53200/80000] lr: 1.085e-06, eta: 12:54:27, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1517, decode.acc_seg: 93.2208, aux.loss_ce: 0.0648, aux.acc_seg: 92.8978, loss: 0.2164 2024-06-16 22:17:53,624 - mmseg - INFO - Iter [53250/80000] lr: 1.083e-06, eta: 12:52:57, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1604, decode.acc_seg: 92.7603, aux.loss_ce: 0.0675, aux.acc_seg: 92.4985, loss: 0.2279 2024-06-16 22:19:14,007 - mmseg - INFO - Iter [53300/80000] lr: 1.081e-06, eta: 12:51:27, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1611, decode.acc_seg: 92.6703, aux.loss_ce: 0.0683, aux.acc_seg: 92.3165, loss: 0.2294 2024-06-16 22:20:34,384 - mmseg - INFO - Iter [53350/80000] lr: 1.079e-06, eta: 12:49:57, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1543, decode.acc_seg: 93.1766, aux.loss_ce: 0.0656, aux.acc_seg: 92.8620, loss: 0.2199 2024-06-16 22:21:54,783 - mmseg - INFO - Iter [53400/80000] lr: 1.077e-06, eta: 12:48:28, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1580, decode.acc_seg: 93.1018, aux.loss_ce: 0.0678, aux.acc_seg: 92.6895, loss: 0.2259 2024-06-16 22:23:15,258 - mmseg - INFO - Iter [53450/80000] lr: 1.075e-06, eta: 12:46:58, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1552, decode.acc_seg: 92.9262, aux.loss_ce: 0.0655, aux.acc_seg: 92.6966, loss: 0.2207 2024-06-16 22:24:35,716 - mmseg - INFO - Iter [53500/80000] lr: 1.073e-06, eta: 12:45:28, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1531, decode.acc_seg: 93.2491, aux.loss_ce: 0.0647, aux.acc_seg: 92.9032, loss: 0.2178 2024-06-16 22:25:56,144 - mmseg - INFO - Iter [53550/80000] lr: 1.071e-06, eta: 12:43:58, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1527, decode.acc_seg: 93.0841, aux.loss_ce: 0.0645, aux.acc_seg: 92.8139, loss: 0.2171 2024-06-16 22:27:16,558 - mmseg - INFO - Iter [53600/80000] lr: 1.069e-06, eta: 12:42:29, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1538, decode.acc_seg: 93.2261, aux.loss_ce: 0.0655, aux.acc_seg: 92.9566, loss: 0.2193 2024-06-16 22:28:37,076 - mmseg - INFO - Iter [53650/80000] lr: 1.067e-06, eta: 12:40:59, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1652, decode.acc_seg: 92.8900, aux.loss_ce: 0.0699, aux.acc_seg: 92.5628, loss: 0.2351 2024-06-16 22:29:57,525 - mmseg - INFO - Iter [53700/80000] lr: 1.065e-06, eta: 12:39:29, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1528, decode.acc_seg: 93.2049, aux.loss_ce: 0.0648, aux.acc_seg: 92.9807, loss: 0.2176 2024-06-16 22:31:18,071 - mmseg - INFO - Iter [53750/80000] lr: 1.063e-06, eta: 12:38:00, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1603, decode.acc_seg: 92.9811, aux.loss_ce: 0.0686, aux.acc_seg: 92.5729, loss: 0.2290 2024-06-16 22:32:38,720 - mmseg - INFO - Iter [53800/80000] lr: 1.061e-06, eta: 12:36:30, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1576, decode.acc_seg: 92.8538, aux.loss_ce: 0.0676, aux.acc_seg: 92.5641, loss: 0.2252 2024-06-16 22:33:59,198 - mmseg - INFO - Iter [53850/80000] lr: 1.059e-06, eta: 12:35:00, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1567, decode.acc_seg: 92.9180, aux.loss_ce: 0.0663, aux.acc_seg: 92.6567, loss: 0.2230 2024-06-16 22:35:19,665 - mmseg - INFO - Iter [53900/80000] lr: 1.057e-06, eta: 12:33:31, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1471, decode.acc_seg: 93.2662, aux.loss_ce: 0.0625, aux.acc_seg: 92.9842, loss: 0.2095 2024-06-16 22:36:40,099 - mmseg - INFO - Iter [53950/80000] lr: 1.055e-06, eta: 12:32:01, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1492, decode.acc_seg: 93.2941, aux.loss_ce: 0.0637, aux.acc_seg: 92.9572, loss: 0.2129 2024-06-16 22:38:00,565 - mmseg - INFO - Saving checkpoint at 54000 iterations 2024-06-16 22:39:11,332 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 22:39:11,333 - mmseg - INFO - Iter [54000/80000] lr: 1.053e-06, eta: 12:31:06, time: 3.025, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1555, decode.acc_seg: 93.1450, aux.loss_ce: 0.0662, aux.acc_seg: 92.7869, loss: 0.2217 2024-06-16 22:40:33,594 - mmseg - INFO - per class results: 2024-06-16 22:40:33,601 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.08 | 89.65 | | building | 84.27 | 93.38 | | sky | 94.77 | 97.48 | | floor | 84.25 | 90.55 | | tree | 76.86 | 87.09 | | ceiling | 87.13 | 93.01 | | road | 84.97 | 90.76 | | bed | 91.64 | 96.28 | | windowpane | 67.19 | 82.79 | | grass | 68.93 | 81.56 | | cabinet | 67.57 | 77.54 | | sidewalk | 71.09 | 86.81 | | person | 84.72 | 93.06 | | earth | 41.46 | 55.6 | | door | 59.56 | 74.31 | | table | 70.17 | 83.39 | | mountain | 61.43 | 77.11 | | plant | 57.51 | 69.49 | | curtain | 77.09 | 87.25 | | chair | 65.58 | 77.59 | | car | 86.76 | 93.6 | | water | 60.45 | 72.78 | | painting | 77.2 | 93.2 | | sofa | 83.03 | 92.03 | | shelf | 45.69 | 60.65 | | house | 53.53 | 71.34 | | sea | 75.84 | 84.34 | | mirror | 76.95 | 83.09 | | rug | 69.11 | 83.92 | | field | 31.74 | 54.96 | | armchair | 66.06 | 82.4 | | seat | 68.8 | 88.83 | | fence | 50.42 | 68.53 | | desk | 59.96 | 74.65 | | rock | 51.95 | 68.06 | | wardrobe | 52.83 | 74.74 | | lamp | 73.01 | 82.73 | | bathtub | 85.45 | 88.63 | | railing | 43.45 | 63.43 | | cushion | 68.59 | 81.07 | | base | 40.85 | 50.95 | | box | 42.5 | 56.12 | | column | 57.11 | 70.71 | | signboard | 38.89 | 52.72 | | chest of drawers | 46.77 | 68.98 | | counter | 52.73 | 61.57 | | sand | 50.09 | 78.62 | | sink | 78.82 | 84.96 | | skyscraper | 46.26 | 59.38 | | fireplace | 76.83 | 93.61 | | refrigerator | 87.14 | 95.37 | | grandstand | 53.97 | 87.16 | | path | 28.27 | 36.97 | | stairs | 27.04 | 31.85 | | runway | 66.1 | 86.58 | | case | 62.6 | 79.96 | | pool table | 93.96 | 98.3 | | pillow | 66.15 | 76.46 | | screen door | 73.84 | 75.82 | | stairway | 44.51 | 65.38 | | river | 11.58 | 30.6 | | bridge | 73.55 | 91.5 | | bookcase | 40.12 | 58.3 | | blind | 47.48 | 58.26 | | coffee table | 65.35 | 83.57 | | toilet | 90.07 | 93.53 | | flower | 43.84 | 59.04 | | book | 51.09 | 79.45 | | hill | 9.55 | 16.6 | | bench | 62.89 | 77.39 | | countertop | 64.78 | 84.4 | | stove | 85.49 | 90.61 | | palm | 52.33 | 82.04 | | kitchen island | 51.1 | 78.72 | | computer | 79.07 | 90.71 | | swivel chair | 46.15 | 69.56 | | boat | 70.81 | 92.39 | | bar | 61.57 | 89.35 | | arcade machine | 89.72 | 95.22 | | hovel | 26.3 | 28.16 | | bus | 92.11 | 96.71 | | towel | 75.1 | 85.2 | | light | 54.04 | 65.39 | | truck | 50.71 | 63.44 | | tower | 7.06 | 11.25 | | chandelier | 72.26 | 85.62 | | awning | 46.27 | 62.9 | | streetlight | 28.48 | 35.89 | | booth | 56.8 | 69.99 | | television receiver | 81.54 | 90.78 | | airplane | 87.21 | 94.46 | | dirt track | 4.84 | 20.22 | | apparel | 59.67 | 76.02 | | pole | 21.36 | 35.41 | | land | 4.85 | 7.06 | | bannister | 18.3 | 23.68 | | escalator | 65.9 | 86.7 | | ottoman | 56.56 | 71.86 | | bottle | 43.47 | 75.12 | | buffet | 63.72 | 75.29 | | poster | 27.91 | 34.57 | | stage | 25.09 | 46.46 | | van | 48.35 | 66.16 | | ship | 90.95 | 99.07 | | fountain | 39.31 | 40.41 | | conveyer belt | 83.01 | 95.84 | | canopy | 49.67 | 75.33 | | washer | 84.36 | 89.67 | | plaything | 33.08 | 52.45 | | swimming pool | 56.55 | 83.36 | | stool | 47.05 | 61.39 | | barrel | 51.46 | 85.25 | | basket | 37.68 | 52.16 | | waterfall | 53.83 | 64.32 | | tent | 95.31 | 98.79 | | bag | 22.1 | 25.73 | | minibike | 74.51 | 88.83 | | cradle | 83.95 | 97.63 | | oven | 55.8 | 66.4 | | ball | 59.31 | 63.92 | | food | 63.9 | 74.16 | | step | 12.49 | 15.36 | | tank | 64.13 | 69.22 | | trade name | 30.94 | 40.08 | | microwave | 88.7 | 95.42 | | pot | 59.44 | 66.81 | | animal | 66.36 | 68.77 | | bicycle | 60.51 | 83.12 | | lake | 53.49 | 63.61 | | dishwasher | 73.61 | 82.98 | | screen | 55.85 | 78.79 | | blanket | 36.44 | 42.97 | | sculpture | 69.64 | 85.84 | | hood | 61.7 | 74.23 | | sconce | 58.17 | 69.85 | | vase | 47.99 | 65.13 | | traffic light | 38.48 | 58.68 | | tray | 27.41 | 36.73 | | ashcan | 53.45 | 67.56 | | fan | 65.94 | 79.87 | | pier | 39.14 | 45.2 | | crt screen | 15.35 | 23.11 | | plate | 61.16 | 76.46 | | monitor | 64.6 | 81.3 | | bulletin board | 60.39 | 77.43 | | shower | 18.82 | 21.68 | | radiator | 64.7 | 81.85 | | glass | 20.77 | 22.21 | | clock | 48.74 | 62.0 | | flag | 70.18 | 77.35 | +---------------------+-------+-------+ 2024-06-16 22:40:33,601 - mmseg - INFO - Summary: 2024-06-16 22:40:33,601 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.99 | 57.86 | 70.78 | +-------+-------+-------+ 2024-06-16 22:40:33,602 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 22:40:33,602 - mmseg - INFO - Iter(val) [250] aAcc: 0.8599, mIoU: 0.5786, mAcc: 0.7078, IoU.wall: 0.8208, IoU.building: 0.8427, IoU.sky: 0.9477, IoU.floor: 0.8425, IoU.tree: 0.7686, IoU.ceiling: 0.8713, IoU.road: 0.8497, IoU.bed : 0.9164, IoU.windowpane: 0.6719, IoU.grass: 0.6893, IoU.cabinet: 0.6757, IoU.sidewalk: 0.7109, IoU.person: 0.8472, IoU.earth: 0.4146, IoU.door: 0.5956, IoU.table: 0.7017, IoU.mountain: 0.6143, IoU.plant: 0.5751, IoU.curtain: 0.7709, IoU.chair: 0.6558, IoU.car: 0.8676, IoU.water: 0.6045, IoU.painting: 0.7720, IoU.sofa: 0.8303, IoU.shelf: 0.4569, IoU.house: 0.5353, IoU.sea: 0.7584, IoU.mirror: 0.7695, IoU.rug: 0.6911, IoU.field: 0.3174, IoU.armchair: 0.6606, IoU.seat: 0.6880, IoU.fence: 0.5042, IoU.desk: 0.5996, IoU.rock: 0.5195, IoU.wardrobe: 0.5283, IoU.lamp: 0.7301, IoU.bathtub: 0.8545, IoU.railing: 0.4345, IoU.cushion: 0.6859, IoU.base: 0.4085, IoU.box: 0.4250, IoU.column: 0.5711, IoU.signboard: 0.3889, IoU.chest of drawers: 0.4677, IoU.counter: 0.5273, IoU.sand: 0.5009, IoU.sink: 0.7882, IoU.skyscraper: 0.4626, IoU.fireplace: 0.7683, IoU.refrigerator: 0.8714, IoU.grandstand: 0.5397, IoU.path: 0.2827, IoU.stairs: 0.2704, IoU.runway: 0.6610, IoU.case: 0.6260, IoU.pool table: 0.9396, IoU.pillow: 0.6615, IoU.screen door: 0.7384, IoU.stairway: 0.4451, IoU.river: 0.1158, IoU.bridge: 0.7355, IoU.bookcase: 0.4012, IoU.blind: 0.4748, IoU.coffee table: 0.6535, IoU.toilet: 0.9007, IoU.flower: 0.4384, IoU.book: 0.5109, IoU.hill: 0.0955, IoU.bench: 0.6289, IoU.countertop: 0.6478, IoU.stove: 0.8549, IoU.palm: 0.5233, IoU.kitchen island: 0.5110, IoU.computer: 0.7907, IoU.swivel chair: 0.4615, IoU.boat: 0.7081, IoU.bar: 0.6157, IoU.arcade machine: 0.8972, IoU.hovel: 0.2630, IoU.bus: 0.9211, IoU.towel: 0.7510, IoU.light: 0.5404, IoU.truck: 0.5071, IoU.tower: 0.0706, IoU.chandelier: 0.7226, IoU.awning: 0.4627, IoU.streetlight: 0.2848, IoU.booth: 0.5680, IoU.television receiver: 0.8154, IoU.airplane: 0.8721, IoU.dirt track: 0.0484, IoU.apparel: 0.5967, IoU.pole: 0.2136, IoU.land: 0.0485, IoU.bannister: 0.1830, IoU.escalator: 0.6590, IoU.ottoman: 0.5656, IoU.bottle: 0.4347, IoU.buffet: 0.6372, IoU.poster: 0.2791, IoU.stage: 0.2509, IoU.van: 0.4835, IoU.ship: 0.9095, IoU.fountain: 0.3931, IoU.conveyer belt: 0.8301, IoU.canopy: 0.4967, IoU.washer: 0.8436, IoU.plaything: 0.3308, IoU.swimming pool: 0.5655, IoU.stool: 0.4705, IoU.barrel: 0.5146, IoU.basket: 0.3768, IoU.waterfall: 0.5383, IoU.tent: 0.9531, IoU.bag: 0.2210, IoU.minibike: 0.7451, IoU.cradle: 0.8395, IoU.oven: 0.5580, IoU.ball: 0.5931, IoU.food: 0.6390, IoU.step: 0.1249, IoU.tank: 0.6413, IoU.trade name: 0.3094, IoU.microwave: 0.8870, IoU.pot: 0.5944, IoU.animal: 0.6636, IoU.bicycle: 0.6051, IoU.lake: 0.5349, IoU.dishwasher: 0.7361, IoU.screen: 0.5585, IoU.blanket: 0.3644, IoU.sculpture: 0.6964, IoU.hood: 0.6170, IoU.sconce: 0.5817, IoU.vase: 0.4799, IoU.traffic light: 0.3848, IoU.tray: 0.2741, IoU.ashcan: 0.5345, IoU.fan: 0.6594, IoU.pier: 0.3914, IoU.crt screen: 0.1535, IoU.plate: 0.6116, IoU.monitor: 0.6460, IoU.bulletin board: 0.6039, IoU.shower: 0.1882, IoU.radiator: 0.6470, IoU.glass: 0.2077, IoU.clock: 0.4874, IoU.flag: 0.7018, Acc.wall: 0.8965, Acc.building: 0.9338, Acc.sky: 0.9748, Acc.floor: 0.9055, Acc.tree: 0.8709, Acc.ceiling: 0.9301, Acc.road: 0.9076, Acc.bed : 0.9628, Acc.windowpane: 0.8279, Acc.grass: 0.8156, Acc.cabinet: 0.7754, Acc.sidewalk: 0.8681, Acc.person: 0.9306, Acc.earth: 0.5560, Acc.door: 0.7431, Acc.table: 0.8339, Acc.mountain: 0.7711, Acc.plant: 0.6949, Acc.curtain: 0.8725, Acc.chair: 0.7759, Acc.car: 0.9360, Acc.water: 0.7278, Acc.painting: 0.9320, Acc.sofa: 0.9203, Acc.shelf: 0.6065, Acc.house: 0.7134, Acc.sea: 0.8434, Acc.mirror: 0.8309, Acc.rug: 0.8392, Acc.field: 0.5496, Acc.armchair: 0.8240, Acc.seat: 0.8883, Acc.fence: 0.6853, Acc.desk: 0.7465, Acc.rock: 0.6806, Acc.wardrobe: 0.7474, Acc.lamp: 0.8273, Acc.bathtub: 0.8863, Acc.railing: 0.6343, Acc.cushion: 0.8107, Acc.base: 0.5095, Acc.box: 0.5612, Acc.column: 0.7071, Acc.signboard: 0.5272, Acc.chest of drawers: 0.6898, Acc.counter: 0.6157, Acc.sand: 0.7862, Acc.sink: 0.8496, Acc.skyscraper: 0.5938, Acc.fireplace: 0.9361, Acc.refrigerator: 0.9537, Acc.grandstand: 0.8716, Acc.path: 0.3697, Acc.stairs: 0.3185, Acc.runway: 0.8658, Acc.case: 0.7996, Acc.pool table: 0.9830, Acc.pillow: 0.7646, Acc.screen door: 0.7582, Acc.stairway: 0.6538, Acc.river: 0.3060, Acc.bridge: 0.9150, Acc.bookcase: 0.5830, Acc.blind: 0.5826, Acc.coffee table: 0.8357, Acc.toilet: 0.9353, Acc.flower: 0.5904, Acc.book: 0.7945, Acc.hill: 0.1660, Acc.bench: 0.7739, Acc.countertop: 0.8440, Acc.stove: 0.9061, Acc.palm: 0.8204, Acc.kitchen island: 0.7872, Acc.computer: 0.9071, Acc.swivel chair: 0.6956, Acc.boat: 0.9239, Acc.bar: 0.8935, Acc.arcade machine: 0.9522, Acc.hovel: 0.2816, Acc.bus: 0.9671, Acc.towel: 0.8520, Acc.light: 0.6539, Acc.truck: 0.6344, Acc.tower: 0.1125, Acc.chandelier: 0.8562, Acc.awning: 0.6290, Acc.streetlight: 0.3589, Acc.booth: 0.6999, Acc.television receiver: 0.9078, Acc.airplane: 0.9446, Acc.dirt track: 0.2022, Acc.apparel: 0.7602, Acc.pole: 0.3541, Acc.land: 0.0706, Acc.bannister: 0.2368, Acc.escalator: 0.8670, Acc.ottoman: 0.7186, Acc.bottle: 0.7512, Acc.buffet: 0.7529, Acc.poster: 0.3457, Acc.stage: 0.4646, Acc.van: 0.6616, Acc.ship: 0.9907, Acc.fountain: 0.4041, Acc.conveyer belt: 0.9584, Acc.canopy: 0.7533, Acc.washer: 0.8967, Acc.plaything: 0.5245, Acc.swimming pool: 0.8336, Acc.stool: 0.6139, Acc.barrel: 0.8525, Acc.basket: 0.5216, Acc.waterfall: 0.6432, Acc.tent: 0.9879, Acc.bag: 0.2573, Acc.minibike: 0.8883, Acc.cradle: 0.9763, Acc.oven: 0.6640, Acc.ball: 0.6392, Acc.food: 0.7416, Acc.step: 0.1536, Acc.tank: 0.6922, Acc.trade name: 0.4008, Acc.microwave: 0.9542, Acc.pot: 0.6681, Acc.animal: 0.6877, Acc.bicycle: 0.8312, Acc.lake: 0.6361, Acc.dishwasher: 0.8298, Acc.screen: 0.7879, Acc.blanket: 0.4297, Acc.sculpture: 0.8584, Acc.hood: 0.7423, Acc.sconce: 0.6985, Acc.vase: 0.6513, Acc.traffic light: 0.5868, Acc.tray: 0.3673, Acc.ashcan: 0.6756, Acc.fan: 0.7987, Acc.pier: 0.4520, Acc.crt screen: 0.2311, Acc.plate: 0.7646, Acc.monitor: 0.8130, Acc.bulletin board: 0.7743, Acc.shower: 0.2168, Acc.radiator: 0.8185, Acc.glass: 0.2221, Acc.clock: 0.6200, Acc.flag: 0.7735 2024-06-16 22:41:54,278 - mmseg - INFO - Iter [54050/80000] lr: 1.051e-06, eta: 12:30:16, time: 3.259, data_time: 1.659, memory: 65790, decode.loss_ce: 0.1577, decode.acc_seg: 92.8724, aux.loss_ce: 0.0676, aux.acc_seg: 92.5403, loss: 0.2252 2024-06-16 22:43:14,901 - mmseg - INFO - Iter [54100/80000] lr: 1.049e-06, eta: 12:28:46, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1473, decode.acc_seg: 93.4732, aux.loss_ce: 0.0632, aux.acc_seg: 93.1076, loss: 0.2105 2024-06-16 22:44:35,443 - mmseg - INFO - Iter [54150/80000] lr: 1.047e-06, eta: 12:27:16, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1589, decode.acc_seg: 92.7985, aux.loss_ce: 0.0675, aux.acc_seg: 92.5071, loss: 0.2263 2024-06-16 22:45:55,807 - mmseg - INFO - Iter [54200/80000] lr: 1.045e-06, eta: 12:25:47, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1523, decode.acc_seg: 93.0869, aux.loss_ce: 0.0647, aux.acc_seg: 92.9297, loss: 0.2170 2024-06-16 22:47:16,313 - mmseg - INFO - Iter [54250/80000] lr: 1.043e-06, eta: 12:24:17, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1508, decode.acc_seg: 93.1199, aux.loss_ce: 0.0638, aux.acc_seg: 92.7868, loss: 0.2146 2024-06-16 22:48:36,675 - mmseg - INFO - Iter [54300/80000] lr: 1.041e-06, eta: 12:22:47, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1542, decode.acc_seg: 93.1499, aux.loss_ce: 0.0657, aux.acc_seg: 92.7672, loss: 0.2199 2024-06-16 22:49:59,308 - mmseg - INFO - Iter [54350/80000] lr: 1.039e-06, eta: 12:21:19, time: 1.653, data_time: 0.049, memory: 65790, decode.loss_ce: 0.1441, decode.acc_seg: 93.4693, aux.loss_ce: 0.0616, aux.acc_seg: 93.1914, loss: 0.2056 2024-06-16 22:51:19,826 - mmseg - INFO - Iter [54400/80000] lr: 1.037e-06, eta: 12:19:49, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1517, decode.acc_seg: 93.1402, aux.loss_ce: 0.0650, aux.acc_seg: 92.8079, loss: 0.2167 2024-06-16 22:52:40,367 - mmseg - INFO - Iter [54450/80000] lr: 1.035e-06, eta: 12:18:19, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1519, decode.acc_seg: 93.2551, aux.loss_ce: 0.0646, aux.acc_seg: 92.8928, loss: 0.2165 2024-06-16 22:54:00,897 - mmseg - INFO - Iter [54500/80000] lr: 1.033e-06, eta: 12:16:50, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1564, decode.acc_seg: 92.9759, aux.loss_ce: 0.0669, aux.acc_seg: 92.6473, loss: 0.2233 2024-06-16 22:55:21,441 - mmseg - INFO - Iter [54550/80000] lr: 1.031e-06, eta: 12:15:20, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1450, decode.acc_seg: 93.5169, aux.loss_ce: 0.0614, aux.acc_seg: 93.2600, loss: 0.2065 2024-06-16 22:56:41,875 - mmseg - INFO - Iter [54600/80000] lr: 1.029e-06, eta: 12:13:51, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1496, decode.acc_seg: 93.3402, aux.loss_ce: 0.0639, aux.acc_seg: 93.0141, loss: 0.2135 2024-06-16 22:58:02,303 - mmseg - INFO - Iter [54650/80000] lr: 1.027e-06, eta: 12:12:21, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1550, decode.acc_seg: 93.0339, aux.loss_ce: 0.0661, aux.acc_seg: 92.7397, loss: 0.2211 2024-06-16 22:59:22,899 - mmseg - INFO - Iter [54700/80000] lr: 1.025e-06, eta: 12:10:52, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1512, decode.acc_seg: 93.1724, aux.loss_ce: 0.0650, aux.acc_seg: 92.7806, loss: 0.2162 2024-06-16 23:00:43,390 - mmseg - INFO - Iter [54750/80000] lr: 1.023e-06, eta: 12:09:22, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1555, decode.acc_seg: 93.1294, aux.loss_ce: 0.0660, aux.acc_seg: 92.7955, loss: 0.2215 2024-06-16 23:02:03,982 - mmseg - INFO - Iter [54800/80000] lr: 1.021e-06, eta: 12:07:53, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1504, decode.acc_seg: 93.3559, aux.loss_ce: 0.0640, aux.acc_seg: 93.0162, loss: 0.2145 2024-06-16 23:03:24,431 - mmseg - INFO - Iter [54850/80000] lr: 1.019e-06, eta: 12:06:23, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1440, decode.acc_seg: 93.5269, aux.loss_ce: 0.0612, aux.acc_seg: 93.1888, loss: 0.2052 2024-06-16 23:04:44,962 - mmseg - INFO - Iter [54900/80000] lr: 1.017e-06, eta: 12:04:54, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1462, decode.acc_seg: 93.4537, aux.loss_ce: 0.0629, aux.acc_seg: 93.1438, loss: 0.2091 2024-06-16 23:06:05,412 - mmseg - INFO - Iter [54950/80000] lr: 1.014e-06, eta: 12:03:24, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1456, decode.acc_seg: 93.3941, aux.loss_ce: 0.0627, aux.acc_seg: 93.0617, loss: 0.2083 2024-06-16 23:07:25,996 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 23:07:25,996 - mmseg - INFO - Iter [55000/80000] lr: 1.012e-06, eta: 12:01:55, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1532, decode.acc_seg: 92.8823, aux.loss_ce: 0.0650, aux.acc_seg: 92.6192, loss: 0.2182 2024-06-16 23:08:47,136 - mmseg - INFO - per class results: 2024-06-16 23:08:47,142 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.24 | 89.85 | | building | 84.6 | 92.83 | | sky | 94.66 | 97.4 | | floor | 84.05 | 91.35 | | tree | 76.98 | 89.65 | | ceiling | 86.95 | 94.55 | | road | 85.14 | 91.39 | | bed | 91.64 | 96.71 | | windowpane | 67.2 | 82.24 | | grass | 68.14 | 80.63 | | cabinet | 67.04 | 76.96 | | sidewalk | 69.99 | 81.98 | | person | 84.52 | 94.63 | | earth | 40.87 | 54.36 | | door | 60.55 | 73.26 | | table | 70.7 | 82.53 | | mountain | 62.61 | 72.92 | | plant | 54.0 | 66.33 | | curtain | 79.01 | 86.83 | | chair | 66.64 | 81.14 | | car | 86.76 | 94.41 | | water | 64.76 | 79.1 | | painting | 79.73 | 89.8 | | sofa | 82.52 | 91.67 | | shelf | 45.74 | 59.88 | | house | 49.74 | 66.6 | | sea | 75.27 | 83.43 | | mirror | 77.89 | 87.3 | | rug | 62.47 | 70.2 | | field | 27.54 | 48.43 | | armchair | 65.51 | 82.21 | | seat | 68.29 | 89.29 | | fence | 51.67 | 66.86 | | desk | 60.79 | 77.2 | | rock | 55.61 | 81.87 | | wardrobe | 51.91 | 75.5 | | lamp | 72.53 | 83.32 | | bathtub | 84.8 | 88.04 | | railing | 43.45 | 61.62 | | cushion | 70.58 | 78.85 | | base | 42.61 | 54.01 | | box | 42.49 | 59.03 | | column | 57.28 | 73.33 | | signboard | 38.38 | 53.37 | | chest of drawers | 43.73 | 65.02 | | counter | 48.6 | 60.6 | | sand | 55.68 | 85.58 | | sink | 78.52 | 83.59 | | skyscraper | 46.07 | 58.86 | | fireplace | 74.57 | 93.88 | | refrigerator | 86.17 | 96.65 | | grandstand | 55.0 | 84.67 | | path | 29.87 | 37.99 | | stairs | 36.63 | 43.94 | | runway | 69.0 | 90.13 | | case | 62.46 | 78.61 | | pool table | 93.85 | 98.38 | | pillow | 67.68 | 78.96 | | screen door | 85.97 | 91.6 | | stairway | 52.62 | 69.31 | | river | 12.74 | 26.42 | | bridge | 66.18 | 82.5 | | bookcase | 40.63 | 58.67 | | blind | 49.04 | 59.11 | | coffee table | 66.49 | 84.75 | | toilet | 90.22 | 93.98 | | flower | 41.88 | 54.12 | | book | 51.66 | 79.18 | | hill | 9.09 | 16.07 | | bench | 57.69 | 66.14 | | countertop | 64.56 | 84.56 | | stove | 86.03 | 92.28 | | palm | 53.81 | 79.64 | | kitchen island | 53.05 | 89.96 | | computer | 78.95 | 89.6 | | swivel chair | 46.33 | 69.92 | | boat | 78.56 | 91.26 | | bar | 59.67 | 83.51 | | arcade machine | 73.65 | 76.84 | | hovel | 27.17 | 29.64 | | bus | 92.48 | 97.34 | | towel | 74.85 | 85.58 | | light | 54.02 | 60.62 | | truck | 49.79 | 62.25 | | tower | 10.62 | 17.92 | | chandelier | 71.24 | 87.19 | | awning | 36.22 | 46.41 | | streetlight | 30.42 | 40.21 | | booth | 48.95 | 66.34 | | television receiver | 78.24 | 89.12 | | airplane | 86.91 | 95.13 | | dirt track | 4.06 | 26.04 | | apparel | 59.84 | 73.25 | | pole | 20.88 | 32.66 | | land | 6.41 | 9.83 | | bannister | 18.2 | 22.18 | | escalator | 66.58 | 85.66 | | ottoman | 55.74 | 70.03 | | bottle | 44.22 | 68.96 | | buffet | 63.85 | 73.15 | | poster | 33.83 | 44.2 | | stage | 21.36 | 48.47 | | van | 51.96 | 72.56 | | ship | 92.35 | 99.05 | | fountain | 40.34 | 42.03 | | conveyer belt | 80.65 | 96.51 | | canopy | 56.67 | 75.65 | | washer | 83.71 | 89.06 | | plaything | 33.71 | 47.56 | | swimming pool | 51.49 | 74.82 | | stool | 50.85 | 70.25 | | barrel | 66.72 | 91.02 | | basket | 43.17 | 59.84 | | waterfall | 59.87 | 71.37 | | tent | 93.94 | 98.82 | | bag | 23.2 | 26.39 | | minibike | 74.19 | 87.63 | | cradle | 84.23 | 98.15 | | oven | 60.39 | 72.4 | | ball | 51.66 | 53.35 | | food | 64.46 | 74.26 | | step | 12.77 | 16.0 | | tank | 63.72 | 68.2 | | trade name | 24.33 | 28.34 | | microwave | 90.33 | 95.92 | | pot | 59.78 | 70.22 | | animal | 64.55 | 66.83 | | bicycle | 61.1 | 82.48 | | lake | 52.68 | 63.53 | | dishwasher | 74.05 | 81.08 | | screen | 60.14 | 90.46 | | blanket | 31.19 | 35.74 | | sculpture | 73.13 | 86.08 | | hood | 65.11 | 78.19 | | sconce | 58.18 | 68.87 | | vase | 48.85 | 65.32 | | traffic light | 35.0 | 65.73 | | tray | 27.46 | 36.79 | | ashcan | 53.68 | 67.58 | | fan | 65.91 | 75.51 | | pier | 39.67 | 45.33 | | crt screen | 7.52 | 10.53 | | plate | 62.11 | 80.19 | | monitor | 64.18 | 75.54 | | bulletin board | 57.14 | 75.75 | | shower | 17.81 | 19.0 | | radiator | 64.73 | 81.95 | | glass | 22.02 | 23.88 | | clock | 48.73 | 56.54 | | flag | 69.38 | 75.66 | +---------------------+-------+-------+ 2024-06-16 23:08:47,142 - mmseg - INFO - Summary: 2024-06-16 23:08:47,142 - mmseg - INFO - +-------+-------+------+ | aAcc | mIoU | mAcc | +-------+-------+------+ | 86.03 | 57.98 | 70.6 | +-------+-------+------+ 2024-06-16 23:08:47,143 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 23:08:47,143 - mmseg - INFO - Iter(val) [250] aAcc: 0.8603, mIoU: 0.5798, mAcc: 0.7060, IoU.wall: 0.8224, IoU.building: 0.8460, IoU.sky: 0.9466, IoU.floor: 0.8405, IoU.tree: 0.7698, IoU.ceiling: 0.8695, IoU.road: 0.8514, IoU.bed : 0.9164, IoU.windowpane: 0.6720, IoU.grass: 0.6814, IoU.cabinet: 0.6704, IoU.sidewalk: 0.6999, IoU.person: 0.8452, IoU.earth: 0.4087, IoU.door: 0.6055, IoU.table: 0.7070, IoU.mountain: 0.6261, IoU.plant: 0.5400, IoU.curtain: 0.7901, IoU.chair: 0.6664, IoU.car: 0.8676, IoU.water: 0.6476, IoU.painting: 0.7973, IoU.sofa: 0.8252, IoU.shelf: 0.4574, IoU.house: 0.4974, IoU.sea: 0.7527, IoU.mirror: 0.7789, IoU.rug: 0.6247, IoU.field: 0.2754, IoU.armchair: 0.6551, IoU.seat: 0.6829, IoU.fence: 0.5167, IoU.desk: 0.6079, IoU.rock: 0.5561, IoU.wardrobe: 0.5191, IoU.lamp: 0.7253, IoU.bathtub: 0.8480, IoU.railing: 0.4345, IoU.cushion: 0.7058, IoU.base: 0.4261, IoU.box: 0.4249, IoU.column: 0.5728, IoU.signboard: 0.3838, IoU.chest of drawers: 0.4373, IoU.counter: 0.4860, IoU.sand: 0.5568, IoU.sink: 0.7852, IoU.skyscraper: 0.4607, IoU.fireplace: 0.7457, IoU.refrigerator: 0.8617, IoU.grandstand: 0.5500, IoU.path: 0.2987, IoU.stairs: 0.3663, IoU.runway: 0.6900, IoU.case: 0.6246, IoU.pool table: 0.9385, IoU.pillow: 0.6768, IoU.screen door: 0.8597, IoU.stairway: 0.5262, IoU.river: 0.1274, IoU.bridge: 0.6618, IoU.bookcase: 0.4063, IoU.blind: 0.4904, IoU.coffee table: 0.6649, IoU.toilet: 0.9022, IoU.flower: 0.4188, IoU.book: 0.5166, IoU.hill: 0.0909, IoU.bench: 0.5769, IoU.countertop: 0.6456, IoU.stove: 0.8603, IoU.palm: 0.5381, IoU.kitchen island: 0.5305, IoU.computer: 0.7895, IoU.swivel chair: 0.4633, IoU.boat: 0.7856, IoU.bar: 0.5967, IoU.arcade machine: 0.7365, IoU.hovel: 0.2717, IoU.bus: 0.9248, IoU.towel: 0.7485, IoU.light: 0.5402, IoU.truck: 0.4979, IoU.tower: 0.1062, IoU.chandelier: 0.7124, IoU.awning: 0.3622, IoU.streetlight: 0.3042, IoU.booth: 0.4895, IoU.television receiver: 0.7824, IoU.airplane: 0.8691, IoU.dirt track: 0.0406, IoU.apparel: 0.5984, IoU.pole: 0.2088, IoU.land: 0.0641, IoU.bannister: 0.1820, IoU.escalator: 0.6658, IoU.ottoman: 0.5574, IoU.bottle: 0.4422, IoU.buffet: 0.6385, IoU.poster: 0.3383, IoU.stage: 0.2136, IoU.van: 0.5196, IoU.ship: 0.9235, IoU.fountain: 0.4034, IoU.conveyer belt: 0.8065, IoU.canopy: 0.5667, IoU.washer: 0.8371, IoU.plaything: 0.3371, IoU.swimming pool: 0.5149, IoU.stool: 0.5085, IoU.barrel: 0.6672, IoU.basket: 0.4317, IoU.waterfall: 0.5987, IoU.tent: 0.9394, IoU.bag: 0.2320, IoU.minibike: 0.7419, IoU.cradle: 0.8423, IoU.oven: 0.6039, IoU.ball: 0.5166, IoU.food: 0.6446, IoU.step: 0.1277, IoU.tank: 0.6372, IoU.trade name: 0.2433, IoU.microwave: 0.9033, IoU.pot: 0.5978, IoU.animal: 0.6455, IoU.bicycle: 0.6110, IoU.lake: 0.5268, IoU.dishwasher: 0.7405, IoU.screen: 0.6014, IoU.blanket: 0.3119, IoU.sculpture: 0.7313, IoU.hood: 0.6511, IoU.sconce: 0.5818, IoU.vase: 0.4885, IoU.traffic light: 0.3500, IoU.tray: 0.2746, IoU.ashcan: 0.5368, IoU.fan: 0.6591, IoU.pier: 0.3967, IoU.crt screen: 0.0752, IoU.plate: 0.6211, IoU.monitor: 0.6418, IoU.bulletin board: 0.5714, IoU.shower: 0.1781, IoU.radiator: 0.6473, IoU.glass: 0.2202, IoU.clock: 0.4873, IoU.flag: 0.6938, Acc.wall: 0.8985, Acc.building: 0.9283, Acc.sky: 0.9740, Acc.floor: 0.9135, Acc.tree: 0.8965, Acc.ceiling: 0.9455, Acc.road: 0.9139, Acc.bed : 0.9671, Acc.windowpane: 0.8224, Acc.grass: 0.8063, Acc.cabinet: 0.7696, Acc.sidewalk: 0.8198, Acc.person: 0.9463, Acc.earth: 0.5436, Acc.door: 0.7326, Acc.table: 0.8253, Acc.mountain: 0.7292, Acc.plant: 0.6633, Acc.curtain: 0.8683, Acc.chair: 0.8114, Acc.car: 0.9441, Acc.water: 0.7910, Acc.painting: 0.8980, Acc.sofa: 0.9167, Acc.shelf: 0.5988, Acc.house: 0.6660, Acc.sea: 0.8343, Acc.mirror: 0.8730, Acc.rug: 0.7020, Acc.field: 0.4843, Acc.armchair: 0.8221, Acc.seat: 0.8929, Acc.fence: 0.6686, Acc.desk: 0.7720, Acc.rock: 0.8187, Acc.wardrobe: 0.7550, Acc.lamp: 0.8332, Acc.bathtub: 0.8804, Acc.railing: 0.6162, Acc.cushion: 0.7885, Acc.base: 0.5401, Acc.box: 0.5903, Acc.column: 0.7333, Acc.signboard: 0.5337, Acc.chest of drawers: 0.6502, Acc.counter: 0.6060, Acc.sand: 0.8558, Acc.sink: 0.8359, Acc.skyscraper: 0.5886, Acc.fireplace: 0.9388, Acc.refrigerator: 0.9665, Acc.grandstand: 0.8467, Acc.path: 0.3799, Acc.stairs: 0.4394, Acc.runway: 0.9013, Acc.case: 0.7861, Acc.pool table: 0.9838, Acc.pillow: 0.7896, Acc.screen door: 0.9160, Acc.stairway: 0.6931, Acc.river: 0.2642, Acc.bridge: 0.8250, Acc.bookcase: 0.5867, Acc.blind: 0.5911, Acc.coffee table: 0.8475, Acc.toilet: 0.9398, Acc.flower: 0.5412, Acc.book: 0.7918, Acc.hill: 0.1607, Acc.bench: 0.6614, Acc.countertop: 0.8456, Acc.stove: 0.9228, Acc.palm: 0.7964, Acc.kitchen island: 0.8996, Acc.computer: 0.8960, Acc.swivel chair: 0.6992, Acc.boat: 0.9126, Acc.bar: 0.8351, Acc.arcade machine: 0.7684, Acc.hovel: 0.2964, Acc.bus: 0.9734, Acc.towel: 0.8558, Acc.light: 0.6062, Acc.truck: 0.6225, Acc.tower: 0.1792, Acc.chandelier: 0.8719, Acc.awning: 0.4641, Acc.streetlight: 0.4021, Acc.booth: 0.6634, Acc.television receiver: 0.8912, Acc.airplane: 0.9513, Acc.dirt track: 0.2604, Acc.apparel: 0.7325, Acc.pole: 0.3266, Acc.land: 0.0983, Acc.bannister: 0.2218, Acc.escalator: 0.8566, Acc.ottoman: 0.7003, Acc.bottle: 0.6896, Acc.buffet: 0.7315, Acc.poster: 0.4420, Acc.stage: 0.4847, Acc.van: 0.7256, Acc.ship: 0.9905, Acc.fountain: 0.4203, Acc.conveyer belt: 0.9651, Acc.canopy: 0.7565, Acc.washer: 0.8906, Acc.plaything: 0.4756, Acc.swimming pool: 0.7482, Acc.stool: 0.7025, Acc.barrel: 0.9102, Acc.basket: 0.5984, Acc.waterfall: 0.7137, Acc.tent: 0.9882, Acc.bag: 0.2639, Acc.minibike: 0.8763, Acc.cradle: 0.9815, Acc.oven: 0.7240, Acc.ball: 0.5335, Acc.food: 0.7426, Acc.step: 0.1600, Acc.tank: 0.6820, Acc.trade name: 0.2834, Acc.microwave: 0.9592, Acc.pot: 0.7022, Acc.animal: 0.6683, Acc.bicycle: 0.8248, Acc.lake: 0.6353, Acc.dishwasher: 0.8108, Acc.screen: 0.9046, Acc.blanket: 0.3574, Acc.sculpture: 0.8608, Acc.hood: 0.7819, Acc.sconce: 0.6887, Acc.vase: 0.6532, Acc.traffic light: 0.6573, Acc.tray: 0.3679, Acc.ashcan: 0.6758, Acc.fan: 0.7551, Acc.pier: 0.4533, Acc.crt screen: 0.1053, Acc.plate: 0.8019, Acc.monitor: 0.7554, Acc.bulletin board: 0.7575, Acc.shower: 0.1900, Acc.radiator: 0.8195, Acc.glass: 0.2388, Acc.clock: 0.5654, Acc.flag: 0.7566 2024-06-16 23:10:07,930 - mmseg - INFO - Iter [55050/80000] lr: 1.010e-06, eta: 12:01:02, time: 3.239, data_time: 1.637, memory: 65790, decode.loss_ce: 0.1526, decode.acc_seg: 93.2481, aux.loss_ce: 0.0654, aux.acc_seg: 92.9018, loss: 0.2180 2024-06-16 23:11:28,364 - mmseg - INFO - Iter [55100/80000] lr: 1.008e-06, eta: 11:59:33, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1476, decode.acc_seg: 93.3478, aux.loss_ce: 0.0622, aux.acc_seg: 93.0874, loss: 0.2099 2024-06-16 23:12:48,866 - mmseg - INFO - Iter [55150/80000] lr: 1.006e-06, eta: 11:58:03, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1572, decode.acc_seg: 92.8937, aux.loss_ce: 0.0672, aux.acc_seg: 92.5635, loss: 0.2244 2024-06-16 23:14:09,278 - mmseg - INFO - Iter [55200/80000] lr: 1.004e-06, eta: 11:56:34, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1493, decode.acc_seg: 93.2917, aux.loss_ce: 0.0632, aux.acc_seg: 92.9908, loss: 0.2126 2024-06-16 23:15:29,822 - mmseg - INFO - Iter [55250/80000] lr: 1.002e-06, eta: 11:55:04, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1507, decode.acc_seg: 93.0386, aux.loss_ce: 0.0640, aux.acc_seg: 92.7165, loss: 0.2147 2024-06-16 23:16:50,311 - mmseg - INFO - Iter [55300/80000] lr: 1.000e-06, eta: 11:53:35, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1580, decode.acc_seg: 93.0689, aux.loss_ce: 0.0667, aux.acc_seg: 92.7572, loss: 0.2246 2024-06-16 23:18:10,862 - mmseg - INFO - Iter [55350/80000] lr: 9.983e-07, eta: 11:52:06, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1506, decode.acc_seg: 93.3280, aux.loss_ce: 0.0643, aux.acc_seg: 92.9853, loss: 0.2149 2024-06-16 23:19:31,435 - mmseg - INFO - Iter [55400/80000] lr: 9.963e-07, eta: 11:50:36, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1413, decode.acc_seg: 93.7337, aux.loss_ce: 0.0602, aux.acc_seg: 93.4406, loss: 0.2016 2024-06-16 23:20:51,886 - mmseg - INFO - Iter [55450/80000] lr: 9.943e-07, eta: 11:49:07, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1499, decode.acc_seg: 93.1904, aux.loss_ce: 0.0635, aux.acc_seg: 92.9133, loss: 0.2133 2024-06-16 23:22:12,316 - mmseg - INFO - Iter [55500/80000] lr: 9.922e-07, eta: 11:47:37, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1625, decode.acc_seg: 93.0494, aux.loss_ce: 0.0692, aux.acc_seg: 92.6901, loss: 0.2317 2024-06-16 23:23:32,743 - mmseg - INFO - Iter [55550/80000] lr: 9.902e-07, eta: 11:46:08, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1498, decode.acc_seg: 93.3618, aux.loss_ce: 0.0641, aux.acc_seg: 93.0109, loss: 0.2139 2024-06-16 23:24:55,425 - mmseg - INFO - Iter [55600/80000] lr: 9.882e-07, eta: 11:44:40, time: 1.654, data_time: 0.049, memory: 65790, decode.loss_ce: 0.1505, decode.acc_seg: 93.3257, aux.loss_ce: 0.0646, aux.acc_seg: 92.9861, loss: 0.2151 2024-06-16 23:26:15,974 - mmseg - INFO - Iter [55650/80000] lr: 9.862e-07, eta: 11:43:10, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1499, decode.acc_seg: 93.1979, aux.loss_ce: 0.0640, aux.acc_seg: 92.8521, loss: 0.2138 2024-06-16 23:27:36,574 - mmseg - INFO - Iter [55700/80000] lr: 9.841e-07, eta: 11:41:41, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1559, decode.acc_seg: 93.1812, aux.loss_ce: 0.0665, aux.acc_seg: 92.8284, loss: 0.2224 2024-06-16 23:28:56,946 - mmseg - INFO - Iter [55750/80000] lr: 9.821e-07, eta: 11:40:12, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1541, decode.acc_seg: 93.1967, aux.loss_ce: 0.0657, aux.acc_seg: 92.7774, loss: 0.2199 2024-06-16 23:30:17,340 - mmseg - INFO - Iter [55800/80000] lr: 9.801e-07, eta: 11:38:42, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1486, decode.acc_seg: 93.2006, aux.loss_ce: 0.0635, aux.acc_seg: 92.9211, loss: 0.2121 2024-06-16 23:31:37,667 - mmseg - INFO - Iter [55850/80000] lr: 9.781e-07, eta: 11:37:13, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1467, decode.acc_seg: 93.4964, aux.loss_ce: 0.0617, aux.acc_seg: 93.3951, loss: 0.2084 2024-06-16 23:32:58,117 - mmseg - INFO - Iter [55900/80000] lr: 9.760e-07, eta: 11:35:44, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1414, decode.acc_seg: 93.5809, aux.loss_ce: 0.0599, aux.acc_seg: 93.2821, loss: 0.2014 2024-06-16 23:34:18,608 - mmseg - INFO - Iter [55950/80000] lr: 9.740e-07, eta: 11:34:15, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1531, decode.acc_seg: 93.4192, aux.loss_ce: 0.0653, aux.acc_seg: 93.0632, loss: 0.2185 2024-06-16 23:35:39,075 - mmseg - INFO - Saving checkpoint at 56000 iterations 2024-06-16 23:36:51,997 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 23:36:51,998 - mmseg - INFO - Iter [56000/80000] lr: 9.720e-07, eta: 11:33:17, time: 3.068, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1524, decode.acc_seg: 93.1958, aux.loss_ce: 0.0641, aux.acc_seg: 92.9606, loss: 0.2166 2024-06-16 23:38:16,260 - mmseg - INFO - per class results: 2024-06-16 23:38:16,267 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.48 | 91.03 | | building | 84.93 | 92.77 | | sky | 94.74 | 97.48 | | floor | 84.17 | 91.85 | | tree | 77.05 | 89.83 | | ceiling | 87.53 | 93.41 | | road | 85.65 | 91.0 | | bed | 91.62 | 96.39 | | windowpane | 67.4 | 78.71 | | grass | 66.83 | 82.1 | | cabinet | 65.8 | 75.06 | | sidewalk | 71.24 | 85.84 | | person | 84.78 | 92.98 | | earth | 38.12 | 48.14 | | door | 60.92 | 74.58 | | table | 68.6 | 81.62 | | mountain | 62.23 | 73.54 | | plant | 53.89 | 67.42 | | curtain | 77.79 | 89.25 | | chair | 65.86 | 78.36 | | car | 86.91 | 93.76 | | water | 65.25 | 77.65 | | painting | 79.71 | 88.86 | | sofa | 80.35 | 87.81 | | shelf | 47.24 | 62.86 | | house | 52.13 | 69.2 | | sea | 77.0 | 85.27 | | mirror | 76.42 | 83.87 | | rug | 62.56 | 67.95 | | field | 30.15 | 51.75 | | armchair | 61.96 | 82.61 | | seat | 68.44 | 88.69 | | fence | 52.37 | 66.66 | | desk | 59.75 | 77.44 | | rock | 53.85 | 78.68 | | wardrobe | 51.25 | 73.56 | | lamp | 72.7 | 83.36 | | bathtub | 85.73 | 89.42 | | railing | 44.8 | 61.21 | | cushion | 69.74 | 83.28 | | base | 40.68 | 56.4 | | box | 41.24 | 55.85 | | column | 55.93 | 66.66 | | signboard | 39.04 | 52.85 | | chest of drawers | 42.29 | 67.25 | | counter | 46.0 | 55.46 | | sand | 53.76 | 87.08 | | sink | 79.97 | 85.4 | | skyscraper | 45.65 | 60.01 | | fireplace | 74.45 | 92.57 | | refrigerator | 85.17 | 96.65 | | grandstand | 52.53 | 86.0 | | path | 29.78 | 37.54 | | stairs | 35.74 | 44.43 | | runway | 72.78 | 95.14 | | case | 63.78 | 79.82 | | pool table | 94.36 | 97.95 | | pillow | 65.58 | 74.75 | | screen door | 82.68 | 86.4 | | stairway | 48.32 | 57.8 | | river | 14.1 | 30.12 | | bridge | 72.3 | 88.45 | | bookcase | 44.78 | 62.25 | | blind | 50.22 | 60.6 | | coffee table | 61.77 | 85.88 | | toilet | 89.75 | 93.91 | | flower | 43.78 | 58.06 | | book | 52.54 | 75.67 | | hill | 7.13 | 14.8 | | bench | 58.89 | 66.83 | | countertop | 64.35 | 84.1 | | stove | 85.89 | 91.53 | | palm | 53.69 | 82.03 | | kitchen island | 54.17 | 92.26 | | computer | 79.1 | 90.05 | | swivel chair | 47.42 | 73.69 | | boat | 82.39 | 91.46 | | bar | 58.45 | 80.49 | | arcade machine | 81.88 | 85.75 | | hovel | 27.44 | 29.35 | | bus | 92.36 | 97.29 | | towel | 75.33 | 84.36 | | light | 54.67 | 65.09 | | truck | 49.66 | 63.11 | | tower | 24.64 | 45.2 | | chandelier | 71.33 | 85.68 | | awning | 33.75 | 43.2 | | streetlight | 30.06 | 39.43 | | booth | 53.61 | 60.42 | | television receiver | 79.42 | 89.05 | | airplane | 86.33 | 94.44 | | dirt track | 5.16 | 22.17 | | apparel | 56.81 | 79.4 | | pole | 22.43 | 36.73 | | land | 4.34 | 6.47 | | bannister | 21.11 | 25.8 | | escalator | 64.43 | 87.16 | | ottoman | 56.56 | 71.22 | | bottle | 43.75 | 69.66 | | buffet | 64.65 | 74.77 | | poster | 32.66 | 43.34 | | stage | 20.82 | 49.14 | | van | 46.35 | 63.37 | | ship | 92.41 | 98.75 | | fountain | 41.69 | 42.86 | | conveyer belt | 81.84 | 96.84 | | canopy | 52.43 | 68.14 | | washer | 81.98 | 87.08 | | plaything | 33.64 | 47.63 | | swimming pool | 51.9 | 75.1 | | stool | 46.28 | 70.58 | | barrel | 62.95 | 93.07 | | basket | 42.12 | 56.94 | | waterfall | 67.95 | 86.71 | | tent | 94.08 | 98.36 | | bag | 26.19 | 30.26 | | minibike | 74.39 | 87.65 | | cradle | 85.7 | 96.53 | | oven | 59.09 | 74.47 | | ball | 58.89 | 63.65 | | food | 62.18 | 71.58 | | step | 13.66 | 16.06 | | tank | 63.0 | 69.48 | | trade name | 28.56 | 36.48 | | microwave | 90.31 | 96.14 | | pot | 60.05 | 69.96 | | animal | 63.86 | 66.18 | | bicycle | 61.06 | 79.57 | | lake | 44.89 | 63.64 | | dishwasher | 72.87 | 79.81 | | screen | 56.48 | 82.46 | | blanket | 33.52 | 39.54 | | sculpture | 73.91 | 86.99 | | hood | 60.36 | 70.67 | | sconce | 57.45 | 71.11 | | vase | 48.25 | 64.28 | | traffic light | 37.73 | 54.77 | | tray | 27.73 | 36.31 | | ashcan | 53.97 | 68.36 | | fan | 65.74 | 77.75 | | pier | 38.74 | 45.14 | | crt screen | 2.38 | 3.67 | | plate | 61.69 | 77.47 | | monitor | 58.7 | 70.46 | | bulletin board | 57.44 | 76.62 | | shower | 17.93 | 18.57 | | radiator | 66.76 | 79.98 | | glass | 21.21 | 22.69 | | clock | 49.06 | 62.29 | | flag | 67.57 | 74.64 | +---------------------+-------+-------+ 2024-06-16 23:38:16,267 - mmseg - INFO - Summary: 2024-06-16 23:38:16,267 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 86.05 | 57.94 | 70.68 | +-------+-------+-------+ 2024-06-16 23:38:16,268 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-16 23:38:16,268 - mmseg - INFO - Iter(val) [250] aAcc: 0.8605, mIoU: 0.5794, mAcc: 0.7068, IoU.wall: 0.8248, IoU.building: 0.8493, IoU.sky: 0.9474, IoU.floor: 0.8417, IoU.tree: 0.7705, IoU.ceiling: 0.8753, IoU.road: 0.8565, IoU.bed : 0.9162, IoU.windowpane: 0.6740, IoU.grass: 0.6683, IoU.cabinet: 0.6580, IoU.sidewalk: 0.7124, IoU.person: 0.8478, IoU.earth: 0.3812, IoU.door: 0.6092, IoU.table: 0.6860, IoU.mountain: 0.6223, IoU.plant: 0.5389, IoU.curtain: 0.7779, IoU.chair: 0.6586, IoU.car: 0.8691, IoU.water: 0.6525, IoU.painting: 0.7971, IoU.sofa: 0.8035, IoU.shelf: 0.4724, IoU.house: 0.5213, IoU.sea: 0.7700, IoU.mirror: 0.7642, IoU.rug: 0.6256, IoU.field: 0.3015, IoU.armchair: 0.6196, IoU.seat: 0.6844, IoU.fence: 0.5237, IoU.desk: 0.5975, IoU.rock: 0.5385, IoU.wardrobe: 0.5125, IoU.lamp: 0.7270, IoU.bathtub: 0.8573, IoU.railing: 0.4480, IoU.cushion: 0.6974, IoU.base: 0.4068, IoU.box: 0.4124, IoU.column: 0.5593, IoU.signboard: 0.3904, IoU.chest of drawers: 0.4229, IoU.counter: 0.4600, IoU.sand: 0.5376, IoU.sink: 0.7997, IoU.skyscraper: 0.4565, IoU.fireplace: 0.7445, IoU.refrigerator: 0.8517, IoU.grandstand: 0.5253, IoU.path: 0.2978, IoU.stairs: 0.3574, IoU.runway: 0.7278, IoU.case: 0.6378, IoU.pool table: 0.9436, IoU.pillow: 0.6558, IoU.screen door: 0.8268, IoU.stairway: 0.4832, IoU.river: 0.1410, IoU.bridge: 0.7230, IoU.bookcase: 0.4478, IoU.blind: 0.5022, IoU.coffee table: 0.6177, IoU.toilet: 0.8975, IoU.flower: 0.4378, IoU.book: 0.5254, IoU.hill: 0.0713, IoU.bench: 0.5889, IoU.countertop: 0.6435, IoU.stove: 0.8589, IoU.palm: 0.5369, IoU.kitchen island: 0.5417, IoU.computer: 0.7910, IoU.swivel chair: 0.4742, IoU.boat: 0.8239, IoU.bar: 0.5845, IoU.arcade machine: 0.8188, IoU.hovel: 0.2744, IoU.bus: 0.9236, IoU.towel: 0.7533, IoU.light: 0.5467, IoU.truck: 0.4966, IoU.tower: 0.2464, IoU.chandelier: 0.7133, IoU.awning: 0.3375, IoU.streetlight: 0.3006, IoU.booth: 0.5361, IoU.television receiver: 0.7942, IoU.airplane: 0.8633, IoU.dirt track: 0.0516, IoU.apparel: 0.5681, IoU.pole: 0.2243, IoU.land: 0.0434, IoU.bannister: 0.2111, IoU.escalator: 0.6443, IoU.ottoman: 0.5656, IoU.bottle: 0.4375, IoU.buffet: 0.6465, IoU.poster: 0.3266, IoU.stage: 0.2082, IoU.van: 0.4635, IoU.ship: 0.9241, IoU.fountain: 0.4169, IoU.conveyer belt: 0.8184, IoU.canopy: 0.5243, IoU.washer: 0.8198, IoU.plaything: 0.3364, IoU.swimming pool: 0.5190, IoU.stool: 0.4628, IoU.barrel: 0.6295, IoU.basket: 0.4212, IoU.waterfall: 0.6795, IoU.tent: 0.9408, IoU.bag: 0.2619, IoU.minibike: 0.7439, IoU.cradle: 0.8570, IoU.oven: 0.5909, IoU.ball: 0.5889, IoU.food: 0.6218, IoU.step: 0.1366, IoU.tank: 0.6300, IoU.trade name: 0.2856, IoU.microwave: 0.9031, IoU.pot: 0.6005, IoU.animal: 0.6386, IoU.bicycle: 0.6106, IoU.lake: 0.4489, IoU.dishwasher: 0.7287, IoU.screen: 0.5648, IoU.blanket: 0.3352, IoU.sculpture: 0.7391, IoU.hood: 0.6036, IoU.sconce: 0.5745, IoU.vase: 0.4825, IoU.traffic light: 0.3773, IoU.tray: 0.2773, IoU.ashcan: 0.5397, IoU.fan: 0.6574, IoU.pier: 0.3874, IoU.crt screen: 0.0238, IoU.plate: 0.6169, IoU.monitor: 0.5870, IoU.bulletin board: 0.5744, IoU.shower: 0.1793, IoU.radiator: 0.6676, IoU.glass: 0.2121, IoU.clock: 0.4906, IoU.flag: 0.6757, Acc.wall: 0.9103, Acc.building: 0.9277, Acc.sky: 0.9748, Acc.floor: 0.9185, Acc.tree: 0.8983, Acc.ceiling: 0.9341, Acc.road: 0.9100, Acc.bed : 0.9639, Acc.windowpane: 0.7871, Acc.grass: 0.8210, Acc.cabinet: 0.7506, Acc.sidewalk: 0.8584, Acc.person: 0.9298, Acc.earth: 0.4814, Acc.door: 0.7458, Acc.table: 0.8162, Acc.mountain: 0.7354, Acc.plant: 0.6742, Acc.curtain: 0.8925, Acc.chair: 0.7836, Acc.car: 0.9376, Acc.water: 0.7765, Acc.painting: 0.8886, Acc.sofa: 0.8781, Acc.shelf: 0.6286, Acc.house: 0.6920, Acc.sea: 0.8527, Acc.mirror: 0.8387, Acc.rug: 0.6795, Acc.field: 0.5175, Acc.armchair: 0.8261, Acc.seat: 0.8869, Acc.fence: 0.6666, Acc.desk: 0.7744, Acc.rock: 0.7868, Acc.wardrobe: 0.7356, Acc.lamp: 0.8336, Acc.bathtub: 0.8942, Acc.railing: 0.6121, Acc.cushion: 0.8328, Acc.base: 0.5640, Acc.box: 0.5585, Acc.column: 0.6666, Acc.signboard: 0.5285, Acc.chest of drawers: 0.6725, Acc.counter: 0.5546, Acc.sand: 0.8708, Acc.sink: 0.8540, Acc.skyscraper: 0.6001, Acc.fireplace: 0.9257, Acc.refrigerator: 0.9665, Acc.grandstand: 0.8600, Acc.path: 0.3754, Acc.stairs: 0.4443, Acc.runway: 0.9514, Acc.case: 0.7982, Acc.pool table: 0.9795, Acc.pillow: 0.7475, Acc.screen door: 0.8640, Acc.stairway: 0.5780, Acc.river: 0.3012, Acc.bridge: 0.8845, Acc.bookcase: 0.6225, Acc.blind: 0.6060, Acc.coffee table: 0.8588, Acc.toilet: 0.9391, Acc.flower: 0.5806, Acc.book: 0.7567, Acc.hill: 0.1480, Acc.bench: 0.6683, Acc.countertop: 0.8410, Acc.stove: 0.9153, Acc.palm: 0.8203, Acc.kitchen island: 0.9226, Acc.computer: 0.9005, Acc.swivel chair: 0.7369, Acc.boat: 0.9146, Acc.bar: 0.8049, Acc.arcade machine: 0.8575, Acc.hovel: 0.2935, Acc.bus: 0.9729, Acc.towel: 0.8436, Acc.light: 0.6509, Acc.truck: 0.6311, Acc.tower: 0.4520, Acc.chandelier: 0.8568, Acc.awning: 0.4320, Acc.streetlight: 0.3943, Acc.booth: 0.6042, Acc.television receiver: 0.8905, Acc.airplane: 0.9444, Acc.dirt track: 0.2217, Acc.apparel: 0.7940, Acc.pole: 0.3673, Acc.land: 0.0647, Acc.bannister: 0.2580, Acc.escalator: 0.8716, Acc.ottoman: 0.7122, Acc.bottle: 0.6966, Acc.buffet: 0.7477, Acc.poster: 0.4334, Acc.stage: 0.4914, Acc.van: 0.6337, Acc.ship: 0.9875, Acc.fountain: 0.4286, Acc.conveyer belt: 0.9684, Acc.canopy: 0.6814, Acc.washer: 0.8708, Acc.plaything: 0.4763, Acc.swimming pool: 0.7510, Acc.stool: 0.7058, Acc.barrel: 0.9307, Acc.basket: 0.5694, Acc.waterfall: 0.8671, Acc.tent: 0.9836, Acc.bag: 0.3026, Acc.minibike: 0.8765, Acc.cradle: 0.9653, Acc.oven: 0.7447, Acc.ball: 0.6365, Acc.food: 0.7158, Acc.step: 0.1606, Acc.tank: 0.6948, Acc.trade name: 0.3648, Acc.microwave: 0.9614, Acc.pot: 0.6996, Acc.animal: 0.6618, Acc.bicycle: 0.7957, Acc.lake: 0.6364, Acc.dishwasher: 0.7981, Acc.screen: 0.8246, Acc.blanket: 0.3954, Acc.sculpture: 0.8699, Acc.hood: 0.7067, Acc.sconce: 0.7111, Acc.vase: 0.6428, Acc.traffic light: 0.5477, Acc.tray: 0.3631, Acc.ashcan: 0.6836, Acc.fan: 0.7775, Acc.pier: 0.4514, Acc.crt screen: 0.0367, Acc.plate: 0.7747, Acc.monitor: 0.7046, Acc.bulletin board: 0.7662, Acc.shower: 0.1857, Acc.radiator: 0.7998, Acc.glass: 0.2269, Acc.clock: 0.6229, Acc.flag: 0.7464 2024-06-16 23:39:36,994 - mmseg - INFO - Iter [56050/80000] lr: 9.700e-07, eta: 11:32:23, time: 3.300, data_time: 1.700, memory: 65790, decode.loss_ce: 0.1478, decode.acc_seg: 93.2441, aux.loss_ce: 0.0633, aux.acc_seg: 92.8951, loss: 0.2112 2024-06-16 23:40:57,424 - mmseg - INFO - Iter [56100/80000] lr: 9.679e-07, eta: 11:30:54, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1487, decode.acc_seg: 93.2733, aux.loss_ce: 0.0632, aux.acc_seg: 92.9876, loss: 0.2119 2024-06-16 23:42:17,841 - mmseg - INFO - Iter [56150/80000] lr: 9.659e-07, eta: 11:29:25, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1446, decode.acc_seg: 93.6037, aux.loss_ce: 0.0618, aux.acc_seg: 93.2577, loss: 0.2064 2024-06-16 23:43:38,165 - mmseg - INFO - Iter [56200/80000] lr: 9.639e-07, eta: 11:27:55, time: 1.606, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1497, decode.acc_seg: 93.3773, aux.loss_ce: 0.0631, aux.acc_seg: 93.1188, loss: 0.2128 2024-06-16 23:44:58,608 - mmseg - INFO - Iter [56250/80000] lr: 9.619e-07, eta: 11:26:26, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1539, decode.acc_seg: 93.1591, aux.loss_ce: 0.0660, aux.acc_seg: 92.7648, loss: 0.2199 2024-06-16 23:46:18,978 - mmseg - INFO - Iter [56300/80000] lr: 9.598e-07, eta: 11:24:56, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1484, decode.acc_seg: 93.4205, aux.loss_ce: 0.0628, aux.acc_seg: 93.1825, loss: 0.2112 2024-06-16 23:47:39,358 - mmseg - INFO - Iter [56350/80000] lr: 9.578e-07, eta: 11:23:27, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1469, decode.acc_seg: 93.4049, aux.loss_ce: 0.0631, aux.acc_seg: 93.0479, loss: 0.2099 2024-06-16 23:48:59,799 - mmseg - INFO - Iter [56400/80000] lr: 9.558e-07, eta: 11:21:58, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1471, decode.acc_seg: 93.4633, aux.loss_ce: 0.0622, aux.acc_seg: 93.1530, loss: 0.2093 2024-06-16 23:50:20,179 - mmseg - INFO - Iter [56450/80000] lr: 9.538e-07, eta: 11:20:28, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1468, decode.acc_seg: 93.4210, aux.loss_ce: 0.0628, aux.acc_seg: 93.1071, loss: 0.2096 2024-06-16 23:51:40,661 - mmseg - INFO - Iter [56500/80000] lr: 9.517e-07, eta: 11:18:59, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1409, decode.acc_seg: 93.5809, aux.loss_ce: 0.0602, aux.acc_seg: 93.2783, loss: 0.2011 2024-06-16 23:53:01,255 - mmseg - INFO - Iter [56550/80000] lr: 9.497e-07, eta: 11:17:30, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1454, decode.acc_seg: 93.4952, aux.loss_ce: 0.0619, aux.acc_seg: 93.2092, loss: 0.2073 2024-06-16 23:54:21,610 - mmseg - INFO - Iter [56600/80000] lr: 9.477e-07, eta: 11:16:01, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1502, decode.acc_seg: 93.2123, aux.loss_ce: 0.0641, aux.acc_seg: 92.9189, loss: 0.2143 2024-06-16 23:55:42,123 - mmseg - INFO - Iter [56650/80000] lr: 9.457e-07, eta: 11:14:31, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1521, decode.acc_seg: 93.1440, aux.loss_ce: 0.0650, aux.acc_seg: 92.7614, loss: 0.2171 2024-06-16 23:57:02,535 - mmseg - INFO - Iter [56700/80000] lr: 9.436e-07, eta: 11:13:02, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1503, decode.acc_seg: 93.1470, aux.loss_ce: 0.0640, aux.acc_seg: 92.8365, loss: 0.2143 2024-06-16 23:58:22,919 - mmseg - INFO - Iter [56750/80000] lr: 9.416e-07, eta: 11:11:33, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1508, decode.acc_seg: 93.2971, aux.loss_ce: 0.0637, aux.acc_seg: 93.0358, loss: 0.2145 2024-06-16 23:59:43,319 - mmseg - INFO - Iter [56800/80000] lr: 9.396e-07, eta: 11:10:04, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1445, decode.acc_seg: 93.4542, aux.loss_ce: 0.0619, aux.acc_seg: 93.1669, loss: 0.2064 2024-06-17 00:01:06,164 - mmseg - INFO - Iter [56850/80000] lr: 9.376e-07, eta: 11:08:36, time: 1.657, data_time: 0.049, memory: 65790, decode.loss_ce: 0.1519, decode.acc_seg: 93.2310, aux.loss_ce: 0.0652, aux.acc_seg: 92.8351, loss: 0.2172 2024-06-17 00:02:26,704 - mmseg - INFO - Iter [56900/80000] lr: 9.355e-07, eta: 11:07:06, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1594, decode.acc_seg: 92.9895, aux.loss_ce: 0.0672, aux.acc_seg: 92.6509, loss: 0.2266 2024-06-17 00:03:47,132 - mmseg - INFO - Iter [56950/80000] lr: 9.335e-07, eta: 11:05:37, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1476, decode.acc_seg: 93.5831, aux.loss_ce: 0.0630, aux.acc_seg: 93.2276, loss: 0.2106 2024-06-17 00:05:07,481 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 00:05:07,481 - mmseg - INFO - Iter [57000/80000] lr: 9.315e-07, eta: 11:04:08, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1524, decode.acc_seg: 93.1535, aux.loss_ce: 0.0648, aux.acc_seg: 92.8363, loss: 0.2172 2024-06-17 00:06:31,083 - mmseg - INFO - per class results: 2024-06-17 00:06:31,089 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.33 | 90.03 | | building | 84.14 | 93.05 | | sky | 94.74 | 97.61 | | floor | 84.18 | 91.0 | | tree | 77.25 | 89.4 | | ceiling | 87.46 | 94.14 | | road | 86.09 | 91.29 | | bed | 91.71 | 97.44 | | windowpane | 67.8 | 81.06 | | grass | 66.12 | 78.94 | | cabinet | 65.12 | 73.29 | | sidewalk | 69.18 | 82.38 | | person | 84.81 | 93.07 | | earth | 38.68 | 51.41 | | door | 60.32 | 73.31 | | table | 69.99 | 82.14 | | mountain | 62.25 | 74.11 | | plant | 55.47 | 67.57 | | curtain | 78.99 | 89.24 | | chair | 65.43 | 76.21 | | car | 87.21 | 93.39 | | water | 60.88 | 71.87 | | painting | 80.63 | 92.12 | | sofa | 82.76 | 92.12 | | shelf | 44.79 | 59.17 | | house | 45.44 | 56.69 | | sea | 73.22 | 88.34 | | mirror | 77.45 | 84.24 | | rug | 68.14 | 84.82 | | field | 33.15 | 61.43 | | armchair | 64.8 | 83.59 | | seat | 65.37 | 89.25 | | fence | 51.54 | 67.05 | | desk | 59.85 | 75.92 | | rock | 56.54 | 85.16 | | wardrobe | 52.87 | 76.78 | | lamp | 72.57 | 82.55 | | bathtub | 85.59 | 89.45 | | railing | 44.16 | 63.14 | | cushion | 70.45 | 80.37 | | base | 43.87 | 65.46 | | box | 39.16 | 48.6 | | column | 55.13 | 62.54 | | signboard | 39.49 | 52.05 | | chest of drawers | 49.41 | 83.57 | | counter | 42.06 | 51.04 | | sand | 51.05 | 88.77 | | sink | 79.32 | 85.1 | | skyscraper | 46.61 | 59.88 | | fireplace | 73.13 | 95.34 | | refrigerator | 85.29 | 95.26 | | grandstand | 53.55 | 87.66 | | path | 29.17 | 41.81 | | stairs | 27.66 | 32.54 | | runway | 74.04 | 97.86 | | case | 62.49 | 81.25 | | pool table | 94.05 | 98.17 | | pillow | 67.06 | 77.4 | | screen door | 82.49 | 86.72 | | stairway | 42.28 | 59.41 | | river | 12.91 | 24.3 | | bridge | 67.37 | 86.18 | | bookcase | 40.26 | 69.83 | | blind | 54.87 | 69.89 | | coffee table | 64.85 | 79.04 | | toilet | 89.55 | 94.37 | | flower | 41.26 | 54.86 | | book | 52.64 | 73.76 | | hill | 7.24 | 12.65 | | bench | 57.07 | 66.68 | | countertop | 62.51 | 84.54 | | stove | 85.9 | 92.89 | | palm | 54.06 | 77.21 | | kitchen island | 53.4 | 89.94 | | computer | 77.36 | 91.78 | | swivel chair | 47.65 | 71.08 | | boat | 74.24 | 90.45 | | bar | 59.21 | 82.93 | | arcade machine | 88.72 | 95.18 | | hovel | 27.85 | 29.93 | | bus | 92.43 | 97.27 | | towel | 72.96 | 80.5 | | light | 55.63 | 63.95 | | truck | 49.84 | 64.19 | | tower | 10.24 | 16.77 | | chandelier | 70.33 | 83.27 | | awning | 34.37 | 46.08 | | streetlight | 28.6 | 36.41 | | booth | 56.36 | 69.39 | | television receiver | 81.81 | 86.15 | | airplane | 86.32 | 92.9 | | dirt track | 5.35 | 25.29 | | apparel | 58.79 | 76.39 | | pole | 28.13 | 38.56 | | land | 3.84 | 5.01 | | bannister | 15.67 | 18.72 | | escalator | 65.9 | 85.96 | | ottoman | 54.38 | 70.16 | | bottle | 43.64 | 68.12 | | buffet | 58.11 | 65.19 | | poster | 29.65 | 37.47 | | stage | 20.89 | 48.11 | | van | 47.57 | 65.48 | | ship | 94.12 | 97.87 | | fountain | 42.28 | 43.78 | | conveyer belt | 80.47 | 95.32 | | canopy | 48.62 | 65.57 | | washer | 85.97 | 91.85 | | plaything | 31.79 | 47.69 | | swimming pool | 52.34 | 75.53 | | stool | 48.97 | 71.25 | | barrel | 51.93 | 86.69 | | basket | 44.91 | 60.91 | | waterfall | 61.17 | 78.22 | | tent | 93.18 | 98.64 | | bag | 24.88 | 27.49 | | minibike | 74.34 | 89.6 | | cradle | 86.72 | 97.81 | | oven | 54.14 | 65.02 | | ball | 61.07 | 65.91 | | food | 58.7 | 67.82 | | step | 10.17 | 15.32 | | tank | 67.71 | 75.7 | | trade name | 26.14 | 31.53 | | microwave | 88.16 | 97.1 | | pot | 60.01 | 70.9 | | animal | 67.82 | 70.46 | | bicycle | 60.6 | 81.98 | | lake | 37.64 | 71.64 | | dishwasher | 71.87 | 80.7 | | screen | 57.77 | 86.29 | | blanket | 31.63 | 41.04 | | sculpture | 70.49 | 87.39 | | hood | 60.58 | 71.8 | | sconce | 59.1 | 69.67 | | vase | 49.2 | 63.84 | | traffic light | 39.62 | 58.33 | | tray | 25.84 | 33.33 | | ashcan | 53.06 | 67.72 | | fan | 66.56 | 79.21 | | pier | 39.94 | 44.36 | | crt screen | 2.51 | 3.75 | | plate | 61.09 | 79.11 | | monitor | 62.47 | 70.89 | | bulletin board | 62.68 | 76.5 | | shower | 21.61 | 24.58 | | radiator | 65.51 | 84.66 | | glass | 20.17 | 21.33 | | clock | 49.45 | 58.66 | | flag | 69.49 | 76.52 | +---------------------+-------+-------+ 2024-06-17 00:06:31,089 - mmseg - INFO - Summary: 2024-06-17 00:06:31,089 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.92 | 57.54 | 70.63 | +-------+-------+-------+ 2024-06-17 00:06:31,090 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 00:06:31,090 - mmseg - INFO - Iter(val) [250] aAcc: 0.8592, mIoU: 0.5754, mAcc: 0.7063, IoU.wall: 0.8233, IoU.building: 0.8414, IoU.sky: 0.9474, IoU.floor: 0.8418, IoU.tree: 0.7725, IoU.ceiling: 0.8746, IoU.road: 0.8609, IoU.bed : 0.9171, IoU.windowpane: 0.6780, IoU.grass: 0.6612, IoU.cabinet: 0.6512, IoU.sidewalk: 0.6918, IoU.person: 0.8481, IoU.earth: 0.3868, IoU.door: 0.6032, IoU.table: 0.6999, IoU.mountain: 0.6225, IoU.plant: 0.5547, IoU.curtain: 0.7899, IoU.chair: 0.6543, IoU.car: 0.8721, IoU.water: 0.6088, IoU.painting: 0.8063, IoU.sofa: 0.8276, IoU.shelf: 0.4479, IoU.house: 0.4544, IoU.sea: 0.7322, IoU.mirror: 0.7745, IoU.rug: 0.6814, IoU.field: 0.3315, IoU.armchair: 0.6480, IoU.seat: 0.6537, IoU.fence: 0.5154, IoU.desk: 0.5985, IoU.rock: 0.5654, IoU.wardrobe: 0.5287, IoU.lamp: 0.7257, IoU.bathtub: 0.8559, IoU.railing: 0.4416, IoU.cushion: 0.7045, IoU.base: 0.4387, IoU.box: 0.3916, IoU.column: 0.5513, IoU.signboard: 0.3949, IoU.chest of drawers: 0.4941, IoU.counter: 0.4206, IoU.sand: 0.5105, IoU.sink: 0.7932, IoU.skyscraper: 0.4661, IoU.fireplace: 0.7313, IoU.refrigerator: 0.8529, IoU.grandstand: 0.5355, IoU.path: 0.2917, IoU.stairs: 0.2766, IoU.runway: 0.7404, IoU.case: 0.6249, IoU.pool table: 0.9405, IoU.pillow: 0.6706, IoU.screen door: 0.8249, IoU.stairway: 0.4228, IoU.river: 0.1291, IoU.bridge: 0.6737, IoU.bookcase: 0.4026, IoU.blind: 0.5487, IoU.coffee table: 0.6485, IoU.toilet: 0.8955, IoU.flower: 0.4126, IoU.book: 0.5264, IoU.hill: 0.0724, IoU.bench: 0.5707, IoU.countertop: 0.6251, IoU.stove: 0.8590, IoU.palm: 0.5406, IoU.kitchen island: 0.5340, IoU.computer: 0.7736, IoU.swivel chair: 0.4765, IoU.boat: 0.7424, IoU.bar: 0.5921, IoU.arcade machine: 0.8872, IoU.hovel: 0.2785, IoU.bus: 0.9243, IoU.towel: 0.7296, IoU.light: 0.5563, IoU.truck: 0.4984, IoU.tower: 0.1024, IoU.chandelier: 0.7033, IoU.awning: 0.3437, IoU.streetlight: 0.2860, IoU.booth: 0.5636, IoU.television receiver: 0.8181, IoU.airplane: 0.8632, IoU.dirt track: 0.0535, IoU.apparel: 0.5879, IoU.pole: 0.2813, IoU.land: 0.0384, IoU.bannister: 0.1567, IoU.escalator: 0.6590, IoU.ottoman: 0.5438, IoU.bottle: 0.4364, IoU.buffet: 0.5811, IoU.poster: 0.2965, IoU.stage: 0.2089, IoU.van: 0.4757, IoU.ship: 0.9412, IoU.fountain: 0.4228, IoU.conveyer belt: 0.8047, IoU.canopy: 0.4862, IoU.washer: 0.8597, IoU.plaything: 0.3179, IoU.swimming pool: 0.5234, IoU.stool: 0.4897, IoU.barrel: 0.5193, IoU.basket: 0.4491, IoU.waterfall: 0.6117, IoU.tent: 0.9318, IoU.bag: 0.2488, IoU.minibike: 0.7434, IoU.cradle: 0.8672, IoU.oven: 0.5414, IoU.ball: 0.6107, IoU.food: 0.5870, IoU.step: 0.1017, IoU.tank: 0.6771, IoU.trade name: 0.2614, IoU.microwave: 0.8816, IoU.pot: 0.6001, IoU.animal: 0.6782, IoU.bicycle: 0.6060, IoU.lake: 0.3764, IoU.dishwasher: 0.7187, IoU.screen: 0.5777, IoU.blanket: 0.3163, IoU.sculpture: 0.7049, IoU.hood: 0.6058, IoU.sconce: 0.5910, IoU.vase: 0.4920, IoU.traffic light: 0.3962, IoU.tray: 0.2584, IoU.ashcan: 0.5306, IoU.fan: 0.6656, IoU.pier: 0.3994, IoU.crt screen: 0.0251, IoU.plate: 0.6109, IoU.monitor: 0.6247, IoU.bulletin board: 0.6268, IoU.shower: 0.2161, IoU.radiator: 0.6551, IoU.glass: 0.2017, IoU.clock: 0.4945, IoU.flag: 0.6949, Acc.wall: 0.9003, Acc.building: 0.9305, Acc.sky: 0.9761, Acc.floor: 0.9100, Acc.tree: 0.8940, Acc.ceiling: 0.9414, Acc.road: 0.9129, Acc.bed : 0.9744, Acc.windowpane: 0.8106, Acc.grass: 0.7894, Acc.cabinet: 0.7329, Acc.sidewalk: 0.8238, Acc.person: 0.9307, Acc.earth: 0.5141, Acc.door: 0.7331, Acc.table: 0.8214, Acc.mountain: 0.7411, Acc.plant: 0.6757, Acc.curtain: 0.8924, Acc.chair: 0.7621, Acc.car: 0.9339, Acc.water: 0.7187, Acc.painting: 0.9212, Acc.sofa: 0.9212, Acc.shelf: 0.5917, Acc.house: 0.5669, Acc.sea: 0.8834, Acc.mirror: 0.8424, Acc.rug: 0.8482, Acc.field: 0.6143, Acc.armchair: 0.8359, Acc.seat: 0.8925, Acc.fence: 0.6705, Acc.desk: 0.7592, Acc.rock: 0.8516, Acc.wardrobe: 0.7678, Acc.lamp: 0.8255, Acc.bathtub: 0.8945, Acc.railing: 0.6314, Acc.cushion: 0.8037, Acc.base: 0.6546, Acc.box: 0.4860, Acc.column: 0.6254, Acc.signboard: 0.5205, Acc.chest of drawers: 0.8357, Acc.counter: 0.5104, Acc.sand: 0.8877, Acc.sink: 0.8510, Acc.skyscraper: 0.5988, Acc.fireplace: 0.9534, Acc.refrigerator: 0.9526, Acc.grandstand: 0.8766, Acc.path: 0.4181, Acc.stairs: 0.3254, Acc.runway: 0.9786, Acc.case: 0.8125, Acc.pool table: 0.9817, Acc.pillow: 0.7740, Acc.screen door: 0.8672, Acc.stairway: 0.5941, Acc.river: 0.2430, Acc.bridge: 0.8618, Acc.bookcase: 0.6983, Acc.blind: 0.6989, Acc.coffee table: 0.7904, Acc.toilet: 0.9437, Acc.flower: 0.5486, Acc.book: 0.7376, Acc.hill: 0.1265, Acc.bench: 0.6668, Acc.countertop: 0.8454, Acc.stove: 0.9289, Acc.palm: 0.7721, Acc.kitchen island: 0.8994, Acc.computer: 0.9178, Acc.swivel chair: 0.7108, Acc.boat: 0.9045, Acc.bar: 0.8293, Acc.arcade machine: 0.9518, Acc.hovel: 0.2993, Acc.bus: 0.9727, Acc.towel: 0.8050, Acc.light: 0.6395, Acc.truck: 0.6419, Acc.tower: 0.1677, Acc.chandelier: 0.8327, Acc.awning: 0.4608, Acc.streetlight: 0.3641, Acc.booth: 0.6939, Acc.television receiver: 0.8615, Acc.airplane: 0.9290, Acc.dirt track: 0.2529, Acc.apparel: 0.7639, Acc.pole: 0.3856, Acc.land: 0.0501, Acc.bannister: 0.1872, Acc.escalator: 0.8596, Acc.ottoman: 0.7016, Acc.bottle: 0.6812, Acc.buffet: 0.6519, Acc.poster: 0.3747, Acc.stage: 0.4811, Acc.van: 0.6548, Acc.ship: 0.9787, Acc.fountain: 0.4378, Acc.conveyer belt: 0.9532, Acc.canopy: 0.6557, Acc.washer: 0.9185, Acc.plaything: 0.4769, Acc.swimming pool: 0.7553, Acc.stool: 0.7125, Acc.barrel: 0.8669, Acc.basket: 0.6091, Acc.waterfall: 0.7822, Acc.tent: 0.9864, Acc.bag: 0.2749, Acc.minibike: 0.8960, Acc.cradle: 0.9781, Acc.oven: 0.6502, Acc.ball: 0.6591, Acc.food: 0.6782, Acc.step: 0.1532, Acc.tank: 0.7570, Acc.trade name: 0.3153, Acc.microwave: 0.9710, Acc.pot: 0.7090, Acc.animal: 0.7046, Acc.bicycle: 0.8198, Acc.lake: 0.7164, Acc.dishwasher: 0.8070, Acc.screen: 0.8629, Acc.blanket: 0.4104, Acc.sculpture: 0.8739, Acc.hood: 0.7180, Acc.sconce: 0.6967, Acc.vase: 0.6384, Acc.traffic light: 0.5833, Acc.tray: 0.3333, Acc.ashcan: 0.6772, Acc.fan: 0.7921, Acc.pier: 0.4436, Acc.crt screen: 0.0375, Acc.plate: 0.7911, Acc.monitor: 0.7089, Acc.bulletin board: 0.7650, Acc.shower: 0.2458, Acc.radiator: 0.8466, Acc.glass: 0.2133, Acc.clock: 0.5866, Acc.flag: 0.7652 2024-06-17 00:07:51,840 - mmseg - INFO - Iter [57050/80000] lr: 9.295e-07, eta: 11:03:13, time: 3.287, data_time: 1.686, memory: 65790, decode.loss_ce: 0.1610, decode.acc_seg: 93.0149, aux.loss_ce: 0.0689, aux.acc_seg: 92.5790, loss: 0.2299 2024-06-17 00:09:12,230 - mmseg - INFO - Iter [57100/80000] lr: 9.274e-07, eta: 11:01:44, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1463, decode.acc_seg: 93.5226, aux.loss_ce: 0.0626, aux.acc_seg: 93.2165, loss: 0.2089 2024-06-17 00:10:32,731 - mmseg - INFO - Iter [57150/80000] lr: 9.254e-07, eta: 11:00:14, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1443, decode.acc_seg: 93.4373, aux.loss_ce: 0.0617, aux.acc_seg: 93.0860, loss: 0.2059 2024-06-17 00:11:53,209 - mmseg - INFO - Iter [57200/80000] lr: 9.234e-07, eta: 10:58:45, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1408, decode.acc_seg: 93.6209, aux.loss_ce: 0.0604, aux.acc_seg: 93.2752, loss: 0.2011 2024-06-17 00:13:13,620 - mmseg - INFO - Iter [57250/80000] lr: 9.214e-07, eta: 10:57:16, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1527, decode.acc_seg: 92.9922, aux.loss_ce: 0.0653, aux.acc_seg: 92.6735, loss: 0.2179 2024-06-17 00:14:34,029 - mmseg - INFO - Iter [57300/80000] lr: 9.193e-07, eta: 10:55:47, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1471, decode.acc_seg: 93.3795, aux.loss_ce: 0.0628, aux.acc_seg: 93.0418, loss: 0.2099 2024-06-17 00:15:54,448 - mmseg - INFO - Iter [57350/80000] lr: 9.173e-07, eta: 10:54:18, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1528, decode.acc_seg: 93.2908, aux.loss_ce: 0.0656, aux.acc_seg: 92.9101, loss: 0.2184 2024-06-17 00:17:14,954 - mmseg - INFO - Iter [57400/80000] lr: 9.153e-07, eta: 10:52:49, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1473, decode.acc_seg: 93.5283, aux.loss_ce: 0.0625, aux.acc_seg: 93.1997, loss: 0.2097 2024-06-17 00:18:35,453 - mmseg - INFO - Iter [57450/80000] lr: 9.133e-07, eta: 10:51:20, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1458, decode.acc_seg: 93.4606, aux.loss_ce: 0.0625, aux.acc_seg: 93.0671, loss: 0.2084 2024-06-17 00:19:55,872 - mmseg - INFO - Iter [57500/80000] lr: 9.112e-07, eta: 10:49:51, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1466, decode.acc_seg: 93.4413, aux.loss_ce: 0.0628, aux.acc_seg: 93.1241, loss: 0.2094 2024-06-17 00:21:16,416 - mmseg - INFO - Iter [57550/80000] lr: 9.092e-07, eta: 10:48:22, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1490, decode.acc_seg: 93.5070, aux.loss_ce: 0.0638, aux.acc_seg: 93.2091, loss: 0.2127 2024-06-17 00:22:36,817 - mmseg - INFO - Iter [57600/80000] lr: 9.072e-07, eta: 10:46:52, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1520, decode.acc_seg: 93.0438, aux.loss_ce: 0.0656, aux.acc_seg: 92.6110, loss: 0.2177 2024-06-17 00:23:57,201 - mmseg - INFO - Iter [57650/80000] lr: 9.052e-07, eta: 10:45:23, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1535, decode.acc_seg: 93.2266, aux.loss_ce: 0.0660, aux.acc_seg: 92.7679, loss: 0.2195 2024-06-17 00:25:17,561 - mmseg - INFO - Iter [57700/80000] lr: 9.031e-07, eta: 10:43:54, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1467, decode.acc_seg: 93.4078, aux.loss_ce: 0.0627, aux.acc_seg: 93.0713, loss: 0.2093 2024-06-17 00:26:38,159 - mmseg - INFO - Iter [57750/80000] lr: 9.011e-07, eta: 10:42:25, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1405, decode.acc_seg: 93.5773, aux.loss_ce: 0.0600, aux.acc_seg: 93.2711, loss: 0.2005 2024-06-17 00:27:58,562 - mmseg - INFO - Iter [57800/80000] lr: 8.991e-07, eta: 10:40:56, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1414, decode.acc_seg: 93.4588, aux.loss_ce: 0.0600, aux.acc_seg: 93.2058, loss: 0.2013 2024-06-17 00:29:19,007 - mmseg - INFO - Iter [57850/80000] lr: 8.971e-07, eta: 10:39:27, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1505, decode.acc_seg: 93.2716, aux.loss_ce: 0.0637, aux.acc_seg: 92.9795, loss: 0.2142 2024-06-17 00:30:39,511 - mmseg - INFO - Iter [57900/80000] lr: 8.950e-07, eta: 10:37:58, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1461, decode.acc_seg: 93.4899, aux.loss_ce: 0.0625, aux.acc_seg: 93.1418, loss: 0.2087 2024-06-17 00:31:59,975 - mmseg - INFO - Iter [57950/80000] lr: 8.930e-07, eta: 10:36:30, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1601, decode.acc_seg: 92.9279, aux.loss_ce: 0.0681, aux.acc_seg: 92.6064, loss: 0.2282 2024-06-17 00:33:20,483 - mmseg - INFO - Saving checkpoint at 58000 iterations 2024-06-17 00:34:33,613 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 00:34:33,613 - mmseg - INFO - Iter [58000/80000] lr: 8.910e-07, eta: 10:35:28, time: 3.073, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1510, decode.acc_seg: 93.3468, aux.loss_ce: 0.0636, aux.acc_seg: 93.0422, loss: 0.2146 2024-06-17 00:35:54,906 - mmseg - INFO - per class results: 2024-06-17 00:35:54,912 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.16 | 90.79 | | building | 84.32 | 93.66 | | sky | 94.76 | 97.77 | | floor | 83.09 | 92.28 | | tree | 77.15 | 88.55 | | ceiling | 87.58 | 94.25 | | road | 84.58 | 92.08 | | bed | 92.05 | 96.64 | | windowpane | 67.06 | 80.88 | | grass | 65.92 | 79.8 | | cabinet | 64.37 | 73.19 | | sidewalk | 67.41 | 78.22 | | person | 84.49 | 93.57 | | earth | 39.08 | 51.14 | | door | 60.4 | 72.35 | | table | 70.64 | 80.61 | | mountain | 63.22 | 72.72 | | plant | 55.42 | 66.31 | | curtain | 76.19 | 89.12 | | chair | 66.26 | 77.15 | | car | 87.46 | 93.23 | | water | 63.3 | 77.73 | | painting | 79.15 | 90.12 | | sofa | 83.51 | 91.62 | | shelf | 48.93 | 64.78 | | house | 43.97 | 52.22 | | sea | 74.21 | 90.5 | | mirror | 76.05 | 83.49 | | rug | 54.05 | 62.43 | | field | 33.38 | 61.78 | | armchair | 66.07 | 81.38 | | seat | 64.58 | 88.23 | | fence | 51.47 | 63.46 | | desk | 59.29 | 79.05 | | rock | 55.97 | 84.42 | | wardrobe | 52.02 | 76.15 | | lamp | 72.92 | 82.98 | | bathtub | 84.62 | 88.24 | | railing | 43.21 | 57.99 | | cushion | 68.0 | 82.63 | | base | 41.6 | 53.99 | | box | 40.78 | 54.29 | | column | 55.56 | 64.41 | | signboard | 40.0 | 51.67 | | chest of drawers | 45.59 | 76.69 | | counter | 41.44 | 49.45 | | sand | 56.29 | 86.59 | | sink | 80.87 | 86.29 | | skyscraper | 46.25 | 59.99 | | fireplace | 75.82 | 93.14 | | refrigerator | 85.7 | 95.17 | | grandstand | 53.03 | 89.1 | | path | 28.09 | 34.94 | | stairs | 35.34 | 42.25 | | runway | 74.53 | 96.86 | | case | 60.13 | 79.09 | | pool table | 94.37 | 97.64 | | pillow | 65.46 | 75.51 | | screen door | 83.08 | 88.95 | | stairway | 47.28 | 60.29 | | river | 14.33 | 21.41 | | bridge | 70.36 | 87.8 | | bookcase | 46.67 | 59.85 | | blind | 46.19 | 55.44 | | coffee table | 67.05 | 84.83 | | toilet | 89.9 | 93.59 | | flower | 42.62 | 60.71 | | book | 51.22 | 73.51 | | hill | 8.54 | 15.1 | | bench | 56.58 | 62.15 | | countertop | 64.2 | 84.63 | | stove | 85.86 | 93.18 | | palm | 52.37 | 79.95 | | kitchen island | 53.82 | 89.38 | | computer | 77.79 | 89.32 | | swivel chair | 47.07 | 70.79 | | boat | 76.69 | 91.34 | | bar | 57.99 | 85.66 | | arcade machine | 76.8 | 79.97 | | hovel | 27.89 | 30.3 | | bus | 92.5 | 97.14 | | towel | 73.38 | 81.54 | | light | 54.88 | 61.93 | | truck | 49.42 | 64.18 | | tower | 13.96 | 21.7 | | chandelier | 72.05 | 85.48 | | awning | 35.18 | 46.87 | | streetlight | 29.97 | 37.12 | | booth | 45.67 | 62.23 | | television receiver | 77.41 | 85.26 | | airplane | 86.92 | 91.92 | | dirt track | 4.49 | 25.86 | | apparel | 57.58 | 72.48 | | pole | 20.41 | 28.21 | | land | 4.09 | 5.42 | | bannister | 18.72 | 23.56 | | escalator | 66.46 | 85.94 | | ottoman | 54.69 | 67.85 | | bottle | 42.83 | 69.62 | | buffet | 48.68 | 53.64 | | poster | 32.0 | 44.98 | | stage | 27.58 | 47.29 | | van | 54.46 | 78.47 | | ship | 92.41 | 98.36 | | fountain | 35.45 | 36.15 | | conveyer belt | 82.01 | 96.39 | | canopy | 51.52 | 71.36 | | washer | 82.94 | 88.26 | | plaything | 31.53 | 44.04 | | swimming pool | 53.01 | 76.47 | | stool | 49.41 | 58.03 | | barrel | 49.81 | 73.27 | | basket | 45.3 | 57.86 | | waterfall | 63.1 | 75.56 | | tent | 95.55 | 98.8 | | bag | 28.88 | 33.29 | | minibike | 75.16 | 87.23 | | cradle | 84.39 | 97.96 | | oven | 63.45 | 72.4 | | ball | 61.91 | 67.39 | | food | 58.85 | 67.72 | | step | 9.67 | 12.7 | | tank | 63.0 | 68.0 | | trade name | 26.56 | 32.51 | | microwave | 91.14 | 95.94 | | pot | 59.62 | 69.28 | | animal | 62.62 | 64.37 | | bicycle | 60.89 | 78.77 | | lake | 41.65 | 63.63 | | dishwasher | 71.6 | 80.93 | | screen | 56.73 | 87.74 | | blanket | 33.74 | 39.45 | | sculpture | 72.08 | 82.63 | | hood | 61.37 | 71.88 | | sconce | 56.83 | 63.97 | | vase | 48.87 | 62.29 | | traffic light | 38.31 | 61.3 | | tray | 25.9 | 36.31 | | ashcan | 54.23 | 67.44 | | fan | 66.37 | 79.91 | | pier | 40.31 | 45.33 | | crt screen | 4.91 | 7.08 | | plate | 60.44 | 80.38 | | monitor | 64.33 | 75.93 | | bulletin board | 57.41 | 83.18 | | shower | 21.55 | 23.45 | | radiator | 67.44 | 75.78 | | glass | 21.87 | 23.67 | | clock | 45.85 | 55.41 | | flag | 67.46 | 74.86 | +---------------------+-------+-------+ 2024-06-17 00:35:54,912 - mmseg - INFO - Summary: 2024-06-17 00:35:54,912 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 85.86 | 57.43 | 69.75 | +-------+-------+-------+ 2024-06-17 00:35:54,913 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 00:35:54,913 - mmseg - INFO - Iter(val) [250] aAcc: 0.8586, mIoU: 0.5743, mAcc: 0.6975, IoU.wall: 0.8216, IoU.building: 0.8432, IoU.sky: 0.9476, IoU.floor: 0.8309, IoU.tree: 0.7715, IoU.ceiling: 0.8758, IoU.road: 0.8458, IoU.bed : 0.9205, IoU.windowpane: 0.6706, IoU.grass: 0.6592, IoU.cabinet: 0.6437, IoU.sidewalk: 0.6741, IoU.person: 0.8449, IoU.earth: 0.3908, IoU.door: 0.6040, IoU.table: 0.7064, IoU.mountain: 0.6322, IoU.plant: 0.5542, IoU.curtain: 0.7619, IoU.chair: 0.6626, IoU.car: 0.8746, IoU.water: 0.6330, IoU.painting: 0.7915, IoU.sofa: 0.8351, IoU.shelf: 0.4893, IoU.house: 0.4397, IoU.sea: 0.7421, IoU.mirror: 0.7605, IoU.rug: 0.5405, IoU.field: 0.3338, IoU.armchair: 0.6607, IoU.seat: 0.6458, IoU.fence: 0.5147, IoU.desk: 0.5929, IoU.rock: 0.5597, IoU.wardrobe: 0.5202, IoU.lamp: 0.7292, IoU.bathtub: 0.8462, IoU.railing: 0.4321, IoU.cushion: 0.6800, IoU.base: 0.4160, IoU.box: 0.4078, IoU.column: 0.5556, IoU.signboard: 0.4000, IoU.chest of drawers: 0.4559, IoU.counter: 0.4144, IoU.sand: 0.5629, IoU.sink: 0.8087, IoU.skyscraper: 0.4625, IoU.fireplace: 0.7582, IoU.refrigerator: 0.8570, IoU.grandstand: 0.5303, IoU.path: 0.2809, IoU.stairs: 0.3534, IoU.runway: 0.7453, IoU.case: 0.6013, IoU.pool table: 0.9437, IoU.pillow: 0.6546, IoU.screen door: 0.8308, IoU.stairway: 0.4728, IoU.river: 0.1433, IoU.bridge: 0.7036, IoU.bookcase: 0.4667, IoU.blind: 0.4619, IoU.coffee table: 0.6705, IoU.toilet: 0.8990, IoU.flower: 0.4262, IoU.book: 0.5122, IoU.hill: 0.0854, IoU.bench: 0.5658, IoU.countertop: 0.6420, IoU.stove: 0.8586, IoU.palm: 0.5237, IoU.kitchen island: 0.5382, IoU.computer: 0.7779, IoU.swivel chair: 0.4707, IoU.boat: 0.7669, IoU.bar: 0.5799, IoU.arcade machine: 0.7680, IoU.hovel: 0.2789, IoU.bus: 0.9250, IoU.towel: 0.7338, IoU.light: 0.5488, IoU.truck: 0.4942, IoU.tower: 0.1396, IoU.chandelier: 0.7205, IoU.awning: 0.3518, IoU.streetlight: 0.2997, IoU.booth: 0.4567, IoU.television receiver: 0.7741, IoU.airplane: 0.8692, IoU.dirt track: 0.0449, IoU.apparel: 0.5758, IoU.pole: 0.2041, IoU.land: 0.0409, IoU.bannister: 0.1872, IoU.escalator: 0.6646, IoU.ottoman: 0.5469, IoU.bottle: 0.4283, IoU.buffet: 0.4868, IoU.poster: 0.3200, IoU.stage: 0.2758, IoU.van: 0.5446, IoU.ship: 0.9241, IoU.fountain: 0.3545, IoU.conveyer belt: 0.8201, IoU.canopy: 0.5152, IoU.washer: 0.8294, IoU.plaything: 0.3153, IoU.swimming pool: 0.5301, IoU.stool: 0.4941, IoU.barrel: 0.4981, IoU.basket: 0.4530, IoU.waterfall: 0.6310, IoU.tent: 0.9555, IoU.bag: 0.2888, IoU.minibike: 0.7516, IoU.cradle: 0.8439, IoU.oven: 0.6345, IoU.ball: 0.6191, IoU.food: 0.5885, IoU.step: 0.0967, IoU.tank: 0.6300, IoU.trade name: 0.2656, IoU.microwave: 0.9114, IoU.pot: 0.5962, IoU.animal: 0.6262, IoU.bicycle: 0.6089, IoU.lake: 0.4165, IoU.dishwasher: 0.7160, IoU.screen: 0.5673, IoU.blanket: 0.3374, IoU.sculpture: 0.7208, IoU.hood: 0.6137, IoU.sconce: 0.5683, IoU.vase: 0.4887, IoU.traffic light: 0.3831, IoU.tray: 0.2590, IoU.ashcan: 0.5423, IoU.fan: 0.6637, IoU.pier: 0.4031, IoU.crt screen: 0.0491, IoU.plate: 0.6044, IoU.monitor: 0.6433, IoU.bulletin board: 0.5741, IoU.shower: 0.2155, IoU.radiator: 0.6744, IoU.glass: 0.2187, IoU.clock: 0.4585, IoU.flag: 0.6746, Acc.wall: 0.9079, Acc.building: 0.9366, Acc.sky: 0.9777, Acc.floor: 0.9228, Acc.tree: 0.8855, Acc.ceiling: 0.9425, Acc.road: 0.9208, Acc.bed : 0.9664, Acc.windowpane: 0.8088, Acc.grass: 0.7980, Acc.cabinet: 0.7319, Acc.sidewalk: 0.7822, Acc.person: 0.9357, Acc.earth: 0.5114, Acc.door: 0.7235, Acc.table: 0.8061, Acc.mountain: 0.7272, Acc.plant: 0.6631, Acc.curtain: 0.8912, Acc.chair: 0.7715, Acc.car: 0.9323, Acc.water: 0.7773, Acc.painting: 0.9012, Acc.sofa: 0.9162, Acc.shelf: 0.6478, Acc.house: 0.5222, Acc.sea: 0.9050, Acc.mirror: 0.8349, Acc.rug: 0.6243, Acc.field: 0.6178, Acc.armchair: 0.8138, Acc.seat: 0.8823, Acc.fence: 0.6346, Acc.desk: 0.7905, Acc.rock: 0.8442, Acc.wardrobe: 0.7615, Acc.lamp: 0.8298, Acc.bathtub: 0.8824, Acc.railing: 0.5799, Acc.cushion: 0.8263, Acc.base: 0.5399, Acc.box: 0.5429, Acc.column: 0.6441, Acc.signboard: 0.5167, Acc.chest of drawers: 0.7669, Acc.counter: 0.4945, Acc.sand: 0.8659, Acc.sink: 0.8629, Acc.skyscraper: 0.5999, Acc.fireplace: 0.9314, Acc.refrigerator: 0.9517, Acc.grandstand: 0.8910, Acc.path: 0.3494, Acc.stairs: 0.4225, Acc.runway: 0.9686, Acc.case: 0.7909, Acc.pool table: 0.9764, Acc.pillow: 0.7551, Acc.screen door: 0.8895, Acc.stairway: 0.6029, Acc.river: 0.2141, Acc.bridge: 0.8780, Acc.bookcase: 0.5985, Acc.blind: 0.5544, Acc.coffee table: 0.8483, Acc.toilet: 0.9359, Acc.flower: 0.6071, Acc.book: 0.7351, Acc.hill: 0.1510, Acc.bench: 0.6215, Acc.countertop: 0.8463, Acc.stove: 0.9318, Acc.palm: 0.7995, Acc.kitchen island: 0.8938, Acc.computer: 0.8932, Acc.swivel chair: 0.7079, Acc.boat: 0.9134, Acc.bar: 0.8566, Acc.arcade machine: 0.7997, Acc.hovel: 0.3030, Acc.bus: 0.9714, Acc.towel: 0.8154, Acc.light: 0.6193, Acc.truck: 0.6418, Acc.tower: 0.2170, Acc.chandelier: 0.8548, Acc.awning: 0.4687, Acc.streetlight: 0.3712, Acc.booth: 0.6223, Acc.television receiver: 0.8526, Acc.airplane: 0.9192, Acc.dirt track: 0.2586, Acc.apparel: 0.7248, Acc.pole: 0.2821, Acc.land: 0.0542, Acc.bannister: 0.2356, Acc.escalator: 0.8594, Acc.ottoman: 0.6785, Acc.bottle: 0.6962, Acc.buffet: 0.5364, Acc.poster: 0.4498, Acc.stage: 0.4729, Acc.van: 0.7847, Acc.ship: 0.9836, Acc.fountain: 0.3615, Acc.conveyer belt: 0.9639, Acc.canopy: 0.7136, Acc.washer: 0.8826, Acc.plaything: 0.4404, Acc.swimming pool: 0.7647, Acc.stool: 0.5803, Acc.barrel: 0.7327, Acc.basket: 0.5786, Acc.waterfall: 0.7556, Acc.tent: 0.9880, Acc.bag: 0.3329, Acc.minibike: 0.8723, Acc.cradle: 0.9796, Acc.oven: 0.7240, Acc.ball: 0.6739, Acc.food: 0.6772, Acc.step: 0.1270, Acc.tank: 0.6800, Acc.trade name: 0.3251, Acc.microwave: 0.9594, Acc.pot: 0.6928, Acc.animal: 0.6437, Acc.bicycle: 0.7877, Acc.lake: 0.6363, Acc.dishwasher: 0.8093, Acc.screen: 0.8774, Acc.blanket: 0.3945, Acc.sculpture: 0.8263, Acc.hood: 0.7188, Acc.sconce: 0.6397, Acc.vase: 0.6229, Acc.traffic light: 0.6130, Acc.tray: 0.3631, Acc.ashcan: 0.6744, Acc.fan: 0.7991, Acc.pier: 0.4533, Acc.crt screen: 0.0708, Acc.plate: 0.8038, Acc.monitor: 0.7593, Acc.bulletin board: 0.8318, Acc.shower: 0.2345, Acc.radiator: 0.7578, Acc.glass: 0.2367, Acc.clock: 0.5541, Acc.flag: 0.7486 2024-06-17 00:37:15,778 - mmseg - INFO - Iter [58050/80000] lr: 8.890e-07, eta: 10:34:30, time: 3.243, data_time: 1.640, memory: 65790, decode.loss_ce: 0.1561, decode.acc_seg: 93.0137, aux.loss_ce: 0.0661, aux.acc_seg: 92.6752, loss: 0.2222 2024-06-17 00:38:40,466 - mmseg - INFO - Iter [58100/80000] lr: 8.869e-07, eta: 10:33:03, time: 1.694, data_time: 0.086, memory: 65790, decode.loss_ce: 0.1486, decode.acc_seg: 93.1387, aux.loss_ce: 0.0637, aux.acc_seg: 92.7668, loss: 0.2123 2024-06-17 00:40:00,942 - mmseg - INFO - Iter [58150/80000] lr: 8.849e-07, eta: 10:31:34, time: 1.609, data_time: 0.009, memory: 65790, decode.loss_ce: 0.1458, decode.acc_seg: 93.4724, aux.loss_ce: 0.0628, aux.acc_seg: 93.1518, loss: 0.2085 2024-06-17 00:41:21,548 - mmseg - INFO - Iter [58200/80000] lr: 8.829e-07, eta: 10:30:05, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1449, decode.acc_seg: 93.6110, aux.loss_ce: 0.0617, aux.acc_seg: 93.3580, loss: 0.2066 2024-06-17 00:42:42,017 - mmseg - INFO - Iter [58250/80000] lr: 8.809e-07, eta: 10:28:36, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1346, decode.acc_seg: 93.9096, aux.loss_ce: 0.0577, aux.acc_seg: 93.6229, loss: 0.1923 2024-06-17 00:44:02,458 - mmseg - INFO - Iter [58300/80000] lr: 8.788e-07, eta: 10:27:07, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1445, decode.acc_seg: 93.4859, aux.loss_ce: 0.0616, aux.acc_seg: 93.1783, loss: 0.2061 2024-06-17 00:45:22,998 - mmseg - INFO - Iter [58350/80000] lr: 8.768e-07, eta: 10:25:38, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1533, decode.acc_seg: 93.3160, aux.loss_ce: 0.0650, aux.acc_seg: 92.9412, loss: 0.2183 2024-06-17 00:46:43,513 - mmseg - INFO - Iter [58400/80000] lr: 8.748e-07, eta: 10:24:09, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1380, decode.acc_seg: 93.9311, aux.loss_ce: 0.0591, aux.acc_seg: 93.5535, loss: 0.1971 2024-06-17 00:48:03,961 - mmseg - INFO - Iter [58450/80000] lr: 8.728e-07, eta: 10:22:40, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1415, decode.acc_seg: 93.6303, aux.loss_ce: 0.0609, aux.acc_seg: 93.2682, loss: 0.2024 2024-06-17 00:49:24,387 - mmseg - INFO - Iter [58500/80000] lr: 8.707e-07, eta: 10:21:11, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1517, decode.acc_seg: 93.5484, aux.loss_ce: 0.0644, aux.acc_seg: 93.1649, loss: 0.2160 2024-06-17 00:50:44,914 - mmseg - INFO - Iter [58550/80000] lr: 8.687e-07, eta: 10:19:42, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1513, decode.acc_seg: 93.1613, aux.loss_ce: 0.0642, aux.acc_seg: 92.8692, loss: 0.2155 2024-06-17 00:52:05,344 - mmseg - INFO - Iter [58600/80000] lr: 8.667e-07, eta: 10:18:13, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1451, decode.acc_seg: 93.3696, aux.loss_ce: 0.0622, aux.acc_seg: 93.0948, loss: 0.2073 2024-06-17 00:53:25,676 - mmseg - INFO - Iter [58650/80000] lr: 8.647e-07, eta: 10:16:44, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1461, decode.acc_seg: 93.3882, aux.loss_ce: 0.0629, aux.acc_seg: 92.9977, loss: 0.2090 2024-06-17 00:54:46,145 - mmseg - INFO - Iter [58700/80000] lr: 8.626e-07, eta: 10:15:15, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1473, decode.acc_seg: 93.4606, aux.loss_ce: 0.0627, aux.acc_seg: 93.1110, loss: 0.2100 2024-06-17 00:56:06,564 - mmseg - INFO - Iter [58750/80000] lr: 8.606e-07, eta: 10:13:46, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1486, decode.acc_seg: 93.2852, aux.loss_ce: 0.0637, aux.acc_seg: 92.9225, loss: 0.2123 2024-06-17 00:57:27,093 - mmseg - INFO - Iter [58800/80000] lr: 8.586e-07, eta: 10:12:17, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1397, decode.acc_seg: 93.6816, aux.loss_ce: 0.0606, aux.acc_seg: 93.2402, loss: 0.2003 2024-06-17 00:58:47,557 - mmseg - INFO - Iter [58850/80000] lr: 8.566e-07, eta: 10:10:48, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1490, decode.acc_seg: 93.4148, aux.loss_ce: 0.0635, aux.acc_seg: 93.0919, loss: 0.2125 2024-06-17 01:00:08,116 - mmseg - INFO - Iter [58900/80000] lr: 8.545e-07, eta: 10:09:19, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1406, decode.acc_seg: 93.6523, aux.loss_ce: 0.0605, aux.acc_seg: 93.2459, loss: 0.2011 2024-06-17 01:01:28,499 - mmseg - INFO - Iter [58950/80000] lr: 8.525e-07, eta: 10:07:51, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1525, decode.acc_seg: 93.1556, aux.loss_ce: 0.0645, aux.acc_seg: 92.8462, loss: 0.2170 2024-06-17 01:02:49,168 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 01:02:49,168 - mmseg - INFO - Iter [59000/80000] lr: 8.505e-07, eta: 10:06:22, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1536, decode.acc_seg: 93.1615, aux.loss_ce: 0.0662, aux.acc_seg: 92.7754, loss: 0.2197 2024-06-17 01:04:11,644 - mmseg - INFO - per class results: 2024-06-17 01:04:11,650 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.11 | 89.9 | | building | 83.94 | 93.8 | | sky | 94.67 | 97.28 | | floor | 85.04 | 91.93 | | tree | 77.42 | 89.25 | | ceiling | 87.27 | 93.96 | | road | 85.91 | 90.61 | | bed | 91.89 | 96.86 | | windowpane | 66.79 | 84.14 | | grass | 66.71 | 84.3 | | cabinet | 66.0 | 75.68 | | sidewalk | 71.37 | 87.32 | | person | 84.77 | 93.26 | | earth | 40.19 | 53.48 | | door | 58.6 | 71.31 | | table | 71.2 | 81.23 | | mountain | 62.94 | 72.19 | | plant | 54.77 | 66.17 | | curtain | 78.2 | 87.15 | | chair | 66.27 | 78.28 | | car | 87.57 | 93.25 | | water | 64.53 | 81.42 | | painting | 79.47 | 89.72 | | sofa | 82.47 | 90.19 | | shelf | 46.82 | 60.69 | | house | 38.25 | 44.96 | | sea | 77.36 | 84.65 | | mirror | 78.18 | 88.17 | | rug | 67.84 | 75.24 | | field | 26.68 | 44.23 | | armchair | 65.91 | 82.72 | | seat | 66.66 | 87.48 | | fence | 52.91 | 67.48 | | desk | 59.94 | 78.43 | | rock | 57.74 | 83.23 | | wardrobe | 52.86 | 76.34 | | lamp | 72.85 | 82.2 | | bathtub | 85.02 | 88.24 | | railing | 43.71 | 64.15 | | cushion | 68.17 | 81.28 | | base | 44.47 | 59.99 | | box | 40.39 | 53.29 | | column | 56.65 | 67.65 | | signboard | 41.13 | 54.55 | | chest of drawers | 44.24 | 66.06 | | counter | 42.17 | 50.06 | | sand | 56.31 | 78.23 | | sink | 78.76 | 84.5 | | skyscraper | 46.91 | 60.31 | | fireplace | 72.01 | 94.95 | | refrigerator | 86.65 | 96.17 | | grandstand | 54.88 | 85.91 | | path | 29.82 | 39.11 | | stairs | 36.84 | 45.33 | | runway | 74.7 | 96.63 | | case | 61.33 | 81.77 | | pool table | 94.17 | 98.0 | | pillow | 60.89 | 68.84 | | screen door | 81.7 | 88.67 | | stairway | 38.22 | 47.73 | | river | 15.32 | 26.85 | | bridge | 69.93 | 84.27 | | bookcase | 42.52 | 62.3 | | blind | 44.16 | 53.16 | | coffee table | 65.14 | 86.64 | | toilet | 89.87 | 94.13 | | flower | 41.08 | 53.26 | | book | 52.36 | 77.6 | | hill | 13.66 | 27.13 | | bench | 56.45 | 64.25 | | countertop | 63.92 | 82.87 | | stove | 86.96 | 92.45 | | palm | 54.59 | 77.99 | | kitchen island | 54.82 | 89.28 | | computer | 77.7 | 90.93 | | swivel chair | 47.35 | 77.75 | | boat | 83.04 | 91.22 | | bar | 57.57 | 81.45 | | arcade machine | 85.45 | 90.25 | | hovel | 32.32 | 35.16 | | bus | 93.03 | 97.15 | | towel | 75.51 | 84.69 | | light | 57.82 | 72.2 | | truck | 49.75 | 71.59 | | tower | 7.4 | 11.35 | | chandelier | 71.03 | 88.63 | | awning | 35.07 | 44.98 | | streetlight | 30.83 | 39.34 | | booth | 52.61 | 62.47 | | television receiver | 80.26 | 86.44 | | airplane | 85.72 | 94.68 | | dirt track | 4.38 | 19.25 | | apparel | 59.66 | 72.97 | | pole | 24.44 | 34.52 | | land | 4.11 | 5.25 | | bannister | 18.89 | 23.45 | | escalator | 65.88 | 87.79 | | ottoman | 54.48 | 76.85 | | bottle | 44.09 | 72.25 | | buffet | 61.63 | 68.89 | | poster | 35.93 | 47.61 | | stage | 24.3 | 49.51 | | van | 53.98 | 70.48 | | ship | 89.63 | 94.58 | | fountain | 37.37 | 39.6 | | conveyer belt | 79.74 | 96.3 | | canopy | 50.62 | 70.95 | | washer | 82.92 | 88.5 | | plaything | 34.07 | 47.45 | | swimming pool | 52.35 | 75.56 | | stool | 46.95 | 70.19 | | barrel | 63.68 | 82.03 | | basket | 43.05 | 60.25 | | waterfall | 57.41 | 67.7 | | tent | 94.0 | 98.59 | | bag | 29.09 | 33.75 | | minibike | 73.43 | 88.96 | | cradle | 85.29 | 97.27 | | oven | 54.16 | 63.18 | | ball | 58.5 | 62.29 | | food | 63.24 | 73.92 | | step | 11.46 | 14.6 | | tank | 60.97 | 68.52 | | trade name | 27.13 | 33.09 | | microwave | 88.35 | 95.97 | | pot | 60.01 | 71.27 | | animal | 63.56 | 66.3 | | bicycle | 61.14 | 79.04 | | lake | 53.14 | 63.66 | | dishwasher | 69.75 | 82.31 | | screen | 51.6 | 81.17 | | blanket | 37.27 | 42.85 | | sculpture | 71.56 | 86.06 | | hood | 61.65 | 73.86 | | sconce | 57.39 | 66.32 | | vase | 49.31 | 62.64 | | traffic light | 39.51 | 56.59 | | tray | 24.71 | 31.84 | | ashcan | 52.31 | 70.72 | | fan | 67.89 | 82.59 | | pier | 38.81 | 43.66 | | crt screen | 8.38 | 15.39 | | plate | 60.03 | 82.18 | | monitor | 57.07 | 67.02 | | bulletin board | 57.78 | 78.5 | | shower | 21.12 | 23.01 | | radiator | 68.81 | 79.39 | | glass | 20.21 | 21.41 | | clock | 49.59 | 61.63 | | flag | 69.03 | 77.73 | +---------------------+-------+-------+ 2024-06-17 01:04:11,650 - mmseg - INFO - Summary: 2024-06-17 01:04:11,650 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 86.03 | 57.82 | 70.34 | +-------+-------+-------+ 2024-06-17 01:04:11,651 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 01:04:11,651 - mmseg - INFO - Iter(val) [250] aAcc: 0.8603, mIoU: 0.5782, mAcc: 0.7034, IoU.wall: 0.8211, IoU.building: 0.8394, IoU.sky: 0.9467, IoU.floor: 0.8504, IoU.tree: 0.7742, IoU.ceiling: 0.8727, IoU.road: 0.8591, IoU.bed : 0.9189, IoU.windowpane: 0.6679, IoU.grass: 0.6671, IoU.cabinet: 0.6600, IoU.sidewalk: 0.7137, IoU.person: 0.8477, IoU.earth: 0.4019, IoU.door: 0.5860, IoU.table: 0.7120, IoU.mountain: 0.6294, IoU.plant: 0.5477, IoU.curtain: 0.7820, IoU.chair: 0.6627, IoU.car: 0.8757, IoU.water: 0.6453, IoU.painting: 0.7947, IoU.sofa: 0.8247, IoU.shelf: 0.4682, IoU.house: 0.3825, IoU.sea: 0.7736, IoU.mirror: 0.7818, IoU.rug: 0.6784, IoU.field: 0.2668, IoU.armchair: 0.6591, IoU.seat: 0.6666, IoU.fence: 0.5291, IoU.desk: 0.5994, IoU.rock: 0.5774, IoU.wardrobe: 0.5286, IoU.lamp: 0.7285, IoU.bathtub: 0.8502, IoU.railing: 0.4371, IoU.cushion: 0.6817, IoU.base: 0.4447, IoU.box: 0.4039, IoU.column: 0.5665, IoU.signboard: 0.4113, IoU.chest of drawers: 0.4424, IoU.counter: 0.4217, IoU.sand: 0.5631, IoU.sink: 0.7876, IoU.skyscraper: 0.4691, IoU.fireplace: 0.7201, IoU.refrigerator: 0.8665, IoU.grandstand: 0.5488, IoU.path: 0.2982, IoU.stairs: 0.3684, IoU.runway: 0.7470, IoU.case: 0.6133, IoU.pool table: 0.9417, IoU.pillow: 0.6089, IoU.screen door: 0.8170, IoU.stairway: 0.3822, IoU.river: 0.1532, IoU.bridge: 0.6993, IoU.bookcase: 0.4252, IoU.blind: 0.4416, IoU.coffee table: 0.6514, IoU.toilet: 0.8987, IoU.flower: 0.4108, IoU.book: 0.5236, IoU.hill: 0.1366, IoU.bench: 0.5645, IoU.countertop: 0.6392, IoU.stove: 0.8696, IoU.palm: 0.5459, IoU.kitchen island: 0.5482, IoU.computer: 0.7770, IoU.swivel chair: 0.4735, IoU.boat: 0.8304, IoU.bar: 0.5757, IoU.arcade machine: 0.8545, IoU.hovel: 0.3232, IoU.bus: 0.9303, IoU.towel: 0.7551, IoU.light: 0.5782, IoU.truck: 0.4975, IoU.tower: 0.0740, IoU.chandelier: 0.7103, IoU.awning: 0.3507, IoU.streetlight: 0.3083, IoU.booth: 0.5261, IoU.television receiver: 0.8026, IoU.airplane: 0.8572, IoU.dirt track: 0.0438, IoU.apparel: 0.5966, IoU.pole: 0.2444, IoU.land: 0.0411, IoU.bannister: 0.1889, IoU.escalator: 0.6588, IoU.ottoman: 0.5448, IoU.bottle: 0.4409, IoU.buffet: 0.6163, IoU.poster: 0.3593, IoU.stage: 0.2430, IoU.van: 0.5398, IoU.ship: 0.8963, IoU.fountain: 0.3737, IoU.conveyer belt: 0.7974, IoU.canopy: 0.5062, IoU.washer: 0.8292, IoU.plaything: 0.3407, IoU.swimming pool: 0.5235, IoU.stool: 0.4695, IoU.barrel: 0.6368, IoU.basket: 0.4305, IoU.waterfall: 0.5741, IoU.tent: 0.9400, IoU.bag: 0.2909, IoU.minibike: 0.7343, IoU.cradle: 0.8529, IoU.oven: 0.5416, IoU.ball: 0.5850, IoU.food: 0.6324, IoU.step: 0.1146, IoU.tank: 0.6097, IoU.trade name: 0.2713, IoU.microwave: 0.8835, IoU.pot: 0.6001, IoU.animal: 0.6356, IoU.bicycle: 0.6114, IoU.lake: 0.5314, IoU.dishwasher: 0.6975, IoU.screen: 0.5160, IoU.blanket: 0.3727, IoU.sculpture: 0.7156, IoU.hood: 0.6165, IoU.sconce: 0.5739, IoU.vase: 0.4931, IoU.traffic light: 0.3951, IoU.tray: 0.2471, IoU.ashcan: 0.5231, IoU.fan: 0.6789, IoU.pier: 0.3881, IoU.crt screen: 0.0838, IoU.plate: 0.6003, IoU.monitor: 0.5707, IoU.bulletin board: 0.5778, IoU.shower: 0.2112, IoU.radiator: 0.6881, IoU.glass: 0.2021, IoU.clock: 0.4959, IoU.flag: 0.6903, Acc.wall: 0.8990, Acc.building: 0.9380, Acc.sky: 0.9728, Acc.floor: 0.9193, Acc.tree: 0.8925, Acc.ceiling: 0.9396, Acc.road: 0.9061, Acc.bed : 0.9686, Acc.windowpane: 0.8414, Acc.grass: 0.8430, Acc.cabinet: 0.7568, Acc.sidewalk: 0.8732, Acc.person: 0.9326, Acc.earth: 0.5348, Acc.door: 0.7131, Acc.table: 0.8123, Acc.mountain: 0.7219, Acc.plant: 0.6617, Acc.curtain: 0.8715, Acc.chair: 0.7828, Acc.car: 0.9325, Acc.water: 0.8142, Acc.painting: 0.8972, Acc.sofa: 0.9019, Acc.shelf: 0.6069, Acc.house: 0.4496, Acc.sea: 0.8465, Acc.mirror: 0.8817, Acc.rug: 0.7524, Acc.field: 0.4423, Acc.armchair: 0.8272, Acc.seat: 0.8748, Acc.fence: 0.6748, Acc.desk: 0.7843, Acc.rock: 0.8323, Acc.wardrobe: 0.7634, Acc.lamp: 0.8220, Acc.bathtub: 0.8824, Acc.railing: 0.6415, Acc.cushion: 0.8128, Acc.base: 0.5999, Acc.box: 0.5329, Acc.column: 0.6765, Acc.signboard: 0.5455, Acc.chest of drawers: 0.6606, Acc.counter: 0.5006, Acc.sand: 0.7823, Acc.sink: 0.8450, Acc.skyscraper: 0.6031, Acc.fireplace: 0.9495, Acc.refrigerator: 0.9617, Acc.grandstand: 0.8591, Acc.path: 0.3911, Acc.stairs: 0.4533, Acc.runway: 0.9663, Acc.case: 0.8177, Acc.pool table: 0.9800, Acc.pillow: 0.6884, Acc.screen door: 0.8867, Acc.stairway: 0.4773, Acc.river: 0.2685, Acc.bridge: 0.8427, Acc.bookcase: 0.6230, Acc.blind: 0.5316, Acc.coffee table: 0.8664, Acc.toilet: 0.9413, Acc.flower: 0.5326, Acc.book: 0.7760, Acc.hill: 0.2713, Acc.bench: 0.6425, Acc.countertop: 0.8287, Acc.stove: 0.9245, Acc.palm: 0.7799, Acc.kitchen island: 0.8928, Acc.computer: 0.9093, Acc.swivel chair: 0.7775, Acc.boat: 0.9122, Acc.bar: 0.8145, Acc.arcade machine: 0.9025, Acc.hovel: 0.3516, Acc.bus: 0.9715, Acc.towel: 0.8469, Acc.light: 0.7220, Acc.truck: 0.7159, Acc.tower: 0.1135, Acc.chandelier: 0.8863, Acc.awning: 0.4498, Acc.streetlight: 0.3934, Acc.booth: 0.6247, Acc.television receiver: 0.8644, Acc.airplane: 0.9468, Acc.dirt track: 0.1925, Acc.apparel: 0.7297, Acc.pole: 0.3452, Acc.land: 0.0525, Acc.bannister: 0.2345, Acc.escalator: 0.8779, Acc.ottoman: 0.7685, Acc.bottle: 0.7225, Acc.buffet: 0.6889, Acc.poster: 0.4761, Acc.stage: 0.4951, Acc.van: 0.7048, Acc.ship: 0.9458, Acc.fountain: 0.3960, Acc.conveyer belt: 0.9630, Acc.canopy: 0.7095, Acc.washer: 0.8850, Acc.plaything: 0.4745, Acc.swimming pool: 0.7556, Acc.stool: 0.7019, Acc.barrel: 0.8203, Acc.basket: 0.6025, Acc.waterfall: 0.6770, Acc.tent: 0.9859, Acc.bag: 0.3375, Acc.minibike: 0.8896, Acc.cradle: 0.9727, Acc.oven: 0.6318, Acc.ball: 0.6229, Acc.food: 0.7392, Acc.step: 0.1460, Acc.tank: 0.6852, Acc.trade name: 0.3309, Acc.microwave: 0.9597, Acc.pot: 0.7127, Acc.animal: 0.6630, Acc.bicycle: 0.7904, Acc.lake: 0.6366, Acc.dishwasher: 0.8231, Acc.screen: 0.8117, Acc.blanket: 0.4285, Acc.sculpture: 0.8606, Acc.hood: 0.7386, Acc.sconce: 0.6632, Acc.vase: 0.6264, Acc.traffic light: 0.5659, Acc.tray: 0.3184, Acc.ashcan: 0.7072, Acc.fan: 0.8259, Acc.pier: 0.4366, Acc.crt screen: 0.1539, Acc.plate: 0.8218, Acc.monitor: 0.6702, Acc.bulletin board: 0.7850, Acc.shower: 0.2301, Acc.radiator: 0.7939, Acc.glass: 0.2141, Acc.clock: 0.6163, Acc.flag: 0.7773 2024-06-17 01:05:32,490 - mmseg - INFO - Iter [59050/80000] lr: 8.485e-07, eta: 10:05:22, time: 3.266, data_time: 1.663, memory: 65790, decode.loss_ce: 0.1535, decode.acc_seg: 93.1375, aux.loss_ce: 0.0652, aux.acc_seg: 92.8004, loss: 0.2187 2024-06-17 01:06:53,031 - mmseg - INFO - Iter [59100/80000] lr: 8.464e-07, eta: 10:03:54, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1521, decode.acc_seg: 93.1236, aux.loss_ce: 0.0654, aux.acc_seg: 92.7856, loss: 0.2175 2024-06-17 01:08:13,437 - mmseg - INFO - Iter [59150/80000] lr: 8.444e-07, eta: 10:02:25, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1475, decode.acc_seg: 93.3105, aux.loss_ce: 0.0630, aux.acc_seg: 92.9597, loss: 0.2105 2024-06-17 01:09:33,884 - mmseg - INFO - Iter [59200/80000] lr: 8.424e-07, eta: 10:00:56, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1504, decode.acc_seg: 93.3148, aux.loss_ce: 0.0642, aux.acc_seg: 93.0402, loss: 0.2146 2024-06-17 01:10:54,335 - mmseg - INFO - Iter [59250/80000] lr: 8.404e-07, eta: 9:59:27, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1526, decode.acc_seg: 93.2436, aux.loss_ce: 0.0650, aux.acc_seg: 92.8801, loss: 0.2176 2024-06-17 01:12:14,844 - mmseg - INFO - Iter [59300/80000] lr: 8.383e-07, eta: 9:57:58, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1398, decode.acc_seg: 93.5127, aux.loss_ce: 0.0597, aux.acc_seg: 93.1920, loss: 0.1994 2024-06-17 01:13:35,321 - mmseg - INFO - Iter [59350/80000] lr: 8.363e-07, eta: 9:56:29, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1474, decode.acc_seg: 93.4269, aux.loss_ce: 0.0623, aux.acc_seg: 93.0825, loss: 0.2097 2024-06-17 01:14:57,823 - mmseg - INFO - Iter [59400/80000] lr: 8.343e-07, eta: 9:55:01, time: 1.650, data_time: 0.049, memory: 65790, decode.loss_ce: 0.1487, decode.acc_seg: 93.5701, aux.loss_ce: 0.0633, aux.acc_seg: 93.1875, loss: 0.2120 2024-06-17 01:16:18,192 - mmseg - INFO - Iter [59450/80000] lr: 8.323e-07, eta: 9:53:32, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1426, decode.acc_seg: 93.5429, aux.loss_ce: 0.0613, aux.acc_seg: 93.1321, loss: 0.2039 2024-06-17 01:17:38,622 - mmseg - INFO - Iter [59500/80000] lr: 8.302e-07, eta: 9:52:04, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1431, decode.acc_seg: 93.6101, aux.loss_ce: 0.0616, aux.acc_seg: 93.2654, loss: 0.2047 2024-06-17 01:18:59,009 - mmseg - INFO - Iter [59550/80000] lr: 8.282e-07, eta: 9:50:35, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1434, decode.acc_seg: 93.3308, aux.loss_ce: 0.0619, aux.acc_seg: 92.9256, loss: 0.2053 2024-06-17 01:20:19,405 - mmseg - INFO - Iter [59600/80000] lr: 8.262e-07, eta: 9:49:06, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1456, decode.acc_seg: 93.5834, aux.loss_ce: 0.0623, aux.acc_seg: 93.2428, loss: 0.2079 2024-06-17 01:21:39,775 - mmseg - INFO - Iter [59650/80000] lr: 8.242e-07, eta: 9:47:37, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1463, decode.acc_seg: 93.4807, aux.loss_ce: 0.0625, aux.acc_seg: 93.1601, loss: 0.2088 2024-06-17 01:23:00,193 - mmseg - INFO - Iter [59700/80000] lr: 8.221e-07, eta: 9:46:09, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1415, decode.acc_seg: 93.5017, aux.loss_ce: 0.0607, aux.acc_seg: 93.2310, loss: 0.2022 2024-06-17 01:24:20,661 - mmseg - INFO - Iter [59750/80000] lr: 8.201e-07, eta: 9:44:40, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1413, decode.acc_seg: 93.7369, aux.loss_ce: 0.0606, aux.acc_seg: 93.3594, loss: 0.2019 2024-06-17 01:25:41,791 - mmseg - INFO - Iter [59800/80000] lr: 8.181e-07, eta: 9:43:11, time: 1.623, data_time: 0.023, memory: 65790, decode.loss_ce: 0.1310, decode.acc_seg: 94.0930, aux.loss_ce: 0.0564, aux.acc_seg: 93.7430, loss: 0.1874 2024-06-17 01:27:02,191 - mmseg - INFO - Iter [59850/80000] lr: 8.161e-07, eta: 9:41:43, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1471, decode.acc_seg: 93.7072, aux.loss_ce: 0.0623, aux.acc_seg: 93.3864, loss: 0.2094 2024-06-17 01:28:22,556 - mmseg - INFO - Iter [59900/80000] lr: 8.140e-07, eta: 9:40:14, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1434, decode.acc_seg: 93.5323, aux.loss_ce: 0.0609, aux.acc_seg: 93.2055, loss: 0.2043 2024-06-17 01:29:42,921 - mmseg - INFO - Iter [59950/80000] lr: 8.120e-07, eta: 9:38:45, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1414, decode.acc_seg: 93.6481, aux.loss_ce: 0.0607, aux.acc_seg: 93.3279, loss: 0.2020 2024-06-17 01:31:03,350 - mmseg - INFO - Saving checkpoint at 60000 iterations 2024-06-17 01:32:15,687 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 01:32:15,688 - mmseg - INFO - Iter [60000/80000] lr: 8.100e-07, eta: 9:37:41, time: 3.055, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1486, decode.acc_seg: 93.3944, aux.loss_ce: 0.0640, aux.acc_seg: 93.0067, loss: 0.2126 2024-06-17 01:33:37,836 - mmseg - INFO - per class results: 2024-06-17 01:33:37,842 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.2 | 90.25 | | building | 85.01 | 92.99 | | sky | 94.81 | 97.39 | | floor | 84.24 | 92.34 | | tree | 77.88 | 89.71 | | ceiling | 87.35 | 93.19 | | road | 86.16 | 90.76 | | bed | 91.99 | 96.78 | | windowpane | 66.63 | 83.06 | | grass | 67.69 | 82.18 | | cabinet | 67.37 | 77.2 | | sidewalk | 71.65 | 86.27 | | person | 84.84 | 93.62 | | earth | 41.27 | 55.93 | | door | 60.9 | 73.68 | | table | 70.6 | 80.74 | | mountain | 62.98 | 73.33 | | plant | 55.57 | 68.07 | | curtain | 78.56 | 87.96 | | chair | 66.11 | 77.94 | | car | 87.63 | 93.98 | | water | 61.59 | 77.0 | | painting | 77.86 | 90.56 | | sofa | 83.52 | 91.61 | | shelf | 46.64 | 62.18 | | house | 51.32 | 67.75 | | sea | 68.53 | 81.09 | | mirror | 78.88 | 88.92 | | rug | 61.37 | 68.61 | | field | 32.07 | 52.33 | | armchair | 65.98 | 83.0 | | seat | 65.89 | 88.91 | | fence | 51.57 | 68.3 | | desk | 59.3 | 79.95 | | rock | 56.02 | 79.67 | | wardrobe | 52.81 | 72.56 | | lamp | 72.87 | 83.15 | | bathtub | 84.89 | 88.08 | | railing | 43.72 | 58.41 | | cushion | 69.33 | 83.6 | | base | 37.03 | 54.74 | | box | 42.47 | 54.12 | | column | 57.1 | 67.15 | | signboard | 39.28 | 54.9 | | chest of drawers | 43.94 | 66.29 | | counter | 35.0 | 39.07 | | sand | 61.69 | 85.48 | | sink | 78.57 | 85.54 | | skyscraper | 47.95 | 61.28 | | fireplace | 70.61 | 95.3 | | refrigerator | 87.06 | 96.22 | | grandstand | 52.59 | 85.42 | | path | 29.12 | 39.82 | | stairs | 27.87 | 33.24 | | runway | 74.13 | 95.44 | | case | 61.44 | 80.99 | | pool table | 94.12 | 98.04 | | pillow | 67.61 | 79.16 | | screen door | 81.97 | 88.31 | | stairway | 39.82 | 57.81 | | river | 13.8 | 27.66 | | bridge | 65.82 | 79.46 | | bookcase | 39.07 | 58.28 | | blind | 44.44 | 51.28 | | coffee table | 66.23 | 84.9 | | toilet | 89.94 | 94.1 | | flower | 40.55 | 56.58 | | book | 52.99 | 81.18 | | hill | 15.34 | 25.02 | | bench | 56.69 | 64.56 | | countertop | 64.72 | 79.86 | | stove | 86.92 | 92.64 | | palm | 54.74 | 77.29 | | kitchen island | 56.54 | 85.71 | | computer | 78.29 | 90.83 | | swivel chair | 45.68 | 69.82 | | boat | 77.82 | 91.9 | | bar | 59.5 | 82.02 | | arcade machine | 82.07 | 86.44 | | hovel | 25.83 | 28.83 | | bus | 91.64 | 97.31 | | towel | 75.6 | 83.99 | | light | 55.87 | 63.59 | | truck | 50.19 | 63.12 | | tower | 24.52 | 41.56 | | chandelier | 71.48 | 86.56 | | awning | 39.74 | 51.57 | | streetlight | 30.72 | 38.85 | | booth | 52.85 | 67.61 | | television receiver | 79.55 | 86.86 | | airplane | 87.32 | 94.21 | | dirt track | 7.29 | 28.24 | | apparel | 59.5 | 85.62 | | pole | 22.17 | 32.92 | | land | 3.93 | 5.24 | | bannister | 20.03 | 25.96 | | escalator | 66.22 | 87.26 | | ottoman | 55.23 | 70.37 | | bottle | 43.26 | 69.33 | | buffet | 66.44 | 76.21 | | poster | 28.73 | 38.83 | | stage | 25.85 | 48.78 | | van | 54.92 | 75.27 | | ship | 94.05 | 98.42 | | fountain | 38.03 | 39.97 | | conveyer belt | 81.78 | 95.08 | | canopy | 50.03 | 71.71 | | washer | 85.56 | 91.47 | | plaything | 33.17 | 45.33 | | swimming pool | 52.69 | 76.35 | | stool | 46.79 | 68.37 | | barrel | 59.93 | 74.27 | | basket | 43.89 | 56.98 | | waterfall | 56.32 | 65.85 | | tent | 94.77 | 98.96 | | bag | 25.89 | 29.53 | | minibike | 74.41 | 87.46 | | cradle | 83.83 | 98.47 | | oven | 60.25 | 72.58 | | ball | 60.16 | 65.19 | | food | 62.93 | 73.24 | | step | 11.22 | 15.24 | | tank | 63.12 | 67.78 | | trade name | 23.18 | 27.87 | | microwave | 90.47 | 95.93 | | pot | 60.43 | 68.55 | | animal | 60.94 | 62.76 | | bicycle | 60.23 | 78.65 | | lake | 53.94 | 63.63 | | dishwasher | 71.93 | 81.06 | | screen | 59.28 | 95.05 | | blanket | 35.03 | 45.91 | | sculpture | 69.75 | 85.76 | | hood | 60.9 | 71.65 | | sconce | 58.31 | 67.99 | | vase | 49.49 | 63.1 | | traffic light | 39.83 | 56.79 | | tray | 22.28 | 28.03 | | ashcan | 53.72 | 65.52 | | fan | 67.43 | 83.1 | | pier | 39.96 | 44.92 | | crt screen | 2.81 | 3.47 | | plate | 62.35 | 76.44 | | monitor | 67.27 | 77.16 | | bulletin board | 60.42 | 82.01 | | shower | 19.36 | 21.12 | | radiator | 66.23 | 82.4 | | glass | 20.96 | 22.42 | | clock | 49.09 | 60.62 | | flag | 67.39 | 72.98 | +---------------------+-------+-------+ 2024-06-17 01:33:37,842 - mmseg - INFO - Summary: 2024-06-17 01:33:37,842 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 86.16 | 57.91 | 70.44 | +-------+-------+-------+ 2024-06-17 01:33:37,843 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 01:33:37,843 - mmseg - INFO - Iter(val) [250] aAcc: 0.8616, mIoU: 0.5791, mAcc: 0.7044, IoU.wall: 0.8220, IoU.building: 0.8501, IoU.sky: 0.9481, IoU.floor: 0.8424, IoU.tree: 0.7788, IoU.ceiling: 0.8735, IoU.road: 0.8616, IoU.bed : 0.9199, IoU.windowpane: 0.6663, IoU.grass: 0.6769, IoU.cabinet: 0.6737, IoU.sidewalk: 0.7165, IoU.person: 0.8484, IoU.earth: 0.4127, IoU.door: 0.6090, IoU.table: 0.7060, IoU.mountain: 0.6298, IoU.plant: 0.5557, IoU.curtain: 0.7856, IoU.chair: 0.6611, IoU.car: 0.8763, IoU.water: 0.6159, IoU.painting: 0.7786, IoU.sofa: 0.8352, IoU.shelf: 0.4664, IoU.house: 0.5132, IoU.sea: 0.6853, IoU.mirror: 0.7888, IoU.rug: 0.6137, IoU.field: 0.3207, IoU.armchair: 0.6598, IoU.seat: 0.6589, IoU.fence: 0.5157, IoU.desk: 0.5930, IoU.rock: 0.5602, IoU.wardrobe: 0.5281, IoU.lamp: 0.7287, IoU.bathtub: 0.8489, IoU.railing: 0.4372, IoU.cushion: 0.6933, IoU.base: 0.3703, IoU.box: 0.4247, IoU.column: 0.5710, IoU.signboard: 0.3928, IoU.chest of drawers: 0.4394, IoU.counter: 0.3500, IoU.sand: 0.6169, IoU.sink: 0.7857, IoU.skyscraper: 0.4795, IoU.fireplace: 0.7061, IoU.refrigerator: 0.8706, IoU.grandstand: 0.5259, IoU.path: 0.2912, IoU.stairs: 0.2787, IoU.runway: 0.7413, IoU.case: 0.6144, IoU.pool table: 0.9412, IoU.pillow: 0.6761, IoU.screen door: 0.8197, IoU.stairway: 0.3982, IoU.river: 0.1380, IoU.bridge: 0.6582, IoU.bookcase: 0.3907, IoU.blind: 0.4444, IoU.coffee table: 0.6623, IoU.toilet: 0.8994, IoU.flower: 0.4055, IoU.book: 0.5299, IoU.hill: 0.1534, IoU.bench: 0.5669, IoU.countertop: 0.6472, IoU.stove: 0.8692, IoU.palm: 0.5474, IoU.kitchen island: 0.5654, IoU.computer: 0.7829, IoU.swivel chair: 0.4568, IoU.boat: 0.7782, IoU.bar: 0.5950, IoU.arcade machine: 0.8207, IoU.hovel: 0.2583, IoU.bus: 0.9164, IoU.towel: 0.7560, IoU.light: 0.5587, IoU.truck: 0.5019, IoU.tower: 0.2452, IoU.chandelier: 0.7148, IoU.awning: 0.3974, IoU.streetlight: 0.3072, IoU.booth: 0.5285, IoU.television receiver: 0.7955, IoU.airplane: 0.8732, IoU.dirt track: 0.0729, IoU.apparel: 0.5950, IoU.pole: 0.2217, IoU.land: 0.0393, IoU.bannister: 0.2003, IoU.escalator: 0.6622, IoU.ottoman: 0.5523, IoU.bottle: 0.4326, IoU.buffet: 0.6644, IoU.poster: 0.2873, IoU.stage: 0.2585, IoU.van: 0.5492, IoU.ship: 0.9405, IoU.fountain: 0.3803, IoU.conveyer belt: 0.8178, IoU.canopy: 0.5003, IoU.washer: 0.8556, IoU.plaything: 0.3317, IoU.swimming pool: 0.5269, IoU.stool: 0.4679, IoU.barrel: 0.5993, IoU.basket: 0.4389, IoU.waterfall: 0.5632, IoU.tent: 0.9477, IoU.bag: 0.2589, IoU.minibike: 0.7441, IoU.cradle: 0.8383, IoU.oven: 0.6025, IoU.ball: 0.6016, IoU.food: 0.6293, IoU.step: 0.1122, IoU.tank: 0.6312, IoU.trade name: 0.2318, IoU.microwave: 0.9047, IoU.pot: 0.6043, IoU.animal: 0.6094, IoU.bicycle: 0.6023, IoU.lake: 0.5394, IoU.dishwasher: 0.7193, IoU.screen: 0.5928, IoU.blanket: 0.3503, IoU.sculpture: 0.6975, IoU.hood: 0.6090, IoU.sconce: 0.5831, IoU.vase: 0.4949, IoU.traffic light: 0.3983, IoU.tray: 0.2228, IoU.ashcan: 0.5372, IoU.fan: 0.6743, IoU.pier: 0.3996, IoU.crt screen: 0.0281, IoU.plate: 0.6235, IoU.monitor: 0.6727, IoU.bulletin board: 0.6042, IoU.shower: 0.1936, IoU.radiator: 0.6623, IoU.glass: 0.2096, IoU.clock: 0.4909, IoU.flag: 0.6739, Acc.wall: 0.9025, Acc.building: 0.9299, Acc.sky: 0.9739, Acc.floor: 0.9234, Acc.tree: 0.8971, Acc.ceiling: 0.9319, Acc.road: 0.9076, Acc.bed : 0.9678, Acc.windowpane: 0.8306, Acc.grass: 0.8218, Acc.cabinet: 0.7720, Acc.sidewalk: 0.8627, Acc.person: 0.9362, Acc.earth: 0.5593, Acc.door: 0.7368, Acc.table: 0.8074, Acc.mountain: 0.7333, Acc.plant: 0.6807, Acc.curtain: 0.8796, Acc.chair: 0.7794, Acc.car: 0.9398, Acc.water: 0.7700, Acc.painting: 0.9056, Acc.sofa: 0.9161, Acc.shelf: 0.6218, Acc.house: 0.6775, Acc.sea: 0.8109, Acc.mirror: 0.8892, Acc.rug: 0.6861, Acc.field: 0.5233, Acc.armchair: 0.8300, Acc.seat: 0.8891, Acc.fence: 0.6830, Acc.desk: 0.7995, Acc.rock: 0.7967, Acc.wardrobe: 0.7256, Acc.lamp: 0.8315, Acc.bathtub: 0.8808, Acc.railing: 0.5841, Acc.cushion: 0.8360, Acc.base: 0.5474, Acc.box: 0.5412, Acc.column: 0.6715, Acc.signboard: 0.5490, Acc.chest of drawers: 0.6629, Acc.counter: 0.3907, Acc.sand: 0.8548, Acc.sink: 0.8554, Acc.skyscraper: 0.6128, Acc.fireplace: 0.9530, Acc.refrigerator: 0.9622, Acc.grandstand: 0.8542, Acc.path: 0.3982, Acc.stairs: 0.3324, Acc.runway: 0.9544, Acc.case: 0.8099, Acc.pool table: 0.9804, Acc.pillow: 0.7916, Acc.screen door: 0.8831, Acc.stairway: 0.5781, Acc.river: 0.2766, Acc.bridge: 0.7946, Acc.bookcase: 0.5828, Acc.blind: 0.5128, Acc.coffee table: 0.8490, Acc.toilet: 0.9410, Acc.flower: 0.5658, Acc.book: 0.8118, Acc.hill: 0.2502, Acc.bench: 0.6456, Acc.countertop: 0.7986, Acc.stove: 0.9264, Acc.palm: 0.7729, Acc.kitchen island: 0.8571, Acc.computer: 0.9083, Acc.swivel chair: 0.6982, Acc.boat: 0.9190, Acc.bar: 0.8202, Acc.arcade machine: 0.8644, Acc.hovel: 0.2883, Acc.bus: 0.9731, Acc.towel: 0.8399, Acc.light: 0.6359, Acc.truck: 0.6312, Acc.tower: 0.4156, Acc.chandelier: 0.8656, Acc.awning: 0.5157, Acc.streetlight: 0.3885, Acc.booth: 0.6761, Acc.television receiver: 0.8686, Acc.airplane: 0.9421, Acc.dirt track: 0.2824, Acc.apparel: 0.8562, Acc.pole: 0.3292, Acc.land: 0.0524, Acc.bannister: 0.2596, Acc.escalator: 0.8726, Acc.ottoman: 0.7037, Acc.bottle: 0.6933, Acc.buffet: 0.7621, Acc.poster: 0.3883, Acc.stage: 0.4878, Acc.van: 0.7527, Acc.ship: 0.9842, Acc.fountain: 0.3997, Acc.conveyer belt: 0.9508, Acc.canopy: 0.7171, Acc.washer: 0.9147, Acc.plaything: 0.4533, Acc.swimming pool: 0.7635, Acc.stool: 0.6837, Acc.barrel: 0.7427, Acc.basket: 0.5698, Acc.waterfall: 0.6585, Acc.tent: 0.9896, Acc.bag: 0.2953, Acc.minibike: 0.8746, Acc.cradle: 0.9847, Acc.oven: 0.7258, Acc.ball: 0.6519, Acc.food: 0.7324, Acc.step: 0.1524, Acc.tank: 0.6778, Acc.trade name: 0.2787, Acc.microwave: 0.9593, Acc.pot: 0.6855, Acc.animal: 0.6276, Acc.bicycle: 0.7865, Acc.lake: 0.6363, Acc.dishwasher: 0.8106, Acc.screen: 0.9505, Acc.blanket: 0.4591, Acc.sculpture: 0.8576, Acc.hood: 0.7165, Acc.sconce: 0.6799, Acc.vase: 0.6310, Acc.traffic light: 0.5679, Acc.tray: 0.2803, Acc.ashcan: 0.6552, Acc.fan: 0.8310, Acc.pier: 0.4492, Acc.crt screen: 0.0347, Acc.plate: 0.7644, Acc.monitor: 0.7716, Acc.bulletin board: 0.8201, Acc.shower: 0.2112, Acc.radiator: 0.8240, Acc.glass: 0.2242, Acc.clock: 0.6062, Acc.flag: 0.7298 2024-06-17 01:34:58,556 - mmseg - INFO - Iter [60050/80000] lr: 8.080e-07, eta: 9:36:39, time: 3.257, data_time: 1.656, memory: 65790, decode.loss_ce: 0.1413, decode.acc_seg: 93.6521, aux.loss_ce: 0.0605, aux.acc_seg: 93.3314, loss: 0.2018 2024-06-17 01:36:18,936 - mmseg - INFO - Iter [60100/80000] lr: 8.059e-07, eta: 9:35:11, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1422, decode.acc_seg: 93.5012, aux.loss_ce: 0.0617, aux.acc_seg: 93.0952, loss: 0.2039 2024-06-17 01:37:39,355 - mmseg - INFO - Iter [60150/80000] lr: 8.039e-07, eta: 9:33:42, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1465, decode.acc_seg: 93.5640, aux.loss_ce: 0.0634, aux.acc_seg: 93.1176, loss: 0.2099 2024-06-17 01:38:59,805 - mmseg - INFO - Iter [60200/80000] lr: 8.019e-07, eta: 9:32:13, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1389, decode.acc_seg: 93.7075, aux.loss_ce: 0.0598, aux.acc_seg: 93.3266, loss: 0.1987 2024-06-17 01:40:20,156 - mmseg - INFO - Iter [60250/80000] lr: 7.999e-07, eta: 9:30:44, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1414, decode.acc_seg: 93.7076, aux.loss_ce: 0.0614, aux.acc_seg: 93.3246, loss: 0.2028 2024-06-17 01:41:40,573 - mmseg - INFO - Iter [60300/80000] lr: 7.978e-07, eta: 9:29:15, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1404, decode.acc_seg: 93.7514, aux.loss_ce: 0.0604, aux.acc_seg: 93.3631, loss: 0.2008 2024-06-17 01:43:00,962 - mmseg - INFO - Iter [60350/80000] lr: 7.958e-07, eta: 9:27:47, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1385, decode.acc_seg: 93.7271, aux.loss_ce: 0.0589, aux.acc_seg: 93.4124, loss: 0.1974 2024-06-17 01:44:21,316 - mmseg - INFO - Iter [60400/80000] lr: 7.938e-07, eta: 9:26:18, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1385, decode.acc_seg: 93.8361, aux.loss_ce: 0.0600, aux.acc_seg: 93.4539, loss: 0.1984 2024-06-17 01:45:41,755 - mmseg - INFO - Iter [60450/80000] lr: 7.918e-07, eta: 9:24:49, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1477, decode.acc_seg: 93.3810, aux.loss_ce: 0.0631, aux.acc_seg: 93.0456, loss: 0.2108 2024-06-17 01:47:02,113 - mmseg - INFO - Iter [60500/80000] lr: 7.897e-07, eta: 9:23:21, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1562, decode.acc_seg: 93.0546, aux.loss_ce: 0.0670, aux.acc_seg: 92.6847, loss: 0.2232 2024-06-17 01:48:22,467 - mmseg - INFO - Iter [60550/80000] lr: 7.877e-07, eta: 9:21:52, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1422, decode.acc_seg: 93.6439, aux.loss_ce: 0.0608, aux.acc_seg: 93.3433, loss: 0.2030 2024-06-17 01:49:42,921 - mmseg - INFO - Iter [60600/80000] lr: 7.857e-07, eta: 9:20:23, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1508, decode.acc_seg: 93.1338, aux.loss_ce: 0.0647, aux.acc_seg: 92.7788, loss: 0.2155 2024-06-17 01:51:05,450 - mmseg - INFO - Iter [60650/80000] lr: 7.837e-07, eta: 9:18:55, time: 1.651, data_time: 0.049, memory: 65790, decode.loss_ce: 0.1323, decode.acc_seg: 93.8506, aux.loss_ce: 0.0575, aux.acc_seg: 93.3871, loss: 0.1898 2024-06-17 01:52:25,834 - mmseg - INFO - Iter [60700/80000] lr: 7.816e-07, eta: 9:17:27, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1394, decode.acc_seg: 93.6487, aux.loss_ce: 0.0599, aux.acc_seg: 93.3007, loss: 0.1993 2024-06-17 01:53:46,170 - mmseg - INFO - Iter [60750/80000] lr: 7.796e-07, eta: 9:15:58, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1366, decode.acc_seg: 93.7030, aux.loss_ce: 0.0591, aux.acc_seg: 93.3133, loss: 0.1957 2024-06-17 01:55:06,566 - mmseg - INFO - Iter [60800/80000] lr: 7.776e-07, eta: 9:14:29, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1442, decode.acc_seg: 93.5383, aux.loss_ce: 0.0620, aux.acc_seg: 93.2046, loss: 0.2062 2024-06-17 01:56:26,932 - mmseg - INFO - Iter [60850/80000] lr: 7.756e-07, eta: 9:13:01, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1371, decode.acc_seg: 93.7360, aux.loss_ce: 0.0593, aux.acc_seg: 93.3432, loss: 0.1964 2024-06-17 01:57:47,370 - mmseg - INFO - Iter [60900/80000] lr: 7.735e-07, eta: 9:11:32, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1408, decode.acc_seg: 93.6851, aux.loss_ce: 0.0611, aux.acc_seg: 93.2691, loss: 0.2019 2024-06-17 01:59:07,714 - mmseg - INFO - Iter [60950/80000] lr: 7.715e-07, eta: 9:10:04, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1413, decode.acc_seg: 93.8482, aux.loss_ce: 0.0611, aux.acc_seg: 93.4094, loss: 0.2023 2024-06-17 02:00:28,083 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 02:00:28,083 - mmseg - INFO - Iter [61000/80000] lr: 7.695e-07, eta: 9:08:35, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1412, decode.acc_seg: 93.9033, aux.loss_ce: 0.0603, aux.acc_seg: 93.5670, loss: 0.2015 2024-06-17 02:01:49,790 - mmseg - INFO - per class results: 2024-06-17 02:01:49,796 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.18 | 89.7 | | building | 85.0 | 92.91 | | sky | 94.82 | 97.72 | | floor | 84.28 | 92.47 | | tree | 77.73 | 88.86 | | ceiling | 87.42 | 94.01 | | road | 86.37 | 90.52 | | bed | 92.1 | 96.81 | | windowpane | 66.21 | 83.51 | | grass | 67.25 | 83.44 | | cabinet | 66.14 | 75.05 | | sidewalk | 71.64 | 87.09 | | person | 85.13 | 93.9 | | earth | 40.98 | 52.87 | | door | 58.74 | 72.97 | | table | 69.28 | 79.52 | | mountain | 61.73 | 71.78 | | plant | 55.88 | 68.09 | | curtain | 77.3 | 86.64 | | chair | 65.8 | 76.96 | | car | 87.22 | 94.03 | | water | 63.95 | 79.56 | | painting | 78.65 | 89.85 | | sofa | 83.22 | 91.8 | | shelf | 48.69 | 68.32 | | house | 53.01 | 72.07 | | sea | 74.32 | 82.74 | | mirror | 77.55 | 84.83 | | rug | 58.62 | 64.37 | | field | 32.03 | 56.51 | | armchair | 65.56 | 80.68 | | seat | 65.37 | 88.86 | | fence | 51.59 | 66.55 | | desk | 59.98 | 78.16 | | rock | 54.71 | 85.39 | | wardrobe | 53.12 | 76.42 | | lamp | 73.36 | 83.09 | | bathtub | 85.04 | 88.25 | | railing | 43.24 | 59.34 | | cushion | 69.32 | 82.27 | | base | 39.06 | 59.93 | | box | 40.31 | 52.4 | | column | 57.4 | 67.81 | | signboard | 39.07 | 53.29 | | chest of drawers | 45.93 | 74.55 | | counter | 42.1 | 51.88 | | sand | 57.5 | 88.12 | | sink | 77.88 | 83.76 | | skyscraper | 48.16 | 62.27 | | fireplace | 73.61 | 94.61 | | refrigerator | 87.1 | 95.49 | | grandstand | 54.67 | 85.88 | | path | 30.84 | 38.44 | | stairs | 28.08 | 33.47 | | runway | 73.79 | 96.53 | | case | 60.84 | 79.48 | | pool table | 94.39 | 97.77 | | pillow | 66.09 | 76.37 | | screen door | 63.45 | 64.23 | | stairway | 43.91 | 63.97 | | river | 14.26 | 29.06 | | bridge | 70.09 | 86.55 | | bookcase | 46.58 | 62.77 | | blind | 39.75 | 43.33 | | coffee table | 64.03 | 85.96 | | toilet | 89.84 | 93.36 | | flower | 42.58 | 60.74 | | book | 54.12 | 77.26 | | hill | 12.83 | 21.44 | | bench | 57.6 | 64.52 | | countertop | 64.54 | 83.12 | | stove | 86.68 | 92.91 | | palm | 54.67 | 79.17 | | kitchen island | 52.54 | 91.49 | | computer | 78.88 | 90.1 | | swivel chair | 46.68 | 75.24 | | boat | 80.51 | 90.69 | | bar | 60.59 | 88.31 | | arcade machine | 84.66 | 88.84 | | hovel | 40.79 | 47.89 | | bus | 91.47 | 97.44 | | towel | 75.23 | 80.86 | | light | 56.36 | 66.04 | | truck | 49.18 | 63.48 | | tower | 33.11 | 61.13 | | chandelier | 71.37 | 86.51 | | awning | 34.71 | 44.28 | | streetlight | 31.86 | 42.67 | | booth | 52.2 | 71.86 | | television receiver | 80.89 | 90.33 | | airplane | 86.97 | 93.06 | | dirt track | 6.48 | 27.2 | | apparel | 60.27 | 78.58 | | pole | 24.38 | 34.69 | | land | 4.89 | 6.85 | | bannister | 17.59 | 22.34 | | escalator | 65.18 | 87.99 | | ottoman | 54.48 | 71.61 | | bottle | 44.09 | 66.0 | | buffet | 64.05 | 71.94 | | poster | 29.69 | 37.05 | | stage | 22.68 | 50.43 | | van | 51.5 | 75.13 | | ship | 94.06 | 97.9 | | fountain | 37.02 | 40.02 | | conveyer belt | 81.25 | 95.87 | | canopy | 50.25 | 71.08 | | washer | 81.94 | 87.31 | | plaything | 32.02 | 43.27 | | swimming pool | 53.49 | 77.44 | | stool | 46.68 | 65.92 | | barrel | 61.29 | 83.25 | | basket | 43.53 | 57.16 | | waterfall | 66.82 | 80.57 | | tent | 91.78 | 98.79 | | bag | 23.51 | 25.83 | | minibike | 74.93 | 87.4 | | cradle | 83.38 | 96.94 | | oven | 58.82 | 70.7 | | ball | 63.81 | 71.33 | | food | 60.53 | 70.74 | | step | 12.94 | 16.11 | | tank | 66.84 | 75.9 | | trade name | 25.43 | 31.03 | | microwave | 89.96 | 96.28 | | pot | 61.3 | 69.62 | | animal | 65.25 | 67.49 | | bicycle | 59.45 | 82.55 | | lake | 53.95 | 63.68 | | dishwasher | 73.83 | 81.0 | | screen | 49.88 | 74.81 | | blanket | 33.35 | 37.38 | | sculpture | 68.82 | 85.78 | | hood | 61.33 | 73.4 | | sconce | 58.07 | 66.32 | | vase | 48.77 | 64.17 | | traffic light | 39.13 | 60.41 | | tray | 22.5 | 27.75 | | ashcan | 53.8 | 68.09 | | fan | 67.95 | 83.32 | | pier | 39.12 | 44.71 | | crt screen | 9.36 | 15.57 | | plate | 62.26 | 77.65 | | monitor | 65.04 | 81.19 | | bulletin board | 61.72 | 77.57 | | shower | 17.12 | 21.63 | | radiator | 68.67 | 78.18 | | glass | 19.79 | 20.98 | | clock | 50.57 | 60.77 | | flag | 69.74 | 77.05 | +---------------------+-------+-------+ 2024-06-17 02:01:49,796 - mmseg - INFO - Summary: 2024-06-17 02:01:49,796 - mmseg - INFO - +------+-------+------+ | aAcc | mIoU | mAcc | +------+-------+------+ | 86.1 | 58.07 | 71.0 | +------+-------+------+ 2024-06-17 02:01:49,797 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 02:01:49,797 - mmseg - INFO - Iter(val) [250] aAcc: 0.8610, mIoU: 0.5807, mAcc: 0.7100, IoU.wall: 0.8218, IoU.building: 0.8500, IoU.sky: 0.9482, IoU.floor: 0.8428, IoU.tree: 0.7773, IoU.ceiling: 0.8742, IoU.road: 0.8637, IoU.bed : 0.9210, IoU.windowpane: 0.6621, IoU.grass: 0.6725, IoU.cabinet: 0.6614, IoU.sidewalk: 0.7164, IoU.person: 0.8513, IoU.earth: 0.4098, IoU.door: 0.5874, IoU.table: 0.6928, IoU.mountain: 0.6173, IoU.plant: 0.5588, IoU.curtain: 0.7730, IoU.chair: 0.6580, IoU.car: 0.8722, IoU.water: 0.6395, IoU.painting: 0.7865, IoU.sofa: 0.8322, IoU.shelf: 0.4869, IoU.house: 0.5301, IoU.sea: 0.7432, IoU.mirror: 0.7755, IoU.rug: 0.5862, IoU.field: 0.3203, IoU.armchair: 0.6556, IoU.seat: 0.6537, IoU.fence: 0.5159, IoU.desk: 0.5998, IoU.rock: 0.5471, IoU.wardrobe: 0.5312, IoU.lamp: 0.7336, IoU.bathtub: 0.8504, IoU.railing: 0.4324, IoU.cushion: 0.6932, IoU.base: 0.3906, IoU.box: 0.4031, IoU.column: 0.5740, IoU.signboard: 0.3907, IoU.chest of drawers: 0.4593, IoU.counter: 0.4210, IoU.sand: 0.5750, IoU.sink: 0.7788, IoU.skyscraper: 0.4816, IoU.fireplace: 0.7361, IoU.refrigerator: 0.8710, IoU.grandstand: 0.5467, IoU.path: 0.3084, IoU.stairs: 0.2808, IoU.runway: 0.7379, IoU.case: 0.6084, IoU.pool table: 0.9439, IoU.pillow: 0.6609, IoU.screen door: 0.6345, IoU.stairway: 0.4391, IoU.river: 0.1426, IoU.bridge: 0.7009, IoU.bookcase: 0.4658, IoU.blind: 0.3975, IoU.coffee table: 0.6403, IoU.toilet: 0.8984, IoU.flower: 0.4258, IoU.book: 0.5412, IoU.hill: 0.1283, IoU.bench: 0.5760, IoU.countertop: 0.6454, IoU.stove: 0.8668, IoU.palm: 0.5467, IoU.kitchen island: 0.5254, IoU.computer: 0.7888, IoU.swivel chair: 0.4668, IoU.boat: 0.8051, IoU.bar: 0.6059, IoU.arcade machine: 0.8466, IoU.hovel: 0.4079, IoU.bus: 0.9147, IoU.towel: 0.7523, IoU.light: 0.5636, IoU.truck: 0.4918, IoU.tower: 0.3311, IoU.chandelier: 0.7137, IoU.awning: 0.3471, IoU.streetlight: 0.3186, IoU.booth: 0.5220, IoU.television receiver: 0.8089, IoU.airplane: 0.8697, IoU.dirt track: 0.0648, IoU.apparel: 0.6027, IoU.pole: 0.2438, IoU.land: 0.0489, IoU.bannister: 0.1759, IoU.escalator: 0.6518, IoU.ottoman: 0.5448, IoU.bottle: 0.4409, IoU.buffet: 0.6405, IoU.poster: 0.2969, IoU.stage: 0.2268, IoU.van: 0.5150, IoU.ship: 0.9406, IoU.fountain: 0.3702, IoU.conveyer belt: 0.8125, IoU.canopy: 0.5025, IoU.washer: 0.8194, IoU.plaything: 0.3202, IoU.swimming pool: 0.5349, IoU.stool: 0.4668, IoU.barrel: 0.6129, IoU.basket: 0.4353, IoU.waterfall: 0.6682, IoU.tent: 0.9178, IoU.bag: 0.2351, IoU.minibike: 0.7493, IoU.cradle: 0.8338, IoU.oven: 0.5882, IoU.ball: 0.6381, IoU.food: 0.6053, IoU.step: 0.1294, IoU.tank: 0.6684, IoU.trade name: 0.2543, IoU.microwave: 0.8996, IoU.pot: 0.6130, IoU.animal: 0.6525, IoU.bicycle: 0.5945, IoU.lake: 0.5395, IoU.dishwasher: 0.7383, IoU.screen: 0.4988, IoU.blanket: 0.3335, IoU.sculpture: 0.6882, IoU.hood: 0.6133, IoU.sconce: 0.5807, IoU.vase: 0.4877, IoU.traffic light: 0.3913, IoU.tray: 0.2250, IoU.ashcan: 0.5380, IoU.fan: 0.6795, IoU.pier: 0.3912, IoU.crt screen: 0.0936, IoU.plate: 0.6226, IoU.monitor: 0.6504, IoU.bulletin board: 0.6172, IoU.shower: 0.1712, IoU.radiator: 0.6867, IoU.glass: 0.1979, IoU.clock: 0.5057, IoU.flag: 0.6974, Acc.wall: 0.8970, Acc.building: 0.9291, Acc.sky: 0.9772, Acc.floor: 0.9247, Acc.tree: 0.8886, Acc.ceiling: 0.9401, Acc.road: 0.9052, Acc.bed : 0.9681, Acc.windowpane: 0.8351, Acc.grass: 0.8344, Acc.cabinet: 0.7505, Acc.sidewalk: 0.8709, Acc.person: 0.9390, Acc.earth: 0.5287, Acc.door: 0.7297, Acc.table: 0.7952, Acc.mountain: 0.7178, Acc.plant: 0.6809, Acc.curtain: 0.8664, Acc.chair: 0.7696, Acc.car: 0.9403, Acc.water: 0.7956, Acc.painting: 0.8985, Acc.sofa: 0.9180, Acc.shelf: 0.6832, Acc.house: 0.7207, Acc.sea: 0.8274, Acc.mirror: 0.8483, Acc.rug: 0.6437, Acc.field: 0.5651, Acc.armchair: 0.8068, Acc.seat: 0.8886, Acc.fence: 0.6655, Acc.desk: 0.7816, Acc.rock: 0.8539, Acc.wardrobe: 0.7642, Acc.lamp: 0.8309, Acc.bathtub: 0.8825, Acc.railing: 0.5934, Acc.cushion: 0.8227, Acc.base: 0.5993, Acc.box: 0.5240, Acc.column: 0.6781, Acc.signboard: 0.5329, Acc.chest of drawers: 0.7455, Acc.counter: 0.5188, Acc.sand: 0.8812, Acc.sink: 0.8376, Acc.skyscraper: 0.6227, Acc.fireplace: 0.9461, Acc.refrigerator: 0.9549, Acc.grandstand: 0.8588, Acc.path: 0.3844, Acc.stairs: 0.3347, Acc.runway: 0.9653, Acc.case: 0.7948, Acc.pool table: 0.9777, Acc.pillow: 0.7637, Acc.screen door: 0.6423, Acc.stairway: 0.6397, Acc.river: 0.2906, Acc.bridge: 0.8655, Acc.bookcase: 0.6277, Acc.blind: 0.4333, Acc.coffee table: 0.8596, Acc.toilet: 0.9336, Acc.flower: 0.6074, Acc.book: 0.7726, Acc.hill: 0.2144, Acc.bench: 0.6452, Acc.countertop: 0.8312, Acc.stove: 0.9291, Acc.palm: 0.7917, Acc.kitchen island: 0.9149, Acc.computer: 0.9010, Acc.swivel chair: 0.7524, Acc.boat: 0.9069, Acc.bar: 0.8831, Acc.arcade machine: 0.8884, Acc.hovel: 0.4789, Acc.bus: 0.9744, Acc.towel: 0.8086, Acc.light: 0.6604, Acc.truck: 0.6348, Acc.tower: 0.6113, Acc.chandelier: 0.8651, Acc.awning: 0.4428, Acc.streetlight: 0.4267, Acc.booth: 0.7186, Acc.television receiver: 0.9033, Acc.airplane: 0.9306, Acc.dirt track: 0.2720, Acc.apparel: 0.7858, Acc.pole: 0.3469, Acc.land: 0.0685, Acc.bannister: 0.2234, Acc.escalator: 0.8799, Acc.ottoman: 0.7161, Acc.bottle: 0.6600, Acc.buffet: 0.7194, Acc.poster: 0.3705, Acc.stage: 0.5043, Acc.van: 0.7513, Acc.ship: 0.9790, Acc.fountain: 0.4002, Acc.conveyer belt: 0.9587, Acc.canopy: 0.7108, Acc.washer: 0.8731, Acc.plaything: 0.4327, Acc.swimming pool: 0.7744, Acc.stool: 0.6592, Acc.barrel: 0.8325, Acc.basket: 0.5716, Acc.waterfall: 0.8057, Acc.tent: 0.9879, Acc.bag: 0.2583, Acc.minibike: 0.8740, Acc.cradle: 0.9694, Acc.oven: 0.7070, Acc.ball: 0.7133, Acc.food: 0.7074, Acc.step: 0.1611, Acc.tank: 0.7590, Acc.trade name: 0.3103, Acc.microwave: 0.9628, Acc.pot: 0.6962, Acc.animal: 0.6749, Acc.bicycle: 0.8255, Acc.lake: 0.6368, Acc.dishwasher: 0.8100, Acc.screen: 0.7481, Acc.blanket: 0.3738, Acc.sculpture: 0.8578, Acc.hood: 0.7340, Acc.sconce: 0.6632, Acc.vase: 0.6417, Acc.traffic light: 0.6041, Acc.tray: 0.2775, Acc.ashcan: 0.6809, Acc.fan: 0.8332, Acc.pier: 0.4471, Acc.crt screen: 0.1557, Acc.plate: 0.7765, Acc.monitor: 0.8119, Acc.bulletin board: 0.7757, Acc.shower: 0.2163, Acc.radiator: 0.7818, Acc.glass: 0.2098, Acc.clock: 0.6077, Acc.flag: 0.7705 2024-06-17 02:03:10,680 - mmseg - INFO - Iter [61050/80000] lr: 7.675e-07, eta: 9:07:32, time: 3.252, data_time: 1.648, memory: 65790, decode.loss_ce: 0.1473, decode.acc_seg: 93.4233, aux.loss_ce: 0.0629, aux.acc_seg: 93.0650, loss: 0.2102 2024-06-17 02:04:31,055 - mmseg - INFO - Iter [61100/80000] lr: 7.654e-07, eta: 9:06:03, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1459, decode.acc_seg: 93.4388, aux.loss_ce: 0.0632, aux.acc_seg: 93.0064, loss: 0.2091 2024-06-17 02:05:51,441 - mmseg - INFO - Iter [61150/80000] lr: 7.634e-07, eta: 9:04:35, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1441, decode.acc_seg: 93.5346, aux.loss_ce: 0.0620, aux.acc_seg: 93.1532, loss: 0.2061 2024-06-17 02:07:11,965 - mmseg - INFO - Iter [61200/80000] lr: 7.614e-07, eta: 9:03:06, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1443, decode.acc_seg: 93.4850, aux.loss_ce: 0.0617, aux.acc_seg: 93.1181, loss: 0.2060 2024-06-17 02:08:32,419 - mmseg - INFO - Iter [61250/80000] lr: 7.594e-07, eta: 9:01:38, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1397, decode.acc_seg: 93.7911, aux.loss_ce: 0.0595, aux.acc_seg: 93.4591, loss: 0.1992 2024-06-17 02:09:53,028 - mmseg - INFO - Iter [61300/80000] lr: 7.573e-07, eta: 9:00:09, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1414, decode.acc_seg: 93.6404, aux.loss_ce: 0.0608, aux.acc_seg: 93.2238, loss: 0.2022 2024-06-17 02:11:13,575 - mmseg - INFO - Iter [61350/80000] lr: 7.553e-07, eta: 8:58:41, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1436, decode.acc_seg: 93.6191, aux.loss_ce: 0.0616, aux.acc_seg: 93.2509, loss: 0.2053 2024-06-17 02:12:34,138 - mmseg - INFO - Iter [61400/80000] lr: 7.533e-07, eta: 8:57:12, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1422, decode.acc_seg: 93.7138, aux.loss_ce: 0.0611, aux.acc_seg: 93.3541, loss: 0.2033 2024-06-17 02:13:54,581 - mmseg - INFO - Iter [61450/80000] lr: 7.513e-07, eta: 8:55:44, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1392, decode.acc_seg: 93.6289, aux.loss_ce: 0.0600, aux.acc_seg: 93.2869, loss: 0.1992 2024-06-17 02:15:15,165 - mmseg - INFO - Iter [61500/80000] lr: 7.492e-07, eta: 8:54:15, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1490, decode.acc_seg: 93.4282, aux.loss_ce: 0.0640, aux.acc_seg: 93.0876, loss: 0.2131 2024-06-17 02:16:35,711 - mmseg - INFO - Iter [61550/80000] lr: 7.472e-07, eta: 8:52:47, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1421, decode.acc_seg: 93.7816, aux.loss_ce: 0.0604, aux.acc_seg: 93.4653, loss: 0.2025 2024-06-17 02:17:56,143 - mmseg - INFO - Iter [61600/80000] lr: 7.452e-07, eta: 8:51:18, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1375, decode.acc_seg: 93.7855, aux.loss_ce: 0.0592, aux.acc_seg: 93.4169, loss: 0.1967 2024-06-17 02:19:16,751 - mmseg - INFO - Iter [61650/80000] lr: 7.432e-07, eta: 8:49:50, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1466, decode.acc_seg: 93.4003, aux.loss_ce: 0.0627, aux.acc_seg: 93.0443, loss: 0.2094 2024-06-17 02:20:37,291 - mmseg - INFO - Iter [61700/80000] lr: 7.411e-07, eta: 8:48:21, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1537, decode.acc_seg: 93.3577, aux.loss_ce: 0.0661, aux.acc_seg: 93.0099, loss: 0.2198 2024-06-17 02:21:57,779 - mmseg - INFO - Iter [61750/80000] lr: 7.391e-07, eta: 8:46:53, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1397, decode.acc_seg: 93.6083, aux.loss_ce: 0.0604, aux.acc_seg: 93.3046, loss: 0.2001 2024-06-17 02:23:18,327 - mmseg - INFO - Iter [61800/80000] lr: 7.371e-07, eta: 8:45:24, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1369, decode.acc_seg: 93.9122, aux.loss_ce: 0.0589, aux.acc_seg: 93.5618, loss: 0.1959 2024-06-17 02:24:38,881 - mmseg - INFO - Iter [61850/80000] lr: 7.351e-07, eta: 8:43:56, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1320, decode.acc_seg: 93.9431, aux.loss_ce: 0.0569, aux.acc_seg: 93.5814, loss: 0.1889 2024-06-17 02:26:01,774 - mmseg - INFO - Iter [61900/80000] lr: 7.330e-07, eta: 8:42:28, time: 1.658, data_time: 0.054, memory: 65790, decode.loss_ce: 0.1388, decode.acc_seg: 93.7167, aux.loss_ce: 0.0591, aux.acc_seg: 93.3796, loss: 0.1980 2024-06-17 02:27:22,268 - mmseg - INFO - Iter [61950/80000] lr: 7.310e-07, eta: 8:41:00, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1362, decode.acc_seg: 93.9762, aux.loss_ce: 0.0587, aux.acc_seg: 93.6429, loss: 0.1948 2024-06-17 02:28:42,723 - mmseg - INFO - Saving checkpoint at 62000 iterations 2024-06-17 02:29:54,815 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 02:29:54,816 - mmseg - INFO - Iter [62000/80000] lr: 7.290e-07, eta: 8:39:53, time: 3.051, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1406, decode.acc_seg: 93.5887, aux.loss_ce: 0.0609, aux.acc_seg: 93.2233, loss: 0.2016 2024-06-17 02:31:17,376 - mmseg - INFO - per class results: 2024-06-17 02:31:17,383 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.09 | 89.63 | | building | 84.42 | 93.52 | | sky | 94.83 | 97.49 | | floor | 84.3 | 91.63 | | tree | 77.68 | 89.75 | | ceiling | 87.55 | 93.76 | | road | 85.72 | 91.21 | | bed | 91.95 | 96.6 | | windowpane | 66.74 | 82.97 | | grass | 67.56 | 81.59 | | cabinet | 67.29 | 75.24 | | sidewalk | 71.19 | 84.91 | | person | 84.93 | 93.58 | | earth | 42.12 | 55.63 | | door | 60.17 | 73.57 | | table | 71.06 | 82.93 | | mountain | 63.23 | 72.16 | | plant | 55.87 | 69.23 | | curtain | 77.28 | 88.21 | | chair | 66.53 | 78.43 | | car | 87.01 | 94.22 | | water | 65.51 | 81.98 | | painting | 79.84 | 89.7 | | sofa | 83.54 | 92.28 | | shelf | 47.9 | 65.2 | | house | 46.33 | 56.56 | | sea | 78.07 | 85.79 | | mirror | 78.37 | 89.67 | | rug | 59.62 | 67.18 | | field | 30.57 | 53.54 | | armchair | 65.66 | 81.8 | | seat | 65.94 | 88.63 | | fence | 52.83 | 64.67 | | desk | 59.95 | 78.34 | | rock | 57.83 | 84.93 | | wardrobe | 54.83 | 73.43 | | lamp | 73.23 | 85.06 | | bathtub | 85.23 | 89.09 | | railing | 43.6 | 61.24 | | cushion | 69.67 | 83.24 | | base | 40.49 | 57.72 | | box | 40.5 | 53.27 | | column | 57.94 | 66.46 | | signboard | 39.67 | 57.65 | | chest of drawers | 50.29 | 82.17 | | counter | 43.52 | 52.53 | | sand | 57.77 | 84.48 | | sink | 79.79 | 86.79 | | skyscraper | 47.04 | 60.41 | | fireplace | 72.13 | 94.29 | | refrigerator | 85.73 | 95.83 | | grandstand | 51.57 | 84.38 | | path | 30.85 | 40.13 | | stairs | 34.72 | 42.1 | | runway | 73.22 | 93.9 | | case | 60.28 | 81.53 | | pool table | 94.32 | 97.84 | | pillow | 67.22 | 78.51 | | screen door | 78.07 | 81.7 | | stairway | 50.1 | 60.57 | | river | 14.98 | 25.97 | | bridge | 68.97 | 86.66 | | bookcase | 43.23 | 56.65 | | blind | 42.7 | 49.28 | | coffee table | 64.83 | 85.07 | | toilet | 90.02 | 94.44 | | flower | 44.88 | 59.91 | | book | 52.59 | 79.88 | | hill | 9.85 | 17.25 | | bench | 57.66 | 66.34 | | countertop | 62.1 | 85.0 | | stove | 86.46 | 94.0 | | palm | 54.3 | 79.8 | | kitchen island | 50.84 | 88.91 | | computer | 78.15 | 91.1 | | swivel chair | 46.64 | 75.59 | | boat | 80.74 | 91.64 | | bar | 58.84 | 82.51 | | arcade machine | 81.31 | 85.08 | | hovel | 29.49 | 32.16 | | bus | 92.55 | 96.76 | | towel | 76.48 | 84.17 | | light | 55.97 | 62.95 | | truck | 49.63 | 64.3 | | tower | 14.45 | 23.71 | | chandelier | 71.24 | 82.82 | | awning | 34.33 | 42.66 | | streetlight | 32.1 | 42.89 | | booth | 47.93 | 65.32 | | television receiver | 81.34 | 91.21 | | airplane | 85.42 | 94.61 | | dirt track | 6.39 | 29.04 | | apparel | 61.23 | 79.31 | | pole | 25.04 | 34.77 | | land | 4.82 | 7.4 | | bannister | 16.97 | 21.15 | | escalator | 66.68 | 88.04 | | ottoman | 56.85 | 71.62 | | bottle | 43.27 | 73.19 | | buffet | 65.74 | 76.08 | | poster | 31.27 | 37.1 | | stage | 24.18 | 49.53 | | van | 49.21 | 63.93 | | ship | 92.96 | 98.15 | | fountain | 39.31 | 40.53 | | conveyer belt | 81.72 | 96.05 | | canopy | 47.54 | 64.78 | | washer | 83.61 | 89.76 | | plaything | 32.24 | 47.85 | | swimming pool | 52.93 | 76.48 | | stool | 52.3 | 68.6 | | barrel | 48.68 | 84.69 | | basket | 42.58 | 59.79 | | waterfall | 63.86 | 81.93 | | tent | 96.33 | 98.32 | | bag | 28.05 | 33.27 | | minibike | 73.43 | 89.47 | | cradle | 82.8 | 98.21 | | oven | 58.66 | 69.99 | | ball | 59.66 | 64.91 | | food | 57.55 | 64.1 | | step | 10.65 | 14.28 | | tank | 60.28 | 67.88 | | trade name | 21.53 | 24.82 | | microwave | 89.48 | 97.11 | | pot | 60.06 | 72.17 | | animal | 63.36 | 65.75 | | bicycle | 59.61 | 83.21 | | lake | 54.71 | 63.63 | | dishwasher | 72.36 | 80.93 | | screen | 50.58 | 75.48 | | blanket | 33.99 | 40.76 | | sculpture | 71.15 | 86.44 | | hood | 61.87 | 73.87 | | sconce | 59.03 | 69.73 | | vase | 48.48 | 65.57 | | traffic light | 38.78 | 64.19 | | tray | 27.09 | 38.47 | | ashcan | 54.11 | 68.93 | | fan | 66.63 | 81.48 | | pier | 40.05 | 44.66 | | crt screen | 11.95 | 23.57 | | plate | 61.1 | 79.67 | | monitor | 60.16 | 70.82 | | bulletin board | 54.45 | 81.37 | | shower | 20.34 | 21.78 | | radiator | 67.81 | 81.8 | | glass | 23.52 | 26.6 | | clock | 50.58 | 62.74 | | flag | 68.99 | 75.15 | +---------------------+-------+-------+ 2024-06-17 02:31:17,383 - mmseg - INFO - Summary: 2024-06-17 02:31:17,383 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 86.16 | 57.95 | 70.94 | +-------+-------+-------+ 2024-06-17 02:31:17,384 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 02:31:17,384 - mmseg - INFO - Iter(val) [250] aAcc: 0.8616, mIoU: 0.5795, mAcc: 0.7094, IoU.wall: 0.8209, IoU.building: 0.8442, IoU.sky: 0.9483, IoU.floor: 0.8430, IoU.tree: 0.7768, IoU.ceiling: 0.8755, IoU.road: 0.8572, IoU.bed : 0.9195, IoU.windowpane: 0.6674, IoU.grass: 0.6756, IoU.cabinet: 0.6729, IoU.sidewalk: 0.7119, IoU.person: 0.8493, IoU.earth: 0.4212, IoU.door: 0.6017, IoU.table: 0.7106, IoU.mountain: 0.6323, IoU.plant: 0.5587, IoU.curtain: 0.7728, IoU.chair: 0.6653, IoU.car: 0.8701, IoU.water: 0.6551, IoU.painting: 0.7984, IoU.sofa: 0.8354, IoU.shelf: 0.4790, IoU.house: 0.4633, IoU.sea: 0.7807, IoU.mirror: 0.7837, IoU.rug: 0.5962, IoU.field: 0.3057, IoU.armchair: 0.6566, IoU.seat: 0.6594, IoU.fence: 0.5283, IoU.desk: 0.5995, IoU.rock: 0.5783, IoU.wardrobe: 0.5483, IoU.lamp: 0.7323, IoU.bathtub: 0.8523, IoU.railing: 0.4360, IoU.cushion: 0.6967, IoU.base: 0.4049, IoU.box: 0.4050, IoU.column: 0.5794, IoU.signboard: 0.3967, IoU.chest of drawers: 0.5029, IoU.counter: 0.4352, IoU.sand: 0.5777, IoU.sink: 0.7979, IoU.skyscraper: 0.4704, IoU.fireplace: 0.7213, IoU.refrigerator: 0.8573, IoU.grandstand: 0.5157, IoU.path: 0.3085, IoU.stairs: 0.3472, IoU.runway: 0.7322, IoU.case: 0.6028, IoU.pool table: 0.9432, IoU.pillow: 0.6722, IoU.screen door: 0.7807, IoU.stairway: 0.5010, IoU.river: 0.1498, IoU.bridge: 0.6897, IoU.bookcase: 0.4323, IoU.blind: 0.4270, IoU.coffee table: 0.6483, IoU.toilet: 0.9002, IoU.flower: 0.4488, IoU.book: 0.5259, IoU.hill: 0.0985, IoU.bench: 0.5766, IoU.countertop: 0.6210, IoU.stove: 0.8646, IoU.palm: 0.5430, IoU.kitchen island: 0.5084, IoU.computer: 0.7815, IoU.swivel chair: 0.4664, IoU.boat: 0.8074, IoU.bar: 0.5884, IoU.arcade machine: 0.8131, IoU.hovel: 0.2949, IoU.bus: 0.9255, IoU.towel: 0.7648, IoU.light: 0.5597, IoU.truck: 0.4963, IoU.tower: 0.1445, IoU.chandelier: 0.7124, IoU.awning: 0.3433, IoU.streetlight: 0.3210, IoU.booth: 0.4793, IoU.television receiver: 0.8134, IoU.airplane: 0.8542, IoU.dirt track: 0.0639, IoU.apparel: 0.6123, IoU.pole: 0.2504, IoU.land: 0.0482, IoU.bannister: 0.1697, IoU.escalator: 0.6668, IoU.ottoman: 0.5685, IoU.bottle: 0.4327, IoU.buffet: 0.6574, IoU.poster: 0.3127, IoU.stage: 0.2418, IoU.van: 0.4921, IoU.ship: 0.9296, IoU.fountain: 0.3931, IoU.conveyer belt: 0.8172, IoU.canopy: 0.4754, IoU.washer: 0.8361, IoU.plaything: 0.3224, IoU.swimming pool: 0.5293, IoU.stool: 0.5230, IoU.barrel: 0.4868, IoU.basket: 0.4258, IoU.waterfall: 0.6386, IoU.tent: 0.9633, IoU.bag: 0.2805, IoU.minibike: 0.7343, IoU.cradle: 0.8280, IoU.oven: 0.5866, IoU.ball: 0.5966, IoU.food: 0.5755, IoU.step: 0.1065, IoU.tank: 0.6028, IoU.trade name: 0.2153, IoU.microwave: 0.8948, IoU.pot: 0.6006, IoU.animal: 0.6336, IoU.bicycle: 0.5961, IoU.lake: 0.5471, IoU.dishwasher: 0.7236, IoU.screen: 0.5058, IoU.blanket: 0.3399, IoU.sculpture: 0.7115, IoU.hood: 0.6187, IoU.sconce: 0.5903, IoU.vase: 0.4848, IoU.traffic light: 0.3878, IoU.tray: 0.2709, IoU.ashcan: 0.5411, IoU.fan: 0.6663, IoU.pier: 0.4005, IoU.crt screen: 0.1195, IoU.plate: 0.6110, IoU.monitor: 0.6016, IoU.bulletin board: 0.5445, IoU.shower: 0.2034, IoU.radiator: 0.6781, IoU.glass: 0.2352, IoU.clock: 0.5058, IoU.flag: 0.6899, Acc.wall: 0.8963, Acc.building: 0.9352, Acc.sky: 0.9749, Acc.floor: 0.9163, Acc.tree: 0.8975, Acc.ceiling: 0.9376, Acc.road: 0.9121, Acc.bed : 0.9660, Acc.windowpane: 0.8297, Acc.grass: 0.8159, Acc.cabinet: 0.7524, Acc.sidewalk: 0.8491, Acc.person: 0.9358, Acc.earth: 0.5563, Acc.door: 0.7357, Acc.table: 0.8293, Acc.mountain: 0.7216, Acc.plant: 0.6923, Acc.curtain: 0.8821, Acc.chair: 0.7843, Acc.car: 0.9422, Acc.water: 0.8198, Acc.painting: 0.8970, Acc.sofa: 0.9228, Acc.shelf: 0.6520, Acc.house: 0.5656, Acc.sea: 0.8579, Acc.mirror: 0.8967, Acc.rug: 0.6718, Acc.field: 0.5354, Acc.armchair: 0.8180, Acc.seat: 0.8863, Acc.fence: 0.6467, Acc.desk: 0.7834, Acc.rock: 0.8493, Acc.wardrobe: 0.7343, Acc.lamp: 0.8506, Acc.bathtub: 0.8909, Acc.railing: 0.6124, Acc.cushion: 0.8324, Acc.base: 0.5772, Acc.box: 0.5327, Acc.column: 0.6646, Acc.signboard: 0.5765, Acc.chest of drawers: 0.8217, Acc.counter: 0.5253, Acc.sand: 0.8448, Acc.sink: 0.8679, Acc.skyscraper: 0.6041, Acc.fireplace: 0.9429, Acc.refrigerator: 0.9583, Acc.grandstand: 0.8438, Acc.path: 0.4013, Acc.stairs: 0.4210, Acc.runway: 0.9390, Acc.case: 0.8153, Acc.pool table: 0.9784, Acc.pillow: 0.7851, Acc.screen door: 0.8170, Acc.stairway: 0.6057, Acc.river: 0.2597, Acc.bridge: 0.8666, Acc.bookcase: 0.5665, Acc.blind: 0.4928, Acc.coffee table: 0.8507, Acc.toilet: 0.9444, Acc.flower: 0.5991, Acc.book: 0.7988, Acc.hill: 0.1725, Acc.bench: 0.6634, Acc.countertop: 0.8500, Acc.stove: 0.9400, Acc.palm: 0.7980, Acc.kitchen island: 0.8891, Acc.computer: 0.9110, Acc.swivel chair: 0.7559, Acc.boat: 0.9164, Acc.bar: 0.8251, Acc.arcade machine: 0.8508, Acc.hovel: 0.3216, Acc.bus: 0.9676, Acc.towel: 0.8417, Acc.light: 0.6295, Acc.truck: 0.6430, Acc.tower: 0.2371, Acc.chandelier: 0.8282, Acc.awning: 0.4266, Acc.streetlight: 0.4289, Acc.booth: 0.6532, Acc.television receiver: 0.9121, Acc.airplane: 0.9461, Acc.dirt track: 0.2904, Acc.apparel: 0.7931, Acc.pole: 0.3477, Acc.land: 0.0740, Acc.bannister: 0.2115, Acc.escalator: 0.8804, Acc.ottoman: 0.7162, Acc.bottle: 0.7319, Acc.buffet: 0.7608, Acc.poster: 0.3710, Acc.stage: 0.4953, Acc.van: 0.6393, Acc.ship: 0.9815, Acc.fountain: 0.4053, Acc.conveyer belt: 0.9605, Acc.canopy: 0.6478, Acc.washer: 0.8976, Acc.plaything: 0.4785, Acc.swimming pool: 0.7648, Acc.stool: 0.6860, Acc.barrel: 0.8469, Acc.basket: 0.5979, Acc.waterfall: 0.8193, Acc.tent: 0.9832, Acc.bag: 0.3327, Acc.minibike: 0.8947, Acc.cradle: 0.9821, Acc.oven: 0.6999, Acc.ball: 0.6491, Acc.food: 0.6410, Acc.step: 0.1428, Acc.tank: 0.6788, Acc.trade name: 0.2482, Acc.microwave: 0.9711, Acc.pot: 0.7217, Acc.animal: 0.6575, Acc.bicycle: 0.8321, Acc.lake: 0.6363, Acc.dishwasher: 0.8093, Acc.screen: 0.7548, Acc.blanket: 0.4076, Acc.sculpture: 0.8644, Acc.hood: 0.7387, Acc.sconce: 0.6973, Acc.vase: 0.6557, Acc.traffic light: 0.6419, Acc.tray: 0.3847, Acc.ashcan: 0.6893, Acc.fan: 0.8148, Acc.pier: 0.4466, Acc.crt screen: 0.2357, Acc.plate: 0.7967, Acc.monitor: 0.7082, Acc.bulletin board: 0.8137, Acc.shower: 0.2178, Acc.radiator: 0.8180, Acc.glass: 0.2660, Acc.clock: 0.6274, Acc.flag: 0.7515 2024-06-17 02:32:38,263 - mmseg - INFO - Iter [62050/80000] lr: 7.270e-07, eta: 8:38:48, time: 3.269, data_time: 1.665, memory: 65790, decode.loss_ce: 0.1428, decode.acc_seg: 93.6642, aux.loss_ce: 0.0615, aux.acc_seg: 93.3099, loss: 0.2042 2024-06-17 02:33:58,709 - mmseg - INFO - Iter [62100/80000] lr: 7.249e-07, eta: 8:37:20, time: 1.609, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1356, decode.acc_seg: 93.9613, aux.loss_ce: 0.0580, aux.acc_seg: 93.6670, loss: 0.1936 2024-06-17 02:35:19,214 - mmseg - INFO - Iter [62150/80000] lr: 7.229e-07, eta: 8:35:51, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1460, decode.acc_seg: 93.3719, aux.loss_ce: 0.0625, aux.acc_seg: 93.0360, loss: 0.2085 2024-06-17 02:36:39,588 - mmseg - INFO - Iter [62200/80000] lr: 7.209e-07, eta: 8:34:23, time: 1.607, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1408, decode.acc_seg: 93.5768, aux.loss_ce: 0.0609, aux.acc_seg: 93.1918, loss: 0.2017 2024-06-17 02:38:00,172 - mmseg - INFO - Iter [62250/80000] lr: 7.189e-07, eta: 8:32:54, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1358, decode.acc_seg: 93.7907, aux.loss_ce: 0.0579, aux.acc_seg: 93.4855, loss: 0.1938 2024-06-17 02:39:20,559 - mmseg - INFO - Iter [62300/80000] lr: 7.168e-07, eta: 8:31:26, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1356, decode.acc_seg: 93.8162, aux.loss_ce: 0.0591, aux.acc_seg: 93.3768, loss: 0.1947 2024-06-17 02:40:41,067 - mmseg - INFO - Iter [62350/80000] lr: 7.148e-07, eta: 8:29:57, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1368, decode.acc_seg: 93.9155, aux.loss_ce: 0.0594, aux.acc_seg: 93.5381, loss: 0.1963 2024-06-17 02:42:01,500 - mmseg - INFO - Iter [62400/80000] lr: 7.128e-07, eta: 8:28:29, time: 1.609, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1429, decode.acc_seg: 93.4669, aux.loss_ce: 0.0613, aux.acc_seg: 93.1324, loss: 0.2042 2024-06-17 02:43:21,950 - mmseg - INFO - Iter [62450/80000] lr: 7.108e-07, eta: 8:27:00, time: 1.609, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1523, decode.acc_seg: 93.2844, aux.loss_ce: 0.0658, aux.acc_seg: 92.8354, loss: 0.2180 2024-06-17 02:44:42,392 - mmseg - INFO - Iter [62500/80000] lr: 7.087e-07, eta: 8:25:32, time: 1.609, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1473, decode.acc_seg: 93.2554, aux.loss_ce: 0.0632, aux.acc_seg: 92.8678, loss: 0.2105 2024-06-17 02:46:03,002 - mmseg - INFO - Iter [62550/80000] lr: 7.067e-07, eta: 8:24:04, time: 1.612, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1387, decode.acc_seg: 93.6595, aux.loss_ce: 0.0602, aux.acc_seg: 93.1963, loss: 0.1989 2024-06-17 02:47:23,380 - mmseg - INFO - Iter [62600/80000] lr: 7.047e-07, eta: 8:22:35, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1527, decode.acc_seg: 93.2399, aux.loss_ce: 0.0654, aux.acc_seg: 92.9112, loss: 0.2180 2024-06-17 02:48:43,995 - mmseg - INFO - Iter [62650/80000] lr: 7.027e-07, eta: 8:21:07, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1521, decode.acc_seg: 93.4095, aux.loss_ce: 0.0643, aux.acc_seg: 93.0653, loss: 0.2164 2024-06-17 02:50:04,573 - mmseg - INFO - Iter [62700/80000] lr: 7.006e-07, eta: 8:19:39, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1434, decode.acc_seg: 93.5121, aux.loss_ce: 0.0611, aux.acc_seg: 93.0659, loss: 0.2044 2024-06-17 02:51:24,956 - mmseg - INFO - Iter [62750/80000] lr: 6.986e-07, eta: 8:18:10, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1449, decode.acc_seg: 93.6493, aux.loss_ce: 0.0622, aux.acc_seg: 93.2988, loss: 0.2071 2024-06-17 02:52:45,362 - mmseg - INFO - Iter [62800/80000] lr: 6.966e-07, eta: 8:16:42, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1391, decode.acc_seg: 93.7352, aux.loss_ce: 0.0595, aux.acc_seg: 93.4229, loss: 0.1986 2024-06-17 02:54:05,740 - mmseg - INFO - Iter [62850/80000] lr: 6.946e-07, eta: 8:15:13, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1399, decode.acc_seg: 93.7914, aux.loss_ce: 0.0601, aux.acc_seg: 93.4508, loss: 0.2001 2024-06-17 02:55:26,222 - mmseg - INFO - Iter [62900/80000] lr: 6.925e-07, eta: 8:13:45, time: 1.610, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1380, decode.acc_seg: 93.8164, aux.loss_ce: 0.0591, aux.acc_seg: 93.4662, loss: 0.1971 2024-06-17 02:56:46,801 - mmseg - INFO - Iter [62950/80000] lr: 6.905e-07, eta: 8:12:17, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1318, decode.acc_seg: 94.0922, aux.loss_ce: 0.0566, aux.acc_seg: 93.8047, loss: 0.1885 2024-06-17 02:58:07,286 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 02:58:07,286 - mmseg - INFO - Iter [63000/80000] lr: 6.885e-07, eta: 8:10:49, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1455, decode.acc_seg: 93.4324, aux.loss_ce: 0.0633, aux.acc_seg: 92.9717, loss: 0.2088 2024-06-17 02:59:29,585 - mmseg - INFO - per class results: 2024-06-17 02:59:29,591 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.39 | 89.77 | | building | 84.28 | 93.08 | | sky | 94.64 | 97.83 | | floor | 84.47 | 91.82 | | tree | 77.14 | 89.28 | | ceiling | 87.2 | 94.61 | | road | 86.06 | 91.19 | | bed | 92.11 | 96.73 | | windowpane | 66.89 | 81.69 | | grass | 67.76 | 79.78 | | cabinet | 66.67 | 76.81 | | sidewalk | 72.11 | 86.64 | | person | 85.06 | 94.02 | | earth | 40.69 | 54.46 | | door | 60.07 | 73.12 | | table | 68.21 | 77.62 | | mountain | 63.29 | 73.12 | | plant | 54.96 | 69.08 | | curtain | 78.74 | 87.54 | | chair | 66.34 | 79.18 | | car | 87.16 | 93.04 | | water | 61.08 | 75.68 | | painting | 78.94 | 90.75 | | sofa | 83.47 | 92.52 | | shelf | 49.57 | 64.59 | | house | 38.23 | 48.6 | | sea | 72.93 | 87.95 | | mirror | 78.14 | 86.04 | | rug | 64.53 | 74.57 | | field | 30.34 | 54.98 | | armchair | 65.64 | 79.84 | | seat | 67.48 | 88.83 | | fence | 52.91 | 67.44 | | desk | 59.17 | 79.77 | | rock | 59.2 | 80.15 | | wardrobe | 53.54 | 74.04 | | lamp | 73.3 | 84.32 | | bathtub | 85.41 | 88.75 | | railing | 43.56 | 61.77 | | cushion | 70.24 | 81.75 | | base | 42.77 | 58.61 | | box | 40.45 | 53.46 | | column | 58.89 | 69.55 | | signboard | 39.83 | 56.07 | | chest of drawers | 43.81 | 70.85 | | counter | 48.33 | 62.43 | | sand | 55.94 | 87.06 | | sink | 78.64 | 84.89 | | skyscraper | 46.58 | 57.5 | | fireplace | 74.49 | 94.11 | | refrigerator | 85.7 | 94.38 | | grandstand | 51.45 | 82.75 | | path | 29.48 | 38.49 | | stairs | 36.63 | 45.29 | | runway | 74.37 | 96.25 | | case | 60.57 | 79.98 | | pool table | 94.37 | 97.91 | | pillow | 67.75 | 78.98 | | screen door | 79.32 | 83.7 | | stairway | 49.95 | 58.58 | | river | 15.02 | 27.67 | | bridge | 70.53 | 87.13 | | bookcase | 41.16 | 51.08 | | blind | 41.34 | 47.99 | | coffee table | 59.87 | 88.27 | | toilet | 89.88 | 94.37 | | flower | 43.58 | 62.13 | | book | 52.91 | 80.16 | | hill | 8.29 | 13.81 | | bench | 57.75 | 64.25 | | countertop | 62.53 | 84.81 | | stove | 86.2 | 92.73 | | palm | 53.89 | 78.77 | | kitchen island | 45.95 | 88.56 | | computer | 77.97 | 90.84 | | swivel chair | 46.52 | 71.33 | | boat | 81.48 | 90.63 | | bar | 59.81 | 82.91 | | arcade machine | 76.97 | 80.91 | | hovel | 25.02 | 26.59 | | bus | 92.11 | 96.87 | | towel | 76.5 | 85.61 | | light | 55.18 | 62.48 | | truck | 49.9 | 64.31 | | tower | 22.26 | 39.57 | | chandelier | 72.09 | 84.53 | | awning | 35.71 | 46.41 | | streetlight | 31.44 | 40.56 | | booth | 53.39 | 68.42 | | television receiver | 79.17 | 88.48 | | airplane | 85.77 | 93.83 | | dirt track | 6.1 | 26.7 | | apparel | 59.77 | 78.58 | | pole | 25.65 | 37.5 | | land | 3.72 | 5.39 | | bannister | 16.99 | 21.19 | | escalator | 65.78 | 86.47 | | ottoman | 57.84 | 73.61 | | bottle | 43.93 | 75.34 | | buffet | 62.56 | 69.69 | | poster | 30.17 | 43.7 | | stage | 23.9 | 46.21 | | van | 49.57 | 72.32 | | ship | 94.54 | 98.19 | | fountain | 39.94 | 42.12 | | conveyer belt | 82.19 | 94.27 | | canopy | 51.98 | 75.4 | | washer | 82.48 | 88.06 | | plaything | 32.38 | 50.82 | | swimming pool | 52.52 | 75.69 | | stool | 48.66 | 64.5 | | barrel | 60.24 | 83.63 | | basket | 44.44 | 57.53 | | waterfall | 62.21 | 78.48 | | tent | 96.46 | 98.21 | | bag | 27.27 | 32.87 | | minibike | 73.53 | 88.38 | | cradle | 84.04 | 98.21 | | oven | 60.74 | 72.67 | | ball | 62.01 | 66.73 | | food | 64.03 | 77.42 | | step | 9.55 | 12.17 | | tank | 65.09 | 78.14 | | trade name | 23.79 | 27.35 | | microwave | 90.1 | 96.73 | | pot | 59.1 | 70.62 | | animal | 60.53 | 62.39 | | bicycle | 61.45 | 80.86 | | lake | 55.64 | 63.63 | | dishwasher | 71.13 | 81.96 | | screen | 57.89 | 89.42 | | blanket | 33.14 | 39.75 | | sculpture | 73.65 | 86.87 | | hood | 60.46 | 70.5 | | sconce | 59.74 | 71.35 | | vase | 48.94 | 61.62 | | traffic light | 37.93 | 65.63 | | tray | 26.51 | 34.05 | | ashcan | 56.54 | 67.51 | | fan | 67.69 | 81.8 | | pier | 38.94 | 43.06 | | crt screen | 9.26 | 13.53 | | plate | 60.88 | 79.5 | | monitor | 66.52 | 81.26 | | bulletin board | 63.4 | 81.31 | | shower | 22.04 | 24.82 | | radiator | 66.9 | 81.05 | | glass | 21.07 | 22.52 | | clock | 51.55 | 64.78 | | flag | 69.8 | 80.06 | +---------------------+-------+-------+ 2024-06-17 02:59:29,592 - mmseg - INFO - Summary: 2024-06-17 02:59:29,592 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 86.07 | 58.12 | 71.02 | +-------+-------+-------+ 2024-06-17 02:59:29,593 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 02:59:29,593 - mmseg - INFO - Iter(val) [250] aAcc: 0.8607, mIoU: 0.5812, mAcc: 0.7102, IoU.wall: 0.8239, IoU.building: 0.8428, IoU.sky: 0.9464, IoU.floor: 0.8447, IoU.tree: 0.7714, IoU.ceiling: 0.8720, IoU.road: 0.8606, IoU.bed : 0.9211, IoU.windowpane: 0.6689, IoU.grass: 0.6776, IoU.cabinet: 0.6667, IoU.sidewalk: 0.7211, IoU.person: 0.8506, IoU.earth: 0.4069, IoU.door: 0.6007, IoU.table: 0.6821, IoU.mountain: 0.6329, IoU.plant: 0.5496, IoU.curtain: 0.7874, IoU.chair: 0.6634, IoU.car: 0.8716, IoU.water: 0.6108, IoU.painting: 0.7894, IoU.sofa: 0.8347, IoU.shelf: 0.4957, IoU.house: 0.3823, IoU.sea: 0.7293, IoU.mirror: 0.7814, IoU.rug: 0.6453, IoU.field: 0.3034, IoU.armchair: 0.6564, IoU.seat: 0.6748, IoU.fence: 0.5291, IoU.desk: 0.5917, IoU.rock: 0.5920, IoU.wardrobe: 0.5354, IoU.lamp: 0.7330, IoU.bathtub: 0.8541, IoU.railing: 0.4356, IoU.cushion: 0.7024, IoU.base: 0.4277, IoU.box: 0.4045, IoU.column: 0.5889, IoU.signboard: 0.3983, IoU.chest of drawers: 0.4381, IoU.counter: 0.4833, IoU.sand: 0.5594, IoU.sink: 0.7864, IoU.skyscraper: 0.4658, IoU.fireplace: 0.7449, IoU.refrigerator: 0.8570, IoU.grandstand: 0.5145, IoU.path: 0.2948, IoU.stairs: 0.3663, IoU.runway: 0.7437, IoU.case: 0.6057, IoU.pool table: 0.9437, IoU.pillow: 0.6775, IoU.screen door: 0.7932, IoU.stairway: 0.4995, IoU.river: 0.1502, IoU.bridge: 0.7053, IoU.bookcase: 0.4116, IoU.blind: 0.4134, IoU.coffee table: 0.5987, IoU.toilet: 0.8988, IoU.flower: 0.4358, IoU.book: 0.5291, IoU.hill: 0.0829, IoU.bench: 0.5775, IoU.countertop: 0.6253, IoU.stove: 0.8620, IoU.palm: 0.5389, IoU.kitchen island: 0.4595, IoU.computer: 0.7797, IoU.swivel chair: 0.4652, IoU.boat: 0.8148, IoU.bar: 0.5981, IoU.arcade machine: 0.7697, IoU.hovel: 0.2502, IoU.bus: 0.9211, IoU.towel: 0.7650, IoU.light: 0.5518, IoU.truck: 0.4990, IoU.tower: 0.2226, IoU.chandelier: 0.7209, IoU.awning: 0.3571, IoU.streetlight: 0.3144, IoU.booth: 0.5339, IoU.television receiver: 0.7917, IoU.airplane: 0.8577, IoU.dirt track: 0.0610, IoU.apparel: 0.5977, IoU.pole: 0.2565, IoU.land: 0.0372, IoU.bannister: 0.1699, IoU.escalator: 0.6578, IoU.ottoman: 0.5784, IoU.bottle: 0.4393, IoU.buffet: 0.6256, IoU.poster: 0.3017, IoU.stage: 0.2390, IoU.van: 0.4957, IoU.ship: 0.9454, IoU.fountain: 0.3994, IoU.conveyer belt: 0.8219, IoU.canopy: 0.5198, IoU.washer: 0.8248, IoU.plaything: 0.3238, IoU.swimming pool: 0.5252, IoU.stool: 0.4866, IoU.barrel: 0.6024, IoU.basket: 0.4444, IoU.waterfall: 0.6221, IoU.tent: 0.9646, IoU.bag: 0.2727, IoU.minibike: 0.7353, IoU.cradle: 0.8404, IoU.oven: 0.6074, IoU.ball: 0.6201, IoU.food: 0.6403, IoU.step: 0.0955, IoU.tank: 0.6509, IoU.trade name: 0.2379, IoU.microwave: 0.9010, IoU.pot: 0.5910, IoU.animal: 0.6053, IoU.bicycle: 0.6145, IoU.lake: 0.5564, IoU.dishwasher: 0.7113, IoU.screen: 0.5789, IoU.blanket: 0.3314, IoU.sculpture: 0.7365, IoU.hood: 0.6046, IoU.sconce: 0.5974, IoU.vase: 0.4894, IoU.traffic light: 0.3793, IoU.tray: 0.2651, IoU.ashcan: 0.5654, IoU.fan: 0.6769, IoU.pier: 0.3894, IoU.crt screen: 0.0926, IoU.plate: 0.6088, IoU.monitor: 0.6652, IoU.bulletin board: 0.6340, IoU.shower: 0.2204, IoU.radiator: 0.6690, IoU.glass: 0.2107, IoU.clock: 0.5155, IoU.flag: 0.6980, Acc.wall: 0.8977, Acc.building: 0.9308, Acc.sky: 0.9783, Acc.floor: 0.9182, Acc.tree: 0.8928, Acc.ceiling: 0.9461, Acc.road: 0.9119, Acc.bed : 0.9673, Acc.windowpane: 0.8169, Acc.grass: 0.7978, Acc.cabinet: 0.7681, Acc.sidewalk: 0.8664, Acc.person: 0.9402, Acc.earth: 0.5446, Acc.door: 0.7312, Acc.table: 0.7762, Acc.mountain: 0.7312, Acc.plant: 0.6908, Acc.curtain: 0.8754, Acc.chair: 0.7918, Acc.car: 0.9304, Acc.water: 0.7568, Acc.painting: 0.9075, Acc.sofa: 0.9252, Acc.shelf: 0.6459, Acc.house: 0.4860, Acc.sea: 0.8795, Acc.mirror: 0.8604, Acc.rug: 0.7457, Acc.field: 0.5498, Acc.armchair: 0.7984, Acc.seat: 0.8883, Acc.fence: 0.6744, Acc.desk: 0.7977, Acc.rock: 0.8015, Acc.wardrobe: 0.7404, Acc.lamp: 0.8432, Acc.bathtub: 0.8875, Acc.railing: 0.6177, Acc.cushion: 0.8175, Acc.base: 0.5861, Acc.box: 0.5346, Acc.column: 0.6955, Acc.signboard: 0.5607, Acc.chest of drawers: 0.7085, Acc.counter: 0.6243, Acc.sand: 0.8706, Acc.sink: 0.8489, Acc.skyscraper: 0.5750, Acc.fireplace: 0.9411, Acc.refrigerator: 0.9438, Acc.grandstand: 0.8275, Acc.path: 0.3849, Acc.stairs: 0.4529, Acc.runway: 0.9625, Acc.case: 0.7998, Acc.pool table: 0.9791, Acc.pillow: 0.7898, Acc.screen door: 0.8370, Acc.stairway: 0.5858, Acc.river: 0.2767, Acc.bridge: 0.8713, Acc.bookcase: 0.5108, Acc.blind: 0.4799, Acc.coffee table: 0.8827, Acc.toilet: 0.9437, Acc.flower: 0.6213, Acc.book: 0.8016, Acc.hill: 0.1381, Acc.bench: 0.6425, Acc.countertop: 0.8481, Acc.stove: 0.9273, Acc.palm: 0.7877, Acc.kitchen island: 0.8856, Acc.computer: 0.9084, Acc.swivel chair: 0.7133, Acc.boat: 0.9063, Acc.bar: 0.8291, Acc.arcade machine: 0.8091, Acc.hovel: 0.2659, Acc.bus: 0.9687, Acc.towel: 0.8561, Acc.light: 0.6248, Acc.truck: 0.6431, Acc.tower: 0.3957, Acc.chandelier: 0.8453, Acc.awning: 0.4641, Acc.streetlight: 0.4056, Acc.booth: 0.6842, Acc.television receiver: 0.8848, Acc.airplane: 0.9383, Acc.dirt track: 0.2670, Acc.apparel: 0.7858, Acc.pole: 0.3750, Acc.land: 0.0539, Acc.bannister: 0.2119, Acc.escalator: 0.8647, Acc.ottoman: 0.7361, Acc.bottle: 0.7534, Acc.buffet: 0.6969, Acc.poster: 0.4370, Acc.stage: 0.4621, Acc.van: 0.7232, Acc.ship: 0.9819, Acc.fountain: 0.4212, Acc.conveyer belt: 0.9427, Acc.canopy: 0.7540, Acc.washer: 0.8806, Acc.plaything: 0.5082, Acc.swimming pool: 0.7569, Acc.stool: 0.6450, Acc.barrel: 0.8363, Acc.basket: 0.5753, Acc.waterfall: 0.7848, Acc.tent: 0.9821, Acc.bag: 0.3287, Acc.minibike: 0.8838, Acc.cradle: 0.9821, Acc.oven: 0.7267, Acc.ball: 0.6673, Acc.food: 0.7742, Acc.step: 0.1217, Acc.tank: 0.7814, Acc.trade name: 0.2735, Acc.microwave: 0.9673, Acc.pot: 0.7062, Acc.animal: 0.6239, Acc.bicycle: 0.8086, Acc.lake: 0.6363, Acc.dishwasher: 0.8196, Acc.screen: 0.8942, Acc.blanket: 0.3975, Acc.sculpture: 0.8687, Acc.hood: 0.7050, Acc.sconce: 0.7135, Acc.vase: 0.6162, Acc.traffic light: 0.6563, Acc.tray: 0.3405, Acc.ashcan: 0.6751, Acc.fan: 0.8180, Acc.pier: 0.4306, Acc.crt screen: 0.1353, Acc.plate: 0.7950, Acc.monitor: 0.8126, Acc.bulletin board: 0.8131, Acc.shower: 0.2482, Acc.radiator: 0.8105, Acc.glass: 0.2252, Acc.clock: 0.6478, Acc.flag: 0.8006 2024-06-17 03:00:50,478 - mmseg - INFO - Iter [63050/80000] lr: 6.865e-07, eta: 8:09:43, time: 3.264, data_time: 1.660, memory: 65790, decode.loss_ce: 0.1471, decode.acc_seg: 93.2668, aux.loss_ce: 0.0628, aux.acc_seg: 92.9645, loss: 0.2100 2024-06-17 03:02:10,827 - mmseg - INFO - Iter [63100/80000] lr: 6.844e-07, eta: 8:08:14, time: 1.607, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1341, decode.acc_seg: 93.9325, aux.loss_ce: 0.0578, aux.acc_seg: 93.5570, loss: 0.1919 2024-06-17 03:03:31,265 - mmseg - INFO - Iter [63150/80000] lr: 6.824e-07, eta: 8:06:46, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1448, decode.acc_seg: 93.6583, aux.loss_ce: 0.0626, aux.acc_seg: 93.3087, loss: 0.2074 2024-06-17 03:04:54,457 - mmseg - INFO - Iter [63200/80000] lr: 6.804e-07, eta: 8:05:18, time: 1.664, data_time: 0.060, memory: 65790, decode.loss_ce: 0.1412, decode.acc_seg: 93.7300, aux.loss_ce: 0.0609, aux.acc_seg: 93.3480, loss: 0.2021 2024-06-17 03:06:14,941 - mmseg - INFO - Iter [63250/80000] lr: 6.784e-07, eta: 8:03:50, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1342, decode.acc_seg: 93.9571, aux.loss_ce: 0.0578, aux.acc_seg: 93.5772, loss: 0.1920 2024-06-17 03:07:35,356 - mmseg - INFO - Iter [63300/80000] lr: 6.763e-07, eta: 8:02:22, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1519, decode.acc_seg: 93.4156, aux.loss_ce: 0.0656, aux.acc_seg: 93.0142, loss: 0.2175 2024-06-17 03:08:55,915 - mmseg - INFO - Iter [63350/80000] lr: 6.743e-07, eta: 8:00:53, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1347, decode.acc_seg: 93.8894, aux.loss_ce: 0.0577, aux.acc_seg: 93.5524, loss: 0.1924 2024-06-17 03:10:16,430 - mmseg - INFO - Iter [63400/80000] lr: 6.723e-07, eta: 7:59:25, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1417, decode.acc_seg: 93.5933, aux.loss_ce: 0.0612, aux.acc_seg: 93.2680, loss: 0.2029 2024-06-17 03:11:36,829 - mmseg - INFO - Iter [63450/80000] lr: 6.703e-07, eta: 7:57:57, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1368, decode.acc_seg: 93.6980, aux.loss_ce: 0.0593, aux.acc_seg: 93.3230, loss: 0.1961 2024-06-17 03:12:57,241 - mmseg - INFO - Iter [63500/80000] lr: 6.682e-07, eta: 7:56:29, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1356, decode.acc_seg: 94.0248, aux.loss_ce: 0.0592, aux.acc_seg: 93.6070, loss: 0.1948 2024-06-17 03:14:17,780 - mmseg - INFO - Iter [63550/80000] lr: 6.662e-07, eta: 7:55:00, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1401, decode.acc_seg: 93.7284, aux.loss_ce: 0.0605, aux.acc_seg: 93.4305, loss: 0.2006 2024-06-17 03:15:38,367 - mmseg - INFO - Iter [63600/80000] lr: 6.642e-07, eta: 7:53:32, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1436, decode.acc_seg: 93.4307, aux.loss_ce: 0.0618, aux.acc_seg: 93.0816, loss: 0.2055 2024-06-17 03:16:58,759 - mmseg - INFO - Iter [63650/80000] lr: 6.622e-07, eta: 7:52:04, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1397, decode.acc_seg: 93.6969, aux.loss_ce: 0.0604, aux.acc_seg: 93.2900, loss: 0.2001 2024-06-17 03:18:19,457 - mmseg - INFO - Iter [63700/80000] lr: 6.601e-07, eta: 7:50:36, time: 1.614, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1381, decode.acc_seg: 93.5990, aux.loss_ce: 0.0599, aux.acc_seg: 93.2387, loss: 0.1980 2024-06-17 03:19:39,946 - mmseg - INFO - Iter [63750/80000] lr: 6.581e-07, eta: 7:49:08, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1401, decode.acc_seg: 93.7231, aux.loss_ce: 0.0605, aux.acc_seg: 93.3540, loss: 0.2006 2024-06-17 03:21:00,418 - mmseg - INFO - Iter [63800/80000] lr: 6.561e-07, eta: 7:47:40, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1302, decode.acc_seg: 94.0474, aux.loss_ce: 0.0564, aux.acc_seg: 93.7525, loss: 0.1866 2024-06-17 03:22:20,874 - mmseg - INFO - Iter [63850/80000] lr: 6.541e-07, eta: 7:46:11, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1324, decode.acc_seg: 93.9748, aux.loss_ce: 0.0569, aux.acc_seg: 93.6537, loss: 0.1893 2024-06-17 03:23:41,348 - mmseg - INFO - Iter [63900/80000] lr: 6.520e-07, eta: 7:44:43, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1365, decode.acc_seg: 93.8450, aux.loss_ce: 0.0589, aux.acc_seg: 93.4572, loss: 0.1954 2024-06-17 03:25:01,841 - mmseg - INFO - Iter [63950/80000] lr: 6.500e-07, eta: 7:43:15, time: 1.610, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1316, decode.acc_seg: 93.9895, aux.loss_ce: 0.0572, aux.acc_seg: 93.5489, loss: 0.1888 2024-06-17 03:26:22,204 - mmseg - INFO - Saving checkpoint at 64000 iterations 2024-06-17 03:27:38,563 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 03:27:38,563 - mmseg - INFO - Iter [64000/80000] lr: 6.480e-07, eta: 7:42:06, time: 3.134, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1446, decode.acc_seg: 93.3660, aux.loss_ce: 0.0626, aux.acc_seg: 92.9044, loss: 0.2071 2024-06-17 03:29:06,568 - mmseg - INFO - per class results: 2024-06-17 03:29:06,574 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.39 | 90.82 | | building | 84.58 | 93.31 | | sky | 94.83 | 97.2 | | floor | 84.35 | 91.27 | | tree | 77.57 | 90.21 | | ceiling | 87.39 | 93.34 | | road | 86.27 | 91.02 | | bed | 91.81 | 97.26 | | windowpane | 66.62 | 82.17 | | grass | 68.26 | 82.07 | | cabinet | 67.76 | 77.46 | | sidewalk | 72.57 | 86.2 | | person | 84.94 | 94.07 | | earth | 42.54 | 56.93 | | door | 59.63 | 72.17 | | table | 70.8 | 81.88 | | mountain | 63.5 | 73.5 | | plant | 55.61 | 66.92 | | curtain | 78.53 | 88.17 | | chair | 66.36 | 78.06 | | car | 87.29 | 93.65 | | water | 61.83 | 81.39 | | painting | 80.66 | 90.92 | | sofa | 83.12 | 92.02 | | shelf | 48.76 | 62.1 | | house | 45.01 | 56.87 | | sea | 60.56 | 66.35 | | mirror | 79.13 | 87.2 | | rug | 64.27 | 74.33 | | field | 29.46 | 51.65 | | armchair | 64.78 | 81.9 | | seat | 67.99 | 89.16 | | fence | 52.52 | 64.72 | | desk | 59.96 | 76.72 | | rock | 55.27 | 81.38 | | wardrobe | 54.55 | 72.5 | | lamp | 73.85 | 84.82 | | bathtub | 84.86 | 88.42 | | railing | 43.95 | 62.89 | | cushion | 69.65 | 79.91 | | base | 43.22 | 55.28 | | box | 41.77 | 56.73 | | column | 58.12 | 73.39 | | signboard | 39.66 | 53.8 | | chest of drawers | 46.6 | 72.54 | | counter | 44.58 | 54.75 | | sand | 57.22 | 85.67 | | sink | 79.01 | 84.33 | | skyscraper | 46.95 | 59.78 | | fireplace | 73.23 | 93.55 | | refrigerator | 85.45 | 96.06 | | grandstand | 51.27 | 85.31 | | path | 33.86 | 43.6 | | stairs | 28.75 | 34.23 | | runway | 72.28 | 92.82 | | case | 59.3 | 80.97 | | pool table | 94.31 | 98.13 | | pillow | 66.82 | 77.01 | | screen door | 79.66 | 82.2 | | stairway | 40.05 | 53.18 | | river | 13.49 | 26.28 | | bridge | 69.58 | 90.42 | | bookcase | 43.34 | 58.62 | | blind | 42.75 | 48.04 | | coffee table | 62.81 | 84.83 | | toilet | 90.13 | 93.59 | | flower | 42.34 | 56.97 | | book | 51.65 | 75.81 | | hill | 7.45 | 11.88 | | bench | 56.29 | 64.36 | | countertop | 63.61 | 83.16 | | stove | 85.79 | 92.05 | | palm | 53.85 | 80.28 | | kitchen island | 49.48 | 78.36 | | computer | 78.72 | 90.12 | | swivel chair | 47.0 | 73.22 | | boat | 80.43 | 89.85 | | bar | 58.14 | 84.13 | | arcade machine | 79.4 | 83.39 | | hovel | 35.7 | 38.76 | | bus | 93.36 | 96.78 | | towel | 75.41 | 82.1 | | light | 54.59 | 61.04 | | truck | 49.46 | 63.59 | | tower | 28.71 | 51.17 | | chandelier | 72.34 | 84.61 | | awning | 35.28 | 43.15 | | streetlight | 31.81 | 40.6 | | booth | 52.38 | 61.68 | | television receiver | 80.46 | 87.49 | | airplane | 85.48 | 92.75 | | dirt track | 6.1 | 28.0 | | apparel | 60.04 | 75.35 | | pole | 22.99 | 35.17 | | land | 3.72 | 5.38 | | bannister | 19.37 | 24.38 | | escalator | 64.53 | 87.75 | | ottoman | 58.63 | 73.58 | | bottle | 43.9 | 73.42 | | buffet | 63.63 | 71.13 | | poster | 31.65 | 37.18 | | stage | 25.1 | 47.56 | | van | 50.38 | 71.21 | | ship | 93.45 | 98.15 | | fountain | 37.54 | 38.27 | | conveyer belt | 81.94 | 94.51 | | canopy | 49.44 | 68.58 | | washer | 81.48 | 86.45 | | plaything | 32.21 | 47.15 | | swimming pool | 57.59 | 83.18 | | stool | 48.86 | 64.47 | | barrel | 57.08 | 74.46 | | basket | 44.49 | 59.39 | | waterfall | 62.14 | 72.76 | | tent | 96.15 | 98.67 | | bag | 27.82 | 33.72 | | minibike | 73.8 | 89.09 | | cradle | 83.2 | 98.32 | | oven | 57.19 | 67.62 | | ball | 64.06 | 72.1 | | food | 62.12 | 71.01 | | step | 11.02 | 13.18 | | tank | 57.85 | 68.57 | | trade name | 24.46 | 28.64 | | microwave | 89.71 | 96.46 | | pot | 61.31 | 70.66 | | animal | 59.21 | 61.21 | | bicycle | 61.16 | 80.4 | | lake | 55.42 | 63.58 | | dishwasher | 71.34 | 80.67 | | screen | 62.99 | 93.95 | | blanket | 32.72 | 39.85 | | sculpture | 71.78 | 84.09 | | hood | 61.26 | 71.74 | | sconce | 59.35 | 68.73 | | vase | 47.01 | 62.55 | | traffic light | 36.94 | 63.74 | | tray | 27.84 | 35.37 | | ashcan | 53.31 | 69.18 | | fan | 67.54 | 79.04 | | pier | 39.2 | 42.67 | | crt screen | 3.09 | 3.69 | | plate | 62.31 | 78.26 | | monitor | 67.11 | 83.54 | | bulletin board | 57.31 | 74.24 | | shower | 21.77 | 23.1 | | radiator | 66.58 | 83.09 | | glass | 20.87 | 22.27 | | clock | 49.54 | 64.87 | | flag | 69.48 | 75.59 | +---------------------+-------+-------+ 2024-06-17 03:29:06,574 - mmseg - INFO - Summary: 2024-06-17 03:29:06,574 - mmseg - INFO - +------+-------+-------+ | aAcc | mIoU | mAcc | +------+-------+-------+ | 86.2 | 57.98 | 70.38 | +------+-------+-------+ 2024-06-17 03:29:06,575 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 03:29:06,575 - mmseg - INFO - Iter(val) [250] aAcc: 0.8620, mIoU: 0.5798, mAcc: 0.7038, IoU.wall: 0.8239, IoU.building: 0.8458, IoU.sky: 0.9483, IoU.floor: 0.8435, IoU.tree: 0.7757, IoU.ceiling: 0.8739, IoU.road: 0.8627, IoU.bed : 0.9181, IoU.windowpane: 0.6662, IoU.grass: 0.6826, IoU.cabinet: 0.6776, IoU.sidewalk: 0.7257, IoU.person: 0.8494, IoU.earth: 0.4254, IoU.door: 0.5963, IoU.table: 0.7080, IoU.mountain: 0.6350, IoU.plant: 0.5561, IoU.curtain: 0.7853, IoU.chair: 0.6636, IoU.car: 0.8729, IoU.water: 0.6183, IoU.painting: 0.8066, IoU.sofa: 0.8312, IoU.shelf: 0.4876, IoU.house: 0.4501, IoU.sea: 0.6056, IoU.mirror: 0.7913, IoU.rug: 0.6427, IoU.field: 0.2946, IoU.armchair: 0.6478, IoU.seat: 0.6799, IoU.fence: 0.5252, IoU.desk: 0.5996, IoU.rock: 0.5527, IoU.wardrobe: 0.5455, IoU.lamp: 0.7385, IoU.bathtub: 0.8486, IoU.railing: 0.4395, IoU.cushion: 0.6965, IoU.base: 0.4322, IoU.box: 0.4177, IoU.column: 0.5812, IoU.signboard: 0.3966, IoU.chest of drawers: 0.4660, IoU.counter: 0.4458, IoU.sand: 0.5722, IoU.sink: 0.7901, IoU.skyscraper: 0.4695, IoU.fireplace: 0.7323, IoU.refrigerator: 0.8545, IoU.grandstand: 0.5127, IoU.path: 0.3386, IoU.stairs: 0.2875, IoU.runway: 0.7228, IoU.case: 0.5930, IoU.pool table: 0.9431, IoU.pillow: 0.6682, IoU.screen door: 0.7966, IoU.stairway: 0.4005, IoU.river: 0.1349, IoU.bridge: 0.6958, IoU.bookcase: 0.4334, IoU.blind: 0.4275, IoU.coffee table: 0.6281, IoU.toilet: 0.9013, IoU.flower: 0.4234, IoU.book: 0.5165, IoU.hill: 0.0745, IoU.bench: 0.5629, IoU.countertop: 0.6361, IoU.stove: 0.8579, IoU.palm: 0.5385, IoU.kitchen island: 0.4948, IoU.computer: 0.7872, IoU.swivel chair: 0.4700, IoU.boat: 0.8043, IoU.bar: 0.5814, IoU.arcade machine: 0.7940, IoU.hovel: 0.3570, IoU.bus: 0.9336, IoU.towel: 0.7541, IoU.light: 0.5459, IoU.truck: 0.4946, IoU.tower: 0.2871, IoU.chandelier: 0.7234, IoU.awning: 0.3528, IoU.streetlight: 0.3181, IoU.booth: 0.5238, IoU.television receiver: 0.8046, IoU.airplane: 0.8548, IoU.dirt track: 0.0610, IoU.apparel: 0.6004, IoU.pole: 0.2299, IoU.land: 0.0372, IoU.bannister: 0.1937, IoU.escalator: 0.6453, IoU.ottoman: 0.5863, IoU.bottle: 0.4390, IoU.buffet: 0.6363, IoU.poster: 0.3165, IoU.stage: 0.2510, IoU.van: 0.5038, IoU.ship: 0.9345, IoU.fountain: 0.3754, IoU.conveyer belt: 0.8194, IoU.canopy: 0.4944, IoU.washer: 0.8148, IoU.plaything: 0.3221, IoU.swimming pool: 0.5759, IoU.stool: 0.4886, IoU.barrel: 0.5708, IoU.basket: 0.4449, IoU.waterfall: 0.6214, IoU.tent: 0.9615, IoU.bag: 0.2782, IoU.minibike: 0.7380, IoU.cradle: 0.8320, IoU.oven: 0.5719, IoU.ball: 0.6406, IoU.food: 0.6212, IoU.step: 0.1102, IoU.tank: 0.5785, IoU.trade name: 0.2446, IoU.microwave: 0.8971, IoU.pot: 0.6131, IoU.animal: 0.5921, IoU.bicycle: 0.6116, IoU.lake: 0.5542, IoU.dishwasher: 0.7134, IoU.screen: 0.6299, IoU.blanket: 0.3272, IoU.sculpture: 0.7178, IoU.hood: 0.6126, IoU.sconce: 0.5935, IoU.vase: 0.4701, IoU.traffic light: 0.3694, IoU.tray: 0.2784, IoU.ashcan: 0.5331, IoU.fan: 0.6754, IoU.pier: 0.3920, IoU.crt screen: 0.0309, IoU.plate: 0.6231, IoU.monitor: 0.6711, IoU.bulletin board: 0.5731, IoU.shower: 0.2177, IoU.radiator: 0.6658, IoU.glass: 0.2087, IoU.clock: 0.4954, IoU.flag: 0.6948, Acc.wall: 0.9082, Acc.building: 0.9331, Acc.sky: 0.9720, Acc.floor: 0.9127, Acc.tree: 0.9021, Acc.ceiling: 0.9334, Acc.road: 0.9102, Acc.bed : 0.9726, Acc.windowpane: 0.8217, Acc.grass: 0.8207, Acc.cabinet: 0.7746, Acc.sidewalk: 0.8620, Acc.person: 0.9407, Acc.earth: 0.5693, Acc.door: 0.7217, Acc.table: 0.8188, Acc.mountain: 0.7350, Acc.plant: 0.6692, Acc.curtain: 0.8817, Acc.chair: 0.7806, Acc.car: 0.9365, Acc.water: 0.8139, Acc.painting: 0.9092, Acc.sofa: 0.9202, Acc.shelf: 0.6210, Acc.house: 0.5687, Acc.sea: 0.6635, Acc.mirror: 0.8720, Acc.rug: 0.7433, Acc.field: 0.5165, Acc.armchair: 0.8190, Acc.seat: 0.8916, Acc.fence: 0.6472, Acc.desk: 0.7672, Acc.rock: 0.8138, Acc.wardrobe: 0.7250, Acc.lamp: 0.8482, Acc.bathtub: 0.8842, Acc.railing: 0.6289, Acc.cushion: 0.7991, Acc.base: 0.5528, Acc.box: 0.5673, Acc.column: 0.7339, Acc.signboard: 0.5380, Acc.chest of drawers: 0.7254, Acc.counter: 0.5475, Acc.sand: 0.8567, Acc.sink: 0.8433, Acc.skyscraper: 0.5978, Acc.fireplace: 0.9355, Acc.refrigerator: 0.9606, Acc.grandstand: 0.8531, Acc.path: 0.4360, Acc.stairs: 0.3423, Acc.runway: 0.9282, Acc.case: 0.8097, Acc.pool table: 0.9813, Acc.pillow: 0.7701, Acc.screen door: 0.8220, Acc.stairway: 0.5318, Acc.river: 0.2628, Acc.bridge: 0.9042, Acc.bookcase: 0.5862, Acc.blind: 0.4804, Acc.coffee table: 0.8483, Acc.toilet: 0.9359, Acc.flower: 0.5697, Acc.book: 0.7581, Acc.hill: 0.1188, Acc.bench: 0.6436, Acc.countertop: 0.8316, Acc.stove: 0.9205, Acc.palm: 0.8028, Acc.kitchen island: 0.7836, Acc.computer: 0.9012, Acc.swivel chair: 0.7322, Acc.boat: 0.8985, Acc.bar: 0.8413, Acc.arcade machine: 0.8339, Acc.hovel: 0.3876, Acc.bus: 0.9678, Acc.towel: 0.8210, Acc.light: 0.6104, Acc.truck: 0.6359, Acc.tower: 0.5117, Acc.chandelier: 0.8461, Acc.awning: 0.4315, Acc.streetlight: 0.4060, Acc.booth: 0.6168, Acc.television receiver: 0.8749, Acc.airplane: 0.9275, Acc.dirt track: 0.2800, Acc.apparel: 0.7535, Acc.pole: 0.3517, Acc.land: 0.0538, Acc.bannister: 0.2438, Acc.escalator: 0.8775, Acc.ottoman: 0.7358, Acc.bottle: 0.7342, Acc.buffet: 0.7113, Acc.poster: 0.3718, Acc.stage: 0.4756, Acc.van: 0.7121, Acc.ship: 0.9815, Acc.fountain: 0.3827, Acc.conveyer belt: 0.9451, Acc.canopy: 0.6858, Acc.washer: 0.8645, Acc.plaything: 0.4715, Acc.swimming pool: 0.8318, Acc.stool: 0.6447, Acc.barrel: 0.7446, Acc.basket: 0.5939, Acc.waterfall: 0.7276, Acc.tent: 0.9867, Acc.bag: 0.3372, Acc.minibike: 0.8909, Acc.cradle: 0.9832, Acc.oven: 0.6762, Acc.ball: 0.7210, Acc.food: 0.7101, Acc.step: 0.1318, Acc.tank: 0.6857, Acc.trade name: 0.2864, Acc.microwave: 0.9646, Acc.pot: 0.7066, Acc.animal: 0.6121, Acc.bicycle: 0.8040, Acc.lake: 0.6358, Acc.dishwasher: 0.8067, Acc.screen: 0.9395, Acc.blanket: 0.3985, Acc.sculpture: 0.8409, Acc.hood: 0.7174, Acc.sconce: 0.6873, Acc.vase: 0.6255, Acc.traffic light: 0.6374, Acc.tray: 0.3537, Acc.ashcan: 0.6918, Acc.fan: 0.7904, Acc.pier: 0.4267, Acc.crt screen: 0.0369, Acc.plate: 0.7826, Acc.monitor: 0.8354, Acc.bulletin board: 0.7424, Acc.shower: 0.2310, Acc.radiator: 0.8309, Acc.glass: 0.2227, Acc.clock: 0.6487, Acc.flag: 0.7559 2024-06-17 03:30:27,305 - mmseg - INFO - Iter [64050/80000] lr: 6.460e-07, eta: 7:41:00, time: 3.375, data_time: 1.774, memory: 65790, decode.loss_ce: 0.1372, decode.acc_seg: 93.7777, aux.loss_ce: 0.0593, aux.acc_seg: 93.4017, loss: 0.1965 2024-06-17 03:31:47,696 - mmseg - INFO - Iter [64100/80000] lr: 6.439e-07, eta: 7:39:32, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1349, decode.acc_seg: 93.9645, aux.loss_ce: 0.0585, aux.acc_seg: 93.5456, loss: 0.1934 2024-06-17 03:33:08,155 - mmseg - INFO - Iter [64150/80000] lr: 6.419e-07, eta: 7:38:03, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1381, decode.acc_seg: 93.9515, aux.loss_ce: 0.0596, aux.acc_seg: 93.5479, loss: 0.1977 2024-06-17 03:34:28,623 - mmseg - INFO - Iter [64200/80000] lr: 6.399e-07, eta: 7:36:35, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1365, decode.acc_seg: 93.7746, aux.loss_ce: 0.0581, aux.acc_seg: 93.4744, loss: 0.1947 2024-06-17 03:35:49,132 - mmseg - INFO - Iter [64250/80000] lr: 6.379e-07, eta: 7:35:07, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1404, decode.acc_seg: 93.6420, aux.loss_ce: 0.0606, aux.acc_seg: 93.3010, loss: 0.2009 2024-06-17 03:37:09,522 - mmseg - INFO - Iter [64300/80000] lr: 6.358e-07, eta: 7:33:39, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1369, decode.acc_seg: 93.7327, aux.loss_ce: 0.0591, aux.acc_seg: 93.3608, loss: 0.1959 2024-06-17 03:38:29,958 - mmseg - INFO - Iter [64350/80000] lr: 6.338e-07, eta: 7:32:10, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1409, decode.acc_seg: 93.7909, aux.loss_ce: 0.0606, aux.acc_seg: 93.3865, loss: 0.2015 2024-06-17 03:39:50,341 - mmseg - INFO - Iter [64400/80000] lr: 6.318e-07, eta: 7:30:42, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1383, decode.acc_seg: 93.6483, aux.loss_ce: 0.0593, aux.acc_seg: 93.2769, loss: 0.1977 2024-06-17 03:41:13,084 - mmseg - INFO - Iter [64450/80000] lr: 6.298e-07, eta: 7:29:15, time: 1.655, data_time: 0.053, memory: 65790, decode.loss_ce: 0.1387, decode.acc_seg: 93.7111, aux.loss_ce: 0.0595, aux.acc_seg: 93.3753, loss: 0.1982 2024-06-17 03:42:33,849 - mmseg - INFO - Iter [64500/80000] lr: 6.277e-07, eta: 7:27:47, time: 1.615, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1353, decode.acc_seg: 93.7319, aux.loss_ce: 0.0591, aux.acc_seg: 93.3487, loss: 0.1944 2024-06-17 03:43:54,250 - mmseg - INFO - Iter [64550/80000] lr: 6.257e-07, eta: 7:26:18, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1320, decode.acc_seg: 93.9617, aux.loss_ce: 0.0573, aux.acc_seg: 93.5910, loss: 0.1892 2024-06-17 03:45:14,871 - mmseg - INFO - Iter [64600/80000] lr: 6.237e-07, eta: 7:24:50, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1329, decode.acc_seg: 93.9206, aux.loss_ce: 0.0578, aux.acc_seg: 93.5127, loss: 0.1907 2024-06-17 03:46:35,324 - mmseg - INFO - Iter [64650/80000] lr: 6.217e-07, eta: 7:23:22, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1416, decode.acc_seg: 93.5347, aux.loss_ce: 0.0612, aux.acc_seg: 93.1581, loss: 0.2029 2024-06-17 03:47:55,899 - mmseg - INFO - Iter [64700/80000] lr: 6.197e-07, eta: 7:21:54, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1311, decode.acc_seg: 94.1064, aux.loss_ce: 0.0568, aux.acc_seg: 93.7413, loss: 0.1879 2024-06-17 03:49:16,236 - mmseg - INFO - Iter [64750/80000] lr: 6.176e-07, eta: 7:20:26, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1358, decode.acc_seg: 93.8689, aux.loss_ce: 0.0590, aux.acc_seg: 93.5105, loss: 0.1948 2024-06-17 03:50:36,846 - mmseg - INFO - Iter [64800/80000] lr: 6.156e-07, eta: 7:18:58, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1425, decode.acc_seg: 93.7332, aux.loss_ce: 0.0617, aux.acc_seg: 93.2952, loss: 0.2042 2024-06-17 03:51:57,280 - mmseg - INFO - Iter [64850/80000] lr: 6.136e-07, eta: 7:17:30, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1325, decode.acc_seg: 93.9182, aux.loss_ce: 0.0577, aux.acc_seg: 93.4529, loss: 0.1902 2024-06-17 03:53:17,876 - mmseg - INFO - Iter [64900/80000] lr: 6.116e-07, eta: 7:16:02, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1384, decode.acc_seg: 93.7738, aux.loss_ce: 0.0596, aux.acc_seg: 93.3410, loss: 0.1979 2024-06-17 03:54:38,226 - mmseg - INFO - Iter [64950/80000] lr: 6.095e-07, eta: 7:14:34, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1348, decode.acc_seg: 93.9293, aux.loss_ce: 0.0584, aux.acc_seg: 93.5466, loss: 0.1932 2024-06-17 03:55:58,850 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 03:55:58,851 - mmseg - INFO - Iter [65000/80000] lr: 6.075e-07, eta: 7:13:06, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1408, decode.acc_seg: 93.6289, aux.loss_ce: 0.0607, aux.acc_seg: 93.2738, loss: 0.2014 2024-06-17 03:57:23,866 - mmseg - INFO - per class results: 2024-06-17 03:57:23,872 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.33 | 89.74 | | building | 84.72 | 93.3 | | sky | 94.79 | 97.39 | | floor | 83.97 | 91.72 | | tree | 77.36 | 89.67 | | ceiling | 87.38 | 94.4 | | road | 85.44 | 90.42 | | bed | 92.11 | 96.81 | | windowpane | 66.64 | 81.87 | | grass | 68.5 | 82.47 | | cabinet | 67.63 | 78.55 | | sidewalk | 70.72 | 86.55 | | person | 84.89 | 93.59 | | earth | 41.98 | 55.03 | | door | 59.12 | 74.12 | | table | 69.6 | 80.71 | | mountain | 61.96 | 74.95 | | plant | 54.15 | 65.17 | | curtain | 78.17 | 88.54 | | chair | 65.63 | 76.54 | | car | 87.08 | 94.2 | | water | 62.64 | 79.86 | | painting | 80.66 | 91.53 | | sofa | 83.71 | 92.44 | | shelf | 48.32 | 63.39 | | house | 47.86 | 60.06 | | sea | 68.55 | 75.66 | | mirror | 78.75 | 87.12 | | rug | 61.8 | 71.48 | | field | 31.91 | 54.82 | | armchair | 65.42 | 81.03 | | seat | 66.98 | 88.71 | | fence | 52.68 | 67.03 | | desk | 59.25 | 78.74 | | rock | 57.21 | 79.05 | | wardrobe | 54.37 | 72.73 | | lamp | 73.24 | 84.88 | | bathtub | 84.59 | 88.52 | | railing | 43.9 | 62.09 | | cushion | 70.85 | 81.86 | | base | 43.04 | 59.13 | | box | 40.41 | 52.34 | | column | 57.25 | 67.28 | | signboard | 38.97 | 53.51 | | chest of drawers | 49.91 | 79.55 | | counter | 45.43 | 53.34 | | sand | 55.35 | 87.43 | | sink | 78.39 | 85.45 | | skyscraper | 46.73 | 60.0 | | fireplace | 73.71 | 94.29 | | refrigerator | 86.75 | 95.74 | | grandstand | 51.69 | 85.89 | | path | 29.55 | 39.18 | | stairs | 29.12 | 35.27 | | runway | 67.19 | 86.54 | | case | 62.44 | 79.9 | | pool table | 94.24 | 98.11 | | pillow | 68.02 | 79.56 | | screen door | 79.99 | 84.19 | | stairway | 46.5 | 65.0 | | river | 13.9 | 28.16 | | bridge | 72.05 | 88.97 | | bookcase | 42.58 | 60.1 | | blind | 43.14 | 50.99 | | coffee table | 61.16 | 85.92 | | toilet | 89.9 | 94.22 | | flower | 42.34 | 61.06 | | book | 53.02 | 77.62 | | hill | 9.2 | 16.11 | | bench | 56.34 | 64.32 | | countertop | 63.81 | 80.7 | | stove | 86.28 | 92.97 | | palm | 55.05 | 75.61 | | kitchen island | 49.48 | 78.08 | | computer | 78.3 | 90.85 | | swivel chair | 47.67 | 73.34 | | boat | 79.44 | 91.84 | | bar | 61.71 | 83.82 | | arcade machine | 75.16 | 78.29 | | hovel | 40.74 | 46.3 | | bus | 91.41 | 97.13 | | towel | 75.1 | 80.92 | | light | 56.68 | 65.64 | | truck | 46.41 | 59.41 | | tower | 15.69 | 26.34 | | chandelier | 71.59 | 86.55 | | awning | 34.07 | 46.22 | | streetlight | 32.42 | 43.01 | | booth | 55.85 | 65.76 | | television receiver | 76.91 | 88.15 | | airplane | 82.52 | 90.39 | | dirt track | 6.09 | 22.93 | | apparel | 61.6 | 83.61 | | pole | 20.82 | 32.33 | | land | 4.52 | 6.38 | | bannister | 17.32 | 21.03 | | escalator | 65.35 | 87.64 | | ottoman | 56.36 | 75.78 | | bottle | 44.32 | 73.39 | | buffet | 43.65 | 48.43 | | poster | 29.18 | 35.14 | | stage | 23.79 | 48.49 | | van | 49.46 | 69.55 | | ship | 91.12 | 96.07 | | fountain | 39.55 | 40.7 | | conveyer belt | 82.42 | 94.21 | | canopy | 50.29 | 71.27 | | washer | 83.15 | 88.88 | | plaything | 32.29 | 47.18 | | swimming pool | 53.17 | 76.19 | | stool | 45.94 | 65.96 | | barrel | 61.91 | 80.36 | | basket | 44.31 | 56.77 | | waterfall | 64.39 | 74.65 | | tent | 92.75 | 98.51 | | bag | 26.39 | 31.18 | | minibike | 74.38 | 90.19 | | cradle | 84.62 | 98.32 | | oven | 59.6 | 69.1 | | ball | 64.88 | 72.93 | | food | 67.78 | 82.12 | | step | 10.17 | 12.62 | | tank | 63.12 | 74.92 | | trade name | 21.48 | 24.52 | | microwave | 90.49 | 96.2 | | pot | 60.43 | 70.27 | | animal | 62.84 | 65.66 | | bicycle | 60.59 | 81.14 | | lake | 55.78 | 63.61 | | dishwasher | 74.59 | 79.66 | | screen | 60.43 | 89.99 | | blanket | 33.32 | 37.38 | | sculpture | 73.3 | 85.62 | | hood | 61.91 | 74.63 | | sconce | 59.4 | 70.63 | | vase | 48.66 | 64.3 | | traffic light | 38.39 | 63.02 | | tray | 26.23 | 33.44 | | ashcan | 54.15 | 67.79 | | fan | 68.25 | 83.5 | | pier | 39.62 | 45.45 | | crt screen | 2.3 | 3.65 | | plate | 62.27 | 79.3 | | monitor | 57.43 | 66.78 | | bulletin board | 58.04 | 76.87 | | shower | 23.07 | 25.53 | | radiator | 66.89 | 82.27 | | glass | 20.15 | 21.28 | | clock | 49.13 | 66.07 | | flag | 69.7 | 78.88 | +---------------------+-------+-------+ 2024-06-17 03:57:23,872 - mmseg - INFO - Summary: 2024-06-17 03:57:23,872 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 86.09 | 57.83 | 70.48 | +-------+-------+-------+ 2024-06-17 03:57:23,873 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 03:57:23,873 - mmseg - INFO - Iter(val) [250] aAcc: 0.8609, mIoU: 0.5783, mAcc: 0.7048, IoU.wall: 0.8233, IoU.building: 0.8472, IoU.sky: 0.9479, IoU.floor: 0.8397, IoU.tree: 0.7736, IoU.ceiling: 0.8738, IoU.road: 0.8544, IoU.bed : 0.9211, IoU.windowpane: 0.6664, IoU.grass: 0.6850, IoU.cabinet: 0.6763, IoU.sidewalk: 0.7072, IoU.person: 0.8489, IoU.earth: 0.4198, IoU.door: 0.5912, IoU.table: 0.6960, IoU.mountain: 0.6196, IoU.plant: 0.5415, IoU.curtain: 0.7817, IoU.chair: 0.6563, IoU.car: 0.8708, IoU.water: 0.6264, IoU.painting: 0.8066, IoU.sofa: 0.8371, IoU.shelf: 0.4832, IoU.house: 0.4786, IoU.sea: 0.6855, IoU.mirror: 0.7875, IoU.rug: 0.6180, IoU.field: 0.3191, IoU.armchair: 0.6542, IoU.seat: 0.6698, IoU.fence: 0.5268, IoU.desk: 0.5925, IoU.rock: 0.5721, IoU.wardrobe: 0.5437, IoU.lamp: 0.7324, IoU.bathtub: 0.8459, IoU.railing: 0.4390, IoU.cushion: 0.7085, IoU.base: 0.4304, IoU.box: 0.4041, IoU.column: 0.5725, IoU.signboard: 0.3897, IoU.chest of drawers: 0.4991, IoU.counter: 0.4543, IoU.sand: 0.5535, IoU.sink: 0.7839, IoU.skyscraper: 0.4673, IoU.fireplace: 0.7371, IoU.refrigerator: 0.8675, IoU.grandstand: 0.5169, IoU.path: 0.2955, IoU.stairs: 0.2912, IoU.runway: 0.6719, IoU.case: 0.6244, IoU.pool table: 0.9424, IoU.pillow: 0.6802, IoU.screen door: 0.7999, IoU.stairway: 0.4650, IoU.river: 0.1390, IoU.bridge: 0.7205, IoU.bookcase: 0.4258, IoU.blind: 0.4314, IoU.coffee table: 0.6116, IoU.toilet: 0.8990, IoU.flower: 0.4234, IoU.book: 0.5302, IoU.hill: 0.0920, IoU.bench: 0.5634, IoU.countertop: 0.6381, IoU.stove: 0.8628, IoU.palm: 0.5505, IoU.kitchen island: 0.4948, IoU.computer: 0.7830, IoU.swivel chair: 0.4767, IoU.boat: 0.7944, IoU.bar: 0.6171, IoU.arcade machine: 0.7516, IoU.hovel: 0.4074, IoU.bus: 0.9141, IoU.towel: 0.7510, IoU.light: 0.5668, IoU.truck: 0.4641, IoU.tower: 0.1569, IoU.chandelier: 0.7159, IoU.awning: 0.3407, IoU.streetlight: 0.3242, IoU.booth: 0.5585, IoU.television receiver: 0.7691, IoU.airplane: 0.8252, IoU.dirt track: 0.0609, IoU.apparel: 0.6160, IoU.pole: 0.2082, IoU.land: 0.0452, IoU.bannister: 0.1732, IoU.escalator: 0.6535, IoU.ottoman: 0.5636, IoU.bottle: 0.4432, IoU.buffet: 0.4365, IoU.poster: 0.2918, IoU.stage: 0.2379, IoU.van: 0.4946, IoU.ship: 0.9112, IoU.fountain: 0.3955, IoU.conveyer belt: 0.8242, IoU.canopy: 0.5029, IoU.washer: 0.8315, IoU.plaything: 0.3229, IoU.swimming pool: 0.5317, IoU.stool: 0.4594, IoU.barrel: 0.6191, IoU.basket: 0.4431, IoU.waterfall: 0.6439, IoU.tent: 0.9275, IoU.bag: 0.2639, IoU.minibike: 0.7438, IoU.cradle: 0.8462, IoU.oven: 0.5960, IoU.ball: 0.6488, IoU.food: 0.6778, IoU.step: 0.1017, IoU.tank: 0.6312, IoU.trade name: 0.2148, IoU.microwave: 0.9049, IoU.pot: 0.6043, IoU.animal: 0.6284, IoU.bicycle: 0.6059, IoU.lake: 0.5578, IoU.dishwasher: 0.7459, IoU.screen: 0.6043, IoU.blanket: 0.3332, IoU.sculpture: 0.7330, IoU.hood: 0.6191, IoU.sconce: 0.5940, IoU.vase: 0.4866, IoU.traffic light: 0.3839, IoU.tray: 0.2623, IoU.ashcan: 0.5415, IoU.fan: 0.6825, IoU.pier: 0.3962, IoU.crt screen: 0.0230, IoU.plate: 0.6227, IoU.monitor: 0.5743, IoU.bulletin board: 0.5804, IoU.shower: 0.2307, IoU.radiator: 0.6689, IoU.glass: 0.2015, IoU.clock: 0.4913, IoU.flag: 0.6970, Acc.wall: 0.8974, Acc.building: 0.9330, Acc.sky: 0.9739, Acc.floor: 0.9172, Acc.tree: 0.8967, Acc.ceiling: 0.9440, Acc.road: 0.9042, Acc.bed : 0.9681, Acc.windowpane: 0.8187, Acc.grass: 0.8247, Acc.cabinet: 0.7855, Acc.sidewalk: 0.8655, Acc.person: 0.9359, Acc.earth: 0.5503, Acc.door: 0.7412, Acc.table: 0.8071, Acc.mountain: 0.7495, Acc.plant: 0.6517, Acc.curtain: 0.8854, Acc.chair: 0.7654, Acc.car: 0.9420, Acc.water: 0.7986, Acc.painting: 0.9153, Acc.sofa: 0.9244, Acc.shelf: 0.6339, Acc.house: 0.6006, Acc.sea: 0.7566, Acc.mirror: 0.8712, Acc.rug: 0.7148, Acc.field: 0.5482, Acc.armchair: 0.8103, Acc.seat: 0.8871, Acc.fence: 0.6703, Acc.desk: 0.7874, Acc.rock: 0.7905, Acc.wardrobe: 0.7273, Acc.lamp: 0.8488, Acc.bathtub: 0.8852, Acc.railing: 0.6209, Acc.cushion: 0.8186, Acc.base: 0.5913, Acc.box: 0.5234, Acc.column: 0.6728, Acc.signboard: 0.5351, Acc.chest of drawers: 0.7955, Acc.counter: 0.5334, Acc.sand: 0.8743, Acc.sink: 0.8545, Acc.skyscraper: 0.6000, Acc.fireplace: 0.9429, Acc.refrigerator: 0.9574, Acc.grandstand: 0.8589, Acc.path: 0.3918, Acc.stairs: 0.3527, Acc.runway: 0.8654, Acc.case: 0.7990, Acc.pool table: 0.9811, Acc.pillow: 0.7956, Acc.screen door: 0.8419, Acc.stairway: 0.6500, Acc.river: 0.2816, Acc.bridge: 0.8897, Acc.bookcase: 0.6010, Acc.blind: 0.5099, Acc.coffee table: 0.8592, Acc.toilet: 0.9422, Acc.flower: 0.6106, Acc.book: 0.7762, Acc.hill: 0.1611, Acc.bench: 0.6432, Acc.countertop: 0.8070, Acc.stove: 0.9297, Acc.palm: 0.7561, Acc.kitchen island: 0.7808, Acc.computer: 0.9085, Acc.swivel chair: 0.7334, Acc.boat: 0.9184, Acc.bar: 0.8382, Acc.arcade machine: 0.7829, Acc.hovel: 0.4630, Acc.bus: 0.9713, Acc.towel: 0.8092, Acc.light: 0.6564, Acc.truck: 0.5941, Acc.tower: 0.2634, Acc.chandelier: 0.8655, Acc.awning: 0.4622, Acc.streetlight: 0.4301, Acc.booth: 0.6576, Acc.television receiver: 0.8815, Acc.airplane: 0.9039, Acc.dirt track: 0.2293, Acc.apparel: 0.8361, Acc.pole: 0.3233, Acc.land: 0.0638, Acc.bannister: 0.2103, Acc.escalator: 0.8764, Acc.ottoman: 0.7578, Acc.bottle: 0.7339, Acc.buffet: 0.4843, Acc.poster: 0.3514, Acc.stage: 0.4849, Acc.van: 0.6955, Acc.ship: 0.9607, Acc.fountain: 0.4070, Acc.conveyer belt: 0.9421, Acc.canopy: 0.7127, Acc.washer: 0.8888, Acc.plaything: 0.4718, Acc.swimming pool: 0.7619, Acc.stool: 0.6596, Acc.barrel: 0.8036, Acc.basket: 0.5677, Acc.waterfall: 0.7465, Acc.tent: 0.9851, Acc.bag: 0.3118, Acc.minibike: 0.9019, Acc.cradle: 0.9832, Acc.oven: 0.6910, Acc.ball: 0.7293, Acc.food: 0.8212, Acc.step: 0.1262, Acc.tank: 0.7492, Acc.trade name: 0.2452, Acc.microwave: 0.9620, Acc.pot: 0.7027, Acc.animal: 0.6566, Acc.bicycle: 0.8114, Acc.lake: 0.6361, Acc.dishwasher: 0.7966, Acc.screen: 0.8999, Acc.blanket: 0.3738, Acc.sculpture: 0.8562, Acc.hood: 0.7463, Acc.sconce: 0.7063, Acc.vase: 0.6430, Acc.traffic light: 0.6302, Acc.tray: 0.3344, Acc.ashcan: 0.6779, Acc.fan: 0.8350, Acc.pier: 0.4545, Acc.crt screen: 0.0365, Acc.plate: 0.7930, Acc.monitor: 0.6678, Acc.bulletin board: 0.7687, Acc.shower: 0.2553, Acc.radiator: 0.8227, Acc.glass: 0.2128, Acc.clock: 0.6607, Acc.flag: 0.7888 2024-06-17 03:58:44,559 - mmseg - INFO - Iter [65050/80000] lr: 6.055e-07, eta: 7:11:57, time: 3.314, data_time: 1.714, memory: 65790, decode.loss_ce: 0.1417, decode.acc_seg: 93.6984, aux.loss_ce: 0.0614, aux.acc_seg: 93.2976, loss: 0.2032 2024-06-17 04:00:04,941 - mmseg - INFO - Iter [65100/80000] lr: 6.035e-07, eta: 7:10:29, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1366, decode.acc_seg: 93.8348, aux.loss_ce: 0.0591, aux.acc_seg: 93.4365, loss: 0.1956 2024-06-17 04:01:25,281 - mmseg - INFO - Iter [65150/80000] lr: 6.014e-07, eta: 7:09:01, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1264, decode.acc_seg: 94.2519, aux.loss_ce: 0.0550, aux.acc_seg: 93.8931, loss: 0.1813 2024-06-17 04:02:45,612 - mmseg - INFO - Iter [65200/80000] lr: 5.994e-07, eta: 7:07:33, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1346, decode.acc_seg: 94.0014, aux.loss_ce: 0.0578, aux.acc_seg: 93.6545, loss: 0.1925 2024-06-17 04:04:05,944 - mmseg - INFO - Iter [65250/80000] lr: 5.974e-07, eta: 7:06:05, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1349, decode.acc_seg: 93.8963, aux.loss_ce: 0.0582, aux.acc_seg: 93.4847, loss: 0.1931 2024-06-17 04:05:26,401 - mmseg - INFO - Iter [65300/80000] lr: 5.954e-07, eta: 7:04:37, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1378, decode.acc_seg: 93.6872, aux.loss_ce: 0.0593, aux.acc_seg: 93.3162, loss: 0.1972 2024-06-17 04:06:46,772 - mmseg - INFO - Iter [65350/80000] lr: 5.933e-07, eta: 7:03:09, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1418, decode.acc_seg: 93.5546, aux.loss_ce: 0.0613, aux.acc_seg: 93.0986, loss: 0.2031 2024-06-17 04:08:07,087 - mmseg - INFO - Iter [65400/80000] lr: 5.913e-07, eta: 7:01:41, time: 1.606, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1410, decode.acc_seg: 93.6378, aux.loss_ce: 0.0613, aux.acc_seg: 93.2361, loss: 0.2023 2024-06-17 04:09:27,411 - mmseg - INFO - Iter [65450/80000] lr: 5.893e-07, eta: 7:00:13, time: 1.606, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1405, decode.acc_seg: 93.5822, aux.loss_ce: 0.0605, aux.acc_seg: 93.2563, loss: 0.2010 2024-06-17 04:10:47,805 - mmseg - INFO - Iter [65500/80000] lr: 5.873e-07, eta: 6:58:44, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1403, decode.acc_seg: 93.7632, aux.loss_ce: 0.0603, aux.acc_seg: 93.4661, loss: 0.2006 2024-06-17 04:12:08,230 - mmseg - INFO - Iter [65550/80000] lr: 5.852e-07, eta: 6:57:16, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1231, decode.acc_seg: 94.2735, aux.loss_ce: 0.0541, aux.acc_seg: 93.8475, loss: 0.1772 2024-06-17 04:13:28,748 - mmseg - INFO - Iter [65600/80000] lr: 5.832e-07, eta: 6:55:49, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1324, decode.acc_seg: 94.0120, aux.loss_ce: 0.0572, aux.acc_seg: 93.6694, loss: 0.1896 2024-06-17 04:14:49,068 - mmseg - INFO - Iter [65650/80000] lr: 5.812e-07, eta: 6:54:20, time: 1.606, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1440, decode.acc_seg: 93.5711, aux.loss_ce: 0.0622, aux.acc_seg: 93.1821, loss: 0.2062 2024-06-17 04:16:11,572 - mmseg - INFO - Iter [65700/80000] lr: 5.792e-07, eta: 6:52:53, time: 1.650, data_time: 0.049, memory: 65790, decode.loss_ce: 0.1363, decode.acc_seg: 94.0164, aux.loss_ce: 0.0588, aux.acc_seg: 93.6425, loss: 0.1950 2024-06-17 04:17:32,057 - mmseg - INFO - Iter [65750/80000] lr: 5.771e-07, eta: 6:51:25, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1387, decode.acc_seg: 93.8708, aux.loss_ce: 0.0605, aux.acc_seg: 93.4410, loss: 0.1992 2024-06-17 04:18:52,530 - mmseg - INFO - Iter [65800/80000] lr: 5.751e-07, eta: 6:49:57, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1306, decode.acc_seg: 94.1890, aux.loss_ce: 0.0562, aux.acc_seg: 93.8409, loss: 0.1868 2024-06-17 04:20:12,869 - mmseg - INFO - Iter [65850/80000] lr: 5.731e-07, eta: 6:48:29, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1308, decode.acc_seg: 94.1454, aux.loss_ce: 0.0572, aux.acc_seg: 93.7366, loss: 0.1880 2024-06-17 04:21:33,331 - mmseg - INFO - Iter [65900/80000] lr: 5.711e-07, eta: 6:47:01, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1387, decode.acc_seg: 93.8017, aux.loss_ce: 0.0605, aux.acc_seg: 93.4080, loss: 0.1992 2024-06-17 04:22:53,688 - mmseg - INFO - Iter [65950/80000] lr: 5.690e-07, eta: 6:45:33, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1362, decode.acc_seg: 93.9085, aux.loss_ce: 0.0593, aux.acc_seg: 93.5035, loss: 0.1955 2024-06-17 04:24:14,182 - mmseg - INFO - Saving checkpoint at 66000 iterations 2024-06-17 04:25:30,008 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 04:25:30,009 - mmseg - INFO - Iter [66000/80000] lr: 5.670e-07, eta: 6:44:21, time: 3.126, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1372, decode.acc_seg: 93.8510, aux.loss_ce: 0.0585, aux.acc_seg: 93.4971, loss: 0.1957 2024-06-17 04:26:52,440 - mmseg - INFO - per class results: 2024-06-17 04:26:52,446 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.23 | 89.74 | | building | 84.37 | 92.49 | | sky | 94.78 | 97.33 | | floor | 84.08 | 91.47 | | tree | 77.27 | 90.56 | | ceiling | 87.37 | 94.87 | | road | 85.88 | 91.21 | | bed | 92.12 | 96.87 | | windowpane | 66.64 | 81.43 | | grass | 68.81 | 82.25 | | cabinet | 66.6 | 77.25 | | sidewalk | 72.19 | 86.41 | | person | 84.93 | 93.28 | | earth | 42.46 | 55.89 | | door | 60.63 | 74.88 | | table | 70.4 | 81.02 | | mountain | 62.73 | 77.47 | | plant | 54.66 | 66.32 | | curtain | 78.46 | 88.11 | | chair | 66.17 | 77.14 | | car | 87.5 | 93.89 | | water | 62.01 | 77.01 | | painting | 80.3 | 90.28 | | sofa | 83.24 | 91.78 | | shelf | 47.22 | 61.37 | | house | 48.85 | 69.09 | | sea | 72.76 | 81.75 | | mirror | 78.58 | 86.86 | | rug | 62.68 | 75.26 | | field | 31.6 | 52.63 | | armchair | 65.66 | 82.02 | | seat | 69.44 | 88.72 | | fence | 52.78 | 64.92 | | desk | 59.76 | 76.87 | | rock | 55.78 | 77.97 | | wardrobe | 54.07 | 75.31 | | lamp | 72.91 | 83.53 | | bathtub | 84.45 | 87.49 | | railing | 43.84 | 59.3 | | cushion | 69.15 | 83.79 | | base | 43.17 | 60.89 | | box | 41.15 | 53.45 | | column | 57.54 | 69.59 | | signboard | 40.1 | 56.4 | | chest of drawers | 43.67 | 68.26 | | counter | 46.71 | 54.85 | | sand | 56.77 | 85.38 | | sink | 79.11 | 85.94 | | skyscraper | 46.31 | 58.97 | | fireplace | 74.91 | 93.79 | | refrigerator | 84.31 | 96.36 | | grandstand | 57.85 | 85.31 | | path | 29.64 | 43.5 | | stairs | 33.05 | 40.86 | | runway | 67.34 | 86.81 | | case | 61.42 | 86.01 | | pool table | 94.41 | 98.01 | | pillow | 63.56 | 72.08 | | screen door | 79.58 | 86.99 | | stairway | 43.22 | 61.84 | | river | 12.19 | 27.27 | | bridge | 69.17 | 85.26 | | bookcase | 42.31 | 60.41 | | blind | 40.67 | 46.77 | | coffee table | 62.53 | 83.79 | | toilet | 89.97 | 94.08 | | flower | 43.75 | 57.99 | | book | 52.19 | 77.84 | | hill | 9.0 | 14.72 | | bench | 56.84 | 62.89 | | countertop | 63.46 | 84.25 | | stove | 85.95 | 93.03 | | palm | 54.71 | 76.23 | | kitchen island | 50.22 | 79.03 | | computer | 79.14 | 90.41 | | swivel chair | 46.62 | 73.34 | | boat | 80.07 | 90.36 | | bar | 60.07 | 82.92 | | arcade machine | 79.91 | 83.4 | | hovel | 23.22 | 26.3 | | bus | 91.77 | 97.33 | | towel | 75.72 | 83.43 | | light | 56.71 | 65.0 | | truck | 48.04 | 60.21 | | tower | 16.02 | 28.16 | | chandelier | 70.36 | 81.12 | | awning | 34.51 | 45.31 | | streetlight | 31.37 | 39.78 | | booth | 52.34 | 66.19 | | television receiver | 79.93 | 86.23 | | airplane | 85.0 | 93.41 | | dirt track | 5.94 | 23.34 | | apparel | 59.09 | 75.91 | | pole | 23.77 | 36.94 | | land | 3.96 | 5.17 | | bannister | 18.4 | 23.22 | | escalator | 66.57 | 86.49 | | ottoman | 58.4 | 75.2 | | bottle | 44.51 | 74.04 | | buffet | 62.18 | 70.49 | | poster | 32.63 | 40.3 | | stage | 24.58 | 47.22 | | van | 51.64 | 76.22 | | ship | 93.72 | 96.72 | | fountain | 38.68 | 39.4 | | conveyer belt | 82.33 | 94.67 | | canopy | 52.03 | 70.92 | | washer | 85.52 | 91.61 | | plaything | 32.39 | 50.76 | | swimming pool | 53.62 | 77.47 | | stool | 49.01 | 62.95 | | barrel | 61.5 | 79.83 | | basket | 44.58 | 59.43 | | waterfall | 65.99 | 79.8 | | tent | 95.01 | 98.44 | | bag | 28.14 | 32.55 | | minibike | 74.72 | 88.42 | | cradle | 83.31 | 98.1 | | oven | 57.89 | 68.94 | | ball | 58.9 | 62.4 | | food | 60.41 | 67.77 | | step | 9.83 | 12.12 | | tank | 61.83 | 67.64 | | trade name | 26.0 | 30.89 | | microwave | 90.31 | 96.57 | | pot | 60.3 | 71.06 | | animal | 60.38 | 62.26 | | bicycle | 60.67 | 79.28 | | lake | 54.27 | 63.58 | | dishwasher | 70.99 | 80.16 | | screen | 60.54 | 93.43 | | blanket | 34.24 | 40.16 | | sculpture | 72.84 | 85.9 | | hood | 61.59 | 73.13 | | sconce | 58.01 | 67.35 | | vase | 49.37 | 64.0 | | traffic light | 39.68 | 58.65 | | tray | 26.88 | 35.78 | | ashcan | 55.31 | 66.52 | | fan | 68.25 | 83.75 | | pier | 40.03 | 44.45 | | crt screen | 3.06 | 3.81 | | plate | 63.26 | 76.73 | | monitor | 66.25 | 78.99 | | bulletin board | 57.88 | 78.05 | | shower | 23.25 | 25.34 | | radiator | 66.57 | 84.36 | | glass | 20.74 | 22.04 | | clock | 51.42 | 63.73 | | flag | 69.15 | 78.65 | +---------------------+-------+-------+ 2024-06-17 04:26:52,446 - mmseg - INFO - Summary: 2024-06-17 04:26:52,446 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 86.11 | 58.04 | 70.47 | +-------+-------+-------+ 2024-06-17 04:26:52,447 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 04:26:52,447 - mmseg - INFO - Iter(val) [250] aAcc: 0.8611, mIoU: 0.5804, mAcc: 0.7047, IoU.wall: 0.8223, IoU.building: 0.8437, IoU.sky: 0.9478, IoU.floor: 0.8408, IoU.tree: 0.7727, IoU.ceiling: 0.8737, IoU.road: 0.8588, IoU.bed : 0.9212, IoU.windowpane: 0.6664, IoU.grass: 0.6881, IoU.cabinet: 0.6660, IoU.sidewalk: 0.7219, IoU.person: 0.8493, IoU.earth: 0.4246, IoU.door: 0.6063, IoU.table: 0.7040, IoU.mountain: 0.6273, IoU.plant: 0.5466, IoU.curtain: 0.7846, IoU.chair: 0.6617, IoU.car: 0.8750, IoU.water: 0.6201, IoU.painting: 0.8030, IoU.sofa: 0.8324, IoU.shelf: 0.4722, IoU.house: 0.4885, IoU.sea: 0.7276, IoU.mirror: 0.7858, IoU.rug: 0.6268, IoU.field: 0.3160, IoU.armchair: 0.6566, IoU.seat: 0.6944, IoU.fence: 0.5278, IoU.desk: 0.5976, IoU.rock: 0.5578, IoU.wardrobe: 0.5407, IoU.lamp: 0.7291, IoU.bathtub: 0.8445, IoU.railing: 0.4384, IoU.cushion: 0.6915, IoU.base: 0.4317, IoU.box: 0.4115, IoU.column: 0.5754, IoU.signboard: 0.4010, IoU.chest of drawers: 0.4367, IoU.counter: 0.4671, IoU.sand: 0.5677, IoU.sink: 0.7911, IoU.skyscraper: 0.4631, IoU.fireplace: 0.7491, IoU.refrigerator: 0.8431, IoU.grandstand: 0.5785, IoU.path: 0.2964, IoU.stairs: 0.3305, IoU.runway: 0.6734, IoU.case: 0.6142, IoU.pool table: 0.9441, IoU.pillow: 0.6356, IoU.screen door: 0.7958, IoU.stairway: 0.4322, IoU.river: 0.1219, IoU.bridge: 0.6917, IoU.bookcase: 0.4231, IoU.blind: 0.4067, IoU.coffee table: 0.6253, IoU.toilet: 0.8997, IoU.flower: 0.4375, IoU.book: 0.5219, IoU.hill: 0.0900, IoU.bench: 0.5684, IoU.countertop: 0.6346, IoU.stove: 0.8595, IoU.palm: 0.5471, IoU.kitchen island: 0.5022, IoU.computer: 0.7914, IoU.swivel chair: 0.4662, IoU.boat: 0.8007, IoU.bar: 0.6007, IoU.arcade machine: 0.7991, IoU.hovel: 0.2322, IoU.bus: 0.9177, IoU.towel: 0.7572, IoU.light: 0.5671, IoU.truck: 0.4804, IoU.tower: 0.1602, IoU.chandelier: 0.7036, IoU.awning: 0.3451, IoU.streetlight: 0.3137, IoU.booth: 0.5234, IoU.television receiver: 0.7993, IoU.airplane: 0.8500, IoU.dirt track: 0.0594, IoU.apparel: 0.5909, IoU.pole: 0.2377, IoU.land: 0.0396, IoU.bannister: 0.1840, IoU.escalator: 0.6657, IoU.ottoman: 0.5840, IoU.bottle: 0.4451, IoU.buffet: 0.6218, IoU.poster: 0.3263, IoU.stage: 0.2458, IoU.van: 0.5164, IoU.ship: 0.9372, IoU.fountain: 0.3868, IoU.conveyer belt: 0.8233, IoU.canopy: 0.5203, IoU.washer: 0.8552, IoU.plaything: 0.3239, IoU.swimming pool: 0.5362, IoU.stool: 0.4901, IoU.barrel: 0.6150, IoU.basket: 0.4458, IoU.waterfall: 0.6599, IoU.tent: 0.9501, IoU.bag: 0.2814, IoU.minibike: 0.7472, IoU.cradle: 0.8331, IoU.oven: 0.5789, IoU.ball: 0.5890, IoU.food: 0.6041, IoU.step: 0.0983, IoU.tank: 0.6183, IoU.trade name: 0.2600, IoU.microwave: 0.9031, IoU.pot: 0.6030, IoU.animal: 0.6038, IoU.bicycle: 0.6067, IoU.lake: 0.5427, IoU.dishwasher: 0.7099, IoU.screen: 0.6054, IoU.blanket: 0.3424, IoU.sculpture: 0.7284, IoU.hood: 0.6159, IoU.sconce: 0.5801, IoU.vase: 0.4937, IoU.traffic light: 0.3968, IoU.tray: 0.2688, IoU.ashcan: 0.5531, IoU.fan: 0.6825, IoU.pier: 0.4003, IoU.crt screen: 0.0306, IoU.plate: 0.6326, IoU.monitor: 0.6625, IoU.bulletin board: 0.5788, IoU.shower: 0.2325, IoU.radiator: 0.6657, IoU.glass: 0.2074, IoU.clock: 0.5142, IoU.flag: 0.6915, Acc.wall: 0.8974, Acc.building: 0.9249, Acc.sky: 0.9733, Acc.floor: 0.9147, Acc.tree: 0.9056, Acc.ceiling: 0.9487, Acc.road: 0.9121, Acc.bed : 0.9687, Acc.windowpane: 0.8143, Acc.grass: 0.8225, Acc.cabinet: 0.7725, Acc.sidewalk: 0.8641, Acc.person: 0.9328, Acc.earth: 0.5589, Acc.door: 0.7488, Acc.table: 0.8102, Acc.mountain: 0.7747, Acc.plant: 0.6632, Acc.curtain: 0.8811, Acc.chair: 0.7714, Acc.car: 0.9389, Acc.water: 0.7701, Acc.painting: 0.9028, Acc.sofa: 0.9178, Acc.shelf: 0.6137, Acc.house: 0.6909, Acc.sea: 0.8175, Acc.mirror: 0.8686, Acc.rug: 0.7526, Acc.field: 0.5263, Acc.armchair: 0.8202, Acc.seat: 0.8872, Acc.fence: 0.6492, Acc.desk: 0.7687, Acc.rock: 0.7797, Acc.wardrobe: 0.7531, Acc.lamp: 0.8353, Acc.bathtub: 0.8749, Acc.railing: 0.5930, Acc.cushion: 0.8379, Acc.base: 0.6089, Acc.box: 0.5345, Acc.column: 0.6959, Acc.signboard: 0.5640, Acc.chest of drawers: 0.6826, Acc.counter: 0.5485, Acc.sand: 0.8538, Acc.sink: 0.8594, Acc.skyscraper: 0.5897, Acc.fireplace: 0.9379, Acc.refrigerator: 0.9636, Acc.grandstand: 0.8531, Acc.path: 0.4350, Acc.stairs: 0.4086, Acc.runway: 0.8681, Acc.case: 0.8601, Acc.pool table: 0.9801, Acc.pillow: 0.7208, Acc.screen door: 0.8699, Acc.stairway: 0.6184, Acc.river: 0.2727, Acc.bridge: 0.8526, Acc.bookcase: 0.6041, Acc.blind: 0.4677, Acc.coffee table: 0.8379, Acc.toilet: 0.9408, Acc.flower: 0.5799, Acc.book: 0.7784, Acc.hill: 0.1472, Acc.bench: 0.6289, Acc.countertop: 0.8425, Acc.stove: 0.9303, Acc.palm: 0.7623, Acc.kitchen island: 0.7903, Acc.computer: 0.9041, Acc.swivel chair: 0.7334, Acc.boat: 0.9036, Acc.bar: 0.8292, Acc.arcade machine: 0.8340, Acc.hovel: 0.2630, Acc.bus: 0.9733, Acc.towel: 0.8343, Acc.light: 0.6500, Acc.truck: 0.6021, Acc.tower: 0.2816, Acc.chandelier: 0.8112, Acc.awning: 0.4531, Acc.streetlight: 0.3978, Acc.booth: 0.6619, Acc.television receiver: 0.8623, Acc.airplane: 0.9341, Acc.dirt track: 0.2334, Acc.apparel: 0.7591, Acc.pole: 0.3694, Acc.land: 0.0517, Acc.bannister: 0.2322, Acc.escalator: 0.8649, Acc.ottoman: 0.7520, Acc.bottle: 0.7404, Acc.buffet: 0.7049, Acc.poster: 0.4030, Acc.stage: 0.4722, Acc.van: 0.7622, Acc.ship: 0.9672, Acc.fountain: 0.3940, Acc.conveyer belt: 0.9467, Acc.canopy: 0.7092, Acc.washer: 0.9161, Acc.plaything: 0.5076, Acc.swimming pool: 0.7747, Acc.stool: 0.6295, Acc.barrel: 0.7983, Acc.basket: 0.5943, Acc.waterfall: 0.7980, Acc.tent: 0.9844, Acc.bag: 0.3255, Acc.minibike: 0.8842, Acc.cradle: 0.9810, Acc.oven: 0.6894, Acc.ball: 0.6240, Acc.food: 0.6777, Acc.step: 0.1212, Acc.tank: 0.6764, Acc.trade name: 0.3089, Acc.microwave: 0.9657, Acc.pot: 0.7106, Acc.animal: 0.6226, Acc.bicycle: 0.7928, Acc.lake: 0.6358, Acc.dishwasher: 0.8016, Acc.screen: 0.9343, Acc.blanket: 0.4016, Acc.sculpture: 0.8590, Acc.hood: 0.7313, Acc.sconce: 0.6735, Acc.vase: 0.6400, Acc.traffic light: 0.5865, Acc.tray: 0.3578, Acc.ashcan: 0.6652, Acc.fan: 0.8375, Acc.pier: 0.4445, Acc.crt screen: 0.0381, Acc.plate: 0.7673, Acc.monitor: 0.7899, Acc.bulletin board: 0.7805, Acc.shower: 0.2534, Acc.radiator: 0.8436, Acc.glass: 0.2204, Acc.clock: 0.6373, Acc.flag: 0.7865 2024-06-17 04:28:13,189 - mmseg - INFO - Iter [66050/80000] lr: 5.650e-07, eta: 6:43:11, time: 3.264, data_time: 1.662, memory: 65790, decode.loss_ce: 0.1350, decode.acc_seg: 93.7264, aux.loss_ce: 0.0586, aux.acc_seg: 93.2746, loss: 0.1936 2024-06-17 04:29:33,640 - mmseg - INFO - Iter [66100/80000] lr: 5.630e-07, eta: 6:41:43, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1262, decode.acc_seg: 94.1159, aux.loss_ce: 0.0550, aux.acc_seg: 93.7644, loss: 0.1812 2024-06-17 04:30:54,090 - mmseg - INFO - Iter [66150/80000] lr: 5.609e-07, eta: 6:40:15, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1341, decode.acc_seg: 93.8986, aux.loss_ce: 0.0584, aux.acc_seg: 93.5007, loss: 0.1925 2024-06-17 04:32:14,436 - mmseg - INFO - Iter [66200/80000] lr: 5.589e-07, eta: 6:38:47, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1343, decode.acc_seg: 93.9813, aux.loss_ce: 0.0582, aux.acc_seg: 93.5836, loss: 0.1925 2024-06-17 04:33:34,892 - mmseg - INFO - Iter [66250/80000] lr: 5.569e-07, eta: 6:37:19, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1352, decode.acc_seg: 93.7111, aux.loss_ce: 0.0591, aux.acc_seg: 93.3148, loss: 0.1943 2024-06-17 04:34:55,323 - mmseg - INFO - Iter [66300/80000] lr: 5.549e-07, eta: 6:35:51, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1372, decode.acc_seg: 93.5612, aux.loss_ce: 0.0594, aux.acc_seg: 93.2022, loss: 0.1966 2024-06-17 04:36:15,775 - mmseg - INFO - Iter [66350/80000] lr: 5.528e-07, eta: 6:34:23, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1422, decode.acc_seg: 93.6087, aux.loss_ce: 0.0610, aux.acc_seg: 93.2928, loss: 0.2032 2024-06-17 04:37:36,273 - mmseg - INFO - Iter [66400/80000] lr: 5.508e-07, eta: 6:32:55, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1370, decode.acc_seg: 93.9847, aux.loss_ce: 0.0596, aux.acc_seg: 93.5671, loss: 0.1966 2024-06-17 04:38:56,739 - mmseg - INFO - Iter [66450/80000] lr: 5.488e-07, eta: 6:31:27, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1377, decode.acc_seg: 93.8373, aux.loss_ce: 0.0595, aux.acc_seg: 93.4970, loss: 0.1972 2024-06-17 04:40:17,174 - mmseg - INFO - Iter [66500/80000] lr: 5.468e-07, eta: 6:29:59, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1341, decode.acc_seg: 93.8581, aux.loss_ce: 0.0584, aux.acc_seg: 93.4354, loss: 0.1925 2024-06-17 04:41:37,516 - mmseg - INFO - Iter [66550/80000] lr: 5.447e-07, eta: 6:28:31, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1474, decode.acc_seg: 93.5233, aux.loss_ce: 0.0636, aux.acc_seg: 93.1302, loss: 0.2110 2024-06-17 04:42:58,027 - mmseg - INFO - Iter [66600/80000] lr: 5.427e-07, eta: 6:27:03, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1335, decode.acc_seg: 93.8820, aux.loss_ce: 0.0580, aux.acc_seg: 93.5002, loss: 0.1915 2024-06-17 04:44:18,528 - mmseg - INFO - Iter [66650/80000] lr: 5.407e-07, eta: 6:25:35, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1322, decode.acc_seg: 93.7938, aux.loss_ce: 0.0574, aux.acc_seg: 93.4682, loss: 0.1896 2024-06-17 04:45:38,962 - mmseg - INFO - Iter [66700/80000] lr: 5.387e-07, eta: 6:24:08, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1348, decode.acc_seg: 93.7655, aux.loss_ce: 0.0586, aux.acc_seg: 93.3051, loss: 0.1934 2024-06-17 04:46:59,332 - mmseg - INFO - Iter [66750/80000] lr: 5.366e-07, eta: 6:22:40, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1399, decode.acc_seg: 93.6485, aux.loss_ce: 0.0608, aux.acc_seg: 93.2864, loss: 0.2008 2024-06-17 04:48:19,739 - mmseg - INFO - Iter [66800/80000] lr: 5.346e-07, eta: 6:21:12, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1350, decode.acc_seg: 93.8042, aux.loss_ce: 0.0578, aux.acc_seg: 93.5028, loss: 0.1928 2024-06-17 04:49:40,191 - mmseg - INFO - Iter [66850/80000] lr: 5.326e-07, eta: 6:19:44, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1349, decode.acc_seg: 93.6966, aux.loss_ce: 0.0590, aux.acc_seg: 93.2656, loss: 0.1939 2024-06-17 04:51:00,729 - mmseg - INFO - Iter [66900/80000] lr: 5.306e-07, eta: 6:18:16, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1318, decode.acc_seg: 94.0471, aux.loss_ce: 0.0571, aux.acc_seg: 93.5741, loss: 0.1889 2024-06-17 04:52:23,472 - mmseg - INFO - Iter [66950/80000] lr: 5.285e-07, eta: 6:16:49, time: 1.655, data_time: 0.050, memory: 65790, decode.loss_ce: 0.1347, decode.acc_seg: 93.9662, aux.loss_ce: 0.0585, aux.acc_seg: 93.5888, loss: 0.1932 2024-06-17 04:53:43,942 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 04:53:43,942 - mmseg - INFO - Iter [67000/80000] lr: 5.265e-07, eta: 6:15:21, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1354, decode.acc_seg: 93.8839, aux.loss_ce: 0.0590, aux.acc_seg: 93.4546, loss: 0.1944 2024-06-17 04:55:08,055 - mmseg - INFO - per class results: 2024-06-17 04:55:08,061 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.46 | 90.01 | | building | 84.6 | 93.65 | | sky | 94.84 | 97.88 | | floor | 84.55 | 91.06 | | tree | 77.35 | 89.03 | | ceiling | 87.64 | 94.49 | | road | 85.43 | 90.9 | | bed | 91.9 | 97.04 | | windowpane | 66.52 | 83.44 | | grass | 68.26 | 82.16 | | cabinet | 65.57 | 75.37 | | sidewalk | 72.08 | 86.26 | | person | 84.79 | 94.36 | | earth | 42.23 | 56.1 | | door | 60.55 | 74.05 | | table | 68.86 | 79.44 | | mountain | 63.3 | 74.04 | | plant | 55.1 | 67.5 | | curtain | 78.38 | 87.79 | | chair | 65.65 | 76.84 | | car | 87.34 | 93.74 | | water | 62.82 | 77.29 | | painting | 80.99 | 90.43 | | sofa | 83.29 | 92.31 | | shelf | 47.22 | 62.47 | | house | 50.83 | 59.76 | | sea | 73.39 | 82.36 | | mirror | 78.46 | 86.13 | | rug | 66.8 | 78.73 | | field | 31.23 | 52.93 | | armchair | 65.49 | 80.91 | | seat | 68.57 | 88.73 | | fence | 52.51 | 66.26 | | desk | 60.56 | 77.48 | | rock | 57.06 | 80.12 | | wardrobe | 51.7 | 73.78 | | lamp | 73.93 | 83.38 | | bathtub | 85.07 | 88.77 | | railing | 43.43 | 61.81 | | cushion | 70.72 | 81.56 | | base | 42.12 | 60.18 | | box | 41.99 | 56.03 | | column | 57.63 | 70.5 | | signboard | 39.61 | 55.73 | | chest of drawers | 42.51 | 68.9 | | counter | 44.01 | 50.72 | | sand | 57.52 | 85.56 | | sink | 78.92 | 84.05 | | skyscraper | 46.76 | 59.92 | | fireplace | 76.49 | 93.11 | | refrigerator | 86.08 | 95.32 | | grandstand | 51.66 | 84.78 | | path | 30.99 | 40.96 | | stairs | 34.2 | 41.99 | | runway | 66.99 | 85.91 | | case | 60.6 | 80.92 | | pool table | 94.05 | 98.39 | | pillow | 64.97 | 74.4 | | screen door | 80.31 | 83.82 | | stairway | 45.22 | 56.33 | | river | 12.65 | 28.51 | | bridge | 67.51 | 81.62 | | bookcase | 41.07 | 60.01 | | blind | 39.94 | 45.64 | | coffee table | 60.17 | 85.48 | | toilet | 89.98 | 93.77 | | flower | 45.75 | 61.6 | | book | 52.14 | 80.6 | | hill | 9.3 | 15.78 | | bench | 57.22 | 65.21 | | countertop | 63.98 | 82.77 | | stove | 86.11 | 91.9 | | palm | 53.45 | 80.12 | | kitchen island | 42.39 | 85.39 | | computer | 79.52 | 90.15 | | swivel chair | 45.79 | 75.96 | | boat | 79.01 | 91.95 | | bar | 61.63 | 87.95 | | arcade machine | 79.57 | 82.48 | | hovel | 21.65 | 23.3 | | bus | 92.2 | 97.41 | | towel | 75.81 | 83.69 | | light | 57.51 | 65.25 | | truck | 48.05 | 63.36 | | tower | 10.34 | 17.58 | | chandelier | 71.69 | 85.71 | | awning | 34.0 | 45.78 | | streetlight | 30.6 | 38.54 | | booth | 49.95 | 70.24 | | television receiver | 80.86 | 88.57 | | airplane | 86.92 | 94.83 | | dirt track | 5.72 | 25.67 | | apparel | 56.11 | 69.05 | | pole | 25.42 | 40.62 | | land | 4.79 | 6.78 | | bannister | 18.48 | 22.9 | | escalator | 66.15 | 86.23 | | ottoman | 59.74 | 74.3 | | bottle | 44.16 | 70.92 | | buffet | 53.95 | 59.97 | | poster | 31.52 | 39.51 | | stage | 24.49 | 47.58 | | van | 52.16 | 74.83 | | ship | 93.7 | 97.59 | | fountain | 39.39 | 40.1 | | conveyer belt | 82.22 | 95.21 | | canopy | 53.11 | 71.61 | | washer | 83.83 | 89.07 | | plaything | 32.48 | 49.15 | | swimming pool | 54.38 | 78.88 | | stool | 46.86 | 68.21 | | barrel | 56.72 | 74.14 | | basket | 44.09 | 58.69 | | waterfall | 59.28 | 72.93 | | tent | 95.08 | 98.45 | | bag | 24.74 | 28.22 | | minibike | 73.7 | 89.49 | | cradle | 81.25 | 98.19 | | oven | 58.68 | 69.98 | | ball | 65.16 | 72.22 | | food | 61.61 | 69.85 | | step | 9.92 | 12.78 | | tank | 62.53 | 68.61 | | trade name | 24.68 | 28.68 | | microwave | 90.28 | 96.51 | | pot | 59.89 | 69.76 | | animal | 60.84 | 62.86 | | bicycle | 59.9 | 77.98 | | lake | 53.14 | 63.65 | | dishwasher | 71.0 | 81.33 | | screen | 57.17 | 87.47 | | blanket | 34.17 | 39.89 | | sculpture | 73.57 | 85.18 | | hood | 62.94 | 74.6 | | sconce | 58.28 | 68.18 | | vase | 48.07 | 63.79 | | traffic light | 39.16 | 61.66 | | tray | 27.44 | 36.95 | | ashcan | 54.53 | 68.67 | | fan | 68.27 | 82.46 | | pier | 39.57 | 45.04 | | crt screen | 8.72 | 13.75 | | plate | 62.81 | 79.15 | | monitor | 61.64 | 72.91 | | bulletin board | 59.02 | 78.25 | | shower | 21.21 | 22.49 | | radiator | 67.04 | 84.83 | | glass | 20.9 | 22.25 | | clock | 50.85 | 62.24 | | flag | 69.34 | 76.74 | +---------------------+-------+-------+ 2024-06-17 04:55:08,061 - mmseg - INFO - Summary: 2024-06-17 04:55:08,061 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 86.14 | 57.78 | 70.39 | +-------+-------+-------+ 2024-06-17 04:55:08,062 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 04:55:08,062 - mmseg - INFO - Iter(val) [250] aAcc: 0.8614, mIoU: 0.5778, mAcc: 0.7039, IoU.wall: 0.8246, IoU.building: 0.8460, IoU.sky: 0.9484, IoU.floor: 0.8455, IoU.tree: 0.7735, IoU.ceiling: 0.8764, IoU.road: 0.8543, IoU.bed : 0.9190, IoU.windowpane: 0.6652, IoU.grass: 0.6826, IoU.cabinet: 0.6557, IoU.sidewalk: 0.7208, IoU.person: 0.8479, IoU.earth: 0.4223, IoU.door: 0.6055, IoU.table: 0.6886, IoU.mountain: 0.6330, IoU.plant: 0.5510, IoU.curtain: 0.7838, IoU.chair: 0.6565, IoU.car: 0.8734, IoU.water: 0.6282, IoU.painting: 0.8099, IoU.sofa: 0.8329, IoU.shelf: 0.4722, IoU.house: 0.5083, IoU.sea: 0.7339, IoU.mirror: 0.7846, IoU.rug: 0.6680, IoU.field: 0.3123, IoU.armchair: 0.6549, IoU.seat: 0.6857, IoU.fence: 0.5251, IoU.desk: 0.6056, IoU.rock: 0.5706, IoU.wardrobe: 0.5170, IoU.lamp: 0.7393, IoU.bathtub: 0.8507, IoU.railing: 0.4343, IoU.cushion: 0.7072, IoU.base: 0.4212, IoU.box: 0.4199, IoU.column: 0.5763, IoU.signboard: 0.3961, IoU.chest of drawers: 0.4251, IoU.counter: 0.4401, IoU.sand: 0.5752, IoU.sink: 0.7892, IoU.skyscraper: 0.4676, IoU.fireplace: 0.7649, IoU.refrigerator: 0.8608, IoU.grandstand: 0.5166, IoU.path: 0.3099, IoU.stairs: 0.3420, IoU.runway: 0.6699, IoU.case: 0.6060, IoU.pool table: 0.9405, IoU.pillow: 0.6497, IoU.screen door: 0.8031, IoU.stairway: 0.4522, IoU.river: 0.1265, IoU.bridge: 0.6751, IoU.bookcase: 0.4107, IoU.blind: 0.3994, IoU.coffee table: 0.6017, IoU.toilet: 0.8998, IoU.flower: 0.4575, IoU.book: 0.5214, IoU.hill: 0.0930, IoU.bench: 0.5722, IoU.countertop: 0.6398, IoU.stove: 0.8611, IoU.palm: 0.5345, IoU.kitchen island: 0.4239, IoU.computer: 0.7952, IoU.swivel chair: 0.4579, IoU.boat: 0.7901, IoU.bar: 0.6163, IoU.arcade machine: 0.7957, IoU.hovel: 0.2165, IoU.bus: 0.9220, IoU.towel: 0.7581, IoU.light: 0.5751, IoU.truck: 0.4805, IoU.tower: 0.1034, IoU.chandelier: 0.7169, IoU.awning: 0.3400, IoU.streetlight: 0.3060, IoU.booth: 0.4995, IoU.television receiver: 0.8086, IoU.airplane: 0.8692, IoU.dirt track: 0.0572, IoU.apparel: 0.5611, IoU.pole: 0.2542, IoU.land: 0.0479, IoU.bannister: 0.1848, IoU.escalator: 0.6615, IoU.ottoman: 0.5974, IoU.bottle: 0.4416, IoU.buffet: 0.5395, IoU.poster: 0.3152, IoU.stage: 0.2449, IoU.van: 0.5216, IoU.ship: 0.9370, IoU.fountain: 0.3939, IoU.conveyer belt: 0.8222, IoU.canopy: 0.5311, IoU.washer: 0.8383, IoU.plaything: 0.3248, IoU.swimming pool: 0.5438, IoU.stool: 0.4686, IoU.barrel: 0.5672, IoU.basket: 0.4409, IoU.waterfall: 0.5928, IoU.tent: 0.9508, IoU.bag: 0.2474, IoU.minibike: 0.7370, IoU.cradle: 0.8125, IoU.oven: 0.5868, IoU.ball: 0.6516, IoU.food: 0.6161, IoU.step: 0.0992, IoU.tank: 0.6253, IoU.trade name: 0.2468, IoU.microwave: 0.9028, IoU.pot: 0.5989, IoU.animal: 0.6084, IoU.bicycle: 0.5990, IoU.lake: 0.5314, IoU.dishwasher: 0.7100, IoU.screen: 0.5717, IoU.blanket: 0.3417, IoU.sculpture: 0.7357, IoU.hood: 0.6294, IoU.sconce: 0.5828, IoU.vase: 0.4807, IoU.traffic light: 0.3916, IoU.tray: 0.2744, IoU.ashcan: 0.5453, IoU.fan: 0.6827, IoU.pier: 0.3957, IoU.crt screen: 0.0872, IoU.plate: 0.6281, IoU.monitor: 0.6164, IoU.bulletin board: 0.5902, IoU.shower: 0.2121, IoU.radiator: 0.6704, IoU.glass: 0.2090, IoU.clock: 0.5085, IoU.flag: 0.6934, Acc.wall: 0.9001, Acc.building: 0.9365, Acc.sky: 0.9788, Acc.floor: 0.9106, Acc.tree: 0.8903, Acc.ceiling: 0.9449, Acc.road: 0.9090, Acc.bed : 0.9704, Acc.windowpane: 0.8344, Acc.grass: 0.8216, Acc.cabinet: 0.7537, Acc.sidewalk: 0.8626, Acc.person: 0.9436, Acc.earth: 0.5610, Acc.door: 0.7405, Acc.table: 0.7944, Acc.mountain: 0.7404, Acc.plant: 0.6750, Acc.curtain: 0.8779, Acc.chair: 0.7684, Acc.car: 0.9374, Acc.water: 0.7729, Acc.painting: 0.9043, Acc.sofa: 0.9231, Acc.shelf: 0.6247, Acc.house: 0.5976, Acc.sea: 0.8236, Acc.mirror: 0.8613, Acc.rug: 0.7873, Acc.field: 0.5293, Acc.armchair: 0.8091, Acc.seat: 0.8873, Acc.fence: 0.6626, Acc.desk: 0.7748, Acc.rock: 0.8012, Acc.wardrobe: 0.7378, Acc.lamp: 0.8338, Acc.bathtub: 0.8877, Acc.railing: 0.6181, Acc.cushion: 0.8156, Acc.base: 0.6018, Acc.box: 0.5603, Acc.column: 0.7050, Acc.signboard: 0.5573, Acc.chest of drawers: 0.6890, Acc.counter: 0.5072, Acc.sand: 0.8556, Acc.sink: 0.8405, Acc.skyscraper: 0.5992, Acc.fireplace: 0.9311, Acc.refrigerator: 0.9532, Acc.grandstand: 0.8478, Acc.path: 0.4096, Acc.stairs: 0.4199, Acc.runway: 0.8591, Acc.case: 0.8092, Acc.pool table: 0.9839, Acc.pillow: 0.7440, Acc.screen door: 0.8382, Acc.stairway: 0.5633, Acc.river: 0.2851, Acc.bridge: 0.8162, Acc.bookcase: 0.6001, Acc.blind: 0.4564, Acc.coffee table: 0.8548, Acc.toilet: 0.9377, Acc.flower: 0.6160, Acc.book: 0.8060, Acc.hill: 0.1578, Acc.bench: 0.6521, Acc.countertop: 0.8277, Acc.stove: 0.9190, Acc.palm: 0.8012, Acc.kitchen island: 0.8539, Acc.computer: 0.9015, Acc.swivel chair: 0.7596, Acc.boat: 0.9195, Acc.bar: 0.8795, Acc.arcade machine: 0.8248, Acc.hovel: 0.2330, Acc.bus: 0.9741, Acc.towel: 0.8369, Acc.light: 0.6525, Acc.truck: 0.6336, Acc.tower: 0.1758, Acc.chandelier: 0.8571, Acc.awning: 0.4578, Acc.streetlight: 0.3854, Acc.booth: 0.7024, Acc.television receiver: 0.8857, Acc.airplane: 0.9483, Acc.dirt track: 0.2567, Acc.apparel: 0.6905, Acc.pole: 0.4062, Acc.land: 0.0678, Acc.bannister: 0.2290, Acc.escalator: 0.8623, Acc.ottoman: 0.7430, Acc.bottle: 0.7092, Acc.buffet: 0.5997, Acc.poster: 0.3951, Acc.stage: 0.4758, Acc.van: 0.7483, Acc.ship: 0.9759, Acc.fountain: 0.4010, Acc.conveyer belt: 0.9521, Acc.canopy: 0.7161, Acc.washer: 0.8907, Acc.plaything: 0.4915, Acc.swimming pool: 0.7888, Acc.stool: 0.6821, Acc.barrel: 0.7414, Acc.basket: 0.5869, Acc.waterfall: 0.7293, Acc.tent: 0.9845, Acc.bag: 0.2822, Acc.minibike: 0.8949, Acc.cradle: 0.9819, Acc.oven: 0.6998, Acc.ball: 0.7222, Acc.food: 0.6985, Acc.step: 0.1278, Acc.tank: 0.6861, Acc.trade name: 0.2868, Acc.microwave: 0.9651, Acc.pot: 0.6976, Acc.animal: 0.6286, Acc.bicycle: 0.7798, Acc.lake: 0.6365, Acc.dishwasher: 0.8133, Acc.screen: 0.8747, Acc.blanket: 0.3989, Acc.sculpture: 0.8518, Acc.hood: 0.7460, Acc.sconce: 0.6818, Acc.vase: 0.6379, Acc.traffic light: 0.6166, Acc.tray: 0.3695, Acc.ashcan: 0.6867, Acc.fan: 0.8246, Acc.pier: 0.4504, Acc.crt screen: 0.1375, Acc.plate: 0.7915, Acc.monitor: 0.7291, Acc.bulletin board: 0.7825, Acc.shower: 0.2249, Acc.radiator: 0.8483, Acc.glass: 0.2225, Acc.clock: 0.6224, Acc.flag: 0.7674 2024-06-17 04:56:28,756 - mmseg - INFO - Iter [67050/80000] lr: 5.245e-07, eta: 6:14:09, time: 3.296, data_time: 1.696, memory: 65790, decode.loss_ce: 0.1347, decode.acc_seg: 93.8531, aux.loss_ce: 0.0581, aux.acc_seg: 93.4567, loss: 0.1929 2024-06-17 04:57:49,170 - mmseg - INFO - Iter [67100/80000] lr: 5.225e-07, eta: 6:12:41, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1310, decode.acc_seg: 94.0541, aux.loss_ce: 0.0573, aux.acc_seg: 93.6000, loss: 0.1884 2024-06-17 04:59:09,529 - mmseg - INFO - Iter [67150/80000] lr: 5.204e-07, eta: 6:11:14, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1316, decode.acc_seg: 94.1242, aux.loss_ce: 0.0575, aux.acc_seg: 93.7003, loss: 0.1892 2024-06-17 05:00:30,009 - mmseg - INFO - Iter [67200/80000] lr: 5.184e-07, eta: 6:09:46, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1337, decode.acc_seg: 93.7439, aux.loss_ce: 0.0580, aux.acc_seg: 93.3531, loss: 0.1916 2024-06-17 05:01:50,481 - mmseg - INFO - Iter [67250/80000] lr: 5.164e-07, eta: 6:08:18, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1294, decode.acc_seg: 94.0560, aux.loss_ce: 0.0562, aux.acc_seg: 93.6924, loss: 0.1856 2024-06-17 05:03:10,981 - mmseg - INFO - Iter [67300/80000] lr: 5.144e-07, eta: 6:06:50, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1392, decode.acc_seg: 93.7854, aux.loss_ce: 0.0607, aux.acc_seg: 93.3714, loss: 0.1999 2024-06-17 05:04:31,458 - mmseg - INFO - Iter [67350/80000] lr: 5.123e-07, eta: 6:05:22, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1320, decode.acc_seg: 94.1095, aux.loss_ce: 0.0570, aux.acc_seg: 93.7567, loss: 0.1890 2024-06-17 05:05:51,918 - mmseg - INFO - Iter [67400/80000] lr: 5.103e-07, eta: 6:03:54, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1396, decode.acc_seg: 93.7095, aux.loss_ce: 0.0602, aux.acc_seg: 93.2632, loss: 0.1999 2024-06-17 05:07:12,280 - mmseg - INFO - Iter [67450/80000] lr: 5.083e-07, eta: 6:02:27, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1315, decode.acc_seg: 93.9840, aux.loss_ce: 0.0568, aux.acc_seg: 93.6391, loss: 0.1883 2024-06-17 05:08:32,762 - mmseg - INFO - Iter [67500/80000] lr: 5.063e-07, eta: 6:00:59, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1370, decode.acc_seg: 93.8826, aux.loss_ce: 0.0592, aux.acc_seg: 93.5134, loss: 0.1962 2024-06-17 05:09:53,214 - mmseg - INFO - Iter [67550/80000] lr: 5.042e-07, eta: 5:59:31, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1365, decode.acc_seg: 93.7761, aux.loss_ce: 0.0585, aux.acc_seg: 93.4334, loss: 0.1950 2024-06-17 05:11:13,652 - mmseg - INFO - Iter [67600/80000] lr: 5.022e-07, eta: 5:58:03, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1338, decode.acc_seg: 94.0080, aux.loss_ce: 0.0582, aux.acc_seg: 93.6219, loss: 0.1920 2024-06-17 05:12:34,055 - mmseg - INFO - Iter [67650/80000] lr: 5.002e-07, eta: 5:56:36, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1281, decode.acc_seg: 94.2831, aux.loss_ce: 0.0559, aux.acc_seg: 93.8893, loss: 0.1840 2024-06-17 05:13:54,564 - mmseg - INFO - Iter [67700/80000] lr: 4.982e-07, eta: 5:55:08, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1378, decode.acc_seg: 93.8567, aux.loss_ce: 0.0601, aux.acc_seg: 93.3852, loss: 0.1980 2024-06-17 05:15:15,087 - mmseg - INFO - Iter [67750/80000] lr: 4.961e-07, eta: 5:53:40, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1288, decode.acc_seg: 94.0529, aux.loss_ce: 0.0555, aux.acc_seg: 93.7160, loss: 0.1843 2024-06-17 05:16:35,549 - mmseg - INFO - Iter [67800/80000] lr: 4.941e-07, eta: 5:52:12, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1388, decode.acc_seg: 93.6026, aux.loss_ce: 0.0608, aux.acc_seg: 93.1514, loss: 0.1997 2024-06-17 05:17:56,137 - mmseg - INFO - Iter [67850/80000] lr: 4.921e-07, eta: 5:50:45, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1329, decode.acc_seg: 94.0146, aux.loss_ce: 0.0577, aux.acc_seg: 93.6134, loss: 0.1906 2024-06-17 05:19:16,529 - mmseg - INFO - Iter [67900/80000] lr: 4.901e-07, eta: 5:49:17, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1338, decode.acc_seg: 93.8924, aux.loss_ce: 0.0582, aux.acc_seg: 93.4378, loss: 0.1920 2024-06-17 05:20:36,924 - mmseg - INFO - Iter [67950/80000] lr: 4.880e-07, eta: 5:47:49, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1378, decode.acc_seg: 93.7781, aux.loss_ce: 0.0605, aux.acc_seg: 93.2551, loss: 0.1982 2024-06-17 05:21:57,364 - mmseg - INFO - Saving checkpoint at 68000 iterations 2024-06-17 05:23:12,285 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 05:23:12,285 - mmseg - INFO - Iter [68000/80000] lr: 4.860e-07, eta: 5:46:35, time: 3.107, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1359, decode.acc_seg: 93.8585, aux.loss_ce: 0.0583, aux.acc_seg: 93.4909, loss: 0.1942 2024-06-17 05:24:34,436 - mmseg - INFO - per class results: 2024-06-17 05:24:34,442 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.55 | 90.57 | | building | 84.48 | 92.58 | | sky | 94.85 | 97.74 | | floor | 83.87 | 91.56 | | tree | 77.69 | 89.72 | | ceiling | 87.56 | 94.53 | | road | 85.92 | 90.61 | | bed | 91.98 | 96.78 | | windowpane | 66.99 | 82.87 | | grass | 68.34 | 82.68 | | cabinet | 65.77 | 74.47 | | sidewalk | 71.29 | 85.46 | | person | 84.79 | 94.27 | | earth | 41.56 | 56.32 | | door | 61.05 | 73.6 | | table | 69.75 | 80.6 | | mountain | 62.45 | 73.02 | | plant | 55.65 | 68.08 | | curtain | 78.0 | 87.67 | | chair | 66.07 | 77.87 | | car | 87.42 | 93.54 | | water | 64.0 | 78.75 | | painting | 80.37 | 90.92 | | sofa | 82.72 | 92.15 | | shelf | 48.82 | 64.99 | | house | 47.98 | 65.39 | | sea | 74.54 | 82.16 | | mirror | 78.98 | 85.91 | | rug | 60.98 | 69.43 | | field | 32.32 | 54.89 | | armchair | 64.83 | 79.92 | | seat | 68.44 | 88.9 | | fence | 51.77 | 67.63 | | desk | 60.63 | 78.4 | | rock | 56.45 | 80.95 | | wardrobe | 51.46 | 72.64 | | lamp | 73.94 | 84.62 | | bathtub | 84.35 | 87.86 | | railing | 44.08 | 62.04 | | cushion | 70.12 | 82.43 | | base | 43.12 | 56.96 | | box | 41.21 | 53.55 | | column | 57.49 | 68.08 | | signboard | 40.04 | 55.22 | | chest of drawers | 48.5 | 80.33 | | counter | 44.78 | 55.64 | | sand | 52.33 | 76.27 | | sink | 78.7 | 84.67 | | skyscraper | 47.17 | 60.3 | | fireplace | 75.77 | 94.32 | | refrigerator | 86.63 | 95.81 | | grandstand | 50.67 | 84.34 | | path | 31.33 | 40.66 | | stairs | 35.57 | 42.94 | | runway | 67.84 | 87.4 | | case | 59.17 | 82.85 | | pool table | 94.25 | 98.16 | | pillow | 65.84 | 75.6 | | screen door | 79.4 | 81.3 | | stairway | 45.13 | 55.47 | | river | 13.1 | 28.16 | | bridge | 70.05 | 83.66 | | bookcase | 43.29 | 57.22 | | blind | 42.34 | 45.83 | | coffee table | 61.22 | 85.79 | | toilet | 89.88 | 94.06 | | flower | 44.96 | 60.13 | | book | 53.38 | 78.38 | | hill | 9.07 | 15.39 | | bench | 56.84 | 64.5 | | countertop | 63.45 | 84.87 | | stove | 86.7 | 92.28 | | palm | 53.37 | 80.18 | | kitchen island | 48.79 | 78.96 | | computer | 79.04 | 90.96 | | swivel chair | 45.58 | 72.4 | | boat | 79.55 | 90.99 | | bar | 61.06 | 85.22 | | arcade machine | 76.46 | 79.3 | | hovel | 39.7 | 50.47 | | bus | 92.44 | 97.41 | | towel | 75.77 | 84.37 | | light | 56.73 | 63.83 | | truck | 49.38 | 61.73 | | tower | 16.3 | 26.45 | | chandelier | 71.64 | 84.75 | | awning | 36.25 | 48.38 | | streetlight | 32.06 | 42.45 | | booth | 58.89 | 64.2 | | television receiver | 78.42 | 88.27 | | airplane | 85.71 | 94.64 | | dirt track | 6.52 | 31.03 | | apparel | 57.49 | 80.77 | | pole | 23.57 | 34.63 | | land | 4.95 | 7.0 | | bannister | 17.54 | 21.94 | | escalator | 66.74 | 86.44 | | ottoman | 60.01 | 75.96 | | bottle | 43.25 | 69.68 | | buffet | 55.62 | 62.14 | | poster | 31.08 | 37.11 | | stage | 25.36 | 48.09 | | van | 50.72 | 75.68 | | ship | 94.14 | 98.61 | | fountain | 39.72 | 40.52 | | conveyer belt | 82.67 | 95.24 | | canopy | 53.4 | 73.26 | | washer | 85.08 | 91.05 | | plaything | 31.38 | 44.41 | | swimming pool | 52.54 | 75.69 | | stool | 46.77 | 70.07 | | barrel | 57.57 | 73.96 | | basket | 45.23 | 57.89 | | waterfall | 61.84 | 76.42 | | tent | 95.36 | 98.61 | | bag | 21.82 | 23.68 | | minibike | 74.35 | 88.76 | | cradle | 88.05 | 97.23 | | oven | 57.9 | 69.26 | | ball | 54.13 | 56.09 | | food | 57.11 | 64.64 | | step | 10.56 | 13.42 | | tank | 63.02 | 68.34 | | trade name | 23.14 | 26.2 | | microwave | 89.89 | 96.55 | | pot | 60.18 | 69.71 | | animal | 59.84 | 61.52 | | bicycle | 61.63 | 81.88 | | lake | 54.61 | 63.56 | | dishwasher | 70.9 | 81.07 | | screen | 59.08 | 90.54 | | blanket | 35.03 | 41.02 | | sculpture | 71.77 | 84.7 | | hood | 62.83 | 74.19 | | sconce | 58.1 | 67.98 | | vase | 48.61 | 65.29 | | traffic light | 39.66 | 60.94 | | tray | 25.05 | 31.71 | | ashcan | 54.72 | 67.0 | | fan | 68.72 | 82.95 | | pier | 39.16 | 44.57 | | crt screen | 5.86 | 8.33 | | plate | 62.95 | 78.02 | | monitor | 61.85 | 76.3 | | bulletin board | 58.54 | 77.72 | | shower | 23.77 | 26.54 | | radiator | 67.24 | 81.63 | | glass | 21.36 | 22.98 | | clock | 51.09 | 62.82 | | flag | 68.87 | 77.79 | +---------------------+-------+-------+ 2024-06-17 05:24:34,442 - mmseg - INFO - Summary: 2024-06-17 05:24:34,442 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 86.16 | 58.01 | 70.41 | +-------+-------+-------+ 2024-06-17 05:24:34,443 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 05:24:34,443 - mmseg - INFO - Iter(val) [250] aAcc: 0.8616, mIoU: 0.5801, mAcc: 0.7041, IoU.wall: 0.8255, IoU.building: 0.8448, IoU.sky: 0.9485, IoU.floor: 0.8387, IoU.tree: 0.7769, IoU.ceiling: 0.8756, IoU.road: 0.8592, IoU.bed : 0.9198, IoU.windowpane: 0.6699, IoU.grass: 0.6834, IoU.cabinet: 0.6577, IoU.sidewalk: 0.7129, IoU.person: 0.8479, IoU.earth: 0.4156, IoU.door: 0.6105, IoU.table: 0.6975, IoU.mountain: 0.6245, IoU.plant: 0.5565, IoU.curtain: 0.7800, IoU.chair: 0.6607, IoU.car: 0.8742, IoU.water: 0.6400, IoU.painting: 0.8037, IoU.sofa: 0.8272, IoU.shelf: 0.4882, IoU.house: 0.4798, IoU.sea: 0.7454, IoU.mirror: 0.7898, IoU.rug: 0.6098, IoU.field: 0.3232, IoU.armchair: 0.6483, IoU.seat: 0.6844, IoU.fence: 0.5177, IoU.desk: 0.6063, IoU.rock: 0.5645, IoU.wardrobe: 0.5146, IoU.lamp: 0.7394, IoU.bathtub: 0.8435, IoU.railing: 0.4408, IoU.cushion: 0.7012, IoU.base: 0.4312, IoU.box: 0.4121, IoU.column: 0.5749, IoU.signboard: 0.4004, IoU.chest of drawers: 0.4850, IoU.counter: 0.4478, IoU.sand: 0.5233, IoU.sink: 0.7870, IoU.skyscraper: 0.4717, IoU.fireplace: 0.7577, IoU.refrigerator: 0.8663, IoU.grandstand: 0.5067, IoU.path: 0.3133, IoU.stairs: 0.3557, IoU.runway: 0.6784, IoU.case: 0.5917, IoU.pool table: 0.9425, IoU.pillow: 0.6584, IoU.screen door: 0.7940, IoU.stairway: 0.4513, IoU.river: 0.1310, IoU.bridge: 0.7005, IoU.bookcase: 0.4329, IoU.blind: 0.4234, IoU.coffee table: 0.6122, IoU.toilet: 0.8988, IoU.flower: 0.4496, IoU.book: 0.5338, IoU.hill: 0.0907, IoU.bench: 0.5684, IoU.countertop: 0.6345, IoU.stove: 0.8670, IoU.palm: 0.5337, IoU.kitchen island: 0.4879, IoU.computer: 0.7904, IoU.swivel chair: 0.4558, IoU.boat: 0.7955, IoU.bar: 0.6106, IoU.arcade machine: 0.7646, IoU.hovel: 0.3970, IoU.bus: 0.9244, IoU.towel: 0.7577, IoU.light: 0.5673, IoU.truck: 0.4938, IoU.tower: 0.1630, IoU.chandelier: 0.7164, IoU.awning: 0.3625, IoU.streetlight: 0.3206, IoU.booth: 0.5889, IoU.television receiver: 0.7842, IoU.airplane: 0.8571, IoU.dirt track: 0.0652, IoU.apparel: 0.5749, IoU.pole: 0.2357, IoU.land: 0.0495, IoU.bannister: 0.1754, IoU.escalator: 0.6674, IoU.ottoman: 0.6001, IoU.bottle: 0.4325, IoU.buffet: 0.5562, IoU.poster: 0.3108, IoU.stage: 0.2536, IoU.van: 0.5072, IoU.ship: 0.9414, IoU.fountain: 0.3972, IoU.conveyer belt: 0.8267, IoU.canopy: 0.5340, IoU.washer: 0.8508, IoU.plaything: 0.3138, IoU.swimming pool: 0.5254, IoU.stool: 0.4677, IoU.barrel: 0.5757, IoU.basket: 0.4523, IoU.waterfall: 0.6184, IoU.tent: 0.9536, IoU.bag: 0.2182, IoU.minibike: 0.7435, IoU.cradle: 0.8805, IoU.oven: 0.5790, IoU.ball: 0.5413, IoU.food: 0.5711, IoU.step: 0.1056, IoU.tank: 0.6302, IoU.trade name: 0.2314, IoU.microwave: 0.8989, IoU.pot: 0.6018, IoU.animal: 0.5984, IoU.bicycle: 0.6163, IoU.lake: 0.5461, IoU.dishwasher: 0.7090, IoU.screen: 0.5908, IoU.blanket: 0.3503, IoU.sculpture: 0.7177, IoU.hood: 0.6283, IoU.sconce: 0.5810, IoU.vase: 0.4861, IoU.traffic light: 0.3966, IoU.tray: 0.2505, IoU.ashcan: 0.5472, IoU.fan: 0.6872, IoU.pier: 0.3916, IoU.crt screen: 0.0586, IoU.plate: 0.6295, IoU.monitor: 0.6185, IoU.bulletin board: 0.5854, IoU.shower: 0.2377, IoU.radiator: 0.6724, IoU.glass: 0.2136, IoU.clock: 0.5109, IoU.flag: 0.6887, Acc.wall: 0.9057, Acc.building: 0.9258, Acc.sky: 0.9774, Acc.floor: 0.9156, Acc.tree: 0.8972, Acc.ceiling: 0.9453, Acc.road: 0.9061, Acc.bed : 0.9678, Acc.windowpane: 0.8287, Acc.grass: 0.8268, Acc.cabinet: 0.7447, Acc.sidewalk: 0.8546, Acc.person: 0.9427, Acc.earth: 0.5632, Acc.door: 0.7360, Acc.table: 0.8060, Acc.mountain: 0.7302, Acc.plant: 0.6808, Acc.curtain: 0.8767, Acc.chair: 0.7787, Acc.car: 0.9354, Acc.water: 0.7875, Acc.painting: 0.9092, Acc.sofa: 0.9215, Acc.shelf: 0.6499, Acc.house: 0.6539, Acc.sea: 0.8216, Acc.mirror: 0.8591, Acc.rug: 0.6943, Acc.field: 0.5489, Acc.armchair: 0.7992, Acc.seat: 0.8890, Acc.fence: 0.6763, Acc.desk: 0.7840, Acc.rock: 0.8095, Acc.wardrobe: 0.7264, Acc.lamp: 0.8462, Acc.bathtub: 0.8786, Acc.railing: 0.6204, Acc.cushion: 0.8243, Acc.base: 0.5696, Acc.box: 0.5355, Acc.column: 0.6808, Acc.signboard: 0.5522, Acc.chest of drawers: 0.8033, Acc.counter: 0.5564, Acc.sand: 0.7627, Acc.sink: 0.8467, Acc.skyscraper: 0.6030, Acc.fireplace: 0.9432, Acc.refrigerator: 0.9581, Acc.grandstand: 0.8434, Acc.path: 0.4066, Acc.stairs: 0.4294, Acc.runway: 0.8740, Acc.case: 0.8285, Acc.pool table: 0.9816, Acc.pillow: 0.7560, Acc.screen door: 0.8130, Acc.stairway: 0.5547, Acc.river: 0.2816, Acc.bridge: 0.8366, Acc.bookcase: 0.5722, Acc.blind: 0.4583, Acc.coffee table: 0.8579, Acc.toilet: 0.9406, Acc.flower: 0.6013, Acc.book: 0.7838, Acc.hill: 0.1539, Acc.bench: 0.6450, Acc.countertop: 0.8487, Acc.stove: 0.9228, Acc.palm: 0.8018, Acc.kitchen island: 0.7896, Acc.computer: 0.9096, Acc.swivel chair: 0.7240, Acc.boat: 0.9099, Acc.bar: 0.8522, Acc.arcade machine: 0.7930, Acc.hovel: 0.5047, Acc.bus: 0.9741, Acc.towel: 0.8437, Acc.light: 0.6383, Acc.truck: 0.6173, Acc.tower: 0.2645, Acc.chandelier: 0.8475, Acc.awning: 0.4838, Acc.streetlight: 0.4245, Acc.booth: 0.6420, Acc.television receiver: 0.8827, Acc.airplane: 0.9464, Acc.dirt track: 0.3103, Acc.apparel: 0.8077, Acc.pole: 0.3463, Acc.land: 0.0700, Acc.bannister: 0.2194, Acc.escalator: 0.8644, Acc.ottoman: 0.7596, Acc.bottle: 0.6968, Acc.buffet: 0.6214, Acc.poster: 0.3711, Acc.stage: 0.4809, Acc.van: 0.7568, Acc.ship: 0.9861, Acc.fountain: 0.4052, Acc.conveyer belt: 0.9524, Acc.canopy: 0.7326, Acc.washer: 0.9105, Acc.plaything: 0.4441, Acc.swimming pool: 0.7569, Acc.stool: 0.7007, Acc.barrel: 0.7396, Acc.basket: 0.5789, Acc.waterfall: 0.7642, Acc.tent: 0.9861, Acc.bag: 0.2368, Acc.minibike: 0.8876, Acc.cradle: 0.9723, Acc.oven: 0.6926, Acc.ball: 0.5609, Acc.food: 0.6464, Acc.step: 0.1342, Acc.tank: 0.6834, Acc.trade name: 0.2620, Acc.microwave: 0.9655, Acc.pot: 0.6971, Acc.animal: 0.6152, Acc.bicycle: 0.8188, Acc.lake: 0.6356, Acc.dishwasher: 0.8107, Acc.screen: 0.9054, Acc.blanket: 0.4102, Acc.sculpture: 0.8470, Acc.hood: 0.7419, Acc.sconce: 0.6798, Acc.vase: 0.6529, Acc.traffic light: 0.6094, Acc.tray: 0.3171, Acc.ashcan: 0.6700, Acc.fan: 0.8295, Acc.pier: 0.4457, Acc.crt screen: 0.0833, Acc.plate: 0.7802, Acc.monitor: 0.7630, Acc.bulletin board: 0.7772, Acc.shower: 0.2654, Acc.radiator: 0.8163, Acc.glass: 0.2298, Acc.clock: 0.6282, Acc.flag: 0.7779 2024-06-17 05:25:55,111 - mmseg - INFO - Iter [68050/80000] lr: 4.840e-07, eta: 5:45:22, time: 3.257, data_time: 1.657, memory: 65790, decode.loss_ce: 0.1332, decode.acc_seg: 93.8993, aux.loss_ce: 0.0577, aux.acc_seg: 93.5072, loss: 0.1909 2024-06-17 05:27:15,412 - mmseg - INFO - Iter [68100/80000] lr: 4.820e-07, eta: 5:43:54, time: 1.606, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1358, decode.acc_seg: 93.8358, aux.loss_ce: 0.0590, aux.acc_seg: 93.4073, loss: 0.1948 2024-06-17 05:28:35,755 - mmseg - INFO - Iter [68150/80000] lr: 4.799e-07, eta: 5:42:26, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1272, decode.acc_seg: 94.2622, aux.loss_ce: 0.0557, aux.acc_seg: 93.8202, loss: 0.1830 2024-06-17 05:29:56,280 - mmseg - INFO - Iter [68200/80000] lr: 4.779e-07, eta: 5:40:58, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1254, decode.acc_seg: 94.1482, aux.loss_ce: 0.0548, aux.acc_seg: 93.7458, loss: 0.1802 2024-06-17 05:31:19,265 - mmseg - INFO - Iter [68250/80000] lr: 4.759e-07, eta: 5:39:31, time: 1.660, data_time: 0.060, memory: 65790, decode.loss_ce: 0.1227, decode.acc_seg: 94.3374, aux.loss_ce: 0.0534, aux.acc_seg: 93.9875, loss: 0.1762 2024-06-17 05:32:39,630 - mmseg - INFO - Iter [68300/80000] lr: 4.739e-07, eta: 5:38:03, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1429, decode.acc_seg: 93.7206, aux.loss_ce: 0.0617, aux.acc_seg: 93.3340, loss: 0.2047 2024-06-17 05:34:00,087 - mmseg - INFO - Iter [68350/80000] lr: 4.718e-07, eta: 5:36:35, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1361, decode.acc_seg: 93.8281, aux.loss_ce: 0.0591, aux.acc_seg: 93.3850, loss: 0.1952 2024-06-17 05:35:20,433 - mmseg - INFO - Iter [68400/80000] lr: 4.698e-07, eta: 5:35:08, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1308, decode.acc_seg: 94.0342, aux.loss_ce: 0.0567, aux.acc_seg: 93.6062, loss: 0.1875 2024-06-17 05:36:40,755 - mmseg - INFO - Iter [68450/80000] lr: 4.678e-07, eta: 5:33:40, time: 1.606, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1314, decode.acc_seg: 93.9664, aux.loss_ce: 0.0574, aux.acc_seg: 93.5302, loss: 0.1888 2024-06-17 05:38:01,199 - mmseg - INFO - Iter [68500/80000] lr: 4.658e-07, eta: 5:32:12, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1308, decode.acc_seg: 93.9603, aux.loss_ce: 0.0569, aux.acc_seg: 93.5403, loss: 0.1876 2024-06-17 05:39:21,681 - mmseg - INFO - Iter [68550/80000] lr: 4.637e-07, eta: 5:30:44, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1349, decode.acc_seg: 94.0784, aux.loss_ce: 0.0583, aux.acc_seg: 93.6264, loss: 0.1933 2024-06-17 05:40:42,036 - mmseg - INFO - Iter [68600/80000] lr: 4.617e-07, eta: 5:29:17, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1411, decode.acc_seg: 93.7274, aux.loss_ce: 0.0612, aux.acc_seg: 93.2719, loss: 0.2023 2024-06-17 05:42:02,400 - mmseg - INFO - Iter [68650/80000] lr: 4.597e-07, eta: 5:27:49, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1318, decode.acc_seg: 94.0342, aux.loss_ce: 0.0571, aux.acc_seg: 93.5863, loss: 0.1889 2024-06-17 05:43:22,859 - mmseg - INFO - Iter [68700/80000] lr: 4.577e-07, eta: 5:26:21, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1310, decode.acc_seg: 94.0939, aux.loss_ce: 0.0564, aux.acc_seg: 93.7434, loss: 0.1874 2024-06-17 05:44:43,433 - mmseg - INFO - Iter [68750/80000] lr: 4.556e-07, eta: 5:24:54, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1362, decode.acc_seg: 93.8784, aux.loss_ce: 0.0592, aux.acc_seg: 93.4892, loss: 0.1953 2024-06-17 05:46:03,869 - mmseg - INFO - Iter [68800/80000] lr: 4.536e-07, eta: 5:23:26, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1393, decode.acc_seg: 93.7731, aux.loss_ce: 0.0604, aux.acc_seg: 93.3557, loss: 0.1997 2024-06-17 05:47:24,310 - mmseg - INFO - Iter [68850/80000] lr: 4.516e-07, eta: 5:21:58, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1293, decode.acc_seg: 94.1094, aux.loss_ce: 0.0563, aux.acc_seg: 93.6874, loss: 0.1856 2024-06-17 05:48:44,745 - mmseg - INFO - Iter [68900/80000] lr: 4.496e-07, eta: 5:20:31, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1345, decode.acc_seg: 93.8613, aux.loss_ce: 0.0582, aux.acc_seg: 93.4789, loss: 0.1928 2024-06-17 05:50:05,225 - mmseg - INFO - Iter [68950/80000] lr: 4.475e-07, eta: 5:19:03, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1310, decode.acc_seg: 94.0486, aux.loss_ce: 0.0570, aux.acc_seg: 93.6324, loss: 0.1880 2024-06-17 05:51:25,560 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 05:51:25,560 - mmseg - INFO - Iter [69000/80000] lr: 4.455e-07, eta: 5:17:36, time: 1.607, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1288, decode.acc_seg: 94.2556, aux.loss_ce: 0.0561, aux.acc_seg: 93.8369, loss: 0.1850 2024-06-17 05:52:49,380 - mmseg - INFO - per class results: 2024-06-17 05:52:49,386 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.35 | 90.06 | | building | 84.68 | 92.95 | | sky | 94.7 | 97.92 | | floor | 84.37 | 92.33 | | tree | 77.34 | 89.21 | | ceiling | 87.5 | 94.37 | | road | 85.83 | 90.32 | | bed | 92.05 | 96.76 | | windowpane | 66.49 | 82.69 | | grass | 69.02 | 82.35 | | cabinet | 66.43 | 76.4 | | sidewalk | 70.88 | 85.7 | | person | 85.06 | 93.78 | | earth | 42.66 | 56.51 | | door | 60.66 | 74.79 | | table | 69.5 | 80.04 | | mountain | 61.42 | 72.52 | | plant | 55.59 | 67.42 | | curtain | 77.5 | 88.35 | | chair | 66.08 | 77.09 | | car | 87.0 | 93.15 | | water | 62.79 | 78.62 | | painting | 79.63 | 91.14 | | sofa | 81.79 | 88.76 | | shelf | 45.96 | 61.04 | | house | 49.34 | 62.98 | | sea | 73.91 | 81.19 | | mirror | 79.19 | 87.17 | | rug | 65.92 | 74.63 | | field | 32.66 | 56.65 | | armchair | 64.37 | 82.43 | | seat | 68.36 | 89.16 | | fence | 52.94 | 67.23 | | desk | 60.96 | 77.72 | | rock | 56.29 | 82.81 | | wardrobe | 52.11 | 73.98 | | lamp | 73.99 | 84.28 | | bathtub | 84.13 | 87.51 | | railing | 44.43 | 59.26 | | cushion | 69.88 | 83.0 | | base | 44.5 | 57.33 | | box | 41.04 | 52.83 | | column | 57.36 | 71.56 | | signboard | 39.26 | 56.12 | | chest of drawers | 47.76 | 74.84 | | counter | 44.61 | 52.66 | | sand | 55.93 | 83.4 | | sink | 80.09 | 85.43 | | skyscraper | 46.79 | 59.85 | | fireplace | 74.84 | 94.65 | | refrigerator | 86.95 | 95.56 | | grandstand | 51.69 | 84.03 | | path | 28.89 | 36.28 | | stairs | 38.28 | 47.4 | | runway | 67.5 | 87.51 | | case | 59.41 | 79.64 | | pool table | 94.41 | 98.05 | | pillow | 68.05 | 79.53 | | screen door | 75.82 | 81.36 | | stairway | 50.23 | 57.54 | | river | 12.96 | 28.09 | | bridge | 69.53 | 83.83 | | bookcase | 38.67 | 65.31 | | blind | 41.25 | 44.93 | | coffee table | 60.09 | 85.55 | | toilet | 90.03 | 94.11 | | flower | 41.7 | 58.83 | | book | 51.92 | 72.63 | | hill | 8.0 | 14.11 | | bench | 58.03 | 65.63 | | countertop | 63.94 | 84.05 | | stove | 85.88 | 91.23 | | palm | 53.59 | 79.4 | | kitchen island | 50.21 | 77.86 | | computer | 79.05 | 90.92 | | swivel chair | 45.6 | 71.22 | | boat | 80.76 | 91.06 | | bar | 60.94 | 85.85 | | arcade machine | 78.51 | 81.89 | | hovel | 32.82 | 38.41 | | bus | 92.61 | 97.22 | | towel | 74.63 | 82.2 | | light | 56.96 | 63.98 | | truck | 49.09 | 63.24 | | tower | 19.39 | 31.87 | | chandelier | 71.54 | 82.79 | | awning | 34.28 | 44.38 | | streetlight | 32.2 | 41.81 | | booth | 55.5 | 60.48 | | television receiver | 80.72 | 88.42 | | airplane | 85.96 | 93.05 | | dirt track | 4.97 | 19.1 | | apparel | 57.75 | 73.84 | | pole | 24.88 | 36.9 | | land | 4.74 | 7.0 | | bannister | 17.43 | 21.76 | | escalator | 66.65 | 86.16 | | ottoman | 59.75 | 76.89 | | bottle | 44.37 | 72.56 | | buffet | 54.96 | 61.25 | | poster | 31.03 | 38.75 | | stage | 24.87 | 48.1 | | van | 50.88 | 78.76 | | ship | 94.18 | 98.57 | | fountain | 40.39 | 41.15 | | conveyer belt | 82.74 | 95.73 | | canopy | 51.97 | 71.19 | | washer | 85.91 | 92.17 | | plaything | 32.01 | 45.44 | | swimming pool | 57.91 | 84.3 | | stool | 48.4 | 68.43 | | barrel | 60.02 | 79.51 | | basket | 43.61 | 57.95 | | waterfall | 57.21 | 68.82 | | tent | 95.16 | 98.81 | | bag | 25.89 | 29.31 | | minibike | 74.47 | 89.36 | | cradle | 84.46 | 98.18 | | oven | 59.55 | 72.81 | | ball | 60.36 | 64.61 | | food | 60.58 | 68.52 | | step | 11.49 | 16.84 | | tank | 71.99 | 80.8 | | trade name | 21.04 | 24.05 | | microwave | 90.99 | 96.05 | | pot | 60.09 | 71.02 | | animal | 62.06 | 64.34 | | bicycle | 60.82 | 78.11 | | lake | 55.8 | 63.61 | | dishwasher | 70.52 | 81.5 | | screen | 58.67 | 92.11 | | blanket | 34.0 | 40.23 | | sculpture | 75.11 | 85.79 | | hood | 61.94 | 73.61 | | sconce | 58.91 | 70.69 | | vase | 48.98 | 64.22 | | traffic light | 38.78 | 62.75 | | tray | 26.21 | 32.68 | | ashcan | 54.78 | 68.25 | | fan | 68.42 | 84.74 | | pier | 39.53 | 44.96 | | crt screen | 2.66 | 3.99 | | plate | 62.81 | 76.24 | | monitor | 60.49 | 71.33 | | bulletin board | 59.71 | 78.59 | | shower | 21.57 | 23.15 | | radiator | 66.99 | 81.88 | | glass | 21.29 | 22.82 | | clock | 51.62 | 62.91 | | flag | 69.17 | 75.84 | +---------------------+-------+-------+ 2024-06-17 05:52:49,386 - mmseg - INFO - Summary: 2024-06-17 05:52:49,387 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 86.17 | 58.13 | 70.49 | +-------+-------+-------+ 2024-06-17 05:52:49,387 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 05:52:49,388 - mmseg - INFO - Iter(val) [250] aAcc: 0.8617, mIoU: 0.5813, mAcc: 0.7049, IoU.wall: 0.8235, IoU.building: 0.8468, IoU.sky: 0.9470, IoU.floor: 0.8437, IoU.tree: 0.7734, IoU.ceiling: 0.8750, IoU.road: 0.8583, IoU.bed : 0.9205, IoU.windowpane: 0.6649, IoU.grass: 0.6902, IoU.cabinet: 0.6643, IoU.sidewalk: 0.7088, IoU.person: 0.8506, IoU.earth: 0.4266, IoU.door: 0.6066, IoU.table: 0.6950, IoU.mountain: 0.6142, IoU.plant: 0.5559, IoU.curtain: 0.7750, IoU.chair: 0.6608, IoU.car: 0.8700, IoU.water: 0.6279, IoU.painting: 0.7963, IoU.sofa: 0.8179, IoU.shelf: 0.4596, IoU.house: 0.4934, IoU.sea: 0.7391, IoU.mirror: 0.7919, IoU.rug: 0.6592, IoU.field: 0.3266, IoU.armchair: 0.6437, IoU.seat: 0.6836, IoU.fence: 0.5294, IoU.desk: 0.6096, IoU.rock: 0.5629, IoU.wardrobe: 0.5211, IoU.lamp: 0.7399, IoU.bathtub: 0.8413, IoU.railing: 0.4443, IoU.cushion: 0.6988, IoU.base: 0.4450, IoU.box: 0.4104, IoU.column: 0.5736, IoU.signboard: 0.3926, IoU.chest of drawers: 0.4776, IoU.counter: 0.4461, IoU.sand: 0.5593, IoU.sink: 0.8009, IoU.skyscraper: 0.4679, IoU.fireplace: 0.7484, IoU.refrigerator: 0.8695, IoU.grandstand: 0.5169, IoU.path: 0.2889, IoU.stairs: 0.3828, IoU.runway: 0.6750, IoU.case: 0.5941, IoU.pool table: 0.9441, IoU.pillow: 0.6805, IoU.screen door: 0.7582, IoU.stairway: 0.5023, IoU.river: 0.1296, IoU.bridge: 0.6953, IoU.bookcase: 0.3867, IoU.blind: 0.4125, IoU.coffee table: 0.6009, IoU.toilet: 0.9003, IoU.flower: 0.4170, IoU.book: 0.5192, IoU.hill: 0.0800, IoU.bench: 0.5803, IoU.countertop: 0.6394, IoU.stove: 0.8588, IoU.palm: 0.5359, IoU.kitchen island: 0.5021, IoU.computer: 0.7905, IoU.swivel chair: 0.4560, IoU.boat: 0.8076, IoU.bar: 0.6094, IoU.arcade machine: 0.7851, IoU.hovel: 0.3282, IoU.bus: 0.9261, IoU.towel: 0.7463, IoU.light: 0.5696, IoU.truck: 0.4909, IoU.tower: 0.1939, IoU.chandelier: 0.7154, IoU.awning: 0.3428, IoU.streetlight: 0.3220, IoU.booth: 0.5550, IoU.television receiver: 0.8072, IoU.airplane: 0.8596, IoU.dirt track: 0.0497, IoU.apparel: 0.5775, IoU.pole: 0.2488, IoU.land: 0.0474, IoU.bannister: 0.1743, IoU.escalator: 0.6665, IoU.ottoman: 0.5975, IoU.bottle: 0.4437, IoU.buffet: 0.5496, IoU.poster: 0.3103, IoU.stage: 0.2487, IoU.van: 0.5088, IoU.ship: 0.9418, IoU.fountain: 0.4039, IoU.conveyer belt: 0.8274, IoU.canopy: 0.5197, IoU.washer: 0.8591, IoU.plaything: 0.3201, IoU.swimming pool: 0.5791, IoU.stool: 0.4840, IoU.barrel: 0.6002, IoU.basket: 0.4361, IoU.waterfall: 0.5721, IoU.tent: 0.9516, IoU.bag: 0.2589, IoU.minibike: 0.7447, IoU.cradle: 0.8446, IoU.oven: 0.5955, IoU.ball: 0.6036, IoU.food: 0.6058, IoU.step: 0.1149, IoU.tank: 0.7199, IoU.trade name: 0.2104, IoU.microwave: 0.9099, IoU.pot: 0.6009, IoU.animal: 0.6206, IoU.bicycle: 0.6082, IoU.lake: 0.5580, IoU.dishwasher: 0.7052, IoU.screen: 0.5867, IoU.blanket: 0.3400, IoU.sculpture: 0.7511, IoU.hood: 0.6194, IoU.sconce: 0.5891, IoU.vase: 0.4898, IoU.traffic light: 0.3878, IoU.tray: 0.2621, IoU.ashcan: 0.5478, IoU.fan: 0.6842, IoU.pier: 0.3953, IoU.crt screen: 0.0266, IoU.plate: 0.6281, IoU.monitor: 0.6049, IoU.bulletin board: 0.5971, IoU.shower: 0.2157, IoU.radiator: 0.6699, IoU.glass: 0.2129, IoU.clock: 0.5162, IoU.flag: 0.6917, Acc.wall: 0.9006, Acc.building: 0.9295, Acc.sky: 0.9792, Acc.floor: 0.9233, Acc.tree: 0.8921, Acc.ceiling: 0.9437, Acc.road: 0.9032, Acc.bed : 0.9676, Acc.windowpane: 0.8269, Acc.grass: 0.8235, Acc.cabinet: 0.7640, Acc.sidewalk: 0.8570, Acc.person: 0.9378, Acc.earth: 0.5651, Acc.door: 0.7479, Acc.table: 0.8004, Acc.mountain: 0.7252, Acc.plant: 0.6742, Acc.curtain: 0.8835, Acc.chair: 0.7709, Acc.car: 0.9315, Acc.water: 0.7862, Acc.painting: 0.9114, Acc.sofa: 0.8876, Acc.shelf: 0.6104, Acc.house: 0.6298, Acc.sea: 0.8119, Acc.mirror: 0.8717, Acc.rug: 0.7463, Acc.field: 0.5665, Acc.armchair: 0.8243, Acc.seat: 0.8916, Acc.fence: 0.6723, Acc.desk: 0.7772, Acc.rock: 0.8281, Acc.wardrobe: 0.7398, Acc.lamp: 0.8428, Acc.bathtub: 0.8751, Acc.railing: 0.5926, Acc.cushion: 0.8300, Acc.base: 0.5733, Acc.box: 0.5283, Acc.column: 0.7156, Acc.signboard: 0.5612, Acc.chest of drawers: 0.7484, Acc.counter: 0.5266, Acc.sand: 0.8340, Acc.sink: 0.8543, Acc.skyscraper: 0.5985, Acc.fireplace: 0.9465, Acc.refrigerator: 0.9556, Acc.grandstand: 0.8403, Acc.path: 0.3628, Acc.stairs: 0.4740, Acc.runway: 0.8751, Acc.case: 0.7964, Acc.pool table: 0.9805, Acc.pillow: 0.7953, Acc.screen door: 0.8136, Acc.stairway: 0.5754, Acc.river: 0.2809, Acc.bridge: 0.8383, Acc.bookcase: 0.6531, Acc.blind: 0.4493, Acc.coffee table: 0.8555, Acc.toilet: 0.9411, Acc.flower: 0.5883, Acc.book: 0.7263, Acc.hill: 0.1411, Acc.bench: 0.6563, Acc.countertop: 0.8405, Acc.stove: 0.9123, Acc.palm: 0.7940, Acc.kitchen island: 0.7786, Acc.computer: 0.9092, Acc.swivel chair: 0.7122, Acc.boat: 0.9106, Acc.bar: 0.8585, Acc.arcade machine: 0.8189, Acc.hovel: 0.3841, Acc.bus: 0.9722, Acc.towel: 0.8220, Acc.light: 0.6398, Acc.truck: 0.6324, Acc.tower: 0.3187, Acc.chandelier: 0.8279, Acc.awning: 0.4438, Acc.streetlight: 0.4181, Acc.booth: 0.6048, Acc.television receiver: 0.8842, Acc.airplane: 0.9305, Acc.dirt track: 0.1910, Acc.apparel: 0.7384, Acc.pole: 0.3690, Acc.land: 0.0700, Acc.bannister: 0.2176, Acc.escalator: 0.8616, Acc.ottoman: 0.7689, Acc.bottle: 0.7256, Acc.buffet: 0.6125, Acc.poster: 0.3875, Acc.stage: 0.4810, Acc.van: 0.7876, Acc.ship: 0.9857, Acc.fountain: 0.4115, Acc.conveyer belt: 0.9573, Acc.canopy: 0.7119, Acc.washer: 0.9217, Acc.plaything: 0.4544, Acc.swimming pool: 0.8430, Acc.stool: 0.6843, Acc.barrel: 0.7951, Acc.basket: 0.5795, Acc.waterfall: 0.6882, Acc.tent: 0.9881, Acc.bag: 0.2931, Acc.minibike: 0.8936, Acc.cradle: 0.9818, Acc.oven: 0.7281, Acc.ball: 0.6461, Acc.food: 0.6852, Acc.step: 0.1684, Acc.tank: 0.8080, Acc.trade name: 0.2405, Acc.microwave: 0.9605, Acc.pot: 0.7102, Acc.animal: 0.6434, Acc.bicycle: 0.7811, Acc.lake: 0.6361, Acc.dishwasher: 0.8150, Acc.screen: 0.9211, Acc.blanket: 0.4023, Acc.sculpture: 0.8579, Acc.hood: 0.7361, Acc.sconce: 0.7069, Acc.vase: 0.6422, Acc.traffic light: 0.6275, Acc.tray: 0.3268, Acc.ashcan: 0.6825, Acc.fan: 0.8474, Acc.pier: 0.4496, Acc.crt screen: 0.0399, Acc.plate: 0.7624, Acc.monitor: 0.7133, Acc.bulletin board: 0.7859, Acc.shower: 0.2315, Acc.radiator: 0.8188, Acc.glass: 0.2282, Acc.clock: 0.6291, Acc.flag: 0.7584 2024-06-17 05:54:10,283 - mmseg - INFO - Iter [69050/80000] lr: 4.435e-07, eta: 5:16:21, time: 3.294, data_time: 1.691, memory: 65790, decode.loss_ce: 0.1412, decode.acc_seg: 93.6062, aux.loss_ce: 0.0610, aux.acc_seg: 93.1359, loss: 0.2022 2024-06-17 05:55:30,703 - mmseg - INFO - Iter [69100/80000] lr: 4.415e-07, eta: 5:14:54, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1256, decode.acc_seg: 94.3783, aux.loss_ce: 0.0545, aux.acc_seg: 93.9834, loss: 0.1801 2024-06-17 05:56:51,055 - mmseg - INFO - Iter [69150/80000] lr: 4.394e-07, eta: 5:13:26, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1299, decode.acc_seg: 94.0748, aux.loss_ce: 0.0570, aux.acc_seg: 93.6008, loss: 0.1869 2024-06-17 05:58:11,520 - mmseg - INFO - Iter [69200/80000] lr: 4.374e-07, eta: 5:11:58, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1369, decode.acc_seg: 93.9359, aux.loss_ce: 0.0597, aux.acc_seg: 93.5131, loss: 0.1966 2024-06-17 05:59:32,003 - mmseg - INFO - Iter [69250/80000] lr: 4.354e-07, eta: 5:10:31, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1323, decode.acc_seg: 93.9744, aux.loss_ce: 0.0583, aux.acc_seg: 93.4876, loss: 0.1906 2024-06-17 06:00:52,464 - mmseg - INFO - Iter [69300/80000] lr: 4.334e-07, eta: 5:09:03, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1338, decode.acc_seg: 94.0735, aux.loss_ce: 0.0583, aux.acc_seg: 93.6007, loss: 0.1922 2024-06-17 06:02:13,044 - mmseg - INFO - Iter [69350/80000] lr: 4.313e-07, eta: 5:07:36, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1336, decode.acc_seg: 94.0274, aux.loss_ce: 0.0580, aux.acc_seg: 93.5807, loss: 0.1916 2024-06-17 06:03:33,508 - mmseg - INFO - Iter [69400/80000] lr: 4.293e-07, eta: 5:06:08, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1281, decode.acc_seg: 94.1603, aux.loss_ce: 0.0556, aux.acc_seg: 93.7535, loss: 0.1837 2024-06-17 06:04:53,968 - mmseg - INFO - Iter [69450/80000] lr: 4.273e-07, eta: 5:04:40, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1359, decode.acc_seg: 93.8392, aux.loss_ce: 0.0594, aux.acc_seg: 93.4157, loss: 0.1952 2024-06-17 06:06:16,600 - mmseg - INFO - Iter [69500/80000] lr: 4.253e-07, eta: 5:03:13, time: 1.653, data_time: 0.049, memory: 65790, decode.loss_ce: 0.1346, decode.acc_seg: 93.8032, aux.loss_ce: 0.0582, aux.acc_seg: 93.4492, loss: 0.1929 2024-06-17 06:07:36,969 - mmseg - INFO - Iter [69550/80000] lr: 4.232e-07, eta: 5:01:46, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1374, decode.acc_seg: 93.7890, aux.loss_ce: 0.0601, aux.acc_seg: 93.3734, loss: 0.1975 2024-06-17 06:08:57,429 - mmseg - INFO - Iter [69600/80000] lr: 4.212e-07, eta: 5:00:18, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1298, decode.acc_seg: 94.0739, aux.loss_ce: 0.0570, aux.acc_seg: 93.5476, loss: 0.1868 2024-06-17 06:10:17,806 - mmseg - INFO - Iter [69650/80000] lr: 4.192e-07, eta: 4:58:50, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1259, decode.acc_seg: 94.3316, aux.loss_ce: 0.0546, aux.acc_seg: 93.9473, loss: 0.1805 2024-06-17 06:11:38,255 - mmseg - INFO - Iter [69700/80000] lr: 4.172e-07, eta: 4:57:23, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1336, decode.acc_seg: 94.0744, aux.loss_ce: 0.0588, aux.acc_seg: 93.5895, loss: 0.1924 2024-06-17 06:12:58,723 - mmseg - INFO - Iter [69750/80000] lr: 4.151e-07, eta: 4:55:55, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1305, decode.acc_seg: 94.0427, aux.loss_ce: 0.0573, aux.acc_seg: 93.6006, loss: 0.1877 2024-06-17 06:14:19,068 - mmseg - INFO - Iter [69800/80000] lr: 4.131e-07, eta: 4:54:28, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1294, decode.acc_seg: 94.1274, aux.loss_ce: 0.0568, aux.acc_seg: 93.6900, loss: 0.1862 2024-06-17 06:15:39,407 - mmseg - INFO - Iter [69850/80000] lr: 4.111e-07, eta: 4:53:00, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1333, decode.acc_seg: 94.1580, aux.loss_ce: 0.0580, aux.acc_seg: 93.7362, loss: 0.1912 2024-06-17 06:16:59,786 - mmseg - INFO - Iter [69900/80000] lr: 4.091e-07, eta: 4:51:33, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1331, decode.acc_seg: 93.7935, aux.loss_ce: 0.0575, aux.acc_seg: 93.4298, loss: 0.1906 2024-06-17 06:18:20,264 - mmseg - INFO - Iter [69950/80000] lr: 4.070e-07, eta: 4:50:05, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1300, decode.acc_seg: 94.1002, aux.loss_ce: 0.0564, aux.acc_seg: 93.7003, loss: 0.1864 2024-06-17 06:19:40,702 - mmseg - INFO - Saving checkpoint at 70000 iterations 2024-06-17 06:20:53,748 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 06:20:53,749 - mmseg - INFO - Iter [70000/80000] lr: 4.050e-07, eta: 4:48:48, time: 3.070, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1460, decode.acc_seg: 93.4787, aux.loss_ce: 0.0635, aux.acc_seg: 93.0342, loss: 0.2095 2024-06-17 06:22:16,114 - mmseg - INFO - per class results: 2024-06-17 06:22:16,120 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.52 | 90.34 | | building | 84.88 | 93.73 | | sky | 94.82 | 97.54 | | floor | 84.17 | 91.52 | | tree | 77.43 | 89.43 | | ceiling | 87.56 | 94.1 | | road | 86.12 | 91.11 | | bed | 91.72 | 97.03 | | windowpane | 66.35 | 82.98 | | grass | 67.84 | 80.11 | | cabinet | 67.39 | 77.59 | | sidewalk | 72.01 | 85.74 | | person | 85.21 | 93.8 | | earth | 41.97 | 56.4 | | door | 60.83 | 74.56 | | table | 69.66 | 81.97 | | mountain | 61.34 | 71.45 | | plant | 54.43 | 65.76 | | curtain | 77.56 | 87.76 | | chair | 66.51 | 78.41 | | car | 87.52 | 93.58 | | water | 61.86 | 77.0 | | painting | 80.07 | 90.96 | | sofa | 83.52 | 92.12 | | shelf | 46.87 | 61.79 | | house | 49.34 | 58.17 | | sea | 73.3 | 80.37 | | mirror | 78.38 | 85.82 | | rug | 65.28 | 78.3 | | field | 31.85 | 56.23 | | armchair | 65.21 | 81.86 | | seat | 67.33 | 89.54 | | fence | 53.51 | 68.45 | | desk | 60.61 | 78.44 | | rock | 55.53 | 85.23 | | wardrobe | 53.35 | 72.96 | | lamp | 73.94 | 85.12 | | bathtub | 83.97 | 87.9 | | railing | 44.51 | 60.96 | | cushion | 71.54 | 82.17 | | base | 43.52 | 60.57 | | box | 39.8 | 50.15 | | column | 57.41 | 69.48 | | signboard | 39.24 | 54.21 | | chest of drawers | 47.49 | 72.06 | | counter | 40.69 | 46.4 | | sand | 55.71 | 83.14 | | sink | 79.68 | 85.2 | | skyscraper | 46.92 | 58.22 | | fireplace | 76.5 | 93.71 | | refrigerator | 86.58 | 95.15 | | grandstand | 53.54 | 84.14 | | path | 28.48 | 38.53 | | stairs | 31.0 | 38.07 | | runway | 66.4 | 85.57 | | case | 61.02 | 82.38 | | pool table | 94.2 | 98.12 | | pillow | 66.48 | 76.19 | | screen door | 76.79 | 82.02 | | stairway | 44.15 | 60.3 | | river | 12.73 | 29.04 | | bridge | 70.64 | 89.32 | | bookcase | 39.26 | 61.27 | | blind | 40.32 | 44.03 | | coffee table | 59.84 | 84.48 | | toilet | 89.79 | 94.31 | | flower | 42.03 | 58.29 | | book | 52.86 | 77.18 | | hill | 9.19 | 15.91 | | bench | 57.18 | 65.29 | | countertop | 63.63 | 81.19 | | stove | 86.27 | 92.2 | | palm | 53.68 | 75.65 | | kitchen island | 49.13 | 79.29 | | computer | 79.07 | 90.95 | | swivel chair | 45.8 | 68.28 | | boat | 78.71 | 92.16 | | bar | 63.6 | 88.93 | | arcade machine | 77.04 | 80.88 | | hovel | 30.57 | 33.98 | | bus | 91.83 | 97.51 | | towel | 73.57 | 80.56 | | light | 56.98 | 63.73 | | truck | 49.37 | 64.09 | | tower | 15.17 | 26.26 | | chandelier | 72.24 | 85.04 | | awning | 33.76 | 44.71 | | streetlight | 32.71 | 42.94 | | booth | 57.36 | 68.33 | | television receiver | 79.64 | 87.36 | | airplane | 87.05 | 94.83 | | dirt track | 5.59 | 25.2 | | apparel | 58.64 | 72.95 | | pole | 26.54 | 39.92 | | land | 4.23 | 5.85 | | bannister | 19.22 | 24.36 | | escalator | 66.5 | 86.75 | | ottoman | 60.04 | 74.26 | | bottle | 44.17 | 70.6 | | buffet | 53.5 | 59.36 | | poster | 30.44 | 37.15 | | stage | 25.53 | 47.88 | | van | 53.31 | 76.42 | | ship | 94.09 | 98.72 | | fountain | 40.53 | 41.24 | | conveyer belt | 81.78 | 95.49 | | canopy | 48.66 | 72.71 | | washer | 85.33 | 91.39 | | plaything | 30.3 | 42.79 | | swimming pool | 54.84 | 79.34 | | stool | 52.95 | 63.1 | | barrel | 58.68 | 74.82 | | basket | 43.54 | 59.03 | | waterfall | 64.03 | 76.94 | | tent | 95.24 | 98.64 | | bag | 25.61 | 28.6 | | minibike | 74.58 | 89.29 | | cradle | 84.8 | 98.07 | | oven | 59.52 | 71.7 | | ball | 57.16 | 59.87 | | food | 59.45 | 66.93 | | step | 11.38 | 14.21 | | tank | 68.41 | 76.53 | | trade name | 23.06 | 26.81 | | microwave | 90.79 | 96.03 | | pot | 60.18 | 69.95 | | animal | 59.02 | 60.8 | | bicycle | 60.66 | 80.63 | | lake | 55.75 | 63.54 | | dishwasher | 72.8 | 78.79 | | screen | 59.95 | 95.69 | | blanket | 33.89 | 39.68 | | sculpture | 74.96 | 86.42 | | hood | 61.6 | 73.06 | | sconce | 59.11 | 69.96 | | vase | 47.1 | 64.34 | | traffic light | 39.67 | 61.16 | | tray | 26.15 | 32.2 | | ashcan | 54.71 | 68.83 | | fan | 68.66 | 81.29 | | pier | 39.21 | 44.39 | | crt screen | 2.48 | 3.51 | | plate | 62.45 | 77.3 | | monitor | 59.49 | 70.17 | | bulletin board | 60.24 | 79.43 | | shower | 22.33 | 24.18 | | radiator | 66.31 | 80.35 | | glass | 20.17 | 21.43 | | clock | 51.36 | 61.03 | | flag | 69.72 | 77.88 | +---------------------+-------+-------+ 2024-06-17 06:22:16,121 - mmseg - INFO - Summary: 2024-06-17 06:22:16,121 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 86.18 | 57.97 | 70.19 | +-------+-------+-------+ 2024-06-17 06:22:16,121 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 06:22:16,122 - mmseg - INFO - Iter(val) [250] aAcc: 0.8618, mIoU: 0.5797, mAcc: 0.7019, IoU.wall: 0.8252, IoU.building: 0.8488, IoU.sky: 0.9482, IoU.floor: 0.8417, IoU.tree: 0.7743, IoU.ceiling: 0.8756, IoU.road: 0.8612, IoU.bed : 0.9172, IoU.windowpane: 0.6635, IoU.grass: 0.6784, IoU.cabinet: 0.6739, IoU.sidewalk: 0.7201, IoU.person: 0.8521, IoU.earth: 0.4197, IoU.door: 0.6083, IoU.table: 0.6966, IoU.mountain: 0.6134, IoU.plant: 0.5443, IoU.curtain: 0.7756, IoU.chair: 0.6651, IoU.car: 0.8752, IoU.water: 0.6186, IoU.painting: 0.8007, IoU.sofa: 0.8352, IoU.shelf: 0.4687, IoU.house: 0.4934, IoU.sea: 0.7330, IoU.mirror: 0.7838, IoU.rug: 0.6528, IoU.field: 0.3185, IoU.armchair: 0.6521, IoU.seat: 0.6733, IoU.fence: 0.5351, IoU.desk: 0.6061, IoU.rock: 0.5553, IoU.wardrobe: 0.5335, IoU.lamp: 0.7394, IoU.bathtub: 0.8397, IoU.railing: 0.4451, IoU.cushion: 0.7154, IoU.base: 0.4352, IoU.box: 0.3980, IoU.column: 0.5741, IoU.signboard: 0.3924, IoU.chest of drawers: 0.4749, IoU.counter: 0.4069, IoU.sand: 0.5571, IoU.sink: 0.7968, IoU.skyscraper: 0.4692, IoU.fireplace: 0.7650, IoU.refrigerator: 0.8658, IoU.grandstand: 0.5354, IoU.path: 0.2848, IoU.stairs: 0.3100, IoU.runway: 0.6640, IoU.case: 0.6102, IoU.pool table: 0.9420, IoU.pillow: 0.6648, IoU.screen door: 0.7679, IoU.stairway: 0.4415, IoU.river: 0.1273, IoU.bridge: 0.7064, IoU.bookcase: 0.3926, IoU.blind: 0.4032, IoU.coffee table: 0.5984, IoU.toilet: 0.8979, IoU.flower: 0.4203, IoU.book: 0.5286, IoU.hill: 0.0919, IoU.bench: 0.5718, IoU.countertop: 0.6363, IoU.stove: 0.8627, IoU.palm: 0.5368, IoU.kitchen island: 0.4913, IoU.computer: 0.7907, IoU.swivel chair: 0.4580, IoU.boat: 0.7871, IoU.bar: 0.6360, IoU.arcade machine: 0.7704, IoU.hovel: 0.3057, IoU.bus: 0.9183, IoU.towel: 0.7357, IoU.light: 0.5698, IoU.truck: 0.4937, IoU.tower: 0.1517, IoU.chandelier: 0.7224, IoU.awning: 0.3376, IoU.streetlight: 0.3271, IoU.booth: 0.5736, IoU.television receiver: 0.7964, IoU.airplane: 0.8705, IoU.dirt track: 0.0559, IoU.apparel: 0.5864, IoU.pole: 0.2654, IoU.land: 0.0423, IoU.bannister: 0.1922, IoU.escalator: 0.6650, IoU.ottoman: 0.6004, IoU.bottle: 0.4417, IoU.buffet: 0.5350, IoU.poster: 0.3044, IoU.stage: 0.2553, IoU.van: 0.5331, IoU.ship: 0.9409, IoU.fountain: 0.4053, IoU.conveyer belt: 0.8178, IoU.canopy: 0.4866, IoU.washer: 0.8533, IoU.plaything: 0.3030, IoU.swimming pool: 0.5484, IoU.stool: 0.5295, IoU.barrel: 0.5868, IoU.basket: 0.4354, IoU.waterfall: 0.6403, IoU.tent: 0.9524, IoU.bag: 0.2561, IoU.minibike: 0.7458, IoU.cradle: 0.8480, IoU.oven: 0.5952, IoU.ball: 0.5716, IoU.food: 0.5945, IoU.step: 0.1138, IoU.tank: 0.6841, IoU.trade name: 0.2306, IoU.microwave: 0.9079, IoU.pot: 0.6018, IoU.animal: 0.5902, IoU.bicycle: 0.6066, IoU.lake: 0.5575, IoU.dishwasher: 0.7280, IoU.screen: 0.5995, IoU.blanket: 0.3389, IoU.sculpture: 0.7496, IoU.hood: 0.6160, IoU.sconce: 0.5911, IoU.vase: 0.4710, IoU.traffic light: 0.3967, IoU.tray: 0.2615, IoU.ashcan: 0.5471, IoU.fan: 0.6866, IoU.pier: 0.3921, IoU.crt screen: 0.0248, IoU.plate: 0.6245, IoU.monitor: 0.5949, IoU.bulletin board: 0.6024, IoU.shower: 0.2233, IoU.radiator: 0.6631, IoU.glass: 0.2017, IoU.clock: 0.5136, IoU.flag: 0.6972, Acc.wall: 0.9034, Acc.building: 0.9373, Acc.sky: 0.9754, Acc.floor: 0.9152, Acc.tree: 0.8943, Acc.ceiling: 0.9410, Acc.road: 0.9111, Acc.bed : 0.9703, Acc.windowpane: 0.8298, Acc.grass: 0.8011, Acc.cabinet: 0.7759, Acc.sidewalk: 0.8574, Acc.person: 0.9380, Acc.earth: 0.5640, Acc.door: 0.7456, Acc.table: 0.8197, Acc.mountain: 0.7145, Acc.plant: 0.6576, Acc.curtain: 0.8776, Acc.chair: 0.7841, Acc.car: 0.9358, Acc.water: 0.7700, Acc.painting: 0.9096, Acc.sofa: 0.9212, Acc.shelf: 0.6179, Acc.house: 0.5817, Acc.sea: 0.8037, Acc.mirror: 0.8582, Acc.rug: 0.7830, Acc.field: 0.5623, Acc.armchair: 0.8186, Acc.seat: 0.8954, Acc.fence: 0.6845, Acc.desk: 0.7844, Acc.rock: 0.8523, Acc.wardrobe: 0.7296, Acc.lamp: 0.8512, Acc.bathtub: 0.8790, Acc.railing: 0.6096, Acc.cushion: 0.8217, Acc.base: 0.6057, Acc.box: 0.5015, Acc.column: 0.6948, Acc.signboard: 0.5421, Acc.chest of drawers: 0.7206, Acc.counter: 0.4640, Acc.sand: 0.8314, Acc.sink: 0.8520, Acc.skyscraper: 0.5822, Acc.fireplace: 0.9371, Acc.refrigerator: 0.9515, Acc.grandstand: 0.8414, Acc.path: 0.3853, Acc.stairs: 0.3807, Acc.runway: 0.8557, Acc.case: 0.8238, Acc.pool table: 0.9812, Acc.pillow: 0.7619, Acc.screen door: 0.8202, Acc.stairway: 0.6030, Acc.river: 0.2904, Acc.bridge: 0.8932, Acc.bookcase: 0.6127, Acc.blind: 0.4403, Acc.coffee table: 0.8448, Acc.toilet: 0.9431, Acc.flower: 0.5829, Acc.book: 0.7718, Acc.hill: 0.1591, Acc.bench: 0.6529, Acc.countertop: 0.8119, Acc.stove: 0.9220, Acc.palm: 0.7565, Acc.kitchen island: 0.7929, Acc.computer: 0.9095, Acc.swivel chair: 0.6828, Acc.boat: 0.9216, Acc.bar: 0.8893, Acc.arcade machine: 0.8088, Acc.hovel: 0.3398, Acc.bus: 0.9751, Acc.towel: 0.8056, Acc.light: 0.6373, Acc.truck: 0.6409, Acc.tower: 0.2626, Acc.chandelier: 0.8504, Acc.awning: 0.4471, Acc.streetlight: 0.4294, Acc.booth: 0.6833, Acc.television receiver: 0.8736, Acc.airplane: 0.9483, Acc.dirt track: 0.2520, Acc.apparel: 0.7295, Acc.pole: 0.3992, Acc.land: 0.0585, Acc.bannister: 0.2436, Acc.escalator: 0.8675, Acc.ottoman: 0.7426, Acc.bottle: 0.7060, Acc.buffet: 0.5936, Acc.poster: 0.3715, Acc.stage: 0.4788, Acc.van: 0.7642, Acc.ship: 0.9872, Acc.fountain: 0.4124, Acc.conveyer belt: 0.9549, Acc.canopy: 0.7271, Acc.washer: 0.9139, Acc.plaything: 0.4279, Acc.swimming pool: 0.7934, Acc.stool: 0.6310, Acc.barrel: 0.7482, Acc.basket: 0.5903, Acc.waterfall: 0.7694, Acc.tent: 0.9864, Acc.bag: 0.2860, Acc.minibike: 0.8929, Acc.cradle: 0.9807, Acc.oven: 0.7170, Acc.ball: 0.5987, Acc.food: 0.6693, Acc.step: 0.1421, Acc.tank: 0.7653, Acc.trade name: 0.2681, Acc.microwave: 0.9603, Acc.pot: 0.6995, Acc.animal: 0.6080, Acc.bicycle: 0.8063, Acc.lake: 0.6354, Acc.dishwasher: 0.7879, Acc.screen: 0.9569, Acc.blanket: 0.3968, Acc.sculpture: 0.8642, Acc.hood: 0.7306, Acc.sconce: 0.6996, Acc.vase: 0.6434, Acc.traffic light: 0.6116, Acc.tray: 0.3220, Acc.ashcan: 0.6883, Acc.fan: 0.8129, Acc.pier: 0.4439, Acc.crt screen: 0.0351, Acc.plate: 0.7730, Acc.monitor: 0.7017, Acc.bulletin board: 0.7943, Acc.shower: 0.2418, Acc.radiator: 0.8035, Acc.glass: 0.2143, Acc.clock: 0.6103, Acc.flag: 0.7788 2024-06-17 06:23:36,855 - mmseg - INFO - Iter [70050/80000] lr: 4.030e-07, eta: 4:47:33, time: 3.262, data_time: 1.661, memory: 65790, decode.loss_ce: 0.1296, decode.acc_seg: 93.9851, aux.loss_ce: 0.0563, aux.acc_seg: 93.5490, loss: 0.1859 2024-06-17 06:24:57,227 - mmseg - INFO - Iter [70100/80000] lr: 4.010e-07, eta: 4:46:05, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1284, decode.acc_seg: 94.1022, aux.loss_ce: 0.0557, aux.acc_seg: 93.6716, loss: 0.1841 2024-06-17 06:26:17,617 - mmseg - INFO - Iter [70150/80000] lr: 3.989e-07, eta: 4:44:37, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1305, decode.acc_seg: 94.0787, aux.loss_ce: 0.0573, aux.acc_seg: 93.6379, loss: 0.1878 2024-06-17 06:27:38,112 - mmseg - INFO - Iter [70200/80000] lr: 3.969e-07, eta: 4:43:10, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1310, decode.acc_seg: 94.0403, aux.loss_ce: 0.0573, aux.acc_seg: 93.6041, loss: 0.1883 2024-06-17 06:28:58,543 - mmseg - INFO - Iter [70250/80000] lr: 3.949e-07, eta: 4:41:42, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1322, decode.acc_seg: 94.0019, aux.loss_ce: 0.0579, aux.acc_seg: 93.5754, loss: 0.1900 2024-06-17 06:30:19,074 - mmseg - INFO - Iter [70300/80000] lr: 3.929e-07, eta: 4:40:15, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1321, decode.acc_seg: 94.1122, aux.loss_ce: 0.0575, aux.acc_seg: 93.7213, loss: 0.1896 2024-06-17 06:31:39,489 - mmseg - INFO - Iter [70350/80000] lr: 3.908e-07, eta: 4:38:47, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1218, decode.acc_seg: 94.3752, aux.loss_ce: 0.0530, aux.acc_seg: 93.9827, loss: 0.1748 2024-06-17 06:32:59,883 - mmseg - INFO - Iter [70400/80000] lr: 3.888e-07, eta: 4:37:20, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1402, decode.acc_seg: 93.5582, aux.loss_ce: 0.0612, aux.acc_seg: 93.1775, loss: 0.2015 2024-06-17 06:34:20,380 - mmseg - INFO - Iter [70450/80000] lr: 3.868e-07, eta: 4:35:52, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1273, decode.acc_seg: 94.2575, aux.loss_ce: 0.0559, aux.acc_seg: 93.8338, loss: 0.1832 2024-06-17 06:35:40,776 - mmseg - INFO - Iter [70500/80000] lr: 3.848e-07, eta: 4:34:25, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1372, decode.acc_seg: 93.8481, aux.loss_ce: 0.0607, aux.acc_seg: 93.3756, loss: 0.1979 2024-06-17 06:37:01,284 - mmseg - INFO - Iter [70550/80000] lr: 3.827e-07, eta: 4:32:57, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1372, decode.acc_seg: 93.7819, aux.loss_ce: 0.0595, aux.acc_seg: 93.3047, loss: 0.1967 2024-06-17 06:38:21,920 - mmseg - INFO - Iter [70600/80000] lr: 3.807e-07, eta: 4:31:30, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1334, decode.acc_seg: 93.9405, aux.loss_ce: 0.0584, aux.acc_seg: 93.4673, loss: 0.1918 2024-06-17 06:39:42,331 - mmseg - INFO - Iter [70650/80000] lr: 3.787e-07, eta: 4:30:02, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1274, decode.acc_seg: 94.2023, aux.loss_ce: 0.0555, aux.acc_seg: 93.7999, loss: 0.1830 2024-06-17 06:41:02,822 - mmseg - INFO - Iter [70700/80000] lr: 3.767e-07, eta: 4:28:35, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1285, decode.acc_seg: 94.0574, aux.loss_ce: 0.0562, aux.acc_seg: 93.6771, loss: 0.1846 2024-06-17 06:42:25,415 - mmseg - INFO - Iter [70750/80000] lr: 3.746e-07, eta: 4:27:08, time: 1.652, data_time: 0.049, memory: 65790, decode.loss_ce: 0.1370, decode.acc_seg: 93.6936, aux.loss_ce: 0.0600, aux.acc_seg: 93.2435, loss: 0.1970 2024-06-17 06:43:45,929 - mmseg - INFO - Iter [70800/80000] lr: 3.726e-07, eta: 4:25:40, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1265, decode.acc_seg: 94.2323, aux.loss_ce: 0.0552, aux.acc_seg: 93.8320, loss: 0.1817 2024-06-17 06:45:06,498 - mmseg - INFO - Iter [70850/80000] lr: 3.706e-07, eta: 4:24:13, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1267, decode.acc_seg: 94.3118, aux.loss_ce: 0.0553, aux.acc_seg: 93.9086, loss: 0.1821 2024-06-17 06:46:27,016 - mmseg - INFO - Iter [70900/80000] lr: 3.686e-07, eta: 4:22:45, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1309, decode.acc_seg: 94.0802, aux.loss_ce: 0.0574, aux.acc_seg: 93.6044, loss: 0.1883 2024-06-17 06:47:47,498 - mmseg - INFO - Iter [70950/80000] lr: 3.665e-07, eta: 4:21:18, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1250, decode.acc_seg: 94.2891, aux.loss_ce: 0.0551, aux.acc_seg: 93.8102, loss: 0.1801 2024-06-17 06:49:07,884 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 06:49:07,884 - mmseg - INFO - Iter [71000/80000] lr: 3.645e-07, eta: 4:19:50, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1301, decode.acc_seg: 94.0697, aux.loss_ce: 0.0572, aux.acc_seg: 93.6292, loss: 0.1873 2024-06-17 06:50:30,524 - mmseg - INFO - per class results: 2024-06-17 06:50:30,531 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.57 | 90.28 | | building | 85.0 | 93.23 | | sky | 94.89 | 97.71 | | floor | 83.99 | 92.29 | | tree | 77.55 | 89.03 | | ceiling | 87.81 | 94.49 | | road | 86.53 | 91.01 | | bed | 92.05 | 96.89 | | windowpane | 66.54 | 82.78 | | grass | 68.18 | 82.01 | | cabinet | 65.88 | 75.23 | | sidewalk | 72.15 | 86.21 | | person | 84.98 | 94.02 | | earth | 42.42 | 56.44 | | door | 60.15 | 72.45 | | table | 70.12 | 82.11 | | mountain | 61.48 | 73.28 | | plant | 55.2 | 67.04 | | curtain | 77.87 | 89.21 | | chair | 65.87 | 76.69 | | car | 87.53 | 93.75 | | water | 62.49 | 77.31 | | painting | 80.01 | 91.48 | | sofa | 83.5 | 91.83 | | shelf | 46.61 | 60.36 | | house | 50.91 | 63.05 | | sea | 73.87 | 81.44 | | mirror | 78.76 | 87.39 | | rug | 58.94 | 65.87 | | field | 32.59 | 57.92 | | armchair | 65.97 | 81.61 | | seat | 68.11 | 88.76 | | fence | 52.33 | 65.2 | | desk | 60.41 | 78.38 | | rock | 56.07 | 82.64 | | wardrobe | 51.1 | 73.56 | | lamp | 74.14 | 85.74 | | bathtub | 84.14 | 87.56 | | railing | 43.98 | 60.98 | | cushion | 70.39 | 83.45 | | base | 44.67 | 61.27 | | box | 42.06 | 56.03 | | column | 58.06 | 70.03 | | signboard | 38.99 | 53.37 | | chest of drawers | 46.73 | 73.24 | | counter | 46.16 | 53.93 | | sand | 56.73 | 84.48 | | sink | 79.86 | 86.15 | | skyscraper | 47.25 | 59.41 | | fireplace | 75.5 | 93.43 | | refrigerator | 86.47 | 96.03 | | grandstand | 54.26 | 82.86 | | path | 30.08 | 37.51 | | stairs | 37.61 | 46.63 | | runway | 67.22 | 86.95 | | case | 61.63 | 80.59 | | pool table | 94.34 | 98.03 | | pillow | 64.85 | 73.38 | | screen door | 76.06 | 78.43 | | stairway | 46.6 | 58.98 | | river | 12.62 | 28.9 | | bridge | 72.2 | 89.27 | | bookcase | 42.13 | 61.33 | | blind | 39.43 | 44.67 | | coffee table | 60.88 | 84.69 | | toilet | 90.14 | 94.25 | | flower | 42.15 | 57.77 | | book | 53.05 | 79.35 | | hill | 9.59 | 17.96 | | bench | 57.8 | 65.73 | | countertop | 62.82 | 82.76 | | stove | 86.3 | 92.87 | | palm | 54.0 | 81.04 | | kitchen island | 50.13 | 79.3 | | computer | 78.72 | 91.73 | | swivel chair | 45.84 | 73.24 | | boat | 78.65 | 91.86 | | bar | 61.94 | 83.57 | | arcade machine | 79.63 | 83.5 | | hovel | 31.6 | 35.52 | | bus | 92.74 | 96.98 | | towel | 73.82 | 80.42 | | light | 57.85 | 65.61 | | truck | 49.96 | 60.64 | | tower | 16.38 | 27.72 | | chandelier | 72.52 | 84.22 | | awning | 34.14 | 45.55 | | streetlight | 32.97 | 43.03 | | booth | 57.14 | 71.74 | | television receiver | 80.74 | 87.37 | | airplane | 87.19 | 94.43 | | dirt track | 6.4 | 27.89 | | apparel | 58.29 | 75.87 | | pole | 27.28 | 42.03 | | land | 4.02 | 5.7 | | bannister | 19.77 | 25.72 | | escalator | 66.7 | 86.42 | | ottoman | 60.08 | 74.63 | | bottle | 44.09 | 76.6 | | buffet | 57.71 | 64.54 | | poster | 30.7 | 38.02 | | stage | 24.29 | 48.05 | | van | 51.54 | 73.38 | | ship | 92.43 | 95.88 | | fountain | 39.88 | 40.71 | | conveyer belt | 82.48 | 95.51 | | canopy | 49.57 | 70.18 | | washer | 83.71 | 89.72 | | plaything | 31.7 | 46.75 | | swimming pool | 54.19 | 78.26 | | stool | 47.83 | 68.57 | | barrel | 52.55 | 75.08 | | basket | 42.36 | 57.95 | | waterfall | 66.6 | 83.69 | | tent | 92.43 | 98.49 | | bag | 26.55 | 30.46 | | minibike | 74.41 | 88.02 | | cradle | 85.03 | 98.05 | | oven | 57.72 | 69.98 | | ball | 62.58 | 68.1 | | food | 63.65 | 72.01 | | step | 10.97 | 13.95 | | tank | 60.59 | 67.82 | | trade name | 25.23 | 30.07 | | microwave | 89.95 | 96.49 | | pot | 59.75 | 69.36 | | animal | 59.54 | 61.32 | | bicycle | 61.21 | 80.9 | | lake | 55.81 | 63.62 | | dishwasher | 70.44 | 80.66 | | screen | 60.19 | 94.38 | | blanket | 33.5 | 38.87 | | sculpture | 75.58 | 85.07 | | hood | 61.93 | 75.41 | | sconce | 58.51 | 68.41 | | vase | 46.91 | 64.97 | | traffic light | 38.67 | 64.37 | | tray | 27.54 | 35.17 | | ashcan | 53.5 | 69.06 | | fan | 69.1 | 83.18 | | pier | 39.1 | 44.09 | | crt screen | 2.64 | 3.58 | | plate | 62.37 | 78.11 | | monitor | 64.39 | 75.35 | | bulletin board | 60.06 | 79.66 | | shower | 22.71 | 24.6 | | radiator | 67.31 | 84.0 | | glass | 21.63 | 23.25 | | clock | 52.55 | 66.73 | | flag | 70.0 | 77.06 | +---------------------+-------+-------+ 2024-06-17 06:50:30,531 - mmseg - INFO - Summary: 2024-06-17 06:50:30,531 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 86.22 | 58.14 | 70.76 | +-------+-------+-------+ 2024-06-17 06:50:30,532 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 06:50:30,532 - mmseg - INFO - Iter(val) [250] aAcc: 0.8622, mIoU: 0.5814, mAcc: 0.7076, IoU.wall: 0.8257, IoU.building: 0.8500, IoU.sky: 0.9489, IoU.floor: 0.8399, IoU.tree: 0.7755, IoU.ceiling: 0.8781, IoU.road: 0.8653, IoU.bed : 0.9205, IoU.windowpane: 0.6654, IoU.grass: 0.6818, IoU.cabinet: 0.6588, IoU.sidewalk: 0.7215, IoU.person: 0.8498, IoU.earth: 0.4242, IoU.door: 0.6015, IoU.table: 0.7012, IoU.mountain: 0.6148, IoU.plant: 0.5520, IoU.curtain: 0.7787, IoU.chair: 0.6587, IoU.car: 0.8753, IoU.water: 0.6249, IoU.painting: 0.8001, IoU.sofa: 0.8350, IoU.shelf: 0.4661, IoU.house: 0.5091, IoU.sea: 0.7387, IoU.mirror: 0.7876, IoU.rug: 0.5894, IoU.field: 0.3259, IoU.armchair: 0.6597, IoU.seat: 0.6811, IoU.fence: 0.5233, IoU.desk: 0.6041, IoU.rock: 0.5607, IoU.wardrobe: 0.5110, IoU.lamp: 0.7414, IoU.bathtub: 0.8414, IoU.railing: 0.4398, IoU.cushion: 0.7039, IoU.base: 0.4467, IoU.box: 0.4206, IoU.column: 0.5806, IoU.signboard: 0.3899, IoU.chest of drawers: 0.4673, IoU.counter: 0.4616, IoU.sand: 0.5673, IoU.sink: 0.7986, IoU.skyscraper: 0.4725, IoU.fireplace: 0.7550, IoU.refrigerator: 0.8647, IoU.grandstand: 0.5426, IoU.path: 0.3008, IoU.stairs: 0.3761, IoU.runway: 0.6722, IoU.case: 0.6163, IoU.pool table: 0.9434, IoU.pillow: 0.6485, IoU.screen door: 0.7606, IoU.stairway: 0.4660, IoU.river: 0.1262, IoU.bridge: 0.7220, IoU.bookcase: 0.4213, IoU.blind: 0.3943, IoU.coffee table: 0.6088, IoU.toilet: 0.9014, IoU.flower: 0.4215, IoU.book: 0.5305, IoU.hill: 0.0959, IoU.bench: 0.5780, IoU.countertop: 0.6282, IoU.stove: 0.8630, IoU.palm: 0.5400, IoU.kitchen island: 0.5013, IoU.computer: 0.7872, IoU.swivel chair: 0.4584, IoU.boat: 0.7865, IoU.bar: 0.6194, IoU.arcade machine: 0.7963, IoU.hovel: 0.3160, IoU.bus: 0.9274, IoU.towel: 0.7382, IoU.light: 0.5785, IoU.truck: 0.4996, IoU.tower: 0.1638, IoU.chandelier: 0.7252, IoU.awning: 0.3414, IoU.streetlight: 0.3297, IoU.booth: 0.5714, IoU.television receiver: 0.8074, IoU.airplane: 0.8719, IoU.dirt track: 0.0640, IoU.apparel: 0.5829, IoU.pole: 0.2728, IoU.land: 0.0402, IoU.bannister: 0.1977, IoU.escalator: 0.6670, IoU.ottoman: 0.6008, IoU.bottle: 0.4409, IoU.buffet: 0.5771, IoU.poster: 0.3070, IoU.stage: 0.2429, IoU.van: 0.5154, IoU.ship: 0.9243, IoU.fountain: 0.3988, IoU.conveyer belt: 0.8248, IoU.canopy: 0.4957, IoU.washer: 0.8371, IoU.plaything: 0.3170, IoU.swimming pool: 0.5419, IoU.stool: 0.4783, IoU.barrel: 0.5255, IoU.basket: 0.4236, IoU.waterfall: 0.6660, IoU.tent: 0.9243, IoU.bag: 0.2655, IoU.minibike: 0.7441, IoU.cradle: 0.8503, IoU.oven: 0.5772, IoU.ball: 0.6258, IoU.food: 0.6365, IoU.step: 0.1097, IoU.tank: 0.6059, IoU.trade name: 0.2523, IoU.microwave: 0.8995, IoU.pot: 0.5975, IoU.animal: 0.5954, IoU.bicycle: 0.6121, IoU.lake: 0.5581, IoU.dishwasher: 0.7044, IoU.screen: 0.6019, IoU.blanket: 0.3350, IoU.sculpture: 0.7558, IoU.hood: 0.6193, IoU.sconce: 0.5851, IoU.vase: 0.4691, IoU.traffic light: 0.3867, IoU.tray: 0.2754, IoU.ashcan: 0.5350, IoU.fan: 0.6910, IoU.pier: 0.3910, IoU.crt screen: 0.0264, IoU.plate: 0.6237, IoU.monitor: 0.6439, IoU.bulletin board: 0.6006, IoU.shower: 0.2271, IoU.radiator: 0.6731, IoU.glass: 0.2163, IoU.clock: 0.5255, IoU.flag: 0.7000, Acc.wall: 0.9028, Acc.building: 0.9323, Acc.sky: 0.9771, Acc.floor: 0.9229, Acc.tree: 0.8903, Acc.ceiling: 0.9449, Acc.road: 0.9101, Acc.bed : 0.9689, Acc.windowpane: 0.8278, Acc.grass: 0.8201, Acc.cabinet: 0.7523, Acc.sidewalk: 0.8621, Acc.person: 0.9402, Acc.earth: 0.5644, Acc.door: 0.7245, Acc.table: 0.8211, Acc.mountain: 0.7328, Acc.plant: 0.6704, Acc.curtain: 0.8921, Acc.chair: 0.7669, Acc.car: 0.9375, Acc.water: 0.7731, Acc.painting: 0.9148, Acc.sofa: 0.9183, Acc.shelf: 0.6036, Acc.house: 0.6305, Acc.sea: 0.8144, Acc.mirror: 0.8739, Acc.rug: 0.6587, Acc.field: 0.5792, Acc.armchair: 0.8161, Acc.seat: 0.8876, Acc.fence: 0.6520, Acc.desk: 0.7838, Acc.rock: 0.8264, Acc.wardrobe: 0.7356, Acc.lamp: 0.8574, Acc.bathtub: 0.8756, Acc.railing: 0.6098, Acc.cushion: 0.8345, Acc.base: 0.6127, Acc.box: 0.5603, Acc.column: 0.7003, Acc.signboard: 0.5337, Acc.chest of drawers: 0.7324, Acc.counter: 0.5393, Acc.sand: 0.8448, Acc.sink: 0.8615, Acc.skyscraper: 0.5941, Acc.fireplace: 0.9343, Acc.refrigerator: 0.9603, Acc.grandstand: 0.8286, Acc.path: 0.3751, Acc.stairs: 0.4663, Acc.runway: 0.8695, Acc.case: 0.8059, Acc.pool table: 0.9803, Acc.pillow: 0.7338, Acc.screen door: 0.7843, Acc.stairway: 0.5898, Acc.river: 0.2890, Acc.bridge: 0.8927, Acc.bookcase: 0.6133, Acc.blind: 0.4467, Acc.coffee table: 0.8469, Acc.toilet: 0.9425, Acc.flower: 0.5777, Acc.book: 0.7935, Acc.hill: 0.1796, Acc.bench: 0.6573, Acc.countertop: 0.8276, Acc.stove: 0.9287, Acc.palm: 0.8104, Acc.kitchen island: 0.7930, Acc.computer: 0.9173, Acc.swivel chair: 0.7324, Acc.boat: 0.9186, Acc.bar: 0.8357, Acc.arcade machine: 0.8350, Acc.hovel: 0.3552, Acc.bus: 0.9698, Acc.towel: 0.8042, Acc.light: 0.6561, Acc.truck: 0.6064, Acc.tower: 0.2772, Acc.chandelier: 0.8422, Acc.awning: 0.4555, Acc.streetlight: 0.4303, Acc.booth: 0.7174, Acc.television receiver: 0.8737, Acc.airplane: 0.9443, Acc.dirt track: 0.2789, Acc.apparel: 0.7587, Acc.pole: 0.4203, Acc.land: 0.0570, Acc.bannister: 0.2572, Acc.escalator: 0.8642, Acc.ottoman: 0.7463, Acc.bottle: 0.7660, Acc.buffet: 0.6454, Acc.poster: 0.3802, Acc.stage: 0.4805, Acc.van: 0.7338, Acc.ship: 0.9588, Acc.fountain: 0.4071, Acc.conveyer belt: 0.9551, Acc.canopy: 0.7018, Acc.washer: 0.8972, Acc.plaything: 0.4675, Acc.swimming pool: 0.7826, Acc.stool: 0.6857, Acc.barrel: 0.7508, Acc.basket: 0.5795, Acc.waterfall: 0.8369, Acc.tent: 0.9849, Acc.bag: 0.3046, Acc.minibike: 0.8802, Acc.cradle: 0.9805, Acc.oven: 0.6998, Acc.ball: 0.6810, Acc.food: 0.7201, Acc.step: 0.1395, Acc.tank: 0.6782, Acc.trade name: 0.3007, Acc.microwave: 0.9649, Acc.pot: 0.6936, Acc.animal: 0.6132, Acc.bicycle: 0.8090, Acc.lake: 0.6362, Acc.dishwasher: 0.8066, Acc.screen: 0.9438, Acc.blanket: 0.3887, Acc.sculpture: 0.8507, Acc.hood: 0.7541, Acc.sconce: 0.6841, Acc.vase: 0.6497, Acc.traffic light: 0.6437, Acc.tray: 0.3517, Acc.ashcan: 0.6906, Acc.fan: 0.8318, Acc.pier: 0.4409, Acc.crt screen: 0.0358, Acc.plate: 0.7811, Acc.monitor: 0.7535, Acc.bulletin board: 0.7966, Acc.shower: 0.2460, Acc.radiator: 0.8400, Acc.glass: 0.2325, Acc.clock: 0.6673, Acc.flag: 0.7706 2024-06-17 06:51:51,443 - mmseg - INFO - Iter [71050/80000] lr: 3.625e-07, eta: 4:18:34, time: 3.271, data_time: 1.666, memory: 65790, decode.loss_ce: 0.1301, decode.acc_seg: 93.9725, aux.loss_ce: 0.0570, aux.acc_seg: 93.5037, loss: 0.1871 2024-06-17 06:53:11,820 - mmseg - INFO - Iter [71100/80000] lr: 3.605e-07, eta: 4:17:06, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1323, decode.acc_seg: 93.9817, aux.loss_ce: 0.0580, aux.acc_seg: 93.5562, loss: 0.1903 2024-06-17 06:54:32,234 - mmseg - INFO - Iter [71150/80000] lr: 3.584e-07, eta: 4:15:39, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1257, decode.acc_seg: 94.1605, aux.loss_ce: 0.0553, aux.acc_seg: 93.6723, loss: 0.1810 2024-06-17 06:55:52,813 - mmseg - INFO - Iter [71200/80000] lr: 3.564e-07, eta: 4:14:11, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1392, decode.acc_seg: 93.8338, aux.loss_ce: 0.0621, aux.acc_seg: 93.1681, loss: 0.2013 2024-06-17 06:57:13,182 - mmseg - INFO - Iter [71250/80000] lr: 3.544e-07, eta: 4:12:44, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1314, decode.acc_seg: 94.2452, aux.loss_ce: 0.0576, aux.acc_seg: 93.8145, loss: 0.1890 2024-06-17 06:58:33,646 - mmseg - INFO - Iter [71300/80000] lr: 3.524e-07, eta: 4:11:16, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1227, decode.acc_seg: 94.2600, aux.loss_ce: 0.0538, aux.acc_seg: 93.7958, loss: 0.1765 2024-06-17 06:59:54,015 - mmseg - INFO - Iter [71350/80000] lr: 3.503e-07, eta: 4:09:49, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1338, decode.acc_seg: 94.1217, aux.loss_ce: 0.0586, aux.acc_seg: 93.7196, loss: 0.1924 2024-06-17 07:01:14,421 - mmseg - INFO - Iter [71400/80000] lr: 3.483e-07, eta: 4:08:22, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1248, decode.acc_seg: 94.2110, aux.loss_ce: 0.0544, aux.acc_seg: 93.7836, loss: 0.1792 2024-06-17 07:02:34,854 - mmseg - INFO - Iter [71450/80000] lr: 3.463e-07, eta: 4:06:54, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1320, decode.acc_seg: 94.0955, aux.loss_ce: 0.0578, aux.acc_seg: 93.7062, loss: 0.1898 2024-06-17 07:03:55,305 - mmseg - INFO - Iter [71500/80000] lr: 3.443e-07, eta: 4:05:27, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1316, decode.acc_seg: 94.0017, aux.loss_ce: 0.0578, aux.acc_seg: 93.5362, loss: 0.1894 2024-06-17 07:05:15,670 - mmseg - INFO - Iter [71550/80000] lr: 3.422e-07, eta: 4:03:59, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1260, decode.acc_seg: 94.2777, aux.loss_ce: 0.0551, aux.acc_seg: 93.8335, loss: 0.1811 2024-06-17 07:06:36,181 - mmseg - INFO - Iter [71600/80000] lr: 3.402e-07, eta: 4:02:32, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1288, decode.acc_seg: 94.1411, aux.loss_ce: 0.0570, aux.acc_seg: 93.6619, loss: 0.1857 2024-06-17 07:07:56,582 - mmseg - INFO - Iter [71650/80000] lr: 3.382e-07, eta: 4:01:05, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1296, decode.acc_seg: 94.1363, aux.loss_ce: 0.0567, aux.acc_seg: 93.6969, loss: 0.1863 2024-06-17 07:09:17,129 - mmseg - INFO - Iter [71700/80000] lr: 3.362e-07, eta: 3:59:37, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1319, decode.acc_seg: 94.0436, aux.loss_ce: 0.0576, aux.acc_seg: 93.5920, loss: 0.1895 2024-06-17 07:10:37,718 - mmseg - INFO - Iter [71750/80000] lr: 3.341e-07, eta: 3:58:10, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1246, decode.acc_seg: 94.1189, aux.loss_ce: 0.0551, aux.acc_seg: 93.6276, loss: 0.1796 2024-06-17 07:11:58,110 - mmseg - INFO - Iter [71800/80000] lr: 3.321e-07, eta: 3:56:43, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1312, decode.acc_seg: 94.1327, aux.loss_ce: 0.0575, aux.acc_seg: 93.6440, loss: 0.1888 2024-06-17 07:13:18,510 - mmseg - INFO - Iter [71850/80000] lr: 3.301e-07, eta: 3:55:16, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1305, decode.acc_seg: 94.1224, aux.loss_ce: 0.0572, aux.acc_seg: 93.7160, loss: 0.1878 2024-06-17 07:14:38,908 - mmseg - INFO - Iter [71900/80000] lr: 3.281e-07, eta: 3:53:48, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1304, decode.acc_seg: 94.1580, aux.loss_ce: 0.0571, aux.acc_seg: 93.6938, loss: 0.1874 2024-06-17 07:15:59,367 - mmseg - INFO - Iter [71950/80000] lr: 3.260e-07, eta: 3:52:21, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1228, decode.acc_seg: 94.2396, aux.loss_ce: 0.0541, aux.acc_seg: 93.8293, loss: 0.1769 2024-06-17 07:17:22,710 - mmseg - INFO - Saving checkpoint at 72000 iterations 2024-06-17 07:18:35,915 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 07:18:35,915 - mmseg - INFO - Iter [72000/80000] lr: 3.240e-07, eta: 3:51:02, time: 3.131, data_time: 0.064, memory: 65790, decode.loss_ce: 0.1353, decode.acc_seg: 94.0500, aux.loss_ce: 0.0588, aux.acc_seg: 93.6375, loss: 0.1942 2024-06-17 07:19:56,789 - mmseg - INFO - per class results: 2024-06-17 07:19:56,795 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.59 | 90.31 | | building | 84.74 | 93.22 | | sky | 94.87 | 97.69 | | floor | 84.1 | 91.83 | | tree | 77.41 | 89.0 | | ceiling | 87.76 | 94.44 | | road | 86.98 | 90.94 | | bed | 92.05 | 96.83 | | windowpane | 66.77 | 81.93 | | grass | 67.55 | 81.95 | | cabinet | 66.01 | 75.92 | | sidewalk | 72.05 | 85.8 | | person | 85.1 | 94.18 | | earth | 42.41 | 57.66 | | door | 60.41 | 72.26 | | table | 69.7 | 80.81 | | mountain | 61.75 | 74.14 | | plant | 55.0 | 66.77 | | curtain | 77.95 | 88.27 | | chair | 66.43 | 77.72 | | car | 87.6 | 93.74 | | water | 63.13 | 77.84 | | painting | 79.91 | 89.96 | | sofa | 80.25 | 87.43 | | shelf | 46.74 | 61.66 | | house | 48.2 | 60.03 | | sea | 73.54 | 82.07 | | mirror | 78.78 | 88.15 | | rug | 62.09 | 72.33 | | field | 31.57 | 52.76 | | armchair | 63.29 | 83.92 | | seat | 68.05 | 89.05 | | fence | 52.33 | 66.78 | | desk | 60.3 | 76.78 | | rock | 55.64 | 80.77 | | wardrobe | 51.66 | 74.04 | | lamp | 74.2 | 84.63 | | bathtub | 84.07 | 87.38 | | railing | 44.5 | 62.86 | | cushion | 69.88 | 83.57 | | base | 41.96 | 59.14 | | box | 41.01 | 52.33 | | column | 58.27 | 68.52 | | signboard | 39.75 | 56.27 | | chest of drawers | 46.0 | 68.91 | | counter | 46.28 | 53.89 | | sand | 56.47 | 85.0 | | sink | 79.49 | 85.37 | | skyscraper | 47.32 | 60.95 | | fireplace | 75.35 | 94.29 | | refrigerator | 86.21 | 95.81 | | grandstand | 54.85 | 85.21 | | path | 29.98 | 39.35 | | stairs | 30.04 | 36.28 | | runway | 73.37 | 94.95 | | case | 62.13 | 82.46 | | pool table | 94.23 | 98.09 | | pillow | 65.84 | 74.92 | | screen door | 78.34 | 85.85 | | stairway | 43.53 | 62.87 | | river | 13.13 | 28.78 | | bridge | 71.61 | 88.98 | | bookcase | 42.93 | 61.41 | | blind | 40.42 | 46.56 | | coffee table | 59.52 | 84.75 | | toilet | 90.05 | 93.82 | | flower | 44.17 | 60.65 | | book | 53.0 | 78.93 | | hill | 7.97 | 13.33 | | bench | 57.03 | 63.86 | | countertop | 63.03 | 83.65 | | stove | 86.19 | 92.44 | | palm | 54.32 | 82.38 | | kitchen island | 51.08 | 78.74 | | computer | 78.47 | 90.65 | | swivel chair | 45.4 | 70.81 | | boat | 78.86 | 91.15 | | bar | 61.93 | 84.51 | | arcade machine | 80.34 | 84.92 | | hovel | 28.32 | 32.33 | | bus | 91.76 | 97.35 | | towel | 75.06 | 82.64 | | light | 58.73 | 68.05 | | truck | 49.98 | 63.55 | | tower | 19.89 | 34.46 | | chandelier | 72.22 | 83.92 | | awning | 34.06 | 45.91 | | streetlight | 33.47 | 45.17 | | booth | 53.4 | 76.2 | | television receiver | 80.87 | 87.36 | | airplane | 86.91 | 95.61 | | dirt track | 6.79 | 30.57 | | apparel | 56.56 | 73.79 | | pole | 25.37 | 37.25 | | land | 4.53 | 6.59 | | bannister | 18.72 | 23.36 | | escalator | 66.54 | 86.43 | | ottoman | 60.47 | 75.54 | | bottle | 44.47 | 73.4 | | buffet | 46.95 | 52.08 | | poster | 30.24 | 38.77 | | stage | 24.99 | 47.97 | | van | 51.82 | 73.99 | | ship | 93.86 | 97.7 | | fountain | 39.47 | 40.29 | | conveyer belt | 82.1 | 94.77 | | canopy | 49.85 | 69.96 | | washer | 85.7 | 92.08 | | plaything | 31.6 | 47.7 | | swimming pool | 53.68 | 77.69 | | stool | 49.25 | 68.72 | | barrel | 47.33 | 74.76 | | basket | 43.0 | 57.87 | | waterfall | 66.33 | 80.5 | | tent | 94.17 | 98.4 | | bag | 25.63 | 29.19 | | minibike | 74.23 | 88.92 | | cradle | 85.54 | 97.86 | | oven | 59.21 | 71.54 | | ball | 60.99 | 65.68 | | food | 63.54 | 74.08 | | step | 9.39 | 11.35 | | tank | 61.9 | 68.11 | | trade name | 22.16 | 26.22 | | microwave | 90.28 | 96.42 | | pot | 59.61 | 68.41 | | animal | 60.69 | 62.56 | | bicycle | 61.57 | 81.16 | | lake | 55.86 | 63.61 | | dishwasher | 72.16 | 79.83 | | screen | 56.79 | 88.16 | | blanket | 34.19 | 39.73 | | sculpture | 75.35 | 86.46 | | hood | 62.14 | 74.69 | | sconce | 57.41 | 66.48 | | vase | 46.77 | 66.39 | | traffic light | 39.01 | 63.13 | | tray | 27.11 | 34.9 | | ashcan | 53.64 | 69.3 | | fan | 69.04 | 81.76 | | pier | 38.98 | 45.43 | | crt screen | 2.28 | 3.72 | | plate | 62.3 | 78.04 | | monitor | 60.4 | 70.69 | | bulletin board | 57.63 | 78.55 | | shower | 22.39 | 24.06 | | radiator | 67.05 | 83.76 | | glass | 20.19 | 21.44 | | clock | 53.16 | 67.27 | | flag | 69.54 | 78.11 | +---------------------+-------+-------+ 2024-06-17 07:19:56,795 - mmseg - INFO - Summary: 2024-06-17 07:19:56,795 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 86.17 | 57.89 | 70.65 | +-------+-------+-------+ 2024-06-17 07:19:56,796 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 07:19:56,796 - mmseg - INFO - Iter(val) [250] aAcc: 0.8617, mIoU: 0.5789, mAcc: 0.7065, IoU.wall: 0.8259, IoU.building: 0.8474, IoU.sky: 0.9487, IoU.floor: 0.8410, IoU.tree: 0.7741, IoU.ceiling: 0.8776, IoU.road: 0.8698, IoU.bed : 0.9205, IoU.windowpane: 0.6677, IoU.grass: 0.6755, IoU.cabinet: 0.6601, IoU.sidewalk: 0.7205, IoU.person: 0.8510, IoU.earth: 0.4241, IoU.door: 0.6041, IoU.table: 0.6970, IoU.mountain: 0.6175, IoU.plant: 0.5500, IoU.curtain: 0.7795, IoU.chair: 0.6643, IoU.car: 0.8760, IoU.water: 0.6313, IoU.painting: 0.7991, IoU.sofa: 0.8025, IoU.shelf: 0.4674, IoU.house: 0.4820, IoU.sea: 0.7354, IoU.mirror: 0.7878, IoU.rug: 0.6209, IoU.field: 0.3157, IoU.armchair: 0.6329, IoU.seat: 0.6805, IoU.fence: 0.5233, IoU.desk: 0.6030, IoU.rock: 0.5564, IoU.wardrobe: 0.5166, IoU.lamp: 0.7420, IoU.bathtub: 0.8407, IoU.railing: 0.4450, IoU.cushion: 0.6988, IoU.base: 0.4196, IoU.box: 0.4101, IoU.column: 0.5827, IoU.signboard: 0.3975, IoU.chest of drawers: 0.4600, IoU.counter: 0.4628, IoU.sand: 0.5647, IoU.sink: 0.7949, IoU.skyscraper: 0.4732, IoU.fireplace: 0.7535, IoU.refrigerator: 0.8621, IoU.grandstand: 0.5485, IoU.path: 0.2998, IoU.stairs: 0.3004, IoU.runway: 0.7337, IoU.case: 0.6213, IoU.pool table: 0.9423, IoU.pillow: 0.6584, IoU.screen door: 0.7834, IoU.stairway: 0.4353, IoU.river: 0.1313, IoU.bridge: 0.7161, IoU.bookcase: 0.4293, IoU.blind: 0.4042, IoU.coffee table: 0.5952, IoU.toilet: 0.9005, IoU.flower: 0.4417, IoU.book: 0.5300, IoU.hill: 0.0797, IoU.bench: 0.5703, IoU.countertop: 0.6303, IoU.stove: 0.8619, IoU.palm: 0.5432, IoU.kitchen island: 0.5108, IoU.computer: 0.7847, IoU.swivel chair: 0.4540, IoU.boat: 0.7886, IoU.bar: 0.6193, IoU.arcade machine: 0.8034, IoU.hovel: 0.2832, IoU.bus: 0.9176, IoU.towel: 0.7506, IoU.light: 0.5873, IoU.truck: 0.4998, IoU.tower: 0.1989, IoU.chandelier: 0.7222, IoU.awning: 0.3406, IoU.streetlight: 0.3347, IoU.booth: 0.5340, IoU.television receiver: 0.8087, IoU.airplane: 0.8691, IoU.dirt track: 0.0679, IoU.apparel: 0.5656, IoU.pole: 0.2537, IoU.land: 0.0453, IoU.bannister: 0.1872, IoU.escalator: 0.6654, IoU.ottoman: 0.6047, IoU.bottle: 0.4447, IoU.buffet: 0.4695, IoU.poster: 0.3024, IoU.stage: 0.2499, IoU.van: 0.5182, IoU.ship: 0.9386, IoU.fountain: 0.3947, IoU.conveyer belt: 0.8210, IoU.canopy: 0.4985, IoU.washer: 0.8570, IoU.plaything: 0.3160, IoU.swimming pool: 0.5368, IoU.stool: 0.4925, IoU.barrel: 0.4733, IoU.basket: 0.4300, IoU.waterfall: 0.6633, IoU.tent: 0.9417, IoU.bag: 0.2563, IoU.minibike: 0.7423, IoU.cradle: 0.8554, IoU.oven: 0.5921, IoU.ball: 0.6099, IoU.food: 0.6354, IoU.step: 0.0939, IoU.tank: 0.6190, IoU.trade name: 0.2216, IoU.microwave: 0.9028, IoU.pot: 0.5961, IoU.animal: 0.6069, IoU.bicycle: 0.6157, IoU.lake: 0.5586, IoU.dishwasher: 0.7216, IoU.screen: 0.5679, IoU.blanket: 0.3419, IoU.sculpture: 0.7535, IoU.hood: 0.6214, IoU.sconce: 0.5741, IoU.vase: 0.4677, IoU.traffic light: 0.3901, IoU.tray: 0.2711, IoU.ashcan: 0.5364, IoU.fan: 0.6904, IoU.pier: 0.3898, IoU.crt screen: 0.0228, IoU.plate: 0.6230, IoU.monitor: 0.6040, IoU.bulletin board: 0.5763, IoU.shower: 0.2239, IoU.radiator: 0.6705, IoU.glass: 0.2019, IoU.clock: 0.5316, IoU.flag: 0.6954, Acc.wall: 0.9031, Acc.building: 0.9322, Acc.sky: 0.9769, Acc.floor: 0.9183, Acc.tree: 0.8900, Acc.ceiling: 0.9444, Acc.road: 0.9094, Acc.bed : 0.9683, Acc.windowpane: 0.8193, Acc.grass: 0.8195, Acc.cabinet: 0.7592, Acc.sidewalk: 0.8580, Acc.person: 0.9418, Acc.earth: 0.5766, Acc.door: 0.7226, Acc.table: 0.8081, Acc.mountain: 0.7414, Acc.plant: 0.6677, Acc.curtain: 0.8827, Acc.chair: 0.7772, Acc.car: 0.9374, Acc.water: 0.7784, Acc.painting: 0.8996, Acc.sofa: 0.8743, Acc.shelf: 0.6166, Acc.house: 0.6003, Acc.sea: 0.8207, Acc.mirror: 0.8815, Acc.rug: 0.7233, Acc.field: 0.5276, Acc.armchair: 0.8392, Acc.seat: 0.8905, Acc.fence: 0.6678, Acc.desk: 0.7678, Acc.rock: 0.8077, Acc.wardrobe: 0.7404, Acc.lamp: 0.8463, Acc.bathtub: 0.8738, Acc.railing: 0.6286, Acc.cushion: 0.8357, Acc.base: 0.5914, Acc.box: 0.5233, Acc.column: 0.6852, Acc.signboard: 0.5627, Acc.chest of drawers: 0.6891, Acc.counter: 0.5389, Acc.sand: 0.8500, Acc.sink: 0.8537, Acc.skyscraper: 0.6095, Acc.fireplace: 0.9429, Acc.refrigerator: 0.9581, Acc.grandstand: 0.8521, Acc.path: 0.3935, Acc.stairs: 0.3628, Acc.runway: 0.9495, Acc.case: 0.8246, Acc.pool table: 0.9809, Acc.pillow: 0.7492, Acc.screen door: 0.8585, Acc.stairway: 0.6287, Acc.river: 0.2878, Acc.bridge: 0.8898, Acc.bookcase: 0.6141, Acc.blind: 0.4656, Acc.coffee table: 0.8475, Acc.toilet: 0.9382, Acc.flower: 0.6065, Acc.book: 0.7893, Acc.hill: 0.1333, Acc.bench: 0.6386, Acc.countertop: 0.8365, Acc.stove: 0.9244, Acc.palm: 0.8238, Acc.kitchen island: 0.7874, Acc.computer: 0.9065, Acc.swivel chair: 0.7081, Acc.boat: 0.9115, Acc.bar: 0.8451, Acc.arcade machine: 0.8492, Acc.hovel: 0.3233, Acc.bus: 0.9735, Acc.towel: 0.8264, Acc.light: 0.6805, Acc.truck: 0.6355, Acc.tower: 0.3446, Acc.chandelier: 0.8392, Acc.awning: 0.4591, Acc.streetlight: 0.4517, Acc.booth: 0.7620, Acc.television receiver: 0.8736, Acc.airplane: 0.9561, Acc.dirt track: 0.3057, Acc.apparel: 0.7379, Acc.pole: 0.3725, Acc.land: 0.0659, Acc.bannister: 0.2336, Acc.escalator: 0.8643, Acc.ottoman: 0.7554, Acc.bottle: 0.7340, Acc.buffet: 0.5208, Acc.poster: 0.3877, Acc.stage: 0.4797, Acc.van: 0.7399, Acc.ship: 0.9770, Acc.fountain: 0.4029, Acc.conveyer belt: 0.9477, Acc.canopy: 0.6996, Acc.washer: 0.9208, Acc.plaything: 0.4770, Acc.swimming pool: 0.7769, Acc.stool: 0.6872, Acc.barrel: 0.7476, Acc.basket: 0.5787, Acc.waterfall: 0.8050, Acc.tent: 0.9840, Acc.bag: 0.2919, Acc.minibike: 0.8892, Acc.cradle: 0.9786, Acc.oven: 0.7154, Acc.ball: 0.6568, Acc.food: 0.7408, Acc.step: 0.1135, Acc.tank: 0.6811, Acc.trade name: 0.2622, Acc.microwave: 0.9642, Acc.pot: 0.6841, Acc.animal: 0.6256, Acc.bicycle: 0.8116, Acc.lake: 0.6361, Acc.dishwasher: 0.7983, Acc.screen: 0.8816, Acc.blanket: 0.3973, Acc.sculpture: 0.8646, Acc.hood: 0.7469, Acc.sconce: 0.6648, Acc.vase: 0.6639, Acc.traffic light: 0.6313, Acc.tray: 0.3490, Acc.ashcan: 0.6930, Acc.fan: 0.8176, Acc.pier: 0.4543, Acc.crt screen: 0.0372, Acc.plate: 0.7804, Acc.monitor: 0.7069, Acc.bulletin board: 0.7855, Acc.shower: 0.2406, Acc.radiator: 0.8376, Acc.glass: 0.2144, Acc.clock: 0.6727, Acc.flag: 0.7811 2024-06-17 07:21:17,518 - mmseg - INFO - Iter [72050/80000] lr: 3.220e-07, eta: 3:49:44, time: 3.232, data_time: 1.631, memory: 65790, decode.loss_ce: 0.1263, decode.acc_seg: 94.2903, aux.loss_ce: 0.0553, aux.acc_seg: 93.8476, loss: 0.1816 2024-06-17 07:22:37,884 - mmseg - INFO - Iter [72100/80000] lr: 3.200e-07, eta: 3:48:16, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1266, decode.acc_seg: 94.1839, aux.loss_ce: 0.0553, aux.acc_seg: 93.7848, loss: 0.1819 2024-06-17 07:23:58,385 - mmseg - INFO - Iter [72150/80000] lr: 3.179e-07, eta: 3:46:49, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1258, decode.acc_seg: 94.0644, aux.loss_ce: 0.0553, aux.acc_seg: 93.6137, loss: 0.1811 2024-06-17 07:25:19,035 - mmseg - INFO - Iter [72200/80000] lr: 3.159e-07, eta: 3:45:22, time: 1.613, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1283, decode.acc_seg: 94.1958, aux.loss_ce: 0.0564, aux.acc_seg: 93.7704, loss: 0.1846 2024-06-17 07:26:39,431 - mmseg - INFO - Iter [72250/80000] lr: 3.139e-07, eta: 3:43:54, time: 1.608, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1310, decode.acc_seg: 94.1789, aux.loss_ce: 0.0572, aux.acc_seg: 93.7424, loss: 0.1882 2024-06-17 07:27:59,830 - mmseg - INFO - Iter [72300/80000] lr: 3.119e-07, eta: 3:42:27, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1300, decode.acc_seg: 94.2350, aux.loss_ce: 0.0567, aux.acc_seg: 93.8393, loss: 0.1867 2024-06-17 07:29:20,423 - mmseg - INFO - Iter [72350/80000] lr: 3.098e-07, eta: 3:41:00, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1211, decode.acc_seg: 94.4330, aux.loss_ce: 0.0532, aux.acc_seg: 94.0251, loss: 0.1743 2024-06-17 07:30:40,929 - mmseg - INFO - Iter [72400/80000] lr: 3.078e-07, eta: 3:39:32, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1322, decode.acc_seg: 94.1006, aux.loss_ce: 0.0575, aux.acc_seg: 93.6986, loss: 0.1897 2024-06-17 07:32:01,449 - mmseg - INFO - Iter [72450/80000] lr: 3.058e-07, eta: 3:38:05, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1357, decode.acc_seg: 93.8511, aux.loss_ce: 0.0594, aux.acc_seg: 93.3875, loss: 0.1950 2024-06-17 07:33:21,960 - mmseg - INFO - Iter [72500/80000] lr: 3.038e-07, eta: 3:36:38, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1254, decode.acc_seg: 94.1060, aux.loss_ce: 0.0554, aux.acc_seg: 93.5884, loss: 0.1808 2024-06-17 07:34:42,482 - mmseg - INFO - Iter [72550/80000] lr: 3.017e-07, eta: 3:35:10, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1187, decode.acc_seg: 94.4994, aux.loss_ce: 0.0524, aux.acc_seg: 94.0854, loss: 0.1711 2024-06-17 07:36:02,909 - mmseg - INFO - Iter [72600/80000] lr: 2.997e-07, eta: 3:33:43, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1294, decode.acc_seg: 94.1113, aux.loss_ce: 0.0567, aux.acc_seg: 93.6680, loss: 0.1861 2024-06-17 07:37:23,569 - mmseg - INFO - Iter [72650/80000] lr: 2.977e-07, eta: 3:32:16, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1258, decode.acc_seg: 94.3528, aux.loss_ce: 0.0549, aux.acc_seg: 93.9567, loss: 0.1808 2024-06-17 07:38:44,151 - mmseg - INFO - Iter [72700/80000] lr: 2.957e-07, eta: 3:30:49, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1306, decode.acc_seg: 93.9430, aux.loss_ce: 0.0574, aux.acc_seg: 93.5420, loss: 0.1880 2024-06-17 07:40:04,604 - mmseg - INFO - Iter [72750/80000] lr: 2.936e-07, eta: 3:29:21, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1255, decode.acc_seg: 94.1743, aux.loss_ce: 0.0549, aux.acc_seg: 93.7648, loss: 0.1805 2024-06-17 07:41:25,120 - mmseg - INFO - Iter [72800/80000] lr: 2.916e-07, eta: 3:27:54, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1233, decode.acc_seg: 94.1385, aux.loss_ce: 0.0546, aux.acc_seg: 93.6182, loss: 0.1779 2024-06-17 07:42:45,669 - mmseg - INFO - Iter [72850/80000] lr: 2.896e-07, eta: 3:26:27, time: 1.611, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1278, decode.acc_seg: 94.2260, aux.loss_ce: 0.0561, aux.acc_seg: 93.7742, loss: 0.1839 2024-06-17 07:44:06,224 - mmseg - INFO - Iter [72900/80000] lr: 2.876e-07, eta: 3:25:00, time: 1.611, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1310, decode.acc_seg: 94.1916, aux.loss_ce: 0.0575, aux.acc_seg: 93.7411, loss: 0.1885 2024-06-17 07:45:26,714 - mmseg - INFO - Iter [72950/80000] lr: 2.855e-07, eta: 3:23:33, time: 1.610, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1247, decode.acc_seg: 94.1719, aux.loss_ce: 0.0547, aux.acc_seg: 93.7428, loss: 0.1794 2024-06-17 07:46:47,155 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 07:46:47,155 - mmseg - INFO - Iter [73000/80000] lr: 2.835e-07, eta: 3:22:05, time: 1.609, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1363, decode.acc_seg: 93.7795, aux.loss_ce: 0.0596, aux.acc_seg: 93.3169, loss: 0.1959 2024-06-17 07:48:08,692 - mmseg - INFO - per class results: 2024-06-17 07:48:08,698 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.5 | 90.49 | | building | 84.83 | 93.65 | | sky | 94.79 | 97.42 | | floor | 84.19 | 92.49 | | tree | 77.36 | 89.46 | | ceiling | 87.54 | 94.41 | | road | 86.32 | 90.96 | | bed | 92.13 | 96.88 | | windowpane | 67.26 | 82.88 | | grass | 68.08 | 81.56 | | cabinet | 66.75 | 75.83 | | sidewalk | 71.85 | 86.29 | | person | 85.23 | 93.6 | | earth | 41.09 | 54.74 | | door | 59.9 | 72.69 | | table | 69.87 | 81.07 | | mountain | 61.79 | 72.72 | | plant | 54.63 | 67.5 | | curtain | 78.17 | 86.87 | | chair | 65.84 | 76.18 | | car | 87.56 | 93.51 | | water | 63.64 | 79.09 | | painting | 79.6 | 90.87 | | sofa | 82.46 | 90.03 | | shelf | 47.8 | 64.18 | | house | 47.48 | 59.06 | | sea | 79.35 | 88.73 | | mirror | 78.37 | 85.66 | | rug | 61.04 | 68.14 | | field | 31.86 | 56.82 | | armchair | 65.0 | 83.3 | | seat | 68.78 | 88.64 | | fence | 52.11 | 64.42 | | desk | 60.2 | 79.37 | | rock | 56.01 | 82.5 | | wardrobe | 52.82 | 72.81 | | lamp | 74.19 | 84.07 | | bathtub | 84.48 | 87.79 | | railing | 44.31 | 61.74 | | cushion | 71.37 | 81.92 | | base | 39.96 | 56.96 | | box | 40.06 | 51.07 | | column | 58.34 | 70.04 | | signboard | 39.58 | 53.16 | | chest of drawers | 47.34 | 75.12 | | counter | 47.36 | 56.01 | | sand | 56.91 | 83.7 | | sink | 78.5 | 83.37 | | skyscraper | 47.39 | 59.59 | | fireplace | 75.99 | 94.17 | | refrigerator | 86.64 | 95.02 | | grandstand | 53.59 | 85.13 | | path | 28.71 | 39.09 | | stairs | 35.78 | 43.27 | | runway | 70.14 | 90.33 | | case | 61.63 | 81.02 | | pool table | 94.33 | 98.09 | | pillow | 67.95 | 78.42 | | screen door | 77.44 | 82.06 | | stairway | 48.61 | 62.25 | | river | 13.15 | 23.21 | | bridge | 71.51 | 89.15 | | bookcase | 43.08 | 61.78 | | blind | 40.66 | 46.12 | | coffee table | 60.2 | 84.91 | | toilet | 89.95 | 94.22 | | flower | 44.27 | 60.64 | | book | 53.06 | 76.5 | | hill | 10.03 | 18.52 | | bench | 57.24 | 64.8 | | countertop | 63.31 | 83.88 | | stove | 86.26 | 91.92 | | palm | 54.08 | 81.92 | | kitchen island | 50.04 | 82.47 | | computer | 78.49 | 91.22 | | swivel chair | 46.1 | 69.97 | | boat | 80.11 | 90.99 | | bar | 60.86 | 84.16 | | arcade machine | 79.84 | 82.73 | | hovel | 31.34 | 34.93 | | bus | 92.26 | 97.19 | | towel | 76.81 | 86.16 | | light | 56.33 | 62.26 | | truck | 51.27 | 62.61 | | tower | 22.84 | 38.84 | | chandelier | 72.27 | 82.98 | | awning | 34.24 | 44.25 | | streetlight | 32.0 | 41.58 | | booth | 58.11 | 70.32 | | television receiver | 79.5 | 85.45 | | airplane | 86.72 | 95.08 | | dirt track | 7.13 | 29.3 | | apparel | 57.54 | 75.76 | | pole | 25.57 | 36.66 | | land | 4.34 | 5.84 | | bannister | 17.19 | 20.86 | | escalator | 66.61 | 85.67 | | ottoman | 58.43 | 74.08 | | bottle | 44.68 | 71.42 | | buffet | 54.51 | 60.37 | | poster | 28.85 | 38.4 | | stage | 24.89 | 47.71 | | van | 53.34 | 75.46 | | ship | 93.05 | 97.26 | | fountain | 39.25 | 40.14 | | conveyer belt | 81.49 | 95.32 | | canopy | 50.38 | 69.92 | | washer | 84.16 | 89.92 | | plaything | 31.71 | 48.26 | | swimming pool | 52.36 | 75.43 | | stool | 49.67 | 66.41 | | barrel | 48.34 | 74.92 | | basket | 43.65 | 59.47 | | waterfall | 57.74 | 67.51 | | tent | 95.03 | 98.32 | | bag | 24.79 | 27.73 | | minibike | 74.41 | 87.66 | | cradle | 85.84 | 97.75 | | oven | 60.08 | 71.63 | | ball | 58.22 | 61.39 | | food | 63.59 | 73.94 | | step | 9.4 | 11.81 | | tank | 62.05 | 68.05 | | trade name | 26.64 | 32.04 | | microwave | 90.77 | 96.23 | | pot | 60.34 | 69.24 | | animal | 60.19 | 62.07 | | bicycle | 60.91 | 77.49 | | lake | 55.86 | 63.61 | | dishwasher | 71.94 | 81.11 | | screen | 59.16 | 90.96 | | blanket | 33.68 | 38.5 | | sculpture | 74.46 | 85.82 | | hood | 62.05 | 74.17 | | sconce | 57.94 | 67.01 | | vase | 48.35 | 64.05 | | traffic light | 39.68 | 58.86 | | tray | 26.03 | 33.01 | | ashcan | 54.56 | 65.88 | | fan | 67.45 | 77.68 | | pier | 38.9 | 44.4 | | crt screen | 2.5 | 3.55 | | plate | 62.76 | 76.35 | | monitor | 63.13 | 72.57 | | bulletin board | 59.86 | 78.86 | | shower | 23.21 | 25.49 | | radiator | 67.23 | 78.75 | | glass | 20.27 | 21.53 | | clock | 52.81 | 64.15 | | flag | 69.51 | 78.15 | +---------------------+-------+-------+ 2024-06-17 07:48:08,698 - mmseg - INFO - Summary: 2024-06-17 07:48:08,699 - mmseg - INFO - +-------+-------+------+ | aAcc | mIoU | mAcc | +-------+-------+------+ | 86.23 | 58.13 | 70.3 | +-------+-------+------+ 2024-06-17 07:48:08,699 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 07:48:08,700 - mmseg - INFO - Iter(val) [250] aAcc: 0.8623, mIoU: 0.5813, mAcc: 0.7030, IoU.wall: 0.8250, IoU.building: 0.8483, IoU.sky: 0.9479, IoU.floor: 0.8419, IoU.tree: 0.7736, IoU.ceiling: 0.8754, IoU.road: 0.8632, IoU.bed : 0.9213, IoU.windowpane: 0.6726, IoU.grass: 0.6808, IoU.cabinet: 0.6675, IoU.sidewalk: 0.7185, IoU.person: 0.8523, IoU.earth: 0.4109, IoU.door: 0.5990, IoU.table: 0.6987, IoU.mountain: 0.6179, IoU.plant: 0.5463, IoU.curtain: 0.7817, IoU.chair: 0.6584, IoU.car: 0.8756, IoU.water: 0.6364, IoU.painting: 0.7960, IoU.sofa: 0.8246, IoU.shelf: 0.4780, IoU.house: 0.4748, IoU.sea: 0.7935, IoU.mirror: 0.7837, IoU.rug: 0.6104, IoU.field: 0.3186, IoU.armchair: 0.6500, IoU.seat: 0.6878, IoU.fence: 0.5211, IoU.desk: 0.6020, IoU.rock: 0.5601, IoU.wardrobe: 0.5282, IoU.lamp: 0.7419, IoU.bathtub: 0.8448, IoU.railing: 0.4431, IoU.cushion: 0.7137, IoU.base: 0.3996, IoU.box: 0.4006, IoU.column: 0.5834, IoU.signboard: 0.3958, IoU.chest of drawers: 0.4734, IoU.counter: 0.4736, IoU.sand: 0.5691, IoU.sink: 0.7850, IoU.skyscraper: 0.4739, IoU.fireplace: 0.7599, IoU.refrigerator: 0.8664, IoU.grandstand: 0.5359, IoU.path: 0.2871, IoU.stairs: 0.3578, IoU.runway: 0.7014, IoU.case: 0.6163, IoU.pool table: 0.9433, IoU.pillow: 0.6795, IoU.screen door: 0.7744, IoU.stairway: 0.4861, IoU.river: 0.1315, IoU.bridge: 0.7151, IoU.bookcase: 0.4308, IoU.blind: 0.4066, IoU.coffee table: 0.6020, IoU.toilet: 0.8995, IoU.flower: 0.4427, IoU.book: 0.5306, IoU.hill: 0.1003, IoU.bench: 0.5724, IoU.countertop: 0.6331, IoU.stove: 0.8626, IoU.palm: 0.5408, IoU.kitchen island: 0.5004, IoU.computer: 0.7849, IoU.swivel chair: 0.4610, IoU.boat: 0.8011, IoU.bar: 0.6086, IoU.arcade machine: 0.7984, IoU.hovel: 0.3134, IoU.bus: 0.9226, IoU.towel: 0.7681, IoU.light: 0.5633, IoU.truck: 0.5127, IoU.tower: 0.2284, IoU.chandelier: 0.7227, IoU.awning: 0.3424, IoU.streetlight: 0.3200, IoU.booth: 0.5811, IoU.television receiver: 0.7950, IoU.airplane: 0.8672, IoU.dirt track: 0.0713, IoU.apparel: 0.5754, IoU.pole: 0.2557, IoU.land: 0.0434, IoU.bannister: 0.1719, IoU.escalator: 0.6661, IoU.ottoman: 0.5843, IoU.bottle: 0.4468, IoU.buffet: 0.5451, IoU.poster: 0.2885, IoU.stage: 0.2489, IoU.van: 0.5334, IoU.ship: 0.9305, IoU.fountain: 0.3925, IoU.conveyer belt: 0.8149, IoU.canopy: 0.5038, IoU.washer: 0.8416, IoU.plaything: 0.3171, IoU.swimming pool: 0.5236, IoU.stool: 0.4967, IoU.barrel: 0.4834, IoU.basket: 0.4365, IoU.waterfall: 0.5774, IoU.tent: 0.9503, IoU.bag: 0.2479, IoU.minibike: 0.7441, IoU.cradle: 0.8584, IoU.oven: 0.6008, IoU.ball: 0.5822, IoU.food: 0.6359, IoU.step: 0.0940, IoU.tank: 0.6205, IoU.trade name: 0.2664, IoU.microwave: 0.9077, IoU.pot: 0.6034, IoU.animal: 0.6019, IoU.bicycle: 0.6091, IoU.lake: 0.5586, IoU.dishwasher: 0.7194, IoU.screen: 0.5916, IoU.blanket: 0.3368, IoU.sculpture: 0.7446, IoU.hood: 0.6205, IoU.sconce: 0.5794, IoU.vase: 0.4835, IoU.traffic light: 0.3968, IoU.tray: 0.2603, IoU.ashcan: 0.5456, IoU.fan: 0.6745, IoU.pier: 0.3890, IoU.crt screen: 0.0250, IoU.plate: 0.6276, IoU.monitor: 0.6313, IoU.bulletin board: 0.5986, IoU.shower: 0.2321, IoU.radiator: 0.6723, IoU.glass: 0.2027, IoU.clock: 0.5281, IoU.flag: 0.6951, Acc.wall: 0.9049, Acc.building: 0.9365, Acc.sky: 0.9742, Acc.floor: 0.9249, Acc.tree: 0.8946, Acc.ceiling: 0.9441, Acc.road: 0.9096, Acc.bed : 0.9688, Acc.windowpane: 0.8288, Acc.grass: 0.8156, Acc.cabinet: 0.7583, Acc.sidewalk: 0.8629, Acc.person: 0.9360, Acc.earth: 0.5474, Acc.door: 0.7269, Acc.table: 0.8107, Acc.mountain: 0.7272, Acc.plant: 0.6750, Acc.curtain: 0.8687, Acc.chair: 0.7618, Acc.car: 0.9351, Acc.water: 0.7909, Acc.painting: 0.9087, Acc.sofa: 0.9003, Acc.shelf: 0.6418, Acc.house: 0.5906, Acc.sea: 0.8873, Acc.mirror: 0.8566, Acc.rug: 0.6814, Acc.field: 0.5682, Acc.armchair: 0.8330, Acc.seat: 0.8864, Acc.fence: 0.6442, Acc.desk: 0.7937, Acc.rock: 0.8250, Acc.wardrobe: 0.7281, Acc.lamp: 0.8407, Acc.bathtub: 0.8779, Acc.railing: 0.6174, Acc.cushion: 0.8192, Acc.base: 0.5696, Acc.box: 0.5107, Acc.column: 0.7004, Acc.signboard: 0.5316, Acc.chest of drawers: 0.7512, Acc.counter: 0.5601, Acc.sand: 0.8370, Acc.sink: 0.8337, Acc.skyscraper: 0.5959, Acc.fireplace: 0.9417, Acc.refrigerator: 0.9502, Acc.grandstand: 0.8513, Acc.path: 0.3909, Acc.stairs: 0.4327, Acc.runway: 0.9033, Acc.case: 0.8102, Acc.pool table: 0.9809, Acc.pillow: 0.7842, Acc.screen door: 0.8206, Acc.stairway: 0.6225, Acc.river: 0.2321, Acc.bridge: 0.8915, Acc.bookcase: 0.6178, Acc.blind: 0.4612, Acc.coffee table: 0.8491, Acc.toilet: 0.9422, Acc.flower: 0.6064, Acc.book: 0.7650, Acc.hill: 0.1852, Acc.bench: 0.6480, Acc.countertop: 0.8388, Acc.stove: 0.9192, Acc.palm: 0.8192, Acc.kitchen island: 0.8247, Acc.computer: 0.9122, Acc.swivel chair: 0.6997, Acc.boat: 0.9099, Acc.bar: 0.8416, Acc.arcade machine: 0.8273, Acc.hovel: 0.3493, Acc.bus: 0.9719, Acc.towel: 0.8616, Acc.light: 0.6226, Acc.truck: 0.6261, Acc.tower: 0.3884, Acc.chandelier: 0.8298, Acc.awning: 0.4425, Acc.streetlight: 0.4158, Acc.booth: 0.7032, Acc.television receiver: 0.8545, Acc.airplane: 0.9508, Acc.dirt track: 0.2930, Acc.apparel: 0.7576, Acc.pole: 0.3666, Acc.land: 0.0584, Acc.bannister: 0.2086, Acc.escalator: 0.8567, Acc.ottoman: 0.7408, Acc.bottle: 0.7142, Acc.buffet: 0.6037, Acc.poster: 0.3840, Acc.stage: 0.4771, Acc.van: 0.7546, Acc.ship: 0.9726, Acc.fountain: 0.4014, Acc.conveyer belt: 0.9532, Acc.canopy: 0.6992, Acc.washer: 0.8992, Acc.plaything: 0.4826, Acc.swimming pool: 0.7543, Acc.stool: 0.6641, Acc.barrel: 0.7492, Acc.basket: 0.5947, Acc.waterfall: 0.6751, Acc.tent: 0.9832, Acc.bag: 0.2773, Acc.minibike: 0.8766, Acc.cradle: 0.9775, Acc.oven: 0.7163, Acc.ball: 0.6139, Acc.food: 0.7394, Acc.step: 0.1181, Acc.tank: 0.6805, Acc.trade name: 0.3204, Acc.microwave: 0.9623, Acc.pot: 0.6924, Acc.animal: 0.6207, Acc.bicycle: 0.7749, Acc.lake: 0.6361, Acc.dishwasher: 0.8111, Acc.screen: 0.9096, Acc.blanket: 0.3850, Acc.sculpture: 0.8582, Acc.hood: 0.7417, Acc.sconce: 0.6701, Acc.vase: 0.6405, Acc.traffic light: 0.5886, Acc.tray: 0.3301, Acc.ashcan: 0.6588, Acc.fan: 0.7768, Acc.pier: 0.4440, Acc.crt screen: 0.0355, Acc.plate: 0.7635, Acc.monitor: 0.7257, Acc.bulletin board: 0.7886, Acc.shower: 0.2549, Acc.radiator: 0.7875, Acc.glass: 0.2153, Acc.clock: 0.6415, Acc.flag: 0.7815 2024-06-17 07:49:29,431 - mmseg - INFO - Iter [73050/80000] lr: 2.815e-07, eta: 3:20:46, time: 3.246, data_time: 1.644, memory: 65790, decode.loss_ce: 0.1344, decode.acc_seg: 93.8929, aux.loss_ce: 0.0585, aux.acc_seg: 93.4795, loss: 0.1929 2024-06-17 07:50:49,937 - mmseg - INFO - Iter [73100/80000] lr: 2.795e-07, eta: 3:19:19, time: 1.610, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1264, decode.acc_seg: 94.2954, aux.loss_ce: 0.0553, aux.acc_seg: 93.8633, loss: 0.1817 2024-06-17 07:52:10,283 - mmseg - INFO - Iter [73150/80000] lr: 2.774e-07, eta: 3:17:51, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1252, decode.acc_seg: 94.1217, aux.loss_ce: 0.0546, aux.acc_seg: 93.7734, loss: 0.1798 2024-06-17 07:53:30,686 - mmseg - INFO - Iter [73200/80000] lr: 2.754e-07, eta: 3:16:24, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1270, decode.acc_seg: 94.1509, aux.loss_ce: 0.0554, aux.acc_seg: 93.7756, loss: 0.1824 2024-06-17 07:54:51,127 - mmseg - INFO - Iter [73250/80000] lr: 2.734e-07, eta: 3:14:57, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1327, decode.acc_seg: 93.9519, aux.loss_ce: 0.0574, aux.acc_seg: 93.5657, loss: 0.1901 2024-06-17 07:56:13,834 - mmseg - INFO - Iter [73300/80000] lr: 2.714e-07, eta: 3:13:30, time: 1.654, data_time: 0.052, memory: 65790, decode.loss_ce: 0.1294, decode.acc_seg: 94.1579, aux.loss_ce: 0.0566, aux.acc_seg: 93.7422, loss: 0.1860 2024-06-17 07:57:34,499 - mmseg - INFO - Iter [73350/80000] lr: 2.693e-07, eta: 3:12:03, time: 1.613, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1236, decode.acc_seg: 94.2838, aux.loss_ce: 0.0545, aux.acc_seg: 93.8564, loss: 0.1781 2024-06-17 07:58:54,942 - mmseg - INFO - Iter [73400/80000] lr: 2.673e-07, eta: 3:10:36, time: 1.609, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1350, decode.acc_seg: 93.7278, aux.loss_ce: 0.0589, aux.acc_seg: 93.2668, loss: 0.1939 2024-06-17 08:00:15,337 - mmseg - INFO - Iter [73450/80000] lr: 2.653e-07, eta: 3:09:08, time: 1.608, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1280, decode.acc_seg: 94.2002, aux.loss_ce: 0.0565, aux.acc_seg: 93.7584, loss: 0.1845 2024-06-17 08:01:35,744 - mmseg - INFO - Iter [73500/80000] lr: 2.633e-07, eta: 3:07:41, time: 1.608, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1285, decode.acc_seg: 94.1140, aux.loss_ce: 0.0564, aux.acc_seg: 93.6235, loss: 0.1849 2024-06-17 08:02:56,273 - mmseg - INFO - Iter [73550/80000] lr: 2.612e-07, eta: 3:06:14, time: 1.611, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1295, decode.acc_seg: 94.1309, aux.loss_ce: 0.0568, aux.acc_seg: 93.6969, loss: 0.1863 2024-06-17 08:04:16,674 - mmseg - INFO - Iter [73600/80000] lr: 2.592e-07, eta: 3:04:47, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1280, decode.acc_seg: 94.2530, aux.loss_ce: 0.0562, aux.acc_seg: 93.8280, loss: 0.1841 2024-06-17 08:05:37,184 - mmseg - INFO - Iter [73650/80000] lr: 2.572e-07, eta: 3:03:20, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1240, decode.acc_seg: 94.2231, aux.loss_ce: 0.0546, aux.acc_seg: 93.7541, loss: 0.1787 2024-06-17 08:06:57,648 - mmseg - INFO - Iter [73700/80000] lr: 2.552e-07, eta: 3:01:53, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1248, decode.acc_seg: 94.3241, aux.loss_ce: 0.0548, aux.acc_seg: 93.8914, loss: 0.1796 2024-06-17 08:08:18,027 - mmseg - INFO - Iter [73750/80000] lr: 2.531e-07, eta: 3:00:25, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1295, decode.acc_seg: 94.1205, aux.loss_ce: 0.0569, aux.acc_seg: 93.6642, loss: 0.1864 2024-06-17 08:09:38,415 - mmseg - INFO - Iter [73800/80000] lr: 2.511e-07, eta: 2:58:58, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1256, decode.acc_seg: 94.2101, aux.loss_ce: 0.0549, aux.acc_seg: 93.7804, loss: 0.1804 2024-06-17 08:10:58,883 - mmseg - INFO - Iter [73850/80000] lr: 2.491e-07, eta: 2:57:31, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1314, decode.acc_seg: 94.1083, aux.loss_ce: 0.0579, aux.acc_seg: 93.6099, loss: 0.1893 2024-06-17 08:12:19,450 - mmseg - INFO - Iter [73900/80000] lr: 2.471e-07, eta: 2:56:04, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1203, decode.acc_seg: 94.4688, aux.loss_ce: 0.0527, aux.acc_seg: 94.0221, loss: 0.1730 2024-06-17 08:13:39,884 - mmseg - INFO - Iter [73950/80000] lr: 2.450e-07, eta: 2:54:37, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1331, decode.acc_seg: 93.7911, aux.loss_ce: 0.0585, aux.acc_seg: 93.3201, loss: 0.1916 2024-06-17 08:15:00,285 - mmseg - INFO - Saving checkpoint at 74000 iterations 2024-06-17 08:16:13,479 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 08:16:13,480 - mmseg - INFO - Iter [74000/80000] lr: 2.430e-07, eta: 2:53:16, time: 3.072, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1276, decode.acc_seg: 94.2116, aux.loss_ce: 0.0564, aux.acc_seg: 93.7288, loss: 0.1841 2024-06-17 08:17:35,379 - mmseg - INFO - per class results: 2024-06-17 08:17:35,385 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.63 | 90.29 | | building | 84.88 | 93.74 | | sky | 94.77 | 97.66 | | floor | 84.42 | 91.89 | | tree | 77.36 | 88.85 | | ceiling | 87.47 | 94.02 | | road | 86.31 | 90.98 | | bed | 92.03 | 97.14 | | windowpane | 66.83 | 82.73 | | grass | 68.45 | 82.42 | | cabinet | 67.09 | 76.59 | | sidewalk | 72.13 | 86.14 | | person | 85.05 | 94.27 | | earth | 41.87 | 55.63 | | door | 60.52 | 74.05 | | table | 70.04 | 81.51 | | mountain | 62.09 | 73.35 | | plant | 55.3 | 67.65 | | curtain | 78.33 | 87.6 | | chair | 66.5 | 78.48 | | car | 87.54 | 93.88 | | water | 63.85 | 79.77 | | painting | 80.08 | 90.89 | | sofa | 83.04 | 90.63 | | shelf | 46.76 | 62.37 | | house | 47.4 | 58.32 | | sea | 76.54 | 84.31 | | mirror | 78.85 | 86.96 | | rug | 63.58 | 72.24 | | field | 31.73 | 52.73 | | armchair | 65.85 | 82.66 | | seat | 68.68 | 88.8 | | fence | 52.46 | 64.12 | | desk | 60.04 | 79.51 | | rock | 55.72 | 81.82 | | wardrobe | 54.01 | 74.83 | | lamp | 74.28 | 85.03 | | bathtub | 84.35 | 87.93 | | railing | 44.01 | 61.49 | | cushion | 70.92 | 83.48 | | base | 40.27 | 56.98 | | box | 39.76 | 50.43 | | column | 58.31 | 70.19 | | signboard | 39.07 | 53.17 | | chest of drawers | 45.71 | 68.72 | | counter | 44.49 | 52.26 | | sand | 57.99 | 86.69 | | sink | 79.64 | 85.2 | | skyscraper | 47.44 | 59.28 | | fireplace | 75.59 | 94.22 | | refrigerator | 86.59 | 95.37 | | grandstand | 56.09 | 85.91 | | path | 29.23 | 39.12 | | stairs | 37.18 | 46.48 | | runway | 69.02 | 89.08 | | case | 61.62 | 82.89 | | pool table | 94.39 | 98.1 | | pillow | 66.5 | 75.78 | | screen door | 79.6 | 85.7 | | stairway | 46.48 | 61.95 | | river | 14.47 | 28.07 | | bridge | 72.06 | 88.97 | | bookcase | 42.47 | 62.56 | | blind | 40.18 | 45.57 | | coffee table | 60.86 | 85.08 | | toilet | 90.07 | 94.4 | | flower | 44.66 | 60.53 | | book | 52.63 | 78.03 | | hill | 7.85 | 13.13 | | bench | 57.88 | 65.27 | | countertop | 62.77 | 83.53 | | stove | 86.46 | 92.63 | | palm | 53.45 | 80.89 | | kitchen island | 52.16 | 77.66 | | computer | 78.26 | 90.59 | | swivel chair | 46.21 | 72.19 | | boat | 79.53 | 91.49 | | bar | 59.55 | 85.12 | | arcade machine | 78.83 | 82.71 | | hovel | 28.25 | 32.41 | | bus | 92.58 | 97.04 | | towel | 75.33 | 82.65 | | light | 58.23 | 67.96 | | truck | 49.67 | 62.81 | | tower | 22.55 | 38.37 | | chandelier | 72.36 | 84.19 | | awning | 33.9 | 43.77 | | streetlight | 31.75 | 41.6 | | booth | 56.38 | 72.25 | | television receiver | 78.76 | 87.42 | | airplane | 86.87 | 95.27 | | dirt track | 6.61 | 28.85 | | apparel | 57.52 | 73.59 | | pole | 25.35 | 38.59 | | land | 4.03 | 5.58 | | bannister | 17.59 | 22.03 | | escalator | 66.19 | 86.54 | | ottoman | 58.36 | 74.15 | | bottle | 44.79 | 73.64 | | buffet | 62.37 | 69.62 | | poster | 31.44 | 40.92 | | stage | 24.16 | 47.8 | | van | 51.83 | 74.08 | | ship | 94.49 | 98.08 | | fountain | 38.8 | 39.63 | | conveyer belt | 80.61 | 96.1 | | canopy | 50.02 | 70.31 | | washer | 85.22 | 91.31 | | plaything | 30.84 | 47.62 | | swimming pool | 52.74 | 75.97 | | stool | 48.94 | 71.12 | | barrel | 49.99 | 80.0 | | basket | 42.76 | 58.86 | | waterfall | 57.67 | 69.57 | | tent | 94.46 | 98.46 | | bag | 25.54 | 29.17 | | minibike | 73.72 | 88.72 | | cradle | 85.0 | 98.27 | | oven | 59.96 | 70.46 | | ball | 55.74 | 58.15 | | food | 60.37 | 68.01 | | step | 10.96 | 14.46 | | tank | 61.6 | 68.12 | | trade name | 25.0 | 29.97 | | microwave | 90.43 | 96.48 | | pot | 61.01 | 70.88 | | animal | 59.38 | 61.28 | | bicycle | 61.3 | 81.12 | | lake | 55.75 | 63.62 | | dishwasher | 72.51 | 80.74 | | screen | 59.99 | 95.67 | | blanket | 34.22 | 38.76 | | sculpture | 74.48 | 87.0 | | hood | 62.5 | 74.01 | | sconce | 58.63 | 68.26 | | vase | 48.02 | 65.09 | | traffic light | 40.12 | 60.03 | | tray | 25.18 | 31.32 | | ashcan | 54.0 | 67.87 | | fan | 69.04 | 83.22 | | pier | 39.88 | 45.39 | | crt screen | 2.59 | 3.66 | | plate | 62.77 | 78.41 | | monitor | 62.67 | 74.19 | | bulletin board | 60.99 | 77.42 | | shower | 22.77 | 27.59 | | radiator | 66.77 | 78.35 | | glass | 21.37 | 22.86 | | clock | 53.18 | 67.13 | | flag | 69.79 | 78.03 | +---------------------+-------+-------+ 2024-06-17 08:17:35,385 - mmseg - INFO - Summary: 2024-06-17 08:17:35,385 - mmseg - INFO - +-------+-------+------+ | aAcc | mIoU | mAcc | +-------+-------+------+ | 86.29 | 58.13 | 70.7 | +-------+-------+------+ 2024-06-17 08:17:35,386 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 08:17:35,386 - mmseg - INFO - Iter(val) [250] aAcc: 0.8629, mIoU: 0.5813, mAcc: 0.7070, IoU.wall: 0.8263, IoU.building: 0.8488, IoU.sky: 0.9477, IoU.floor: 0.8442, IoU.tree: 0.7736, IoU.ceiling: 0.8747, IoU.road: 0.8631, IoU.bed : 0.9203, IoU.windowpane: 0.6683, IoU.grass: 0.6845, IoU.cabinet: 0.6709, IoU.sidewalk: 0.7213, IoU.person: 0.8505, IoU.earth: 0.4187, IoU.door: 0.6052, IoU.table: 0.7004, IoU.mountain: 0.6209, IoU.plant: 0.5530, IoU.curtain: 0.7833, IoU.chair: 0.6650, IoU.car: 0.8754, IoU.water: 0.6385, IoU.painting: 0.8008, IoU.sofa: 0.8304, IoU.shelf: 0.4676, IoU.house: 0.4740, IoU.sea: 0.7654, IoU.mirror: 0.7885, IoU.rug: 0.6358, IoU.field: 0.3173, IoU.armchair: 0.6585, IoU.seat: 0.6868, IoU.fence: 0.5246, IoU.desk: 0.6004, IoU.rock: 0.5572, IoU.wardrobe: 0.5401, IoU.lamp: 0.7428, IoU.bathtub: 0.8435, IoU.railing: 0.4401, IoU.cushion: 0.7092, IoU.base: 0.4027, IoU.box: 0.3976, IoU.column: 0.5831, IoU.signboard: 0.3907, IoU.chest of drawers: 0.4571, IoU.counter: 0.4449, IoU.sand: 0.5799, IoU.sink: 0.7964, IoU.skyscraper: 0.4744, IoU.fireplace: 0.7559, IoU.refrigerator: 0.8659, IoU.grandstand: 0.5609, IoU.path: 0.2923, IoU.stairs: 0.3718, IoU.runway: 0.6902, IoU.case: 0.6162, IoU.pool table: 0.9439, IoU.pillow: 0.6650, IoU.screen door: 0.7960, IoU.stairway: 0.4648, IoU.river: 0.1447, IoU.bridge: 0.7206, IoU.bookcase: 0.4247, IoU.blind: 0.4018, IoU.coffee table: 0.6086, IoU.toilet: 0.9007, IoU.flower: 0.4466, IoU.book: 0.5263, IoU.hill: 0.0785, IoU.bench: 0.5788, IoU.countertop: 0.6277, IoU.stove: 0.8646, IoU.palm: 0.5345, IoU.kitchen island: 0.5216, IoU.computer: 0.7826, IoU.swivel chair: 0.4621, IoU.boat: 0.7953, IoU.bar: 0.5955, IoU.arcade machine: 0.7883, IoU.hovel: 0.2825, IoU.bus: 0.9258, IoU.towel: 0.7533, IoU.light: 0.5823, IoU.truck: 0.4967, IoU.tower: 0.2255, IoU.chandelier: 0.7236, IoU.awning: 0.3390, IoU.streetlight: 0.3175, IoU.booth: 0.5638, IoU.television receiver: 0.7876, IoU.airplane: 0.8687, IoU.dirt track: 0.0661, IoU.apparel: 0.5752, IoU.pole: 0.2535, IoU.land: 0.0403, IoU.bannister: 0.1759, IoU.escalator: 0.6619, IoU.ottoman: 0.5836, IoU.bottle: 0.4479, IoU.buffet: 0.6237, IoU.poster: 0.3144, IoU.stage: 0.2416, IoU.van: 0.5183, IoU.ship: 0.9449, IoU.fountain: 0.3880, IoU.conveyer belt: 0.8061, IoU.canopy: 0.5002, IoU.washer: 0.8522, IoU.plaything: 0.3084, IoU.swimming pool: 0.5274, IoU.stool: 0.4894, IoU.barrel: 0.4999, IoU.basket: 0.4276, IoU.waterfall: 0.5767, IoU.tent: 0.9446, IoU.bag: 0.2554, IoU.minibike: 0.7372, IoU.cradle: 0.8500, IoU.oven: 0.5996, IoU.ball: 0.5574, IoU.food: 0.6037, IoU.step: 0.1096, IoU.tank: 0.6160, IoU.trade name: 0.2500, IoU.microwave: 0.9043, IoU.pot: 0.6101, IoU.animal: 0.5938, IoU.bicycle: 0.6130, IoU.lake: 0.5575, IoU.dishwasher: 0.7251, IoU.screen: 0.5999, IoU.blanket: 0.3422, IoU.sculpture: 0.7448, IoU.hood: 0.6250, IoU.sconce: 0.5863, IoU.vase: 0.4802, IoU.traffic light: 0.4012, IoU.tray: 0.2518, IoU.ashcan: 0.5400, IoU.fan: 0.6904, IoU.pier: 0.3988, IoU.crt screen: 0.0259, IoU.plate: 0.6277, IoU.monitor: 0.6267, IoU.bulletin board: 0.6099, IoU.shower: 0.2277, IoU.radiator: 0.6677, IoU.glass: 0.2137, IoU.clock: 0.5318, IoU.flag: 0.6979, Acc.wall: 0.9029, Acc.building: 0.9374, Acc.sky: 0.9766, Acc.floor: 0.9189, Acc.tree: 0.8885, Acc.ceiling: 0.9402, Acc.road: 0.9098, Acc.bed : 0.9714, Acc.windowpane: 0.8273, Acc.grass: 0.8242, Acc.cabinet: 0.7659, Acc.sidewalk: 0.8614, Acc.person: 0.9427, Acc.earth: 0.5563, Acc.door: 0.7405, Acc.table: 0.8151, Acc.mountain: 0.7335, Acc.plant: 0.6765, Acc.curtain: 0.8760, Acc.chair: 0.7848, Acc.car: 0.9388, Acc.water: 0.7977, Acc.painting: 0.9089, Acc.sofa: 0.9063, Acc.shelf: 0.6237, Acc.house: 0.5832, Acc.sea: 0.8431, Acc.mirror: 0.8696, Acc.rug: 0.7224, Acc.field: 0.5273, Acc.armchair: 0.8266, Acc.seat: 0.8880, Acc.fence: 0.6412, Acc.desk: 0.7951, Acc.rock: 0.8182, Acc.wardrobe: 0.7483, Acc.lamp: 0.8503, Acc.bathtub: 0.8793, Acc.railing: 0.6149, Acc.cushion: 0.8348, Acc.base: 0.5698, Acc.box: 0.5043, Acc.column: 0.7019, Acc.signboard: 0.5317, Acc.chest of drawers: 0.6872, Acc.counter: 0.5226, Acc.sand: 0.8669, Acc.sink: 0.8520, Acc.skyscraper: 0.5928, Acc.fireplace: 0.9422, Acc.refrigerator: 0.9537, Acc.grandstand: 0.8591, Acc.path: 0.3912, Acc.stairs: 0.4648, Acc.runway: 0.8908, Acc.case: 0.8289, Acc.pool table: 0.9810, Acc.pillow: 0.7578, Acc.screen door: 0.8570, Acc.stairway: 0.6195, Acc.river: 0.2807, Acc.bridge: 0.8897, Acc.bookcase: 0.6256, Acc.blind: 0.4557, Acc.coffee table: 0.8508, Acc.toilet: 0.9440, Acc.flower: 0.6053, Acc.book: 0.7803, Acc.hill: 0.1313, Acc.bench: 0.6527, Acc.countertop: 0.8353, Acc.stove: 0.9263, Acc.palm: 0.8089, Acc.kitchen island: 0.7766, Acc.computer: 0.9059, Acc.swivel chair: 0.7219, Acc.boat: 0.9149, Acc.bar: 0.8512, Acc.arcade machine: 0.8271, Acc.hovel: 0.3241, Acc.bus: 0.9704, Acc.towel: 0.8265, Acc.light: 0.6796, Acc.truck: 0.6281, Acc.tower: 0.3837, Acc.chandelier: 0.8419, Acc.awning: 0.4377, Acc.streetlight: 0.4160, Acc.booth: 0.7225, Acc.television receiver: 0.8742, Acc.airplane: 0.9527, Acc.dirt track: 0.2885, Acc.apparel: 0.7359, Acc.pole: 0.3859, Acc.land: 0.0558, Acc.bannister: 0.2203, Acc.escalator: 0.8654, Acc.ottoman: 0.7415, Acc.bottle: 0.7364, Acc.buffet: 0.6962, Acc.poster: 0.4092, Acc.stage: 0.4780, Acc.van: 0.7408, Acc.ship: 0.9808, Acc.fountain: 0.3963, Acc.conveyer belt: 0.9610, Acc.canopy: 0.7031, Acc.washer: 0.9131, Acc.plaything: 0.4762, Acc.swimming pool: 0.7597, Acc.stool: 0.7112, Acc.barrel: 0.8000, Acc.basket: 0.5886, Acc.waterfall: 0.6957, Acc.tent: 0.9846, Acc.bag: 0.2917, Acc.minibike: 0.8872, Acc.cradle: 0.9827, Acc.oven: 0.7046, Acc.ball: 0.5815, Acc.food: 0.6801, Acc.step: 0.1446, Acc.tank: 0.6812, Acc.trade name: 0.2997, Acc.microwave: 0.9648, Acc.pot: 0.7088, Acc.animal: 0.6128, Acc.bicycle: 0.8112, Acc.lake: 0.6362, Acc.dishwasher: 0.8074, Acc.screen: 0.9567, Acc.blanket: 0.3876, Acc.sculpture: 0.8700, Acc.hood: 0.7401, Acc.sconce: 0.6826, Acc.vase: 0.6509, Acc.traffic light: 0.6003, Acc.tray: 0.3132, Acc.ashcan: 0.6787, Acc.fan: 0.8322, Acc.pier: 0.4539, Acc.crt screen: 0.0366, Acc.plate: 0.7841, Acc.monitor: 0.7419, Acc.bulletin board: 0.7742, Acc.shower: 0.2759, Acc.radiator: 0.7835, Acc.glass: 0.2286, Acc.clock: 0.6713, Acc.flag: 0.7803 2024-06-17 08:18:56,367 - mmseg - INFO - Iter [74050/80000] lr: 2.410e-07, eta: 2:51:55, time: 3.258, data_time: 1.651, memory: 65790, decode.loss_ce: 0.1218, decode.acc_seg: 94.2937, aux.loss_ce: 0.0538, aux.acc_seg: 93.8152, loss: 0.1755 2024-06-17 08:20:16,748 - mmseg - INFO - Iter [74100/80000] lr: 2.390e-07, eta: 2:50:28, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1167, decode.acc_seg: 94.5950, aux.loss_ce: 0.0519, aux.acc_seg: 94.0940, loss: 0.1686 2024-06-17 08:21:37,343 - mmseg - INFO - Iter [74150/80000] lr: 2.370e-07, eta: 2:49:01, time: 1.612, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1344, decode.acc_seg: 93.9933, aux.loss_ce: 0.0590, aux.acc_seg: 93.5360, loss: 0.1933 2024-06-17 08:22:57,732 - mmseg - INFO - Iter [74200/80000] lr: 2.349e-07, eta: 2:47:34, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1313, decode.acc_seg: 93.9513, aux.loss_ce: 0.0576, aux.acc_seg: 93.4134, loss: 0.1889 2024-06-17 08:24:18,099 - mmseg - INFO - Iter [74250/80000] lr: 2.329e-07, eta: 2:46:07, time: 1.607, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1203, decode.acc_seg: 94.4609, aux.loss_ce: 0.0526, aux.acc_seg: 94.0449, loss: 0.1729 2024-06-17 08:25:38,459 - mmseg - INFO - Iter [74300/80000] lr: 2.309e-07, eta: 2:44:39, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1272, decode.acc_seg: 94.1998, aux.loss_ce: 0.0555, aux.acc_seg: 93.7823, loss: 0.1827 2024-06-17 08:26:58,946 - mmseg - INFO - Iter [74350/80000] lr: 2.289e-07, eta: 2:43:12, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1234, decode.acc_seg: 94.3468, aux.loss_ce: 0.0542, aux.acc_seg: 93.8884, loss: 0.1776 2024-06-17 08:28:19,487 - mmseg - INFO - Iter [74400/80000] lr: 2.268e-07, eta: 2:41:45, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1337, decode.acc_seg: 94.0006, aux.loss_ce: 0.0583, aux.acc_seg: 93.5660, loss: 0.1920 2024-06-17 08:29:39,968 - mmseg - INFO - Iter [74450/80000] lr: 2.248e-07, eta: 2:40:18, time: 1.610, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1286, decode.acc_seg: 94.2661, aux.loss_ce: 0.0565, aux.acc_seg: 93.8713, loss: 0.1851 2024-06-17 08:31:00,430 - mmseg - INFO - Iter [74500/80000] lr: 2.228e-07, eta: 2:38:51, time: 1.609, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1328, decode.acc_seg: 93.8776, aux.loss_ce: 0.0583, aux.acc_seg: 93.4453, loss: 0.1911 2024-06-17 08:32:23,504 - mmseg - INFO - Iter [74550/80000] lr: 2.208e-07, eta: 2:37:24, time: 1.661, data_time: 0.061, memory: 65790, decode.loss_ce: 0.1269, decode.acc_seg: 94.2291, aux.loss_ce: 0.0563, aux.acc_seg: 93.7561, loss: 0.1832 2024-06-17 08:33:43,892 - mmseg - INFO - Iter [74600/80000] lr: 2.187e-07, eta: 2:35:57, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1317, decode.acc_seg: 94.1285, aux.loss_ce: 0.0580, aux.acc_seg: 93.6346, loss: 0.1897 2024-06-17 08:35:04,347 - mmseg - INFO - Iter [74650/80000] lr: 2.167e-07, eta: 2:34:30, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1264, decode.acc_seg: 94.2293, aux.loss_ce: 0.0553, aux.acc_seg: 93.8401, loss: 0.1817 2024-06-17 08:36:24,827 - mmseg - INFO - Iter [74700/80000] lr: 2.147e-07, eta: 2:33:03, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1234, decode.acc_seg: 94.4686, aux.loss_ce: 0.0546, aux.acc_seg: 93.9737, loss: 0.1780 2024-06-17 08:37:45,219 - mmseg - INFO - Iter [74750/80000] lr: 2.127e-07, eta: 2:31:36, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1270, decode.acc_seg: 94.1402, aux.loss_ce: 0.0563, aux.acc_seg: 93.5910, loss: 0.1834 2024-06-17 08:39:05,817 - mmseg - INFO - Iter [74800/80000] lr: 2.106e-07, eta: 2:30:09, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1220, decode.acc_seg: 94.3247, aux.loss_ce: 0.0534, aux.acc_seg: 93.9035, loss: 0.1754 2024-06-17 08:40:26,406 - mmseg - INFO - Iter [74850/80000] lr: 2.086e-07, eta: 2:28:42, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1295, decode.acc_seg: 94.2578, aux.loss_ce: 0.0569, aux.acc_seg: 93.7308, loss: 0.1864 2024-06-17 08:41:46,985 - mmseg - INFO - Iter [74900/80000] lr: 2.066e-07, eta: 2:27:15, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1279, decode.acc_seg: 94.2373, aux.loss_ce: 0.0559, aux.acc_seg: 93.8500, loss: 0.1838 2024-06-17 08:43:07,467 - mmseg - INFO - Iter [74950/80000] lr: 2.046e-07, eta: 2:25:48, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1201, decode.acc_seg: 94.5905, aux.loss_ce: 0.0527, aux.acc_seg: 94.2032, loss: 0.1728 2024-06-17 08:44:27,873 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 08:44:27,873 - mmseg - INFO - Iter [75000/80000] lr: 2.025e-07, eta: 2:24:21, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1203, decode.acc_seg: 94.5717, aux.loss_ce: 0.0529, aux.acc_seg: 94.1441, loss: 0.1732 2024-06-17 08:45:48,981 - mmseg - INFO - per class results: 2024-06-17 08:45:48,987 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.64 | 90.22 | | building | 84.76 | 93.65 | | sky | 94.85 | 97.63 | | floor | 84.55 | 92.32 | | tree | 77.4 | 89.49 | | ceiling | 87.69 | 94.24 | | road | 86.39 | 91.74 | | bed | 92.18 | 97.01 | | windowpane | 66.6 | 82.54 | | grass | 67.81 | 80.62 | | cabinet | 67.27 | 76.96 | | sidewalk | 72.2 | 85.52 | | person | 85.13 | 94.09 | | earth | 41.5 | 55.25 | | door | 60.39 | 74.5 | | table | 71.47 | 83.07 | | mountain | 62.06 | 73.44 | | plant | 54.97 | 66.83 | | curtain | 78.49 | 87.88 | | chair | 66.05 | 77.43 | | car | 87.31 | 93.82 | | water | 63.44 | 78.78 | | painting | 80.9 | 90.83 | | sofa | 83.75 | 92.46 | | shelf | 48.09 | 63.82 | | house | 45.99 | 55.68 | | sea | 75.18 | 82.93 | | mirror | 78.68 | 87.52 | | rug | 63.62 | 71.22 | | field | 32.24 | 56.61 | | armchair | 66.66 | 82.18 | | seat | 67.14 | 88.7 | | fence | 52.64 | 65.89 | | desk | 62.2 | 79.56 | | rock | 55.45 | 81.97 | | wardrobe | 53.64 | 73.87 | | lamp | 74.59 | 84.41 | | bathtub | 84.31 | 88.15 | | railing | 43.88 | 61.99 | | cushion | 71.78 | 81.66 | | base | 42.14 | 58.12 | | box | 40.31 | 51.28 | | column | 57.54 | 67.16 | | signboard | 38.91 | 53.86 | | chest of drawers | 45.28 | 68.96 | | counter | 43.73 | 50.33 | | sand | 57.63 | 87.2 | | sink | 79.29 | 84.57 | | skyscraper | 46.73 | 59.88 | | fireplace | 75.39 | 94.49 | | refrigerator | 87.02 | 95.58 | | grandstand | 57.25 | 85.66 | | path | 28.36 | 36.2 | | stairs | 38.77 | 47.84 | | runway | 68.92 | 89.09 | | case | 61.33 | 80.49 | | pool table | 94.53 | 98.02 | | pillow | 68.46 | 79.68 | | screen door | 77.13 | 81.8 | | stairway | 43.89 | 57.26 | | river | 14.02 | 29.03 | | bridge | 71.71 | 89.04 | | bookcase | 45.0 | 63.32 | | blind | 40.33 | 44.54 | | coffee table | 64.78 | 84.51 | | toilet | 90.08 | 94.39 | | flower | 43.95 | 59.87 | | book | 53.3 | 77.95 | | hill | 7.89 | 13.85 | | bench | 57.53 | 66.26 | | countertop | 63.4 | 83.75 | | stove | 86.32 | 92.67 | | palm | 53.44 | 79.58 | | kitchen island | 52.24 | 77.98 | | computer | 78.46 | 91.26 | | swivel chair | 46.14 | 71.56 | | boat | 79.65 | 91.43 | | bar | 59.86 | 85.58 | | arcade machine | 79.84 | 83.65 | | hovel | 30.61 | 35.06 | | bus | 92.19 | 97.19 | | towel | 75.26 | 82.6 | | light | 58.7 | 68.6 | | truck | 51.19 | 62.4 | | tower | 20.68 | 35.0 | | chandelier | 72.86 | 84.42 | | awning | 33.98 | 44.7 | | streetlight | 32.54 | 42.56 | | booth | 57.28 | 72.06 | | television receiver | 80.21 | 87.12 | | airplane | 86.76 | 94.85 | | dirt track | 6.95 | 27.18 | | apparel | 56.61 | 69.76 | | pole | 25.7 | 38.36 | | land | 4.3 | 6.41 | | bannister | 17.87 | 22.06 | | escalator | 66.66 | 86.19 | | ottoman | 57.32 | 72.87 | | bottle | 45.06 | 72.58 | | buffet | 64.17 | 71.91 | | poster | 31.49 | 38.29 | | stage | 22.91 | 48.55 | | van | 50.28 | 69.7 | | ship | 94.24 | 98.31 | | fountain | 38.92 | 39.9 | | conveyer belt | 81.59 | 95.64 | | canopy | 50.6 | 71.42 | | washer | 85.32 | 91.36 | | plaything | 31.23 | 44.69 | | swimming pool | 52.53 | 75.67 | | stool | 47.39 | 72.14 | | barrel | 48.99 | 75.07 | | basket | 43.89 | 59.99 | | waterfall | 61.42 | 78.27 | | tent | 94.59 | 98.32 | | bag | 26.34 | 29.89 | | minibike | 74.28 | 88.72 | | cradle | 84.87 | 98.26 | | oven | 60.03 | 71.73 | | ball | 61.65 | 66.61 | | food | 63.52 | 72.3 | | step | 10.2 | 13.4 | | tank | 62.18 | 68.15 | | trade name | 22.33 | 26.04 | | microwave | 90.46 | 96.63 | | pot | 60.37 | 69.86 | | animal | 59.65 | 61.46 | | bicycle | 60.58 | 80.25 | | lake | 55.77 | 63.64 | | dishwasher | 71.91 | 81.7 | | screen | 50.19 | 78.8 | | blanket | 33.01 | 37.81 | | sculpture | 74.76 | 87.13 | | hood | 62.35 | 73.98 | | sconce | 59.42 | 70.76 | | vase | 47.64 | 64.57 | | traffic light | 39.03 | 60.63 | | tray | 26.6 | 33.88 | | ashcan | 53.63 | 70.22 | | fan | 69.05 | 82.27 | | pier | 39.19 | 45.36 | | crt screen | 2.89 | 4.92 | | plate | 63.0 | 79.25 | | monitor | 66.9 | 77.77 | | bulletin board | 58.8 | 77.96 | | shower | 23.46 | 26.07 | | radiator | 66.87 | 81.3 | | glass | 21.89 | 23.54 | | clock | 53.47 | 67.16 | | flag | 70.46 | 76.87 | +---------------------+-------+-------+ 2024-06-17 08:45:48,987 - mmseg - INFO - Summary: 2024-06-17 08:45:48,987 - mmseg - INFO - +------+-------+-------+ | aAcc | mIoU | mAcc | +------+-------+-------+ | 86.3 | 58.24 | 70.63 | +------+-------+-------+ 2024-06-17 08:45:48,988 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 08:45:48,988 - mmseg - INFO - Iter(val) [250] aAcc: 0.8630, mIoU: 0.5824, mAcc: 0.7063, IoU.wall: 0.8264, IoU.building: 0.8476, IoU.sky: 0.9485, IoU.floor: 0.8455, IoU.tree: 0.7740, IoU.ceiling: 0.8769, IoU.road: 0.8639, IoU.bed : 0.9218, IoU.windowpane: 0.6660, IoU.grass: 0.6781, IoU.cabinet: 0.6727, IoU.sidewalk: 0.7220, IoU.person: 0.8513, IoU.earth: 0.4150, IoU.door: 0.6039, IoU.table: 0.7147, IoU.mountain: 0.6206, IoU.plant: 0.5497, IoU.curtain: 0.7849, IoU.chair: 0.6605, IoU.car: 0.8731, IoU.water: 0.6344, IoU.painting: 0.8090, IoU.sofa: 0.8375, IoU.shelf: 0.4809, IoU.house: 0.4599, IoU.sea: 0.7518, IoU.mirror: 0.7868, IoU.rug: 0.6362, IoU.field: 0.3224, IoU.armchair: 0.6666, IoU.seat: 0.6714, IoU.fence: 0.5264, IoU.desk: 0.6220, IoU.rock: 0.5545, IoU.wardrobe: 0.5364, IoU.lamp: 0.7459, IoU.bathtub: 0.8431, IoU.railing: 0.4388, IoU.cushion: 0.7178, IoU.base: 0.4214, IoU.box: 0.4031, IoU.column: 0.5754, IoU.signboard: 0.3891, IoU.chest of drawers: 0.4528, IoU.counter: 0.4373, IoU.sand: 0.5763, IoU.sink: 0.7929, IoU.skyscraper: 0.4673, IoU.fireplace: 0.7539, IoU.refrigerator: 0.8702, IoU.grandstand: 0.5725, IoU.path: 0.2836, IoU.stairs: 0.3877, IoU.runway: 0.6892, IoU.case: 0.6133, IoU.pool table: 0.9453, IoU.pillow: 0.6846, IoU.screen door: 0.7713, IoU.stairway: 0.4389, IoU.river: 0.1402, IoU.bridge: 0.7171, IoU.bookcase: 0.4500, IoU.blind: 0.4033, IoU.coffee table: 0.6478, IoU.toilet: 0.9008, IoU.flower: 0.4395, IoU.book: 0.5330, IoU.hill: 0.0789, IoU.bench: 0.5753, IoU.countertop: 0.6340, IoU.stove: 0.8632, IoU.palm: 0.5344, IoU.kitchen island: 0.5224, IoU.computer: 0.7846, IoU.swivel chair: 0.4614, IoU.boat: 0.7965, IoU.bar: 0.5986, IoU.arcade machine: 0.7984, IoU.hovel: 0.3061, IoU.bus: 0.9219, IoU.towel: 0.7526, IoU.light: 0.5870, IoU.truck: 0.5119, IoU.tower: 0.2068, IoU.chandelier: 0.7286, IoU.awning: 0.3398, IoU.streetlight: 0.3254, IoU.booth: 0.5728, IoU.television receiver: 0.8021, IoU.airplane: 0.8676, IoU.dirt track: 0.0695, IoU.apparel: 0.5661, IoU.pole: 0.2570, IoU.land: 0.0430, IoU.bannister: 0.1787, IoU.escalator: 0.6666, IoU.ottoman: 0.5732, IoU.bottle: 0.4506, IoU.buffet: 0.6417, IoU.poster: 0.3149, IoU.stage: 0.2291, IoU.van: 0.5028, IoU.ship: 0.9424, IoU.fountain: 0.3892, IoU.conveyer belt: 0.8159, IoU.canopy: 0.5060, IoU.washer: 0.8532, IoU.plaything: 0.3123, IoU.swimming pool: 0.5253, IoU.stool: 0.4739, IoU.barrel: 0.4899, IoU.basket: 0.4389, IoU.waterfall: 0.6142, IoU.tent: 0.9459, IoU.bag: 0.2634, IoU.minibike: 0.7428, IoU.cradle: 0.8487, IoU.oven: 0.6003, IoU.ball: 0.6165, IoU.food: 0.6352, IoU.step: 0.1020, IoU.tank: 0.6218, IoU.trade name: 0.2233, IoU.microwave: 0.9046, IoU.pot: 0.6037, IoU.animal: 0.5965, IoU.bicycle: 0.6058, IoU.lake: 0.5577, IoU.dishwasher: 0.7191, IoU.screen: 0.5019, IoU.blanket: 0.3301, IoU.sculpture: 0.7476, IoU.hood: 0.6235, IoU.sconce: 0.5942, IoU.vase: 0.4764, IoU.traffic light: 0.3903, IoU.tray: 0.2660, IoU.ashcan: 0.5363, IoU.fan: 0.6905, IoU.pier: 0.3919, IoU.crt screen: 0.0289, IoU.plate: 0.6300, IoU.monitor: 0.6690, IoU.bulletin board: 0.5880, IoU.shower: 0.2346, IoU.radiator: 0.6687, IoU.glass: 0.2189, IoU.clock: 0.5347, IoU.flag: 0.7046, Acc.wall: 0.9022, Acc.building: 0.9365, Acc.sky: 0.9763, Acc.floor: 0.9232, Acc.tree: 0.8949, Acc.ceiling: 0.9424, Acc.road: 0.9174, Acc.bed : 0.9701, Acc.windowpane: 0.8254, Acc.grass: 0.8062, Acc.cabinet: 0.7696, Acc.sidewalk: 0.8552, Acc.person: 0.9409, Acc.earth: 0.5525, Acc.door: 0.7450, Acc.table: 0.8307, Acc.mountain: 0.7344, Acc.plant: 0.6683, Acc.curtain: 0.8788, Acc.chair: 0.7743, Acc.car: 0.9382, Acc.water: 0.7878, Acc.painting: 0.9083, Acc.sofa: 0.9246, Acc.shelf: 0.6382, Acc.house: 0.5568, Acc.sea: 0.8293, Acc.mirror: 0.8752, Acc.rug: 0.7122, Acc.field: 0.5661, Acc.armchair: 0.8218, Acc.seat: 0.8870, Acc.fence: 0.6589, Acc.desk: 0.7956, Acc.rock: 0.8197, Acc.wardrobe: 0.7387, Acc.lamp: 0.8441, Acc.bathtub: 0.8815, Acc.railing: 0.6199, Acc.cushion: 0.8166, Acc.base: 0.5812, Acc.box: 0.5128, Acc.column: 0.6716, Acc.signboard: 0.5386, Acc.chest of drawers: 0.6896, Acc.counter: 0.5033, Acc.sand: 0.8720, Acc.sink: 0.8457, Acc.skyscraper: 0.5988, Acc.fireplace: 0.9449, Acc.refrigerator: 0.9558, Acc.grandstand: 0.8566, Acc.path: 0.3620, Acc.stairs: 0.4784, Acc.runway: 0.8909, Acc.case: 0.8049, Acc.pool table: 0.9802, Acc.pillow: 0.7968, Acc.screen door: 0.8180, Acc.stairway: 0.5726, Acc.river: 0.2903, Acc.bridge: 0.8904, Acc.bookcase: 0.6332, Acc.blind: 0.4454, Acc.coffee table: 0.8451, Acc.toilet: 0.9439, Acc.flower: 0.5987, Acc.book: 0.7795, Acc.hill: 0.1385, Acc.bench: 0.6626, Acc.countertop: 0.8375, Acc.stove: 0.9267, Acc.palm: 0.7958, Acc.kitchen island: 0.7798, Acc.computer: 0.9126, Acc.swivel chair: 0.7156, Acc.boat: 0.9143, Acc.bar: 0.8558, Acc.arcade machine: 0.8365, Acc.hovel: 0.3506, Acc.bus: 0.9719, Acc.towel: 0.8260, Acc.light: 0.6860, Acc.truck: 0.6240, Acc.tower: 0.3500, Acc.chandelier: 0.8442, Acc.awning: 0.4470, Acc.streetlight: 0.4256, Acc.booth: 0.7206, Acc.television receiver: 0.8712, Acc.airplane: 0.9485, Acc.dirt track: 0.2718, Acc.apparel: 0.6976, Acc.pole: 0.3836, Acc.land: 0.0641, Acc.bannister: 0.2206, Acc.escalator: 0.8619, Acc.ottoman: 0.7287, Acc.bottle: 0.7258, Acc.buffet: 0.7191, Acc.poster: 0.3829, Acc.stage: 0.4855, Acc.van: 0.6970, Acc.ship: 0.9831, Acc.fountain: 0.3990, Acc.conveyer belt: 0.9564, Acc.canopy: 0.7142, Acc.washer: 0.9136, Acc.plaything: 0.4469, Acc.swimming pool: 0.7567, Acc.stool: 0.7214, Acc.barrel: 0.7507, Acc.basket: 0.5999, Acc.waterfall: 0.7827, Acc.tent: 0.9832, Acc.bag: 0.2989, Acc.minibike: 0.8872, Acc.cradle: 0.9826, Acc.oven: 0.7173, Acc.ball: 0.6661, Acc.food: 0.7230, Acc.step: 0.1340, Acc.tank: 0.6815, Acc.trade name: 0.2604, Acc.microwave: 0.9663, Acc.pot: 0.6986, Acc.animal: 0.6146, Acc.bicycle: 0.8025, Acc.lake: 0.6364, Acc.dishwasher: 0.8170, Acc.screen: 0.7880, Acc.blanket: 0.3781, Acc.sculpture: 0.8713, Acc.hood: 0.7398, Acc.sconce: 0.7076, Acc.vase: 0.6457, Acc.traffic light: 0.6063, Acc.tray: 0.3388, Acc.ashcan: 0.7022, Acc.fan: 0.8227, Acc.pier: 0.4536, Acc.crt screen: 0.0492, Acc.plate: 0.7925, Acc.monitor: 0.7777, Acc.bulletin board: 0.7796, Acc.shower: 0.2607, Acc.radiator: 0.8130, Acc.glass: 0.2354, Acc.clock: 0.6716, Acc.flag: 0.7687 2024-06-17 08:47:09,655 - mmseg - INFO - Iter [75050/80000] lr: 2.005e-07, eta: 2:22:59, time: 3.236, data_time: 1.635, memory: 65790, decode.loss_ce: 0.1195, decode.acc_seg: 94.4645, aux.loss_ce: 0.0530, aux.acc_seg: 94.0454, loss: 0.1726 2024-06-17 08:48:30,123 - mmseg - INFO - Iter [75100/80000] lr: 1.985e-07, eta: 2:21:32, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1327, decode.acc_seg: 93.9345, aux.loss_ce: 0.0581, aux.acc_seg: 93.4325, loss: 0.1908 2024-06-17 08:49:50,618 - mmseg - INFO - Iter [75150/80000] lr: 1.965e-07, eta: 2:20:05, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1259, decode.acc_seg: 94.2534, aux.loss_ce: 0.0561, aux.acc_seg: 93.7178, loss: 0.1819 2024-06-17 08:51:10,966 - mmseg - INFO - Iter [75200/80000] lr: 1.944e-07, eta: 2:18:38, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1277, decode.acc_seg: 94.0877, aux.loss_ce: 0.0562, aux.acc_seg: 93.6209, loss: 0.1839 2024-06-17 08:52:31,381 - mmseg - INFO - Iter [75250/80000] lr: 1.924e-07, eta: 2:17:11, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1255, decode.acc_seg: 94.3332, aux.loss_ce: 0.0551, aux.acc_seg: 93.8606, loss: 0.1807 2024-06-17 08:53:51,761 - mmseg - INFO - Iter [75300/80000] lr: 1.904e-07, eta: 2:15:44, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1367, decode.acc_seg: 93.7446, aux.loss_ce: 0.0602, aux.acc_seg: 93.2422, loss: 0.1969 2024-06-17 08:55:12,108 - mmseg - INFO - Iter [75350/80000] lr: 1.884e-07, eta: 2:14:17, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1296, decode.acc_seg: 94.0509, aux.loss_ce: 0.0569, aux.acc_seg: 93.6076, loss: 0.1865 2024-06-17 08:56:32,484 - mmseg - INFO - Iter [75400/80000] lr: 1.863e-07, eta: 2:12:50, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1170, decode.acc_seg: 94.5452, aux.loss_ce: 0.0520, aux.acc_seg: 94.1081, loss: 0.1690 2024-06-17 08:57:52,906 - mmseg - INFO - Iter [75450/80000] lr: 1.843e-07, eta: 2:11:23, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1280, decode.acc_seg: 94.0904, aux.loss_ce: 0.0558, aux.acc_seg: 93.6871, loss: 0.1838 2024-06-17 08:59:13,308 - mmseg - INFO - Iter [75500/80000] lr: 1.823e-07, eta: 2:09:56, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1234, decode.acc_seg: 94.4391, aux.loss_ce: 0.0540, aux.acc_seg: 94.0231, loss: 0.1774 2024-06-17 09:00:33,694 - mmseg - INFO - Iter [75550/80000] lr: 1.803e-07, eta: 2:08:29, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1252, decode.acc_seg: 94.2584, aux.loss_ce: 0.0552, aux.acc_seg: 93.8173, loss: 0.1803 2024-06-17 09:01:54,049 - mmseg - INFO - Iter [75600/80000] lr: 1.782e-07, eta: 2:07:02, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1239, decode.acc_seg: 94.4330, aux.loss_ce: 0.0551, aux.acc_seg: 93.9419, loss: 0.1790 2024-06-17 09:03:14,342 - mmseg - INFO - Iter [75650/80000] lr: 1.762e-07, eta: 2:05:35, time: 1.606, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1299, decode.acc_seg: 94.0413, aux.loss_ce: 0.0570, aux.acc_seg: 93.5833, loss: 0.1869 2024-06-17 09:04:34,641 - mmseg - INFO - Iter [75700/80000] lr: 1.742e-07, eta: 2:04:08, time: 1.606, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1221, decode.acc_seg: 94.4771, aux.loss_ce: 0.0540, aux.acc_seg: 94.0118, loss: 0.1761 2024-06-17 09:05:54,953 - mmseg - INFO - Iter [75750/80000] lr: 1.722e-07, eta: 2:02:41, time: 1.606, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1234, decode.acc_seg: 94.5057, aux.loss_ce: 0.0540, aux.acc_seg: 94.1012, loss: 0.1773 2024-06-17 09:07:18,482 - mmseg - INFO - Iter [75800/80000] lr: 1.701e-07, eta: 2:01:14, time: 1.671, data_time: 0.069, memory: 65790, decode.loss_ce: 0.1264, decode.acc_seg: 94.1040, aux.loss_ce: 0.0551, aux.acc_seg: 93.7282, loss: 0.1815 2024-06-17 09:08:38,850 - mmseg - INFO - Iter [75850/80000] lr: 1.681e-07, eta: 1:59:47, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1271, decode.acc_seg: 94.2956, aux.loss_ce: 0.0554, aux.acc_seg: 93.8827, loss: 0.1825 2024-06-17 09:09:59,228 - mmseg - INFO - Iter [75900/80000] lr: 1.661e-07, eta: 1:58:20, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1267, decode.acc_seg: 94.3224, aux.loss_ce: 0.0558, aux.acc_seg: 93.8880, loss: 0.1825 2024-06-17 09:11:19,708 - mmseg - INFO - Iter [75950/80000] lr: 1.641e-07, eta: 1:56:53, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1269, decode.acc_seg: 94.2679, aux.loss_ce: 0.0558, aux.acc_seg: 93.8526, loss: 0.1826 2024-06-17 09:12:40,128 - mmseg - INFO - Saving checkpoint at 76000 iterations 2024-06-17 09:13:51,883 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 09:13:51,884 - mmseg - INFO - Iter [76000/80000] lr: 1.620e-07, eta: 1:55:30, time: 3.043, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1293, decode.acc_seg: 94.0870, aux.loss_ce: 0.0570, aux.acc_seg: 93.5972, loss: 0.1863 2024-06-17 09:15:14,636 - mmseg - INFO - per class results: 2024-06-17 09:15:14,642 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.69 | 90.48 | | building | 84.84 | 93.71 | | sky | 94.85 | 97.54 | | floor | 84.54 | 92.37 | | tree | 77.54 | 88.88 | | ceiling | 87.65 | 94.12 | | road | 86.3 | 91.41 | | bed | 92.13 | 97.18 | | windowpane | 66.41 | 81.96 | | grass | 68.08 | 81.76 | | cabinet | 66.89 | 76.9 | | sidewalk | 72.14 | 86.13 | | person | 85.18 | 94.04 | | earth | 41.78 | 55.08 | | door | 60.91 | 74.04 | | table | 70.9 | 82.34 | | mountain | 62.58 | 73.95 | | plant | 55.0 | 65.81 | | curtain | 78.28 | 88.54 | | chair | 66.49 | 77.99 | | car | 87.46 | 93.97 | | water | 63.91 | 79.48 | | painting | 80.81 | 90.81 | | sofa | 83.47 | 91.54 | | shelf | 47.65 | 62.44 | | house | 47.07 | 57.24 | | sea | 73.54 | 81.39 | | mirror | 78.78 | 87.02 | | rug | 62.87 | 70.38 | | field | 31.57 | 57.14 | | armchair | 65.87 | 83.0 | | seat | 68.85 | 88.52 | | fence | 52.8 | 66.68 | | desk | 60.47 | 80.23 | | rock | 55.15 | 80.15 | | wardrobe | 53.23 | 73.11 | | lamp | 74.45 | 84.52 | | bathtub | 84.44 | 88.4 | | railing | 44.05 | 61.68 | | cushion | 71.5 | 79.95 | | base | 42.83 | 59.86 | | box | 40.76 | 52.16 | | column | 58.21 | 69.16 | | signboard | 39.38 | 54.09 | | chest of drawers | 45.49 | 72.58 | | counter | 41.38 | 47.34 | | sand | 57.82 | 87.05 | | sink | 79.44 | 84.68 | | skyscraper | 46.95 | 59.41 | | fireplace | 76.27 | 93.51 | | refrigerator | 86.97 | 95.6 | | grandstand | 57.46 | 85.62 | | path | 28.11 | 35.8 | | stairs | 37.04 | 45.26 | | runway | 68.05 | 87.77 | | case | 61.87 | 80.59 | | pool table | 94.41 | 98.04 | | pillow | 68.54 | 80.62 | | screen door | 80.31 | 87.48 | | stairway | 43.72 | 58.86 | | river | 13.77 | 28.54 | | bridge | 70.53 | 86.3 | | bookcase | 44.2 | 61.0 | | blind | 41.11 | 47.19 | | coffee table | 62.93 | 85.51 | | toilet | 90.1 | 94.09 | | flower | 42.78 | 62.17 | | book | 53.4 | 78.67 | | hill | 7.92 | 13.81 | | bench | 56.91 | 64.46 | | countertop | 63.61 | 83.75 | | stove | 85.96 | 92.75 | | palm | 53.84 | 81.94 | | kitchen island | 53.15 | 78.15 | | computer | 78.52 | 91.14 | | swivel chair | 46.67 | 70.05 | | boat | 80.0 | 90.87 | | bar | 59.81 | 84.93 | | arcade machine | 78.96 | 82.36 | | hovel | 33.28 | 38.73 | | bus | 92.5 | 97.21 | | towel | 75.06 | 81.93 | | light | 57.74 | 65.92 | | truck | 50.6 | 63.57 | | tower | 19.43 | 32.66 | | chandelier | 72.5 | 84.46 | | awning | 34.46 | 45.39 | | streetlight | 31.98 | 41.18 | | booth | 57.41 | 70.79 | | television receiver | 79.53 | 87.54 | | airplane | 86.21 | 94.03 | | dirt track | 6.86 | 26.32 | | apparel | 57.98 | 74.5 | | pole | 26.5 | 39.76 | | land | 4.23 | 6.08 | | bannister | 18.58 | 23.04 | | escalator | 66.88 | 86.22 | | ottoman | 58.83 | 73.54 | | bottle | 44.42 | 72.35 | | buffet | 51.34 | 56.9 | | poster | 31.6 | 37.78 | | stage | 23.15 | 48.67 | | van | 52.41 | 75.22 | | ship | 93.91 | 98.57 | | fountain | 38.85 | 39.85 | | conveyer belt | 81.85 | 95.25 | | canopy | 50.64 | 70.44 | | washer | 85.24 | 91.32 | | plaything | 31.19 | 46.71 | | swimming pool | 53.05 | 76.58 | | stool | 49.6 | 69.04 | | barrel | 47.64 | 76.04 | | basket | 43.61 | 59.57 | | waterfall | 61.2 | 76.93 | | tent | 95.78 | 98.49 | | bag | 27.11 | 31.0 | | minibike | 74.23 | 88.46 | | cradle | 85.1 | 98.03 | | oven | 56.7 | 66.88 | | ball | 58.54 | 62.02 | | food | 63.34 | 72.36 | | step | 10.28 | 13.48 | | tank | 62.15 | 67.47 | | trade name | 25.65 | 31.72 | | microwave | 89.53 | 96.67 | | pot | 60.32 | 70.0 | | animal | 59.23 | 61.01 | | bicycle | 60.66 | 81.64 | | lake | 55.78 | 63.61 | | dishwasher | 71.81 | 81.58 | | screen | 56.51 | 89.33 | | blanket | 32.37 | 37.38 | | sculpture | 74.44 | 86.52 | | hood | 62.53 | 74.48 | | sconce | 59.11 | 69.43 | | vase | 47.04 | 65.58 | | traffic light | 39.42 | 62.21 | | tray | 27.01 | 34.82 | | ashcan | 54.57 | 68.85 | | fan | 68.8 | 81.38 | | pier | 39.62 | 45.43 | | crt screen | 2.51 | 3.83 | | plate | 63.17 | 77.88 | | monitor | 64.03 | 74.93 | | bulletin board | 59.74 | 79.71 | | shower | 23.44 | 26.17 | | radiator | 67.02 | 80.94 | | glass | 21.48 | 22.97 | | clock | 53.27 | 66.49 | | flag | 69.7 | 78.54 | +---------------------+-------+-------+ 2024-06-17 09:15:14,642 - mmseg - INFO - Summary: 2024-06-17 09:15:14,643 - mmseg - INFO - +-------+-------+------+ | aAcc | mIoU | mAcc | +-------+-------+------+ | 86.31 | 58.16 | 70.6 | +-------+-------+------+ 2024-06-17 09:15:14,644 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 09:15:14,644 - mmseg - INFO - Iter(val) [250] aAcc: 0.8631, mIoU: 0.5816, mAcc: 0.7060, IoU.wall: 0.8269, IoU.building: 0.8484, IoU.sky: 0.9485, IoU.floor: 0.8454, IoU.tree: 0.7754, IoU.ceiling: 0.8765, IoU.road: 0.8630, IoU.bed : 0.9213, IoU.windowpane: 0.6641, IoU.grass: 0.6808, IoU.cabinet: 0.6689, IoU.sidewalk: 0.7214, IoU.person: 0.8518, IoU.earth: 0.4178, IoU.door: 0.6091, IoU.table: 0.7090, IoU.mountain: 0.6258, IoU.plant: 0.5500, IoU.curtain: 0.7828, IoU.chair: 0.6649, IoU.car: 0.8746, IoU.water: 0.6391, IoU.painting: 0.8081, IoU.sofa: 0.8347, IoU.shelf: 0.4765, IoU.house: 0.4707, IoU.sea: 0.7354, IoU.mirror: 0.7878, IoU.rug: 0.6287, IoU.field: 0.3157, IoU.armchair: 0.6587, IoU.seat: 0.6885, IoU.fence: 0.5280, IoU.desk: 0.6047, IoU.rock: 0.5515, IoU.wardrobe: 0.5323, IoU.lamp: 0.7445, IoU.bathtub: 0.8444, IoU.railing: 0.4405, IoU.cushion: 0.7150, IoU.base: 0.4283, IoU.box: 0.4076, IoU.column: 0.5821, IoU.signboard: 0.3938, IoU.chest of drawers: 0.4549, IoU.counter: 0.4138, IoU.sand: 0.5782, IoU.sink: 0.7944, IoU.skyscraper: 0.4695, IoU.fireplace: 0.7627, IoU.refrigerator: 0.8697, IoU.grandstand: 0.5746, IoU.path: 0.2811, IoU.stairs: 0.3704, IoU.runway: 0.6805, IoU.case: 0.6187, IoU.pool table: 0.9441, IoU.pillow: 0.6854, IoU.screen door: 0.8031, IoU.stairway: 0.4372, IoU.river: 0.1377, IoU.bridge: 0.7053, IoU.bookcase: 0.4420, IoU.blind: 0.4111, IoU.coffee table: 0.6293, IoU.toilet: 0.9010, IoU.flower: 0.4278, IoU.book: 0.5340, IoU.hill: 0.0792, IoU.bench: 0.5691, IoU.countertop: 0.6361, IoU.stove: 0.8596, IoU.palm: 0.5384, IoU.kitchen island: 0.5315, IoU.computer: 0.7852, IoU.swivel chair: 0.4667, IoU.boat: 0.8000, IoU.bar: 0.5981, IoU.arcade machine: 0.7896, IoU.hovel: 0.3328, IoU.bus: 0.9250, IoU.towel: 0.7506, IoU.light: 0.5774, IoU.truck: 0.5060, IoU.tower: 0.1943, IoU.chandelier: 0.7250, IoU.awning: 0.3446, IoU.streetlight: 0.3198, IoU.booth: 0.5741, IoU.television receiver: 0.7953, IoU.airplane: 0.8621, IoU.dirt track: 0.0686, IoU.apparel: 0.5798, IoU.pole: 0.2650, IoU.land: 0.0423, IoU.bannister: 0.1858, IoU.escalator: 0.6688, IoU.ottoman: 0.5883, IoU.bottle: 0.4442, IoU.buffet: 0.5134, IoU.poster: 0.3160, IoU.stage: 0.2315, IoU.van: 0.5241, IoU.ship: 0.9391, IoU.fountain: 0.3885, IoU.conveyer belt: 0.8185, IoU.canopy: 0.5064, IoU.washer: 0.8524, IoU.plaything: 0.3119, IoU.swimming pool: 0.5305, IoU.stool: 0.4960, IoU.barrel: 0.4764, IoU.basket: 0.4361, IoU.waterfall: 0.6120, IoU.tent: 0.9578, IoU.bag: 0.2711, IoU.minibike: 0.7423, IoU.cradle: 0.8510, IoU.oven: 0.5670, IoU.ball: 0.5854, IoU.food: 0.6334, IoU.step: 0.1028, IoU.tank: 0.6215, IoU.trade name: 0.2565, IoU.microwave: 0.8953, IoU.pot: 0.6032, IoU.animal: 0.5923, IoU.bicycle: 0.6066, IoU.lake: 0.5578, IoU.dishwasher: 0.7181, IoU.screen: 0.5651, IoU.blanket: 0.3237, IoU.sculpture: 0.7444, IoU.hood: 0.6253, IoU.sconce: 0.5911, IoU.vase: 0.4704, IoU.traffic light: 0.3942, IoU.tray: 0.2701, IoU.ashcan: 0.5457, IoU.fan: 0.6880, IoU.pier: 0.3962, IoU.crt screen: 0.0251, IoU.plate: 0.6317, IoU.monitor: 0.6403, IoU.bulletin board: 0.5974, IoU.shower: 0.2344, IoU.radiator: 0.6702, IoU.glass: 0.2148, IoU.clock: 0.5327, IoU.flag: 0.6970, Acc.wall: 0.9048, Acc.building: 0.9371, Acc.sky: 0.9754, Acc.floor: 0.9237, Acc.tree: 0.8888, Acc.ceiling: 0.9412, Acc.road: 0.9141, Acc.bed : 0.9718, Acc.windowpane: 0.8196, Acc.grass: 0.8176, Acc.cabinet: 0.7690, Acc.sidewalk: 0.8613, Acc.person: 0.9404, Acc.earth: 0.5508, Acc.door: 0.7404, Acc.table: 0.8234, Acc.mountain: 0.7395, Acc.plant: 0.6581, Acc.curtain: 0.8854, Acc.chair: 0.7799, Acc.car: 0.9397, Acc.water: 0.7948, Acc.painting: 0.9081, Acc.sofa: 0.9154, Acc.shelf: 0.6244, Acc.house: 0.5724, Acc.sea: 0.8139, Acc.mirror: 0.8702, Acc.rug: 0.7038, Acc.field: 0.5714, Acc.armchair: 0.8300, Acc.seat: 0.8852, Acc.fence: 0.6668, Acc.desk: 0.8023, Acc.rock: 0.8015, Acc.wardrobe: 0.7311, Acc.lamp: 0.8452, Acc.bathtub: 0.8840, Acc.railing: 0.6168, Acc.cushion: 0.7995, Acc.base: 0.5986, Acc.box: 0.5216, Acc.column: 0.6916, Acc.signboard: 0.5409, Acc.chest of drawers: 0.7258, Acc.counter: 0.4734, Acc.sand: 0.8705, Acc.sink: 0.8468, Acc.skyscraper: 0.5941, Acc.fireplace: 0.9351, Acc.refrigerator: 0.9560, Acc.grandstand: 0.8562, Acc.path: 0.3580, Acc.stairs: 0.4526, Acc.runway: 0.8777, Acc.case: 0.8059, Acc.pool table: 0.9804, Acc.pillow: 0.8062, Acc.screen door: 0.8748, Acc.stairway: 0.5886, Acc.river: 0.2854, Acc.bridge: 0.8630, Acc.bookcase: 0.6100, Acc.blind: 0.4719, Acc.coffee table: 0.8551, Acc.toilet: 0.9409, Acc.flower: 0.6217, Acc.book: 0.7867, Acc.hill: 0.1381, Acc.bench: 0.6446, Acc.countertop: 0.8375, Acc.stove: 0.9275, Acc.palm: 0.8194, Acc.kitchen island: 0.7815, Acc.computer: 0.9114, Acc.swivel chair: 0.7005, Acc.boat: 0.9087, Acc.bar: 0.8493, Acc.arcade machine: 0.8236, Acc.hovel: 0.3873, Acc.bus: 0.9721, Acc.towel: 0.8193, Acc.light: 0.6592, Acc.truck: 0.6357, Acc.tower: 0.3266, Acc.chandelier: 0.8446, Acc.awning: 0.4539, Acc.streetlight: 0.4118, Acc.booth: 0.7079, Acc.television receiver: 0.8754, Acc.airplane: 0.9403, Acc.dirt track: 0.2632, Acc.apparel: 0.7450, Acc.pole: 0.3976, Acc.land: 0.0608, Acc.bannister: 0.2304, Acc.escalator: 0.8622, Acc.ottoman: 0.7354, Acc.bottle: 0.7235, Acc.buffet: 0.5690, Acc.poster: 0.3778, Acc.stage: 0.4867, Acc.van: 0.7522, Acc.ship: 0.9857, Acc.fountain: 0.3985, Acc.conveyer belt: 0.9525, Acc.canopy: 0.7044, Acc.washer: 0.9132, Acc.plaything: 0.4671, Acc.swimming pool: 0.7658, Acc.stool: 0.6904, Acc.barrel: 0.7604, Acc.basket: 0.5957, Acc.waterfall: 0.7693, Acc.tent: 0.9849, Acc.bag: 0.3100, Acc.minibike: 0.8846, Acc.cradle: 0.9803, Acc.oven: 0.6688, Acc.ball: 0.6202, Acc.food: 0.7236, Acc.step: 0.1348, Acc.tank: 0.6747, Acc.trade name: 0.3172, Acc.microwave: 0.9667, Acc.pot: 0.7000, Acc.animal: 0.6101, Acc.bicycle: 0.8164, Acc.lake: 0.6361, Acc.dishwasher: 0.8158, Acc.screen: 0.8933, Acc.blanket: 0.3738, Acc.sculpture: 0.8652, Acc.hood: 0.7448, Acc.sconce: 0.6943, Acc.vase: 0.6558, Acc.traffic light: 0.6221, Acc.tray: 0.3482, Acc.ashcan: 0.6885, Acc.fan: 0.8138, Acc.pier: 0.4543, Acc.crt screen: 0.0383, Acc.plate: 0.7788, Acc.monitor: 0.7493, Acc.bulletin board: 0.7971, Acc.shower: 0.2617, Acc.radiator: 0.8094, Acc.glass: 0.2297, Acc.clock: 0.6649, Acc.flag: 0.7854 2024-06-17 09:16:35,438 - mmseg - INFO - Iter [76050/80000] lr: 1.600e-07, eta: 1:54:07, time: 3.271, data_time: 1.669, memory: 65790, decode.loss_ce: 0.1275, decode.acc_seg: 94.1504, aux.loss_ce: 0.0567, aux.acc_seg: 93.6142, loss: 0.1841 2024-06-17 09:17:55,812 - mmseg - INFO - Iter [76100/80000] lr: 1.580e-07, eta: 1:52:40, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1263, decode.acc_seg: 94.2632, aux.loss_ce: 0.0553, aux.acc_seg: 93.7954, loss: 0.1816 2024-06-17 09:19:16,290 - mmseg - INFO - Iter [76150/80000] lr: 1.560e-07, eta: 1:51:13, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1295, decode.acc_seg: 94.1907, aux.loss_ce: 0.0566, aux.acc_seg: 93.7792, loss: 0.1861 2024-06-17 09:20:36,780 - mmseg - INFO - Iter [76200/80000] lr: 1.539e-07, eta: 1:49:46, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1325, decode.acc_seg: 93.9919, aux.loss_ce: 0.0582, aux.acc_seg: 93.4941, loss: 0.1907 2024-06-17 09:21:57,244 - mmseg - INFO - Iter [76250/80000] lr: 1.519e-07, eta: 1:48:19, time: 1.609, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1199, decode.acc_seg: 94.5960, aux.loss_ce: 0.0524, aux.acc_seg: 94.1922, loss: 0.1723 2024-06-17 09:23:17,840 - mmseg - INFO - Iter [76300/80000] lr: 1.499e-07, eta: 1:46:52, time: 1.612, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1248, decode.acc_seg: 94.4318, aux.loss_ce: 0.0547, aux.acc_seg: 93.9650, loss: 0.1795 2024-06-17 09:24:38,309 - mmseg - INFO - Iter [76350/80000] lr: 1.479e-07, eta: 1:45:25, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1273, decode.acc_seg: 94.3011, aux.loss_ce: 0.0560, aux.acc_seg: 93.8112, loss: 0.1833 2024-06-17 09:25:58,803 - mmseg - INFO - Iter [76400/80000] lr: 1.458e-07, eta: 1:43:59, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1230, decode.acc_seg: 94.5140, aux.loss_ce: 0.0538, aux.acc_seg: 94.0394, loss: 0.1768 2024-06-17 09:27:19,342 - mmseg - INFO - Iter [76450/80000] lr: 1.438e-07, eta: 1:42:32, time: 1.611, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1289, decode.acc_seg: 94.0428, aux.loss_ce: 0.0578, aux.acc_seg: 93.4177, loss: 0.1867 2024-06-17 09:28:39,871 - mmseg - INFO - Iter [76500/80000] lr: 1.418e-07, eta: 1:41:05, time: 1.611, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1168, decode.acc_seg: 94.4636, aux.loss_ce: 0.0516, aux.acc_seg: 93.9714, loss: 0.1684 2024-06-17 09:30:00,437 - mmseg - INFO - Iter [76550/80000] lr: 1.398e-07, eta: 1:39:38, time: 1.611, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1298, decode.acc_seg: 94.0560, aux.loss_ce: 0.0573, aux.acc_seg: 93.6035, loss: 0.1871 2024-06-17 09:31:20,867 - mmseg - INFO - Iter [76600/80000] lr: 1.377e-07, eta: 1:38:11, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1243, decode.acc_seg: 94.2418, aux.loss_ce: 0.0545, aux.acc_seg: 93.7838, loss: 0.1788 2024-06-17 09:32:41,362 - mmseg - INFO - Iter [76650/80000] lr: 1.357e-07, eta: 1:36:44, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1355, decode.acc_seg: 93.8441, aux.loss_ce: 0.0595, aux.acc_seg: 93.3939, loss: 0.1950 2024-06-17 09:34:01,866 - mmseg - INFO - Iter [76700/80000] lr: 1.337e-07, eta: 1:35:17, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1244, decode.acc_seg: 94.2403, aux.loss_ce: 0.0544, aux.acc_seg: 93.8394, loss: 0.1788 2024-06-17 09:35:22,458 - mmseg - INFO - Iter [76750/80000] lr: 1.317e-07, eta: 1:33:50, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1249, decode.acc_seg: 94.3058, aux.loss_ce: 0.0552, aux.acc_seg: 93.8088, loss: 0.1801 2024-06-17 09:36:43,086 - mmseg - INFO - Iter [76800/80000] lr: 1.296e-07, eta: 1:32:23, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1217, decode.acc_seg: 94.4824, aux.loss_ce: 0.0533, aux.acc_seg: 94.1089, loss: 0.1750 2024-06-17 09:38:03,706 - mmseg - INFO - Iter [76850/80000] lr: 1.276e-07, eta: 1:30:56, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1311, decode.acc_seg: 94.1229, aux.loss_ce: 0.0572, aux.acc_seg: 93.6724, loss: 0.1883 2024-06-17 09:39:24,129 - mmseg - INFO - Iter [76900/80000] lr: 1.256e-07, eta: 1:29:30, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1230, decode.acc_seg: 94.4190, aux.loss_ce: 0.0543, aux.acc_seg: 93.9321, loss: 0.1773 2024-06-17 09:40:44,577 - mmseg - INFO - Iter [76950/80000] lr: 1.236e-07, eta: 1:28:03, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1307, decode.acc_seg: 93.9592, aux.loss_ce: 0.0571, aux.acc_seg: 93.5170, loss: 0.1878 2024-06-17 09:42:05,092 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 09:42:05,093 - mmseg - INFO - Iter [77000/80000] lr: 1.215e-07, eta: 1:26:36, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1262, decode.acc_seg: 94.3086, aux.loss_ce: 0.0558, aux.acc_seg: 93.8514, loss: 0.1820 2024-06-17 09:43:27,066 - mmseg - INFO - per class results: 2024-06-17 09:43:27,072 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.68 | 90.39 | | building | 84.84 | 93.24 | | sky | 94.88 | 97.72 | | floor | 84.34 | 92.11 | | tree | 77.53 | 89.59 | | ceiling | 87.68 | 94.19 | | road | 86.2 | 91.35 | | bed | 92.07 | 96.98 | | windowpane | 66.8 | 82.89 | | grass | 68.14 | 81.39 | | cabinet | 67.39 | 77.21 | | sidewalk | 72.01 | 85.78 | | person | 85.13 | 94.02 | | earth | 42.08 | 56.98 | | door | 60.93 | 73.47 | | table | 71.33 | 82.19 | | mountain | 62.61 | 73.34 | | plant | 55.29 | 66.73 | | curtain | 78.28 | 88.04 | | chair | 66.22 | 77.45 | | car | 87.41 | 93.94 | | water | 64.08 | 79.37 | | painting | 80.22 | 90.68 | | sofa | 83.62 | 92.11 | | shelf | 47.71 | 63.01 | | house | 49.1 | 62.18 | | sea | 73.74 | 81.6 | | mirror | 78.48 | 86.12 | | rug | 63.25 | 72.74 | | field | 31.12 | 54.46 | | armchair | 66.21 | 83.01 | | seat | 67.78 | 88.8 | | fence | 52.74 | 65.68 | | desk | 60.75 | 78.77 | | rock | 56.04 | 82.33 | | wardrobe | 54.1 | 73.46 | | lamp | 74.25 | 84.81 | | bathtub | 84.35 | 87.93 | | railing | 43.26 | 59.8 | | cushion | 71.5 | 80.72 | | base | 42.94 | 59.45 | | box | 40.12 | 50.29 | | column | 57.23 | 71.02 | | signboard | 39.19 | 53.05 | | chest of drawers | 43.02 | 66.42 | | counter | 40.59 | 46.31 | | sand | 58.46 | 86.93 | | sink | 79.25 | 84.46 | | skyscraper | 46.79 | 59.09 | | fireplace | 76.86 | 93.75 | | refrigerator | 87.33 | 95.44 | | grandstand | 55.91 | 85.97 | | path | 28.59 | 36.8 | | stairs | 34.36 | 41.81 | | runway | 67.97 | 87.5 | | case | 61.04 | 81.17 | | pool table | 94.45 | 98.05 | | pillow | 68.56 | 79.66 | | screen door | 80.22 | 86.19 | | stairway | 44.25 | 61.55 | | river | 13.67 | 28.49 | | bridge | 71.6 | 86.86 | | bookcase | 44.13 | 62.19 | | blind | 40.05 | 45.71 | | coffee table | 64.53 | 84.42 | | toilet | 90.12 | 94.03 | | flower | 44.0 | 59.35 | | book | 53.16 | 77.6 | | hill | 8.08 | 13.38 | | bench | 57.66 | 65.25 | | countertop | 63.61 | 83.63 | | stove | 86.08 | 92.15 | | palm | 53.44 | 79.44 | | kitchen island | 52.34 | 78.82 | | computer | 78.52 | 91.14 | | swivel chair | 46.55 | 70.46 | | boat | 79.73 | 91.2 | | bar | 60.41 | 85.99 | | arcade machine | 80.23 | 83.47 | | hovel | 33.28 | 38.52 | | bus | 92.63 | 97.14 | | towel | 75.16 | 81.55 | | light | 58.09 | 66.49 | | truck | 50.44 | 62.97 | | tower | 29.97 | 54.32 | | chandelier | 71.47 | 82.0 | | awning | 34.26 | 45.62 | | streetlight | 32.53 | 42.8 | | booth | 58.6 | 70.9 | | television receiver | 79.88 | 86.04 | | airplane | 86.31 | 93.92 | | dirt track | 6.25 | 27.17 | | apparel | 60.33 | 74.64 | | pole | 26.45 | 40.99 | | land | 3.65 | 5.12 | | bannister | 19.48 | 24.54 | | escalator | 66.47 | 86.34 | | ottoman | 58.28 | 75.53 | | bottle | 44.51 | 73.39 | | buffet | 57.36 | 63.8 | | poster | 31.74 | 40.33 | | stage | 23.71 | 48.5 | | van | 51.79 | 73.22 | | ship | 94.13 | 98.51 | | fountain | 39.14 | 39.95 | | conveyer belt | 81.04 | 95.41 | | canopy | 51.18 | 71.08 | | washer | 85.45 | 91.32 | | plaything | 31.27 | 45.14 | | swimming pool | 53.34 | 77.11 | | stool | 48.77 | 70.01 | | barrel | 47.05 | 82.75 | | basket | 44.01 | 59.47 | | waterfall | 65.13 | 83.01 | | tent | 95.73 | 98.41 | | bag | 27.12 | 31.05 | | minibike | 74.11 | 88.93 | | cradle | 84.87 | 98.09 | | oven | 59.43 | 70.81 | | ball | 59.66 | 63.74 | | food | 62.69 | 71.91 | | step | 9.69 | 12.53 | | tank | 62.08 | 67.98 | | trade name | 24.77 | 29.67 | | microwave | 90.3 | 96.51 | | pot | 60.97 | 70.82 | | animal | 59.67 | 61.38 | | bicycle | 60.33 | 82.07 | | lake | 55.85 | 63.6 | | dishwasher | 71.92 | 81.59 | | screen | 57.57 | 90.98 | | blanket | 32.5 | 36.99 | | sculpture | 74.59 | 86.7 | | hood | 62.69 | 74.81 | | sconce | 58.34 | 67.9 | | vase | 47.42 | 65.01 | | traffic light | 39.83 | 58.21 | | tray | 26.4 | 33.92 | | ashcan | 55.09 | 67.91 | | fan | 68.71 | 81.44 | | pier | 39.43 | 44.87 | | crt screen | 2.61 | 3.7 | | plate | 62.85 | 78.53 | | monitor | 67.93 | 78.96 | | bulletin board | 58.85 | 78.91 | | shower | 22.95 | 25.08 | | radiator | 67.03 | 80.02 | | glass | 21.01 | 22.38 | | clock | 52.2 | 65.42 | | flag | 69.75 | 78.31 | +---------------------+-------+-------+ 2024-06-17 09:43:27,072 - mmseg - INFO - Summary: 2024-06-17 09:43:27,072 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 86.32 | 58.34 | 70.83 | +-------+-------+-------+ 2024-06-17 09:43:27,073 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 09:43:27,073 - mmseg - INFO - Iter(val) [250] aAcc: 0.8632, mIoU: 0.5834, mAcc: 0.7083, IoU.wall: 0.8268, IoU.building: 0.8484, IoU.sky: 0.9488, IoU.floor: 0.8434, IoU.tree: 0.7753, IoU.ceiling: 0.8768, IoU.road: 0.8620, IoU.bed : 0.9207, IoU.windowpane: 0.6680, IoU.grass: 0.6814, IoU.cabinet: 0.6739, IoU.sidewalk: 0.7201, IoU.person: 0.8513, IoU.earth: 0.4208, IoU.door: 0.6093, IoU.table: 0.7133, IoU.mountain: 0.6261, IoU.plant: 0.5529, IoU.curtain: 0.7828, IoU.chair: 0.6622, IoU.car: 0.8741, IoU.water: 0.6408, IoU.painting: 0.8022, IoU.sofa: 0.8362, IoU.shelf: 0.4771, IoU.house: 0.4910, IoU.sea: 0.7374, IoU.mirror: 0.7848, IoU.rug: 0.6325, IoU.field: 0.3112, IoU.armchair: 0.6621, IoU.seat: 0.6778, IoU.fence: 0.5274, IoU.desk: 0.6075, IoU.rock: 0.5604, IoU.wardrobe: 0.5410, IoU.lamp: 0.7425, IoU.bathtub: 0.8435, IoU.railing: 0.4326, IoU.cushion: 0.7150, IoU.base: 0.4294, IoU.box: 0.4012, IoU.column: 0.5723, IoU.signboard: 0.3919, IoU.chest of drawers: 0.4302, IoU.counter: 0.4059, IoU.sand: 0.5846, IoU.sink: 0.7925, IoU.skyscraper: 0.4679, IoU.fireplace: 0.7686, IoU.refrigerator: 0.8733, IoU.grandstand: 0.5591, IoU.path: 0.2859, IoU.stairs: 0.3436, IoU.runway: 0.6797, IoU.case: 0.6104, IoU.pool table: 0.9445, IoU.pillow: 0.6856, IoU.screen door: 0.8022, IoU.stairway: 0.4425, IoU.river: 0.1367, IoU.bridge: 0.7160, IoU.bookcase: 0.4413, IoU.blind: 0.4005, IoU.coffee table: 0.6453, IoU.toilet: 0.9012, IoU.flower: 0.4400, IoU.book: 0.5316, IoU.hill: 0.0808, IoU.bench: 0.5766, IoU.countertop: 0.6361, IoU.stove: 0.8608, IoU.palm: 0.5344, IoU.kitchen island: 0.5234, IoU.computer: 0.7852, IoU.swivel chair: 0.4655, IoU.boat: 0.7973, IoU.bar: 0.6041, IoU.arcade machine: 0.8023, IoU.hovel: 0.3328, IoU.bus: 0.9263, IoU.towel: 0.7516, IoU.light: 0.5809, IoU.truck: 0.5044, IoU.tower: 0.2997, IoU.chandelier: 0.7147, IoU.awning: 0.3426, IoU.streetlight: 0.3253, IoU.booth: 0.5860, IoU.television receiver: 0.7988, IoU.airplane: 0.8631, IoU.dirt track: 0.0625, IoU.apparel: 0.6033, IoU.pole: 0.2645, IoU.land: 0.0365, IoU.bannister: 0.1948, IoU.escalator: 0.6647, IoU.ottoman: 0.5828, IoU.bottle: 0.4451, IoU.buffet: 0.5736, IoU.poster: 0.3174, IoU.stage: 0.2371, IoU.van: 0.5179, IoU.ship: 0.9413, IoU.fountain: 0.3914, IoU.conveyer belt: 0.8104, IoU.canopy: 0.5118, IoU.washer: 0.8545, IoU.plaything: 0.3127, IoU.swimming pool: 0.5334, IoU.stool: 0.4877, IoU.barrel: 0.4705, IoU.basket: 0.4401, IoU.waterfall: 0.6513, IoU.tent: 0.9573, IoU.bag: 0.2712, IoU.minibike: 0.7411, IoU.cradle: 0.8487, IoU.oven: 0.5943, IoU.ball: 0.5966, IoU.food: 0.6269, IoU.step: 0.0969, IoU.tank: 0.6208, IoU.trade name: 0.2477, IoU.microwave: 0.9030, IoU.pot: 0.6097, IoU.animal: 0.5967, IoU.bicycle: 0.6033, IoU.lake: 0.5585, IoU.dishwasher: 0.7192, IoU.screen: 0.5757, IoU.blanket: 0.3250, IoU.sculpture: 0.7459, IoU.hood: 0.6269, IoU.sconce: 0.5834, IoU.vase: 0.4742, IoU.traffic light: 0.3983, IoU.tray: 0.2640, IoU.ashcan: 0.5509, IoU.fan: 0.6871, IoU.pier: 0.3943, IoU.crt screen: 0.0261, IoU.plate: 0.6285, IoU.monitor: 0.6793, IoU.bulletin board: 0.5885, IoU.shower: 0.2295, IoU.radiator: 0.6703, IoU.glass: 0.2101, IoU.clock: 0.5220, IoU.flag: 0.6975, Acc.wall: 0.9039, Acc.building: 0.9324, Acc.sky: 0.9772, Acc.floor: 0.9211, Acc.tree: 0.8959, Acc.ceiling: 0.9419, Acc.road: 0.9135, Acc.bed : 0.9698, Acc.windowpane: 0.8289, Acc.grass: 0.8139, Acc.cabinet: 0.7721, Acc.sidewalk: 0.8578, Acc.person: 0.9402, Acc.earth: 0.5698, Acc.door: 0.7347, Acc.table: 0.8219, Acc.mountain: 0.7334, Acc.plant: 0.6673, Acc.curtain: 0.8804, Acc.chair: 0.7745, Acc.car: 0.9394, Acc.water: 0.7937, Acc.painting: 0.9068, Acc.sofa: 0.9211, Acc.shelf: 0.6301, Acc.house: 0.6218, Acc.sea: 0.8160, Acc.mirror: 0.8612, Acc.rug: 0.7274, Acc.field: 0.5446, Acc.armchair: 0.8301, Acc.seat: 0.8880, Acc.fence: 0.6568, Acc.desk: 0.7877, Acc.rock: 0.8233, Acc.wardrobe: 0.7346, Acc.lamp: 0.8481, Acc.bathtub: 0.8793, Acc.railing: 0.5980, Acc.cushion: 0.8072, Acc.base: 0.5945, Acc.box: 0.5029, Acc.column: 0.7102, Acc.signboard: 0.5305, Acc.chest of drawers: 0.6642, Acc.counter: 0.4631, Acc.sand: 0.8693, Acc.sink: 0.8446, Acc.skyscraper: 0.5909, Acc.fireplace: 0.9375, Acc.refrigerator: 0.9544, Acc.grandstand: 0.8597, Acc.path: 0.3680, Acc.stairs: 0.4181, Acc.runway: 0.8750, Acc.case: 0.8117, Acc.pool table: 0.9805, Acc.pillow: 0.7966, Acc.screen door: 0.8619, Acc.stairway: 0.6155, Acc.river: 0.2849, Acc.bridge: 0.8686, Acc.bookcase: 0.6219, Acc.blind: 0.4571, Acc.coffee table: 0.8442, Acc.toilet: 0.9403, Acc.flower: 0.5935, Acc.book: 0.7760, Acc.hill: 0.1338, Acc.bench: 0.6525, Acc.countertop: 0.8363, Acc.stove: 0.9215, Acc.palm: 0.7944, Acc.kitchen island: 0.7882, Acc.computer: 0.9114, Acc.swivel chair: 0.7046, Acc.boat: 0.9120, Acc.bar: 0.8599, Acc.arcade machine: 0.8347, Acc.hovel: 0.3852, Acc.bus: 0.9714, Acc.towel: 0.8155, Acc.light: 0.6649, Acc.truck: 0.6297, Acc.tower: 0.5432, Acc.chandelier: 0.8200, Acc.awning: 0.4562, Acc.streetlight: 0.4280, Acc.booth: 0.7090, Acc.television receiver: 0.8604, Acc.airplane: 0.9392, Acc.dirt track: 0.2717, Acc.apparel: 0.7464, Acc.pole: 0.4099, Acc.land: 0.0512, Acc.bannister: 0.2454, Acc.escalator: 0.8634, Acc.ottoman: 0.7553, Acc.bottle: 0.7339, Acc.buffet: 0.6380, Acc.poster: 0.4033, Acc.stage: 0.4850, Acc.van: 0.7322, Acc.ship: 0.9851, Acc.fountain: 0.3995, Acc.conveyer belt: 0.9541, Acc.canopy: 0.7108, Acc.washer: 0.9132, Acc.plaything: 0.4514, Acc.swimming pool: 0.7711, Acc.stool: 0.7001, Acc.barrel: 0.8275, Acc.basket: 0.5947, Acc.waterfall: 0.8301, Acc.tent: 0.9841, Acc.bag: 0.3105, Acc.minibike: 0.8893, Acc.cradle: 0.9809, Acc.oven: 0.7081, Acc.ball: 0.6374, Acc.food: 0.7191, Acc.step: 0.1253, Acc.tank: 0.6798, Acc.trade name: 0.2967, Acc.microwave: 0.9651, Acc.pot: 0.7082, Acc.animal: 0.6138, Acc.bicycle: 0.8207, Acc.lake: 0.6360, Acc.dishwasher: 0.8159, Acc.screen: 0.9098, Acc.blanket: 0.3699, Acc.sculpture: 0.8670, Acc.hood: 0.7481, Acc.sconce: 0.6790, Acc.vase: 0.6501, Acc.traffic light: 0.5821, Acc.tray: 0.3392, Acc.ashcan: 0.6791, Acc.fan: 0.8144, Acc.pier: 0.4487, Acc.crt screen: 0.0370, Acc.plate: 0.7853, Acc.monitor: 0.7896, Acc.bulletin board: 0.7891, Acc.shower: 0.2508, Acc.radiator: 0.8002, Acc.glass: 0.2238, Acc.clock: 0.6542, Acc.flag: 0.7831 2024-06-17 09:44:50,528 - mmseg - INFO - Iter [77050/80000] lr: 1.195e-07, eta: 1:25:12, time: 3.309, data_time: 1.701, memory: 65790, decode.loss_ce: 0.1271, decode.acc_seg: 94.2416, aux.loss_ce: 0.0565, aux.acc_seg: 93.7801, loss: 0.1836 2024-06-17 09:46:10,937 - mmseg - INFO - Iter [77100/80000] lr: 1.175e-07, eta: 1:23:45, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1241, decode.acc_seg: 94.2368, aux.loss_ce: 0.0554, aux.acc_seg: 93.7540, loss: 0.1794 2024-06-17 09:47:31,449 - mmseg - INFO - Iter [77150/80000] lr: 1.155e-07, eta: 1:22:18, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1218, decode.acc_seg: 94.3450, aux.loss_ce: 0.0544, aux.acc_seg: 93.8054, loss: 0.1762 2024-06-17 09:48:51,895 - mmseg - INFO - Iter [77200/80000] lr: 1.134e-07, eta: 1:20:52, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1233, decode.acc_seg: 94.3442, aux.loss_ce: 0.0545, aux.acc_seg: 93.8796, loss: 0.1779 2024-06-17 09:50:12,268 - mmseg - INFO - Iter [77250/80000] lr: 1.114e-07, eta: 1:19:25, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1260, decode.acc_seg: 94.2008, aux.loss_ce: 0.0558, aux.acc_seg: 93.7885, loss: 0.1818 2024-06-17 09:51:32,884 - mmseg - INFO - Iter [77300/80000] lr: 1.094e-07, eta: 1:17:58, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1234, decode.acc_seg: 94.3137, aux.loss_ce: 0.0540, aux.acc_seg: 93.8975, loss: 0.1774 2024-06-17 09:52:53,461 - mmseg - INFO - Iter [77350/80000] lr: 1.074e-07, eta: 1:16:31, time: 1.612, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1251, decode.acc_seg: 94.2551, aux.loss_ce: 0.0549, aux.acc_seg: 93.8337, loss: 0.1800 2024-06-17 09:54:13,846 - mmseg - INFO - Iter [77400/80000] lr: 1.053e-07, eta: 1:15:04, time: 1.608, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1240, decode.acc_seg: 94.2356, aux.loss_ce: 0.0545, aux.acc_seg: 93.7755, loss: 0.1785 2024-06-17 09:55:34,335 - mmseg - INFO - Iter [77450/80000] lr: 1.033e-07, eta: 1:13:37, time: 1.610, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1339, decode.acc_seg: 93.9481, aux.loss_ce: 0.0587, aux.acc_seg: 93.4705, loss: 0.1926 2024-06-17 09:56:54,743 - mmseg - INFO - Iter [77500/80000] lr: 1.013e-07, eta: 1:12:11, time: 1.608, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1238, decode.acc_seg: 94.2877, aux.loss_ce: 0.0546, aux.acc_seg: 93.8081, loss: 0.1783 2024-06-17 09:58:15,250 - mmseg - INFO - Iter [77550/80000] lr: 9.926e-08, eta: 1:10:44, time: 1.610, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1315, decode.acc_seg: 94.0101, aux.loss_ce: 0.0576, aux.acc_seg: 93.5272, loss: 0.1891 2024-06-17 09:59:35,675 - mmseg - INFO - Iter [77600/80000] lr: 9.723e-08, eta: 1:09:17, time: 1.608, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1259, decode.acc_seg: 94.1169, aux.loss_ce: 0.0552, aux.acc_seg: 93.6466, loss: 0.1812 2024-06-17 10:00:56,371 - mmseg - INFO - Iter [77650/80000] lr: 9.521e-08, eta: 1:07:50, time: 1.614, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1201, decode.acc_seg: 94.4981, aux.loss_ce: 0.0536, aux.acc_seg: 93.9732, loss: 0.1737 2024-06-17 10:02:16,796 - mmseg - INFO - Iter [77700/80000] lr: 9.318e-08, eta: 1:06:23, time: 1.608, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1176, decode.acc_seg: 94.7031, aux.loss_ce: 0.0519, aux.acc_seg: 94.2818, loss: 0.1695 2024-06-17 10:03:37,337 - mmseg - INFO - Iter [77750/80000] lr: 9.116e-08, eta: 1:04:57, time: 1.611, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1294, decode.acc_seg: 94.0503, aux.loss_ce: 0.0573, aux.acc_seg: 93.5408, loss: 0.1867 2024-06-17 10:04:57,877 - mmseg - INFO - Iter [77800/80000] lr: 8.913e-08, eta: 1:03:30, time: 1.611, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1205, decode.acc_seg: 94.3921, aux.loss_ce: 0.0531, aux.acc_seg: 93.9296, loss: 0.1736 2024-06-17 10:06:18,350 - mmseg - INFO - Iter [77850/80000] lr: 8.711e-08, eta: 1:02:03, time: 1.609, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1272, decode.acc_seg: 94.1845, aux.loss_ce: 0.0560, aux.acc_seg: 93.7554, loss: 0.1832 2024-06-17 10:07:38,774 - mmseg - INFO - Iter [77900/80000] lr: 8.508e-08, eta: 1:00:36, time: 1.608, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1237, decode.acc_seg: 94.3298, aux.loss_ce: 0.0545, aux.acc_seg: 93.9151, loss: 0.1782 2024-06-17 10:08:59,318 - mmseg - INFO - Iter [77950/80000] lr: 8.306e-08, eta: 0:59:10, time: 1.611, data_time: 0.008, memory: 65790, decode.loss_ce: 0.1273, decode.acc_seg: 94.1628, aux.loss_ce: 0.0560, aux.acc_seg: 93.7480, loss: 0.1833 2024-06-17 10:10:19,760 - mmseg - INFO - Saving checkpoint at 78000 iterations 2024-06-17 10:11:32,272 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 10:11:32,272 - mmseg - INFO - Iter [78000/80000] lr: 8.104e-08, eta: 0:57:45, time: 3.059, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1208, decode.acc_seg: 94.3456, aux.loss_ce: 0.0535, aux.acc_seg: 93.8087, loss: 0.1743 2024-06-17 10:12:55,555 - mmseg - INFO - per class results: 2024-06-17 10:12:55,561 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.68 | 90.49 | | building | 84.94 | 93.24 | | sky | 94.92 | 97.62 | | floor | 84.32 | 92.26 | | tree | 77.78 | 89.46 | | ceiling | 87.7 | 94.28 | | road | 86.13 | 91.01 | | bed | 92.16 | 96.84 | | windowpane | 66.69 | 82.29 | | grass | 68.15 | 81.13 | | cabinet | 66.9 | 76.85 | | sidewalk | 71.85 | 85.89 | | person | 85.12 | 94.1 | | earth | 42.1 | 56.97 | | door | 60.7 | 73.86 | | table | 70.74 | 81.08 | | mountain | 62.82 | 72.59 | | plant | 55.88 | 68.09 | | curtain | 78.15 | 88.08 | | chair | 66.44 | 77.61 | | car | 87.45 | 93.97 | | water | 64.16 | 80.03 | | painting | 80.32 | 90.27 | | sofa | 83.7 | 92.3 | | shelf | 47.37 | 62.54 | | house | 49.26 | 63.86 | | sea | 73.76 | 81.18 | | mirror | 78.62 | 86.62 | | rug | 61.89 | 70.53 | | field | 31.2 | 54.83 | | armchair | 66.51 | 82.76 | | seat | 67.59 | 88.8 | | fence | 52.48 | 66.26 | | desk | 60.91 | 78.83 | | rock | 56.05 | 82.83 | | wardrobe | 53.6 | 73.8 | | lamp | 74.47 | 85.0 | | bathtub | 84.51 | 88.18 | | railing | 43.9 | 62.2 | | cushion | 71.5 | 82.06 | | base | 43.36 | 59.37 | | box | 40.17 | 50.46 | | column | 57.49 | 69.52 | | signboard | 39.09 | 52.59 | | chest of drawers | 43.31 | 66.48 | | counter | 42.95 | 49.33 | | sand | 58.44 | 86.75 | | sink | 79.61 | 84.93 | | skyscraper | 46.81 | 59.04 | | fireplace | 76.71 | 93.8 | | refrigerator | 87.27 | 95.39 | | grandstand | 51.38 | 85.37 | | path | 29.11 | 37.24 | | stairs | 35.29 | 43.16 | | runway | 68.41 | 88.23 | | case | 60.67 | 81.51 | | pool table | 94.36 | 98.14 | | pillow | 67.46 | 77.73 | | screen door | 79.7 | 84.25 | | stairway | 49.53 | 61.46 | | river | 13.49 | 27.91 | | bridge | 71.99 | 88.44 | | bookcase | 43.48 | 62.07 | | blind | 40.39 | 44.38 | | coffee table | 62.67 | 85.21 | | toilet | 90.11 | 94.11 | | flower | 44.53 | 60.79 | | book | 52.99 | 78.62 | | hill | 8.22 | 14.16 | | bench | 57.59 | 65.29 | | countertop | 63.32 | 84.44 | | stove | 86.17 | 92.3 | | palm | 53.76 | 80.08 | | kitchen island | 51.62 | 80.5 | | computer | 78.63 | 90.95 | | swivel chair | 46.58 | 70.08 | | boat | 79.88 | 90.88 | | bar | 60.25 | 84.76 | | arcade machine | 80.7 | 84.2 | | hovel | 33.39 | 39.17 | | bus | 92.57 | 97.2 | | towel | 75.7 | 82.71 | | light | 57.82 | 65.32 | | truck | 50.68 | 63.13 | | tower | 29.08 | 51.74 | | chandelier | 72.55 | 84.48 | | awning | 33.88 | 43.72 | | streetlight | 32.19 | 41.46 | | booth | 58.3 | 71.97 | | television receiver | 80.09 | 86.59 | | airplane | 86.75 | 94.44 | | dirt track | 6.45 | 28.08 | | apparel | 60.16 | 76.11 | | pole | 25.38 | 37.85 | | land | 3.91 | 5.82 | | bannister | 18.68 | 23.06 | | escalator | 66.82 | 86.22 | | ottoman | 58.87 | 74.66 | | bottle | 44.73 | 72.13 | | buffet | 56.52 | 62.92 | | poster | 31.3 | 40.6 | | stage | 23.56 | 48.61 | | van | 52.02 | 73.41 | | ship | 94.05 | 98.26 | | fountain | 38.88 | 39.7 | | conveyer belt | 81.23 | 95.42 | | canopy | 51.78 | 72.39 | | washer | 85.15 | 91.0 | | plaything | 31.76 | 45.69 | | swimming pool | 53.3 | 77.02 | | stool | 49.2 | 69.43 | | barrel | 48.42 | 80.25 | | basket | 43.92 | 60.48 | | waterfall | 63.31 | 78.91 | | tent | 95.61 | 98.41 | | bag | 27.88 | 32.24 | | minibike | 74.13 | 88.82 | | cradle | 84.95 | 98.09 | | oven | 60.88 | 72.13 | | ball | 61.58 | 66.7 | | food | 62.37 | 70.83 | | step | 9.49 | 12.36 | | tank | 62.1 | 68.2 | | trade name | 24.41 | 29.07 | | microwave | 90.64 | 96.48 | | pot | 60.73 | 70.33 | | animal | 60.65 | 62.69 | | bicycle | 60.53 | 82.63 | | lake | 55.86 | 63.59 | | dishwasher | 71.88 | 81.38 | | screen | 58.84 | 92.95 | | blanket | 33.49 | 38.72 | | sculpture | 74.71 | 86.56 | | hood | 62.64 | 74.79 | | sconce | 58.49 | 67.77 | | vase | 47.3 | 64.87 | | traffic light | 39.79 | 61.32 | | tray | 26.3 | 34.04 | | ashcan | 54.17 | 69.56 | | fan | 68.78 | 81.71 | | pier | 39.61 | 45.08 | | crt screen | 2.68 | 3.65 | | plate | 62.82 | 78.23 | | monitor | 67.15 | 78.68 | | bulletin board | 59.1 | 76.7 | | shower | 22.76 | 24.98 | | radiator | 66.85 | 79.3 | | glass | 21.38 | 22.88 | | clock | 52.59 | 66.54 | | flag | 69.42 | 78.36 | +---------------------+-------+-------+ 2024-06-17 10:12:55,561 - mmseg - INFO - Summary: 2024-06-17 10:12:55,561 - mmseg - INFO - +-------+-------+------+ | aAcc | mIoU | mAcc | +-------+-------+------+ | 86.33 | 58.39 | 70.9 | +-------+-------+------+ 2024-06-17 10:12:55,562 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 10:12:55,563 - mmseg - INFO - Iter(val) [250] aAcc: 0.8633, mIoU: 0.5839, mAcc: 0.7090, IoU.wall: 0.8268, IoU.building: 0.8494, IoU.sky: 0.9492, IoU.floor: 0.8432, IoU.tree: 0.7778, IoU.ceiling: 0.8770, IoU.road: 0.8613, IoU.bed : 0.9216, IoU.windowpane: 0.6669, IoU.grass: 0.6815, IoU.cabinet: 0.6690, IoU.sidewalk: 0.7185, IoU.person: 0.8512, IoU.earth: 0.4210, IoU.door: 0.6070, IoU.table: 0.7074, IoU.mountain: 0.6282, IoU.plant: 0.5588, IoU.curtain: 0.7815, IoU.chair: 0.6644, IoU.car: 0.8745, IoU.water: 0.6416, IoU.painting: 0.8032, IoU.sofa: 0.8370, IoU.shelf: 0.4737, IoU.house: 0.4926, IoU.sea: 0.7376, IoU.mirror: 0.7862, IoU.rug: 0.6189, IoU.field: 0.3120, IoU.armchair: 0.6651, IoU.seat: 0.6759, IoU.fence: 0.5248, IoU.desk: 0.6091, IoU.rock: 0.5605, IoU.wardrobe: 0.5360, IoU.lamp: 0.7447, IoU.bathtub: 0.8451, IoU.railing: 0.4390, IoU.cushion: 0.7150, IoU.base: 0.4336, IoU.box: 0.4017, IoU.column: 0.5749, IoU.signboard: 0.3909, IoU.chest of drawers: 0.4331, IoU.counter: 0.4295, IoU.sand: 0.5844, IoU.sink: 0.7961, IoU.skyscraper: 0.4681, IoU.fireplace: 0.7671, IoU.refrigerator: 0.8727, IoU.grandstand: 0.5138, IoU.path: 0.2911, IoU.stairs: 0.3529, IoU.runway: 0.6841, IoU.case: 0.6067, IoU.pool table: 0.9436, IoU.pillow: 0.6746, IoU.screen door: 0.7970, IoU.stairway: 0.4953, IoU.river: 0.1349, IoU.bridge: 0.7199, IoU.bookcase: 0.4348, IoU.blind: 0.4039, IoU.coffee table: 0.6267, IoU.toilet: 0.9011, IoU.flower: 0.4453, IoU.book: 0.5299, IoU.hill: 0.0822, IoU.bench: 0.5759, IoU.countertop: 0.6332, IoU.stove: 0.8617, IoU.palm: 0.5376, IoU.kitchen island: 0.5162, IoU.computer: 0.7863, IoU.swivel chair: 0.4658, IoU.boat: 0.7988, IoU.bar: 0.6025, IoU.arcade machine: 0.8070, IoU.hovel: 0.3339, IoU.bus: 0.9257, IoU.towel: 0.7570, IoU.light: 0.5782, IoU.truck: 0.5068, IoU.tower: 0.2908, IoU.chandelier: 0.7255, IoU.awning: 0.3388, IoU.streetlight: 0.3219, IoU.booth: 0.5830, IoU.television receiver: 0.8009, IoU.airplane: 0.8675, IoU.dirt track: 0.0645, IoU.apparel: 0.6016, IoU.pole: 0.2538, IoU.land: 0.0391, IoU.bannister: 0.1868, IoU.escalator: 0.6682, IoU.ottoman: 0.5887, IoU.bottle: 0.4473, IoU.buffet: 0.5652, IoU.poster: 0.3130, IoU.stage: 0.2356, IoU.van: 0.5202, IoU.ship: 0.9405, IoU.fountain: 0.3888, IoU.conveyer belt: 0.8123, IoU.canopy: 0.5178, IoU.washer: 0.8515, IoU.plaything: 0.3176, IoU.swimming pool: 0.5330, IoU.stool: 0.4920, IoU.barrel: 0.4842, IoU.basket: 0.4392, IoU.waterfall: 0.6331, IoU.tent: 0.9561, IoU.bag: 0.2788, IoU.minibike: 0.7413, IoU.cradle: 0.8495, IoU.oven: 0.6088, IoU.ball: 0.6158, IoU.food: 0.6237, IoU.step: 0.0949, IoU.tank: 0.6210, IoU.trade name: 0.2441, IoU.microwave: 0.9064, IoU.pot: 0.6073, IoU.animal: 0.6065, IoU.bicycle: 0.6053, IoU.lake: 0.5586, IoU.dishwasher: 0.7188, IoU.screen: 0.5884, IoU.blanket: 0.3349, IoU.sculpture: 0.7471, IoU.hood: 0.6264, IoU.sconce: 0.5849, IoU.vase: 0.4730, IoU.traffic light: 0.3979, IoU.tray: 0.2630, IoU.ashcan: 0.5417, IoU.fan: 0.6878, IoU.pier: 0.3961, IoU.crt screen: 0.0268, IoU.plate: 0.6282, IoU.monitor: 0.6715, IoU.bulletin board: 0.5910, IoU.shower: 0.2276, IoU.radiator: 0.6685, IoU.glass: 0.2138, IoU.clock: 0.5259, IoU.flag: 0.6942, Acc.wall: 0.9049, Acc.building: 0.9324, Acc.sky: 0.9762, Acc.floor: 0.9226, Acc.tree: 0.8946, Acc.ceiling: 0.9428, Acc.road: 0.9101, Acc.bed : 0.9684, Acc.windowpane: 0.8229, Acc.grass: 0.8113, Acc.cabinet: 0.7685, Acc.sidewalk: 0.8589, Acc.person: 0.9410, Acc.earth: 0.5697, Acc.door: 0.7386, Acc.table: 0.8108, Acc.mountain: 0.7259, Acc.plant: 0.6809, Acc.curtain: 0.8808, Acc.chair: 0.7761, Acc.car: 0.9397, Acc.water: 0.8003, Acc.painting: 0.9027, Acc.sofa: 0.9230, Acc.shelf: 0.6254, Acc.house: 0.6386, Acc.sea: 0.8118, Acc.mirror: 0.8662, Acc.rug: 0.7053, Acc.field: 0.5483, Acc.armchair: 0.8276, Acc.seat: 0.8880, Acc.fence: 0.6626, Acc.desk: 0.7883, Acc.rock: 0.8283, Acc.wardrobe: 0.7380, Acc.lamp: 0.8500, Acc.bathtub: 0.8818, Acc.railing: 0.6220, Acc.cushion: 0.8206, Acc.base: 0.5937, Acc.box: 0.5046, Acc.column: 0.6952, Acc.signboard: 0.5259, Acc.chest of drawers: 0.6648, Acc.counter: 0.4933, Acc.sand: 0.8675, Acc.sink: 0.8493, Acc.skyscraper: 0.5904, Acc.fireplace: 0.9380, Acc.refrigerator: 0.9539, Acc.grandstand: 0.8537, Acc.path: 0.3724, Acc.stairs: 0.4316, Acc.runway: 0.8823, Acc.case: 0.8151, Acc.pool table: 0.9814, Acc.pillow: 0.7773, Acc.screen door: 0.8425, Acc.stairway: 0.6146, Acc.river: 0.2791, Acc.bridge: 0.8844, Acc.bookcase: 0.6207, Acc.blind: 0.4438, Acc.coffee table: 0.8521, Acc.toilet: 0.9411, Acc.flower: 0.6079, Acc.book: 0.7862, Acc.hill: 0.1416, Acc.bench: 0.6529, Acc.countertop: 0.8444, Acc.stove: 0.9230, Acc.palm: 0.8008, Acc.kitchen island: 0.8050, Acc.computer: 0.9095, Acc.swivel chair: 0.7008, Acc.boat: 0.9088, Acc.bar: 0.8476, Acc.arcade machine: 0.8420, Acc.hovel: 0.3917, Acc.bus: 0.9720, Acc.towel: 0.8271, Acc.light: 0.6532, Acc.truck: 0.6313, Acc.tower: 0.5174, Acc.chandelier: 0.8448, Acc.awning: 0.4372, Acc.streetlight: 0.4146, Acc.booth: 0.7197, Acc.television receiver: 0.8659, Acc.airplane: 0.9444, Acc.dirt track: 0.2808, Acc.apparel: 0.7611, Acc.pole: 0.3785, Acc.land: 0.0582, Acc.bannister: 0.2306, Acc.escalator: 0.8622, Acc.ottoman: 0.7466, Acc.bottle: 0.7213, Acc.buffet: 0.6292, Acc.poster: 0.4060, Acc.stage: 0.4861, Acc.van: 0.7341, Acc.ship: 0.9826, Acc.fountain: 0.3970, Acc.conveyer belt: 0.9542, Acc.canopy: 0.7239, Acc.washer: 0.9100, Acc.plaything: 0.4569, Acc.swimming pool: 0.7702, Acc.stool: 0.6943, Acc.barrel: 0.8025, Acc.basket: 0.6048, Acc.waterfall: 0.7891, Acc.tent: 0.9841, Acc.bag: 0.3224, Acc.minibike: 0.8882, Acc.cradle: 0.9809, Acc.oven: 0.7213, Acc.ball: 0.6670, Acc.food: 0.7083, Acc.step: 0.1236, Acc.tank: 0.6820, Acc.trade name: 0.2907, Acc.microwave: 0.9648, Acc.pot: 0.7033, Acc.animal: 0.6269, Acc.bicycle: 0.8263, Acc.lake: 0.6359, Acc.dishwasher: 0.8138, Acc.screen: 0.9295, Acc.blanket: 0.3872, Acc.sculpture: 0.8656, Acc.hood: 0.7479, Acc.sconce: 0.6777, Acc.vase: 0.6487, Acc.traffic light: 0.6132, Acc.tray: 0.3404, Acc.ashcan: 0.6956, Acc.fan: 0.8171, Acc.pier: 0.4508, Acc.crt screen: 0.0365, Acc.plate: 0.7823, Acc.monitor: 0.7868, Acc.bulletin board: 0.7670, Acc.shower: 0.2498, Acc.radiator: 0.7930, Acc.glass: 0.2288, Acc.clock: 0.6654, Acc.flag: 0.7836 2024-06-17 10:14:16,358 - mmseg - INFO - Iter [78050/80000] lr: 7.901e-08, eta: 0:56:20, time: 3.282, data_time: 1.680, memory: 65790, decode.loss_ce: 0.1212, decode.acc_seg: 94.6139, aux.loss_ce: 0.0534, aux.acc_seg: 94.2262, loss: 0.1746 2024-06-17 10:15:36,725 - mmseg - INFO - Iter [78100/80000] lr: 7.699e-08, eta: 0:54:53, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1249, decode.acc_seg: 94.2058, aux.loss_ce: 0.0549, aux.acc_seg: 93.7711, loss: 0.1798 2024-06-17 10:16:57,057 - mmseg - INFO - Iter [78150/80000] lr: 7.496e-08, eta: 0:53:26, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1276, decode.acc_seg: 94.2745, aux.loss_ce: 0.0558, aux.acc_seg: 93.9074, loss: 0.1833 2024-06-17 10:18:17,458 - mmseg - INFO - Iter [78200/80000] lr: 7.294e-08, eta: 0:51:59, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1190, decode.acc_seg: 94.3995, aux.loss_ce: 0.0520, aux.acc_seg: 93.9927, loss: 0.1710 2024-06-17 10:19:37,996 - mmseg - INFO - Iter [78250/80000] lr: 7.091e-08, eta: 0:50:33, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1194, decode.acc_seg: 94.4842, aux.loss_ce: 0.0530, aux.acc_seg: 93.9466, loss: 0.1724 2024-06-17 10:20:58,410 - mmseg - INFO - Iter [78300/80000] lr: 6.889e-08, eta: 0:49:06, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1243, decode.acc_seg: 94.1594, aux.loss_ce: 0.0544, aux.acc_seg: 93.7496, loss: 0.1787 2024-06-17 10:22:21,046 - mmseg - INFO - Iter [78350/80000] lr: 6.686e-08, eta: 0:47:39, time: 1.653, data_time: 0.052, memory: 65790, decode.loss_ce: 0.1263, decode.acc_seg: 94.1663, aux.loss_ce: 0.0555, aux.acc_seg: 93.7261, loss: 0.1818 2024-06-17 10:23:41,403 - mmseg - INFO - Iter [78400/80000] lr: 6.484e-08, eta: 0:46:12, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1318, decode.acc_seg: 94.1521, aux.loss_ce: 0.0578, aux.acc_seg: 93.6919, loss: 0.1895 2024-06-17 10:25:20,380 - mmseg - INFO - Iter [78450/80000] lr: 6.281e-08, eta: 0:44:46, time: 1.980, data_time: 0.379, memory: 65790, decode.loss_ce: 0.1257, decode.acc_seg: 94.2043, aux.loss_ce: 0.0559, aux.acc_seg: 93.7046, loss: 0.1816 2024-06-17 10:26:40,791 - mmseg - INFO - Iter [78500/80000] lr: 6.079e-08, eta: 0:43:19, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1219, decode.acc_seg: 94.3417, aux.loss_ce: 0.0535, aux.acc_seg: 93.9094, loss: 0.1753 2024-06-17 10:28:01,328 - mmseg - INFO - Iter [78550/80000] lr: 5.876e-08, eta: 0:41:52, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1295, decode.acc_seg: 94.0849, aux.loss_ce: 0.0570, aux.acc_seg: 93.6542, loss: 0.1865 2024-06-17 10:29:21,668 - mmseg - INFO - Iter [78600/80000] lr: 5.674e-08, eta: 0:40:26, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1241, decode.acc_seg: 94.3154, aux.loss_ce: 0.0549, aux.acc_seg: 93.8667, loss: 0.1789 2024-06-17 10:30:42,215 - mmseg - INFO - Iter [78650/80000] lr: 5.471e-08, eta: 0:38:59, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1281, decode.acc_seg: 94.1365, aux.loss_ce: 0.0569, aux.acc_seg: 93.6824, loss: 0.1851 2024-06-17 10:32:02,755 - mmseg - INFO - Iter [78700/80000] lr: 5.269e-08, eta: 0:37:32, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1327, decode.acc_seg: 94.0834, aux.loss_ce: 0.0592, aux.acc_seg: 93.5611, loss: 0.1919 2024-06-17 10:33:23,107 - mmseg - INFO - Iter [78750/80000] lr: 5.066e-08, eta: 0:36:05, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1279, decode.acc_seg: 94.1826, aux.loss_ce: 0.0564, aux.acc_seg: 93.7198, loss: 0.1843 2024-06-17 10:34:43,467 - mmseg - INFO - Iter [78800/80000] lr: 4.864e-08, eta: 0:34:39, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1246, decode.acc_seg: 94.4274, aux.loss_ce: 0.0556, aux.acc_seg: 93.9258, loss: 0.1802 2024-06-17 10:36:03,827 - mmseg - INFO - Iter [78850/80000] lr: 4.661e-08, eta: 0:33:12, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1262, decode.acc_seg: 94.4438, aux.loss_ce: 0.0553, aux.acc_seg: 93.9984, loss: 0.1815 2024-06-17 10:37:24,183 - mmseg - INFO - Iter [78900/80000] lr: 4.459e-08, eta: 0:31:45, time: 1.607, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1273, decode.acc_seg: 94.2426, aux.loss_ce: 0.0564, aux.acc_seg: 93.7386, loss: 0.1837 2024-06-17 10:38:44,558 - mmseg - INFO - Iter [78950/80000] lr: 4.256e-08, eta: 0:30:19, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1176, decode.acc_seg: 94.7152, aux.loss_ce: 0.0520, aux.acc_seg: 94.2700, loss: 0.1696 2024-06-17 10:40:05,051 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 10:40:05,051 - mmseg - INFO - Iter [79000/80000] lr: 4.054e-08, eta: 0:28:52, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1354, decode.acc_seg: 94.0109, aux.loss_ce: 0.0595, aux.acc_seg: 93.6026, loss: 0.1948 2024-06-17 10:41:26,825 - mmseg - INFO - per class results: 2024-06-17 10:41:26,831 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.66 | 90.41 | | building | 84.93 | 93.31 | | sky | 94.9 | 97.72 | | floor | 84.38 | 92.23 | | tree | 77.56 | 89.15 | | ceiling | 87.7 | 94.04 | | road | 86.17 | 91.28 | | bed | 92.06 | 96.98 | | windowpane | 66.62 | 82.98 | | grass | 68.22 | 81.78 | | cabinet | 67.18 | 76.88 | | sidewalk | 72.12 | 85.71 | | person | 85.07 | 94.06 | | earth | 41.65 | 55.8 | | door | 60.67 | 73.96 | | table | 70.8 | 81.79 | | mountain | 62.79 | 72.95 | | plant | 55.32 | 67.4 | | curtain | 78.24 | 87.62 | | chair | 66.54 | 78.0 | | car | 87.56 | 93.84 | | water | 64.15 | 80.12 | | painting | 79.91 | 90.67 | | sofa | 83.71 | 92.1 | | shelf | 47.17 | 62.21 | | house | 48.3 | 61.62 | | sea | 73.67 | 80.99 | | mirror | 78.48 | 86.51 | | rug | 61.96 | 70.58 | | field | 31.66 | 55.92 | | armchair | 66.34 | 82.58 | | seat | 67.65 | 88.76 | | fence | 52.69 | 66.36 | | desk | 61.05 | 78.72 | | rock | 55.76 | 83.54 | | wardrobe | 53.51 | 73.41 | | lamp | 74.48 | 84.77 | | bathtub | 84.52 | 88.02 | | railing | 44.19 | 62.12 | | cushion | 71.65 | 82.42 | | base | 43.08 | 59.7 | | box | 40.25 | 50.82 | | column | 57.47 | 70.8 | | signboard | 39.21 | 53.41 | | chest of drawers | 43.9 | 67.72 | | counter | 44.51 | 51.37 | | sand | 58.38 | 86.12 | | sink | 79.81 | 85.22 | | skyscraper | 46.77 | 59.25 | | fireplace | 76.57 | 93.62 | | refrigerator | 87.38 | 95.73 | | grandstand | 51.85 | 85.34 | | path | 29.17 | 37.78 | | stairs | 33.73 | 40.68 | | runway | 67.47 | 86.92 | | case | 60.85 | 81.64 | | pool table | 94.39 | 98.13 | | pillow | 67.39 | 77.56 | | screen door | 79.45 | 84.03 | | stairway | 48.27 | 62.03 | | river | 13.1 | 26.86 | | bridge | 72.09 | 88.61 | | bookcase | 43.0 | 62.29 | | blind | 40.34 | 44.65 | | coffee table | 63.12 | 84.37 | | toilet | 90.11 | 94.19 | | flower | 44.49 | 60.77 | | book | 52.8 | 78.07 | | hill | 8.25 | 13.79 | | bench | 57.46 | 65.09 | | countertop | 63.7 | 83.4 | | stove | 86.0 | 92.52 | | palm | 53.54 | 79.9 | | kitchen island | 52.7 | 79.1 | | computer | 78.62 | 90.97 | | swivel chair | 46.6 | 70.75 | | boat | 80.02 | 91.0 | | bar | 60.31 | 85.01 | | arcade machine | 80.65 | 84.1 | | hovel | 32.73 | 37.95 | | bus | 92.66 | 97.13 | | towel | 75.57 | 82.5 | | light | 58.61 | 67.21 | | truck | 50.64 | 62.67 | | tower | 28.71 | 50.99 | | chandelier | 72.48 | 84.9 | | awning | 34.1 | 44.24 | | streetlight | 32.21 | 41.65 | | booth | 57.75 | 71.71 | | television receiver | 79.65 | 86.37 | | airplane | 86.61 | 93.64 | | dirt track | 6.67 | 28.78 | | apparel | 60.03 | 75.15 | | pole | 25.34 | 37.61 | | land | 4.04 | 5.84 | | bannister | 18.55 | 22.8 | | escalator | 66.76 | 86.17 | | ottoman | 58.83 | 74.02 | | bottle | 44.7 | 73.51 | | buffet | 57.16 | 63.51 | | poster | 31.24 | 40.14 | | stage | 23.99 | 48.25 | | van | 52.22 | 74.57 | | ship | 94.03 | 98.4 | | fountain | 39.18 | 40.05 | | conveyer belt | 81.6 | 95.36 | | canopy | 51.42 | 71.98 | | washer | 85.06 | 90.82 | | plaything | 31.9 | 45.86 | | swimming pool | 53.25 | 76.92 | | stool | 49.78 | 69.75 | | barrel | 46.05 | 81.47 | | basket | 43.88 | 59.31 | | waterfall | 62.4 | 77.34 | | tent | 95.84 | 98.34 | | bag | 26.32 | 29.69 | | minibike | 73.93 | 89.06 | | cradle | 84.95 | 98.11 | | oven | 60.71 | 72.23 | | ball | 61.28 | 66.23 | | food | 62.82 | 72.21 | | step | 9.75 | 12.7 | | tank | 62.19 | 68.96 | | trade name | 24.62 | 29.6 | | microwave | 90.63 | 96.51 | | pot | 60.67 | 69.47 | | animal | 59.96 | 61.85 | | bicycle | 60.21 | 80.74 | | lake | 55.88 | 63.58 | | dishwasher | 71.88 | 81.45 | | screen | 59.83 | 94.76 | | blanket | 33.23 | 38.48 | | sculpture | 74.71 | 86.52 | | hood | 62.61 | 74.85 | | sconce | 59.13 | 69.89 | | vase | 47.26 | 64.01 | | traffic light | 40.01 | 60.24 | | tray | 26.2 | 33.71 | | ashcan | 54.64 | 69.06 | | fan | 68.83 | 81.99 | | pier | 39.61 | 43.94 | | crt screen | 2.75 | 3.61 | | plate | 62.82 | 77.32 | | monitor | 67.14 | 78.37 | | bulletin board | 58.42 | 76.6 | | shower | 23.4 | 25.72 | | radiator | 66.94 | 80.27 | | glass | 21.4 | 22.91 | | clock | 52.94 | 66.93 | | flag | 69.63 | 78.29 | +---------------------+-------+-------+ 2024-06-17 10:41:26,831 - mmseg - INFO - Summary: 2024-06-17 10:41:26,831 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 86.31 | 58.36 | 70.86 | +-------+-------+-------+ 2024-06-17 10:41:26,832 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 10:41:26,832 - mmseg - INFO - Iter(val) [250] aAcc: 0.8631, mIoU: 0.5836, mAcc: 0.7086, IoU.wall: 0.8266, IoU.building: 0.8493, IoU.sky: 0.9490, IoU.floor: 0.8438, IoU.tree: 0.7756, IoU.ceiling: 0.8770, IoU.road: 0.8617, IoU.bed : 0.9206, IoU.windowpane: 0.6662, IoU.grass: 0.6822, IoU.cabinet: 0.6718, IoU.sidewalk: 0.7212, IoU.person: 0.8507, IoU.earth: 0.4165, IoU.door: 0.6067, IoU.table: 0.7080, IoU.mountain: 0.6279, IoU.plant: 0.5532, IoU.curtain: 0.7824, IoU.chair: 0.6654, IoU.car: 0.8756, IoU.water: 0.6415, IoU.painting: 0.7991, IoU.sofa: 0.8371, IoU.shelf: 0.4717, IoU.house: 0.4830, IoU.sea: 0.7367, IoU.mirror: 0.7848, IoU.rug: 0.6196, IoU.field: 0.3166, IoU.armchair: 0.6634, IoU.seat: 0.6765, IoU.fence: 0.5269, IoU.desk: 0.6105, IoU.rock: 0.5576, IoU.wardrobe: 0.5351, IoU.lamp: 0.7448, IoU.bathtub: 0.8452, IoU.railing: 0.4419, IoU.cushion: 0.7165, IoU.base: 0.4308, IoU.box: 0.4025, IoU.column: 0.5747, IoU.signboard: 0.3921, IoU.chest of drawers: 0.4390, IoU.counter: 0.4451, IoU.sand: 0.5838, IoU.sink: 0.7981, IoU.skyscraper: 0.4677, IoU.fireplace: 0.7657, IoU.refrigerator: 0.8738, IoU.grandstand: 0.5185, IoU.path: 0.2917, IoU.stairs: 0.3373, IoU.runway: 0.6747, IoU.case: 0.6085, IoU.pool table: 0.9439, IoU.pillow: 0.6739, IoU.screen door: 0.7945, IoU.stairway: 0.4827, IoU.river: 0.1310, IoU.bridge: 0.7209, IoU.bookcase: 0.4300, IoU.blind: 0.4034, IoU.coffee table: 0.6312, IoU.toilet: 0.9011, IoU.flower: 0.4449, IoU.book: 0.5280, IoU.hill: 0.0825, IoU.bench: 0.5746, IoU.countertop: 0.6370, IoU.stove: 0.8600, IoU.palm: 0.5354, IoU.kitchen island: 0.5270, IoU.computer: 0.7862, IoU.swivel chair: 0.4660, IoU.boat: 0.8002, IoU.bar: 0.6031, IoU.arcade machine: 0.8065, IoU.hovel: 0.3273, IoU.bus: 0.9266, IoU.towel: 0.7557, IoU.light: 0.5861, IoU.truck: 0.5064, IoU.tower: 0.2871, IoU.chandelier: 0.7248, IoU.awning: 0.3410, IoU.streetlight: 0.3221, IoU.booth: 0.5775, IoU.television receiver: 0.7965, IoU.airplane: 0.8661, IoU.dirt track: 0.0667, IoU.apparel: 0.6003, IoU.pole: 0.2534, IoU.land: 0.0404, IoU.bannister: 0.1855, IoU.escalator: 0.6676, IoU.ottoman: 0.5883, IoU.bottle: 0.4470, IoU.buffet: 0.5716, IoU.poster: 0.3124, IoU.stage: 0.2399, IoU.van: 0.5222, IoU.ship: 0.9403, IoU.fountain: 0.3918, IoU.conveyer belt: 0.8160, IoU.canopy: 0.5142, IoU.washer: 0.8506, IoU.plaything: 0.3190, IoU.swimming pool: 0.5325, IoU.stool: 0.4978, IoU.barrel: 0.4605, IoU.basket: 0.4388, IoU.waterfall: 0.6240, IoU.tent: 0.9584, IoU.bag: 0.2632, IoU.minibike: 0.7393, IoU.cradle: 0.8495, IoU.oven: 0.6071, IoU.ball: 0.6128, IoU.food: 0.6282, IoU.step: 0.0975, IoU.tank: 0.6219, IoU.trade name: 0.2462, IoU.microwave: 0.9063, IoU.pot: 0.6067, IoU.animal: 0.5996, IoU.bicycle: 0.6021, IoU.lake: 0.5588, IoU.dishwasher: 0.7188, IoU.screen: 0.5983, IoU.blanket: 0.3323, IoU.sculpture: 0.7471, IoU.hood: 0.6261, IoU.sconce: 0.5913, IoU.vase: 0.4726, IoU.traffic light: 0.4001, IoU.tray: 0.2620, IoU.ashcan: 0.5464, IoU.fan: 0.6883, IoU.pier: 0.3961, IoU.crt screen: 0.0275, IoU.plate: 0.6282, IoU.monitor: 0.6714, IoU.bulletin board: 0.5842, IoU.shower: 0.2340, IoU.radiator: 0.6694, IoU.glass: 0.2140, IoU.clock: 0.5294, IoU.flag: 0.6963, Acc.wall: 0.9041, Acc.building: 0.9331, Acc.sky: 0.9772, Acc.floor: 0.9223, Acc.tree: 0.8915, Acc.ceiling: 0.9404, Acc.road: 0.9128, Acc.bed : 0.9698, Acc.windowpane: 0.8298, Acc.grass: 0.8178, Acc.cabinet: 0.7688, Acc.sidewalk: 0.8571, Acc.person: 0.9406, Acc.earth: 0.5580, Acc.door: 0.7396, Acc.table: 0.8179, Acc.mountain: 0.7295, Acc.plant: 0.6740, Acc.curtain: 0.8762, Acc.chair: 0.7800, Acc.car: 0.9384, Acc.water: 0.8012, Acc.painting: 0.9067, Acc.sofa: 0.9210, Acc.shelf: 0.6221, Acc.house: 0.6162, Acc.sea: 0.8099, Acc.mirror: 0.8651, Acc.rug: 0.7058, Acc.field: 0.5592, Acc.armchair: 0.8258, Acc.seat: 0.8876, Acc.fence: 0.6636, Acc.desk: 0.7872, Acc.rock: 0.8354, Acc.wardrobe: 0.7341, Acc.lamp: 0.8477, Acc.bathtub: 0.8802, Acc.railing: 0.6212, Acc.cushion: 0.8242, Acc.base: 0.5970, Acc.box: 0.5082, Acc.column: 0.7080, Acc.signboard: 0.5341, Acc.chest of drawers: 0.6772, Acc.counter: 0.5137, Acc.sand: 0.8612, Acc.sink: 0.8522, Acc.skyscraper: 0.5925, Acc.fireplace: 0.9362, Acc.refrigerator: 0.9573, Acc.grandstand: 0.8534, Acc.path: 0.3778, Acc.stairs: 0.4068, Acc.runway: 0.8692, Acc.case: 0.8164, Acc.pool table: 0.9813, Acc.pillow: 0.7756, Acc.screen door: 0.8403, Acc.stairway: 0.6203, Acc.river: 0.2686, Acc.bridge: 0.8861, Acc.bookcase: 0.6229, Acc.blind: 0.4465, Acc.coffee table: 0.8437, Acc.toilet: 0.9419, Acc.flower: 0.6077, Acc.book: 0.7807, Acc.hill: 0.1379, Acc.bench: 0.6509, Acc.countertop: 0.8340, Acc.stove: 0.9252, Acc.palm: 0.7990, Acc.kitchen island: 0.7910, Acc.computer: 0.9097, Acc.swivel chair: 0.7075, Acc.boat: 0.9100, Acc.bar: 0.8501, Acc.arcade machine: 0.8410, Acc.hovel: 0.3795, Acc.bus: 0.9713, Acc.towel: 0.8250, Acc.light: 0.6721, Acc.truck: 0.6267, Acc.tower: 0.5099, Acc.chandelier: 0.8490, Acc.awning: 0.4424, Acc.streetlight: 0.4165, Acc.booth: 0.7171, Acc.television receiver: 0.8637, Acc.airplane: 0.9364, Acc.dirt track: 0.2878, Acc.apparel: 0.7515, Acc.pole: 0.3761, Acc.land: 0.0584, Acc.bannister: 0.2280, Acc.escalator: 0.8617, Acc.ottoman: 0.7402, Acc.bottle: 0.7351, Acc.buffet: 0.6351, Acc.poster: 0.4014, Acc.stage: 0.4825, Acc.van: 0.7457, Acc.ship: 0.9840, Acc.fountain: 0.4005, Acc.conveyer belt: 0.9536, Acc.canopy: 0.7198, Acc.washer: 0.9082, Acc.plaything: 0.4586, Acc.swimming pool: 0.7692, Acc.stool: 0.6975, Acc.barrel: 0.8147, Acc.basket: 0.5931, Acc.waterfall: 0.7734, Acc.tent: 0.9834, Acc.bag: 0.2969, Acc.minibike: 0.8906, Acc.cradle: 0.9811, Acc.oven: 0.7223, Acc.ball: 0.6623, Acc.food: 0.7221, Acc.step: 0.1270, Acc.tank: 0.6896, Acc.trade name: 0.2960, Acc.microwave: 0.9651, Acc.pot: 0.6947, Acc.animal: 0.6185, Acc.bicycle: 0.8074, Acc.lake: 0.6358, Acc.dishwasher: 0.8145, Acc.screen: 0.9476, Acc.blanket: 0.3848, Acc.sculpture: 0.8652, Acc.hood: 0.7485, Acc.sconce: 0.6989, Acc.vase: 0.6401, Acc.traffic light: 0.6024, Acc.tray: 0.3371, Acc.ashcan: 0.6906, Acc.fan: 0.8199, Acc.pier: 0.4394, Acc.crt screen: 0.0361, Acc.plate: 0.7732, Acc.monitor: 0.7837, Acc.bulletin board: 0.7660, Acc.shower: 0.2572, Acc.radiator: 0.8027, Acc.glass: 0.2291, Acc.clock: 0.6693, Acc.flag: 0.7829 2024-06-17 10:42:47,599 - mmseg - INFO - Iter [79050/80000] lr: 3.851e-08, eta: 0:27:26, time: 3.251, data_time: 1.650, memory: 65790, decode.loss_ce: 0.1265, decode.acc_seg: 94.2697, aux.loss_ce: 0.0550, aux.acc_seg: 93.8700, loss: 0.1815 2024-06-17 10:44:08,030 - mmseg - INFO - Iter [79100/80000] lr: 3.649e-08, eta: 0:25:59, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1252, decode.acc_seg: 94.2199, aux.loss_ce: 0.0554, aux.acc_seg: 93.7691, loss: 0.1805 2024-06-17 10:45:28,509 - mmseg - INFO - Iter [79150/80000] lr: 3.446e-08, eta: 0:24:33, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1265, decode.acc_seg: 94.3167, aux.loss_ce: 0.0559, aux.acc_seg: 93.8652, loss: 0.1824 2024-06-17 10:46:48,933 - mmseg - INFO - Iter [79200/80000] lr: 3.244e-08, eta: 0:23:06, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1212, decode.acc_seg: 94.4263, aux.loss_ce: 0.0535, aux.acc_seg: 93.9503, loss: 0.1747 2024-06-17 10:48:09,376 - mmseg - INFO - Iter [79250/80000] lr: 3.041e-08, eta: 0:21:39, time: 1.609, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1201, decode.acc_seg: 94.4704, aux.loss_ce: 0.0528, aux.acc_seg: 94.0321, loss: 0.1729 2024-06-17 10:49:29,856 - mmseg - INFO - Iter [79300/80000] lr: 2.839e-08, eta: 0:20:13, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1244, decode.acc_seg: 94.2878, aux.loss_ce: 0.0547, aux.acc_seg: 93.8876, loss: 0.1791 2024-06-17 10:50:50,180 - mmseg - INFO - Iter [79350/80000] lr: 2.636e-08, eta: 0:18:46, time: 1.606, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1258, decode.acc_seg: 94.2573, aux.loss_ce: 0.0557, aux.acc_seg: 93.7759, loss: 0.1815 2024-06-17 10:52:10,677 - mmseg - INFO - Iter [79400/80000] lr: 2.434e-08, eta: 0:17:19, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1248, decode.acc_seg: 94.2621, aux.loss_ce: 0.0549, aux.acc_seg: 93.8204, loss: 0.1797 2024-06-17 10:53:31,168 - mmseg - INFO - Iter [79450/80000] lr: 2.231e-08, eta: 0:15:52, time: 1.610, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1253, decode.acc_seg: 94.2548, aux.loss_ce: 0.0552, aux.acc_seg: 93.8093, loss: 0.1806 2024-06-17 10:54:51,571 - mmseg - INFO - Iter [79500/80000] lr: 2.029e-08, eta: 0:14:26, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1323, decode.acc_seg: 93.9047, aux.loss_ce: 0.0585, aux.acc_seg: 93.3880, loss: 0.1907 2024-06-17 10:56:12,152 - mmseg - INFO - Iter [79550/80000] lr: 1.826e-08, eta: 0:12:59, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1245, decode.acc_seg: 94.3677, aux.loss_ce: 0.0550, aux.acc_seg: 93.8711, loss: 0.1794 2024-06-17 10:57:34,820 - mmseg - INFO - Iter [79600/80000] lr: 1.624e-08, eta: 0:11:32, time: 1.653, data_time: 0.049, memory: 65790, decode.loss_ce: 0.1245, decode.acc_seg: 94.5038, aux.loss_ce: 0.0546, aux.acc_seg: 94.0978, loss: 0.1791 2024-06-17 10:58:55,211 - mmseg - INFO - Iter [79650/80000] lr: 1.421e-08, eta: 0:10:06, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1321, decode.acc_seg: 94.0083, aux.loss_ce: 0.0583, aux.acc_seg: 93.6378, loss: 0.1904 2024-06-17 11:00:15,591 - mmseg - INFO - Iter [79700/80000] lr: 1.219e-08, eta: 0:08:39, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1316, decode.acc_seg: 94.0925, aux.loss_ce: 0.0576, aux.acc_seg: 93.6235, loss: 0.1892 2024-06-17 11:01:36,168 - mmseg - INFO - Iter [79750/80000] lr: 1.016e-08, eta: 0:07:13, time: 1.612, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1243, decode.acc_seg: 94.2798, aux.loss_ce: 0.0548, aux.acc_seg: 93.8180, loss: 0.1791 2024-06-17 11:02:56,727 - mmseg - INFO - Iter [79800/80000] lr: 8.140e-09, eta: 0:05:46, time: 1.611, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1245, decode.acc_seg: 94.2958, aux.loss_ce: 0.0552, aux.acc_seg: 93.8495, loss: 0.1797 2024-06-17 11:04:17,140 - mmseg - INFO - Iter [79850/80000] lr: 6.115e-09, eta: 0:04:19, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1287, decode.acc_seg: 94.1699, aux.loss_ce: 0.0565, aux.acc_seg: 93.6674, loss: 0.1852 2024-06-17 11:05:37,785 - mmseg - INFO - Iter [79900/80000] lr: 4.090e-09, eta: 0:02:53, time: 1.613, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1206, decode.acc_seg: 94.4889, aux.loss_ce: 0.0540, aux.acc_seg: 94.0000, loss: 0.1746 2024-06-17 11:06:58,179 - mmseg - INFO - Iter [79950/80000] lr: 2.065e-09, eta: 0:01:26, time: 1.608, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1271, decode.acc_seg: 94.2971, aux.loss_ce: 0.0560, aux.acc_seg: 93.8313, loss: 0.1831 2024-06-17 11:08:18,649 - mmseg - INFO - Saving checkpoint at 80000 iterations 2024-06-17 11:09:30,816 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 11:09:30,816 - mmseg - INFO - Iter [80000/80000] lr: 4.050e-11, eta: 0:00:00, time: 3.053, data_time: 0.007, memory: 65790, decode.loss_ce: 0.1185, decode.acc_seg: 94.4393, aux.loss_ce: 0.0522, aux.acc_seg: 94.0102, loss: 0.1707 2024-06-17 11:10:52,321 - mmseg - INFO - per class results: 2024-06-17 11:10:52,327 - mmseg - INFO - +---------------------+-------+-------+ | Class | IoU | Acc | +---------------------+-------+-------+ | wall | 82.64 | 90.38 | | building | 84.98 | 93.47 | | sky | 94.9 | 97.58 | | floor | 84.48 | 92.15 | | tree | 77.56 | 89.39 | | ceiling | 87.66 | 94.36 | | road | 86.25 | 91.01 | | bed | 92.07 | 96.99 | | windowpane | 66.62 | 82.46 | | grass | 68.2 | 81.08 | | cabinet | 67.11 | 76.73 | | sidewalk | 72.12 | 86.24 | | person | 85.12 | 94.03 | | earth | 42.07 | 56.94 | | door | 60.81 | 74.25 | | table | 70.67 | 81.76 | | mountain | 62.9 | 72.88 | | plant | 55.43 | 67.11 | | curtain | 78.16 | 87.89 | | chair | 66.53 | 77.87 | | car | 87.56 | 93.98 | | water | 64.11 | 79.63 | | painting | 79.97 | 90.62 | | sofa | 83.7 | 92.11 | | shelf | 47.5 | 63.59 | | house | 48.32 | 59.87 | | sea | 73.76 | 81.47 | | mirror | 78.52 | 86.73 | | rug | 62.32 | 70.84 | | field | 31.62 | 56.65 | | armchair | 66.29 | 82.73 | | seat | 67.68 | 88.94 | | fence | 52.69 | 66.23 | | desk | 61.33 | 78.18 | | rock | 56.14 | 82.95 | | wardrobe | 53.31 | 73.9 | | lamp | 74.52 | 84.86 | | bathtub | 84.57 | 88.0 | | railing | 44.2 | 62.5 | | cushion | 71.62 | 82.43 | | base | 43.01 | 59.14 | | box | 40.63 | 51.73 | | column | 57.69 | 70.47 | | signboard | 39.28 | 54.42 | | chest of drawers | 44.2 | 67.75 | | counter | 43.32 | 49.57 | | sand | 58.15 | 85.86 | | sink | 79.8 | 85.19 | | skyscraper | 46.8 | 59.07 | | fireplace | 76.51 | 93.6 | | refrigerator | 87.4 | 95.67 | | grandstand | 51.94 | 85.24 | | path | 29.05 | 37.48 | | stairs | 33.46 | 40.21 | | runway | 68.91 | 88.74 | | case | 60.65 | 81.75 | | pool table | 94.4 | 98.1 | | pillow | 67.64 | 77.91 | | screen door | 79.56 | 84.27 | | stairway | 48.49 | 62.63 | | river | 13.63 | 28.3 | | bridge | 72.22 | 88.03 | | bookcase | 43.67 | 62.72 | | blind | 40.5 | 45.48 | | coffee table | 62.24 | 84.98 | | toilet | 90.13 | 94.16 | | flower | 44.29 | 60.2 | | book | 52.9 | 78.43 | | hill | 8.3 | 14.06 | | bench | 57.58 | 65.0 | | countertop | 63.66 | 83.41 | | stove | 86.11 | 92.54 | | palm | 53.67 | 80.56 | | kitchen island | 53.32 | 78.74 | | computer | 78.59 | 90.87 | | swivel chair | 46.74 | 70.96 | | boat | 80.0 | 91.44 | | bar | 60.19 | 84.9 | | arcade machine | 80.85 | 84.45 | | hovel | 34.48 | 39.89 | | bus | 92.67 | 97.21 | | towel | 75.81 | 82.95 | | light | 58.57 | 66.97 | | truck | 50.57 | 62.77 | | tower | 27.89 | 49.16 | | chandelier | 72.56 | 84.28 | | awning | 34.35 | 44.34 | | streetlight | 32.52 | 42.36 | | booth | 58.76 | 71.32 | | television receiver | 79.47 | 86.37 | | airplane | 86.43 | 93.54 | | dirt track | 6.34 | 27.2 | | apparel | 59.86 | 74.38 | | pole | 25.95 | 38.84 | | land | 4.2 | 6.1 | | bannister | 18.87 | 23.25 | | escalator | 67.15 | 85.93 | | ottoman | 58.69 | 74.62 | | bottle | 45.19 | 73.09 | | buffet | 56.79 | 63.11 | | poster | 31.11 | 40.13 | | stage | 24.19 | 48.11 | | van | 52.08 | 73.85 | | ship | 93.9 | 98.29 | | fountain | 39.0 | 39.81 | | conveyer belt | 82.05 | 95.2 | | canopy | 51.31 | 71.46 | | washer | 84.76 | 90.3 | | plaything | 32.19 | 46.62 | | swimming pool | 52.99 | 76.42 | | stool | 49.63 | 69.84 | | barrel | 47.2 | 80.01 | | basket | 44.08 | 59.9 | | waterfall | 62.7 | 77.14 | | tent | 95.82 | 98.34 | | bag | 26.28 | 29.72 | | minibike | 74.05 | 89.1 | | cradle | 84.93 | 98.09 | | oven | 60.85 | 72.13 | | ball | 61.16 | 65.97 | | food | 62.38 | 71.1 | | step | 9.77 | 13.1 | | tank | 62.43 | 67.9 | | trade name | 24.46 | 29.35 | | microwave | 90.71 | 96.47 | | pot | 60.82 | 70.29 | | animal | 60.03 | 61.88 | | bicycle | 60.63 | 80.63 | | lake | 55.95 | 63.55 | | dishwasher | 72.16 | 81.29 | | screen | 59.6 | 93.94 | | blanket | 33.56 | 38.83 | | sculpture | 74.59 | 86.72 | | hood | 62.66 | 74.63 | | sconce | 58.87 | 69.19 | | vase | 47.44 | 64.53 | | traffic light | 39.99 | 60.86 | | tray | 26.46 | 34.44 | | ashcan | 54.58 | 68.92 | | fan | 68.98 | 82.39 | | pier | 39.73 | 44.64 | | crt screen | 2.69 | 3.63 | | plate | 62.76 | 77.52 | | monitor | 66.13 | 76.86 | | bulletin board | 57.91 | 75.99 | | shower | 23.35 | 25.68 | | radiator | 66.97 | 80.7 | | glass | 21.46 | 23.0 | | clock | 53.18 | 67.57 | | flag | 69.57 | 78.56 | +---------------------+-------+-------+ 2024-06-17 11:10:52,327 - mmseg - INFO - Summary: 2024-06-17 11:10:52,327 - mmseg - INFO - +-------+-------+-------+ | aAcc | mIoU | mAcc | +-------+-------+-------+ | 86.33 | 58.42 | 70.87 | +-------+-------+-------+ 2024-06-17 11:10:52,328 - mmseg - INFO - Exp name: upernet_internvit_6b_512_80k_ade20k_bs16_lr4e-5.py 2024-06-17 11:10:52,329 - mmseg - INFO - Iter(val) [250] aAcc: 0.8633, mIoU: 0.5842, mAcc: 0.7087, IoU.wall: 0.8264, IoU.building: 0.8498, IoU.sky: 0.9490, IoU.floor: 0.8448, IoU.tree: 0.7756, IoU.ceiling: 0.8766, IoU.road: 0.8625, IoU.bed : 0.9207, IoU.windowpane: 0.6662, IoU.grass: 0.6820, IoU.cabinet: 0.6711, IoU.sidewalk: 0.7212, IoU.person: 0.8512, IoU.earth: 0.4207, IoU.door: 0.6081, IoU.table: 0.7067, IoU.mountain: 0.6290, IoU.plant: 0.5543, IoU.curtain: 0.7816, IoU.chair: 0.6653, IoU.car: 0.8756, IoU.water: 0.6411, IoU.painting: 0.7997, IoU.sofa: 0.8370, IoU.shelf: 0.4750, IoU.house: 0.4832, IoU.sea: 0.7376, IoU.mirror: 0.7852, IoU.rug: 0.6232, IoU.field: 0.3162, IoU.armchair: 0.6629, IoU.seat: 0.6768, IoU.fence: 0.5269, IoU.desk: 0.6133, IoU.rock: 0.5614, IoU.wardrobe: 0.5331, IoU.lamp: 0.7452, IoU.bathtub: 0.8457, IoU.railing: 0.4420, IoU.cushion: 0.7162, IoU.base: 0.4301, IoU.box: 0.4063, IoU.column: 0.5769, IoU.signboard: 0.3928, IoU.chest of drawers: 0.4420, IoU.counter: 0.4332, IoU.sand: 0.5815, IoU.sink: 0.7980, IoU.skyscraper: 0.4680, IoU.fireplace: 0.7651, IoU.refrigerator: 0.8740, IoU.grandstand: 0.5194, IoU.path: 0.2905, IoU.stairs: 0.3346, IoU.runway: 0.6891, IoU.case: 0.6065, IoU.pool table: 0.9440, IoU.pillow: 0.6764, IoU.screen door: 0.7956, IoU.stairway: 0.4849, IoU.river: 0.1363, IoU.bridge: 0.7222, IoU.bookcase: 0.4367, IoU.blind: 0.4050, IoU.coffee table: 0.6224, IoU.toilet: 0.9013, IoU.flower: 0.4429, IoU.book: 0.5290, IoU.hill: 0.0830, IoU.bench: 0.5758, IoU.countertop: 0.6366, IoU.stove: 0.8611, IoU.palm: 0.5367, IoU.kitchen island: 0.5332, IoU.computer: 0.7859, IoU.swivel chair: 0.4674, IoU.boat: 0.8000, IoU.bar: 0.6019, IoU.arcade machine: 0.8085, IoU.hovel: 0.3448, IoU.bus: 0.9267, IoU.towel: 0.7581, IoU.light: 0.5857, IoU.truck: 0.5057, IoU.tower: 0.2789, IoU.chandelier: 0.7256, IoU.awning: 0.3435, IoU.streetlight: 0.3252, IoU.booth: 0.5876, IoU.television receiver: 0.7947, IoU.airplane: 0.8643, IoU.dirt track: 0.0634, IoU.apparel: 0.5986, IoU.pole: 0.2595, IoU.land: 0.0420, IoU.bannister: 0.1887, IoU.escalator: 0.6715, IoU.ottoman: 0.5869, IoU.bottle: 0.4519, IoU.buffet: 0.5679, IoU.poster: 0.3111, IoU.stage: 0.2419, IoU.van: 0.5208, IoU.ship: 0.9390, IoU.fountain: 0.3900, IoU.conveyer belt: 0.8205, IoU.canopy: 0.5131, IoU.washer: 0.8476, IoU.plaything: 0.3219, IoU.swimming pool: 0.5299, IoU.stool: 0.4963, IoU.barrel: 0.4720, IoU.basket: 0.4408, IoU.waterfall: 0.6270, IoU.tent: 0.9582, IoU.bag: 0.2628, IoU.minibike: 0.7405, IoU.cradle: 0.8493, IoU.oven: 0.6085, IoU.ball: 0.6116, IoU.food: 0.6238, IoU.step: 0.0977, IoU.tank: 0.6243, IoU.trade name: 0.2446, IoU.microwave: 0.9071, IoU.pot: 0.6082, IoU.animal: 0.6003, IoU.bicycle: 0.6063, IoU.lake: 0.5595, IoU.dishwasher: 0.7216, IoU.screen: 0.5960, IoU.blanket: 0.3356, IoU.sculpture: 0.7459, IoU.hood: 0.6266, IoU.sconce: 0.5887, IoU.vase: 0.4744, IoU.traffic light: 0.3999, IoU.tray: 0.2646, IoU.ashcan: 0.5458, IoU.fan: 0.6898, IoU.pier: 0.3973, IoU.crt screen: 0.0269, IoU.plate: 0.6276, IoU.monitor: 0.6613, IoU.bulletin board: 0.5791, IoU.shower: 0.2335, IoU.radiator: 0.6697, IoU.glass: 0.2146, IoU.clock: 0.5318, IoU.flag: 0.6957, Acc.wall: 0.9038, Acc.building: 0.9347, Acc.sky: 0.9758, Acc.floor: 0.9215, Acc.tree: 0.8939, Acc.ceiling: 0.9436, Acc.road: 0.9101, Acc.bed : 0.9699, Acc.windowpane: 0.8246, Acc.grass: 0.8108, Acc.cabinet: 0.7673, Acc.sidewalk: 0.8624, Acc.person: 0.9403, Acc.earth: 0.5694, Acc.door: 0.7425, Acc.table: 0.8176, Acc.mountain: 0.7288, Acc.plant: 0.6711, Acc.curtain: 0.8789, Acc.chair: 0.7787, Acc.car: 0.9398, Acc.water: 0.7963, Acc.painting: 0.9062, Acc.sofa: 0.9211, Acc.shelf: 0.6359, Acc.house: 0.5987, Acc.sea: 0.8147, Acc.mirror: 0.8673, Acc.rug: 0.7084, Acc.field: 0.5665, Acc.armchair: 0.8273, Acc.seat: 0.8894, Acc.fence: 0.6623, Acc.desk: 0.7818, Acc.rock: 0.8295, Acc.wardrobe: 0.7390, Acc.lamp: 0.8486, Acc.bathtub: 0.8800, Acc.railing: 0.6250, Acc.cushion: 0.8243, Acc.base: 0.5914, Acc.box: 0.5173, Acc.column: 0.7047, Acc.signboard: 0.5442, Acc.chest of drawers: 0.6775, Acc.counter: 0.4957, Acc.sand: 0.8586, Acc.sink: 0.8519, Acc.skyscraper: 0.5907, Acc.fireplace: 0.9360, Acc.refrigerator: 0.9567, Acc.grandstand: 0.8524, Acc.path: 0.3748, Acc.stairs: 0.4021, Acc.runway: 0.8874, Acc.case: 0.8175, Acc.pool table: 0.9810, Acc.pillow: 0.7791, Acc.screen door: 0.8427, Acc.stairway: 0.6263, Acc.river: 0.2830, Acc.bridge: 0.8803, Acc.bookcase: 0.6272, Acc.blind: 0.4548, Acc.coffee table: 0.8498, Acc.toilet: 0.9416, Acc.flower: 0.6020, Acc.book: 0.7843, Acc.hill: 0.1406, Acc.bench: 0.6500, Acc.countertop: 0.8341, Acc.stove: 0.9254, Acc.palm: 0.8056, Acc.kitchen island: 0.7874, Acc.computer: 0.9087, Acc.swivel chair: 0.7096, Acc.boat: 0.9144, Acc.bar: 0.8490, Acc.arcade machine: 0.8445, Acc.hovel: 0.3989, Acc.bus: 0.9721, Acc.towel: 0.8295, Acc.light: 0.6697, Acc.truck: 0.6277, Acc.tower: 0.4916, Acc.chandelier: 0.8428, Acc.awning: 0.4434, Acc.streetlight: 0.4236, Acc.booth: 0.7132, Acc.television receiver: 0.8637, Acc.airplane: 0.9354, Acc.dirt track: 0.2720, Acc.apparel: 0.7438, Acc.pole: 0.3884, Acc.land: 0.0610, Acc.bannister: 0.2325, Acc.escalator: 0.8593, Acc.ottoman: 0.7462, Acc.bottle: 0.7309, Acc.buffet: 0.6311, Acc.poster: 0.4013, Acc.stage: 0.4811, Acc.van: 0.7385, Acc.ship: 0.9829, Acc.fountain: 0.3981, Acc.conveyer belt: 0.9520, Acc.canopy: 0.7146, Acc.washer: 0.9030, Acc.plaything: 0.4662, Acc.swimming pool: 0.7642, Acc.stool: 0.6984, Acc.barrel: 0.8001, Acc.basket: 0.5990, Acc.waterfall: 0.7714, Acc.tent: 0.9834, Acc.bag: 0.2972, Acc.minibike: 0.8910, Acc.cradle: 0.9809, Acc.oven: 0.7213, Acc.ball: 0.6597, Acc.food: 0.7110, Acc.step: 0.1310, Acc.tank: 0.6790, Acc.trade name: 0.2935, Acc.microwave: 0.9647, Acc.pot: 0.7029, Acc.animal: 0.6188, Acc.bicycle: 0.8063, Acc.lake: 0.6355, Acc.dishwasher: 0.8129, Acc.screen: 0.9394, Acc.blanket: 0.3883, Acc.sculpture: 0.8672, Acc.hood: 0.7463, Acc.sconce: 0.6919, Acc.vase: 0.6453, Acc.traffic light: 0.6086, Acc.tray: 0.3444, Acc.ashcan: 0.6892, Acc.fan: 0.8239, Acc.pier: 0.4464, Acc.crt screen: 0.0363, Acc.plate: 0.7752, Acc.monitor: 0.7686, Acc.bulletin board: 0.7599, Acc.shower: 0.2568, Acc.radiator: 0.8070, Acc.glass: 0.2300, Acc.clock: 0.6757, Acc.flag: 0.7856