auto-round icon indicating copy to clipboard operation
auto-round copied to clipboard

Inference failure in the Qwen3 Omni quantized model

Open Tortoise17 opened this issue 3 months ago • 13 comments

Autoround cannot load the model from local path.

If the path is from huggingface, it loads.

If the path is from local, it gives the error:


auto_round/utils.py", line 1610, in mllm_load_model
model = model.eval()
UnboundLocalError: local variable 'model' referenced before assignment. 

If you can hint the issue.

Tortoise17 avatar Sep 29 '25 11:09 Tortoise17

Thanks for reporting this issue, may I know your cmd and auto-round version? I just tried the main branch, it worked fine with the following test

from auto_round import AutoRound
ar = AutoRound("/models/Qwen2.5-VL-7B-Instruct",iters=1,nsamples=1)
ar.quantize_and_save()

wenhuach21 avatar Sep 29 '25 12:09 wenhuach21

There may be some bugs when loading the model, and AutoRound incorrectly swallows the exception. I’d appreciate it if you could provide the command you used to reproduce this issue

wenhuach21 avatar Sep 29 '25 12:09 wenhuach21

try this pr to check if any exception has been raised when loading your model https://github.com/intel/auto-round/pull/863

wenhuach21 avatar Sep 29 '25 12:09 wenhuach21

@wenhuach21

from auto_round import AutoRound

model_name_or_path = "Qwen3-Omni-30B-A3B-Instruct"

ar = AutoRound(
    model=model_name_or_path,
    scheme="W4A16",
    iters=50,
    lr=5e-3,
)

output_dir = "./tmp_autoround" ar.quantize_and_save(output_dir, format="auto_round")

This was command but, pr #863 has resolved it. So far it looks. I am trying next and looking if the things finish until the completion with success. Thank you again.

Tortoise17 avatar Sep 29 '25 15:09 Tortoise17

@wenhuach21 The next error I am facing is below.

2025-09-29 18:36:27 INFO autoround.py L146: using MLLM mode for multimodal model.
2025-09-29 18:36:28 WARNING modeling_utils.py L4569: `torch_dtype` is deprecated! Use `dtype` instead!
Unrecognized keys in `rope_scaling` for 'rope_type'='default': {'interleaved', 'mrope_section', 'mrope_interleaved'}
Loading checkpoint shards: 100%|█████████████████████████████████████████████████| 16/16 [01:39<00:00,  6.25s/it]
2025-09-29 18:38:11 WARNING configuration_utils.py L692: The following generation flags are not valid and may be ignored: ['temperature', 'top_p', 'top_k']. Set `TRANSFORMERS_VERBOSITY=info` for more details.
2025-09-29 18:38:12 WARNING image_processing_auto.py L532: The image processor of type `Qwen2VLImageProcessor` is now loaded as a fast processor by default, even if the model checkpoint was saved with a slow processor. This is a breaking change and may produce slightly different outputs. To continue using the slow processor, instantiate this class with `use_fast=False`. Note that this behavior will be extended to all models in a future release.
2025-09-29 18:38:13,477 INFO config.py L54: PyTorch version 2.5.1+cu124 available.
2025-09-29 18:38:53 WARNING compressor.py L218: qwen3_omni_moe does not support for NeelNanda/pile-10k, will use liuhaotian/llava_conv_58k with default config as an alternative.
2025-09-29 18:38:53 WARNING compressor.py L228: reset batch_size(8) to 1 and gradient_accumulate_steps(1) to 8, because batch_size=8 cannot be used for liuhaotian/llava_conv_58k
2025-09-29 18:38:54 INFO base.py L369: using torch.bfloat16 for quantization tuning
2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.0.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq

This might be because either the autoround or the transformer has no support for Qwen3-Omni ?

Tortoise17 avatar Sep 29 '25 16:09 Tortoise17

@wenhuach21 The next error I am facing is below.

2025-09-29 18:36:27 INFO autoround.py L146: using MLLM mode for multimodal model.
2025-09-29 18:36:28 WARNING modeling_utils.py L4569: `torch_dtype` is deprecated! Use `dtype` instead!
Unrecognized keys in `rope_scaling` for 'rope_type'='default': {'interleaved', 'mrope_section', 'mrope_interleaved'}
Loading checkpoint shards: 100%|█████████████████████████████████████████████████| 16/16 [01:39<00:00,  6.25s/it]
2025-09-29 18:38:11 WARNING configuration_utils.py L692: The following generation flags are not valid and may be ignored: ['temperature', 'top_p', 'top_k']. Set `TRANSFORMERS_VERBOSITY=info` for more details.
2025-09-29 18:38:12 WARNING image_processing_auto.py L532: The image processor of type `Qwen2VLImageProcessor` is now loaded as a fast processor by default, even if the model checkpoint was saved with a slow processor. This is a breaking change and may produce slightly different outputs. To continue using the slow processor, instantiate this class with `use_fast=False`. Note that this behavior will be extended to all models in a future release.
2025-09-29 18:38:13,477 INFO config.py L54: PyTorch version 2.5.1+cu124 available.
2025-09-29 18:38:53 WARNING compressor.py L218: qwen3_omni_moe does not support for NeelNanda/pile-10k, will use liuhaotian/llava_conv_58k with default config as an alternative.
2025-09-29 18:38:53 WARNING compressor.py L228: reset batch_size(8) to 1 and gradient_accumulate_steps(1) to 8, because batch_size=8 cannot be used for liuhaotian/llava_conv_58k
2025-09-29 18:38:54 INFO base.py L369: using torch.bfloat16 for quantization tuning
2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.0.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq

This might be because either the autoround or the transformer has no support for Qwen3-Omni ?

There are no exceptions in this log. @n1ck-guo has tried this before, though quantization could be conducted successfully, inference has some issues which have not been root caused yet.

wenhuach21 avatar Sep 30 '25 01:09 wenhuach21

@wenhuach21 yes, that exception has been given. Due to that reason the process started for the pickup of the checkpoints. The below is now complete log.

2025-09-29 18:36:27 INFO autoround.py L146: using MLLM mode for multimodal model. 2025-09-29 18:36:28 WARNING modeling_utils.py L4569: torch_dtypeis deprecated! Usedtypeinstead! Unrecognized keys inrope_scalingfor 'rope_type'='default': {'interleaved', 'mrope_section', 'mrope_interleaved'} Loading checkpoint shards: 100%|█████████████████████████████████████████████████| 16/16 [01:39<00:00, 6.25s/it] 2025-09-29 18:38:11 WARNING configuration_utils.py L692: The following generation flags are not valid and may be ignored: ['temperature', 'top_p', 'top_k']. SetTRANSFORMERS_VERBOSITY=infofor more details. 2025-09-29 18:38:12 WARNING image_processing_auto.py L532: The image processor of typeQwen2VLImageProcessoris now loaded as a fast processor by default, even if the model checkpoint was saved with a slow processor. This is a breaking change and may produce slightly different outputs. To continue using the slow processor, instantiate this class withuse_fast=False. Note that this behavior will be extended to all models in a future release. 2025-09-29 18:38:13,477 INFO config.py L54: PyTorch version 2.5.1+cu124 available. 2025-09-29 18:38:53 WARNING compressor.py L218: qwen3_omni_moe does not support for NeelNanda/pile-10k, will use liuhaotian/llava_conv_58k with default config as an alternative. 2025-09-29 18:38:53 WARNING compressor.py L228: reset batch_size(8) to 1 and gradient_accumulate_steps(1) to 8, because batch_size=8 cannot be used for liuhaotian/llava_conv_58k 2025-09-29 18:38:54 INFO base.py L369: using torch.bfloat16 for quantization tuning 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.0.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.0.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.1.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.1.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.2.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.2.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.3.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.3.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.4.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.4.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.5.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.5.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.6.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.6.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.7.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.7.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.8.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.8.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.9.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.9.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.10.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.10.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.11.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.11.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.12.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.12.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.13.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.13.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.14.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.14.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.15.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.15.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.16.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.16.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.17.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.17.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.18.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.18.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.19.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.19.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.20.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.20.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.21.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.21.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.22.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.22.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.23.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.23.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.24.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.24.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.25.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.25.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.26.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:38:54 INFO base.py L769: thinker.visual.blocks.26.mlp.linear_fc2 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq 2025-09-29 18:39:03 INFO base.py L1765: start to cache block inputs 2025-09-29 18:39:04 INFO base.py L2279: switch to cpu to cache block inputs 2025-09-29 18:39:07 INFO dataset.py L95: use dataset llava_conv_58k, downloading ... cache block inputs: 0%| | 0/512 [00:00<?, ?it/s]2025-09-29 18:39:21,163 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000183280.jpg "HTTP/1.1 200 OK" cache block inputs: 0%| | 1/512 [00:00<08:25, 1.01it/s]2025-09-29 18:39:22,079 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000168356.jpg "HTTP/1.1 200 OK" cache block inputs: 0%|▏ | 2/512 [00:01<06:32, 1.30it/s]2025-09-29 18:39:22,666 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000456845.jpg "HTTP/1.1 200 OK" cache block inputs: 1%|▎ | 3/512 [00:02<05:50, 1.45it/s]2025-09-29 18:39:23,290 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000455081.jpg "HTTP/1.1 200 OK" cache block inputs: 1%|▍ | 4/512 [00:03<06:13, 1.36it/s]2025-09-29 18:39:24,067 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000295442.jpg "HTTP/1.1 200 OK" cache block inputs: 1%|▌ | 5/512 [00:03<06:20, 1.33it/s]2025-09-29 18:39:24,862 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000355717.jpg "HTTP/1.1 200 OK" cache block inputs: 1%|▋ | 6/512 [00:04<05:54, 1.43it/s]2025-09-29 18:39:25,499 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000245351.jpg "HTTP/1.1 200 OK" cache block inputs: 1%|▊ | 7/512 [00:05<06:37, 1.27it/s]2025-09-29 18:39:26,514 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000377914.jpg "HTTP/1.1 200 OK" cache block inputs: 2%|▉ | 8/512 [00:06<06:23, 1.31it/s]2025-09-29 18:39:27,151 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000536419.jpg "HTTP/1.1 200 OK" cache block inputs: 2%|▉ | 9/512 [00:06<06:00, 1.39it/s]2025-09-29 18:39:27,790 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000288986.jpg "HTTP/1.1 200 OK" cache block inputs: 2%|█ | 10/512 [00:07<05:48, 1.44it/s]2025-09-29 18:39:28,404 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000396696.jpg "HTTP/1.1 200 OK" cache block inputs: 2%|█▏ | 11/512 [00:07<05:34, 1.50it/s]2025-09-29 18:39:28,951 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000051164.jpg "HTTP/1.1 200 OK" cache block inputs: 2%|█▎ | 12/512 [00:08<06:00, 1.39it/s]2025-09-29 18:39:29,798 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000361547.jpg "HTTP/1.1 200 OK" cache block inputs: 3%|█▍ | 13/512 [00:09<05:19, 1.56it/s]2025-09-29 18:39:30,346 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000331592.jpg "HTTP/1.1 200 OK" cache block inputs: 3%|█▌ | 14/512 [00:10<05:48, 1.43it/s]2025-09-29 18:39:31,159 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000513200.jpg "HTTP/1.1 200 OK" cache block inputs: 3%|█▌ | 15/512 [00:10<06:19, 1.31it/s]2025-09-29 18:39:32,147 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000244049.jpg "HTTP/1.1 200 OK" cache block inputs: 3%|█▋ | 16/512 [00:11<06:37, 1.25it/s]2025-09-29 18:39:32,933 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000432216.jpg "HTTP/1.1 200 OK" cache block inputs: 3%|█▊ | 17/512 [00:12<06:06, 1.35it/s]2025-09-29 18:39:33,516 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000093469.jpg "HTTP/1.1 200 OK" cache block inputs: 4%|█▉ | 18/512 [00:13<07:34, 1.09it/s]2025-09-29 18:39:34,898 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000497709.jpg "HTTP/1.1 200 OK" cache block inputs: 4%|██ | 19/512 [00:14<06:49, 1.20it/s]2025-09-29 18:39:35,490 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000172434.jpg "HTTP/1.1 200 OK" cache block inputs: 4%|██▏ | 20/512 [00:15<06:27, 1.27it/s]2025-09-29 18:39:36,145 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000092753.jpg "HTTP/1.1 200 OK" cache block inputs: 4%|██▎ | 21/512 [00:15<06:37, 1.24it/s]2025-09-29 18:39:37,121 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000068712.jpg "HTTP/1.1 200 OK" cache block inputs: 4%|██▎ | 22/512 [00:17<08:29, 1.04s/it]2025-09-29 18:39:38,614 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000122959.jpg "HTTP/1.1 200 OK" cache block inputs: 4%|██▍ | 23/512 [00:18<08:32, 1.05s/it]2025-09-29 18:39:39,706 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000091595.jpg "HTTP/1.1 200 OK" cache block inputs: 5%|██▌ | 24/512 [00:19<07:29, 1.09it/s]2025-09-29 18:39:40,301 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000211807.jpg "HTTP/1.1 200 OK" cache block inputs: 5%|██▋ | 25/512 [00:19<06:39, 1.22it/s]2025-09-29 18:39:40,884 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000343847.jpg "HTTP/1.1 200 OK" cache block inputs: 5%|██▊ | 26/512 [00:20<06:32, 1.24it/s]2025-09-29 18:39:41,690 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000144000.jpg "HTTP/1.1 200 OK" cache block inputs: 5%|██▉ | 27/512 [00:21<06:30, 1.24it/s]2025-09-29 18:39:42,478 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000046112.jpg "HTTP/1.1 200 OK" cache block inputs: 5%|███ | 28/512 [00:22<06:47, 1.19it/s]2025-09-29 18:39:43,499 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000363541.jpg "HTTP/1.1 200 OK" cache block inputs: 6%|███ | 29/512 [00:23<06:25, 1.25it/s]2025-09-29 18:39:44,054 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000125727.jpg "HTTP/1.1 200 OK" cache block inputs: 6%|███▏ | 30/512 [00:23<05:49, 1.38it/s]2025-09-29 18:39:44,628 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000117789.jpg "HTTP/1.1 200 OK" cache block inputs: 6%|███▎ | 31/512 [00:24<05:54, 1.36it/s]2025-09-29 18:39:45,401 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000259243.jpg "HTTP/1.1 200 OK" cache block inputs: 6%|███▍ | 32/512 [00:25<05:58, 1.34it/s]2025-09-29 18:39:46,195 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000054003.jpg "HTTP/1.1 200 OK" cache block inputs: 6%|███▌ | 33/512 [00:25<06:10, 1.29it/s]2025-09-29 18:39:47,069 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000181344.jpg "HTTP/1.1 200 OK" cache block inputs: 7%|███▋ | 34/512 [00:26<06:31, 1.22it/s]2025-09-29 18:39:47,956 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000532175.jpg "HTTP/1.1 200 OK" cache block inputs: 7%|███▊ | 35/512 [00:27<06:28, 1.23it/s]2025-09-29 18:39:48,806 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000353480.jpg "HTTP/1.1 200 OK" cache block inputs: 7%|███▊ | 36/512 [00:28<05:50, 1.36it/s]2025-09-29 18:39:49,305 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000153817.jpg "HTTP/1.1 200 OK" cache block inputs: 7%|███▉ | 37/512 [00:29<05:57, 1.33it/s]2025-09-29 18:39:50,042 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000195568.jpg "HTTP/1.1 200 OK" cache block inputs: 7%|████ | 38/512 [00:29<05:13, 1.51it/s]2025-09-29 18:39:50,572 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000533441.jpg "HTTP/1.1 200 OK" cache block inputs: 8%|████▏ | 39/512 [00:30<05:07, 1.54it/s]2025-09-29 18:39:51,169 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000186614.jpg "HTTP/1.1 200 OK" cache block inputs: 8%|████▎ | 40/512 [00:30<04:59, 1.58it/s]2025-09-29 18:39:51,744 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000260564.jpg "HTTP/1.1 200 OK" cache block inputs: 8%|████▍ | 41/512 [00:31<05:23, 1.46it/s]2025-09-29 18:39:52,562 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000053875.jpg "HTTP/1.1 200 OK" cache block inputs: 8%|████▌ | 42/512 [00:32<05:10, 1.51it/s]2025-09-29 18:39:53,216 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000082511.jpg "HTTP/1.1 200 OK" cache block inputs: 8%|████▌ | 43/512 [00:32<05:39, 1.38it/s]2025-09-29 18:39:54,113 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000371874.jpg "HTTP/1.1 200 OK" cache block inputs: 9%|████▋ | 44/512 [00:33<05:57, 1.31it/s]2025-09-29 18:39:54,910 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000304950.jpg "HTTP/1.1 200 OK" cache block inputs: 9%|████▊ | 45/512 [00:35<07:23, 1.05it/s]2025-09-29 18:39:56,263 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000309031.jpg "HTTP/1.1 200 OK" cache block inputs: 9%|████▉ | 46/512 [00:35<06:57, 1.12it/s]2025-09-29 18:39:57,072 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000389382.jpg "HTTP/1.1 200 OK" cache block inputs: 9%|█████ | 47/512 [00:36<06:17, 1.23it/s]2025-09-29 18:39:57,670 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000268876.jpg "HTTP/1.1 200 OK" cache block inputs: 9%|█████▏ | 48/512 [00:37<06:25, 1.20it/s]2025-09-29 18:39:58,539 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000189296.jpg "HTTP/1.1 200 OK" cache block inputs: 10%|█████▎ | 49/512 [00:38<06:23, 1.21it/s]2025-09-29 18:39:59,413 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000195081.jpg "HTTP/1.1 200 OK" cache block inputs: 10%|█████▎ | 50/512 [00:39<06:23, 1.21it/s]2025-09-29 18:40:00,225 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000259790.jpg "HTTP/1.1 200 OK" cache block inputs: 10%|█████▍ | 51/512 [00:39<05:53, 1.30it/s]2025-09-29 18:40:00,780 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000014307.jpg "HTTP/1.1 200 OK" cache block inputs: 10%|█████▌ | 52/512 [00:40<05:24, 1.42it/s]2025-09-29 18:40:01,390 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000487269.jpg "HTTP/1.1 200 OK" cache block inputs: 10%|█████▋ | 53/512 [00:40<05:10, 1.48it/s]2025-09-29 18:40:01,991 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000446732.jpg "HTTP/1.1 200 OK" cache block inputs: 11%|█████▊ | 54/512 [00:41<05:30, 1.39it/s]2025-09-29 18:40:02,852 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000337602.jpg "HTTP/1.1 200 OK" cache block inputs: 11%|█████▉ | 55/512 [00:42<05:17, 1.44it/s]2025-09-29 18:40:03,476 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000533381.jpg "HTTP/1.1 200 OK" cache block inputs: 11%|██████ | 56/512 [00:43<05:07, 1.48it/s]2025-09-29 18:40:04,125 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000573501.jpg "HTTP/1.1 200 OK" cache block inputs: 11%|██████ | 57/512 [00:43<05:03, 1.50it/s]2025-09-29 18:40:04,743 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000125353.jpg "HTTP/1.1 200 OK" cache block inputs: 11%|██████▏ | 58/512 [00:44<05:27, 1.39it/s]2025-09-29 18:40:05,572 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000403064.jpg "HTTP/1.1 200 OK" cache block inputs: 12%|██████▎ | 59/512 [00:45<05:40, 1.33it/s]2025-09-29 18:40:06,395 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000131450.jpg "HTTP/1.1 200 OK" cache block inputs: 12%|██████▍ | 60/512 [00:46<07:08, 1.06it/s]2025-09-29 18:40:07,833 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000313385.jpg "HTTP/1.1 200 OK" cache block inputs: 12%|██████▌ | 61/512 [00:47<07:02, 1.07it/s]2025-09-29 18:40:08,743 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000084089.jpg "HTTP/1.1 200 OK" cache block inputs: 12%|██████▋ | 62/512 [00:48<06:19, 1.19it/s]2025-09-29 18:40:09,345 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000275206.jpg "HTTP/1.1 200 OK" cache block inputs: 12%|██████▊ | 63/512 [00:49<06:25, 1.17it/s]2025-09-29 18:40:10,308 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000244291.jpg "HTTP/1.1 200 OK" cache block inputs: 12%|██████▉ | 64/512 [00:50<06:25, 1.16it/s]2025-09-29 18:40:11,111 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000201115.jpg "HTTP/1.1 200 OK" cache block inputs: 13%|██████▉ | 65/512 [00:50<05:51, 1.27it/s]2025-09-29 18:40:11,729 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000579813.jpg "HTTP/1.1 200 OK" cache block inputs: 13%|███████ | 66/512 [00:51<05:58, 1.24it/s]2025-09-29 18:40:12,539 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000069197.jpg "HTTP/1.1 200 OK" cache block inputs: 13%|███████▏ | 67/512 [00:52<05:57, 1.24it/s]2025-09-29 18:40:13,465 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000181371.jpg "HTTP/1.1 200 OK" cache block inputs: 13%|███████▎ | 68/512 [00:53<07:41, 1.04s/it]2025-09-29 18:40:14,933 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000219653.jpg "HTTP/1.1 200 OK" cache block inputs: 13%|███████▍ | 69/512 [00:54<06:58, 1.06it/s]2025-09-29 18:40:15,737 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000518265.jpg "HTTP/1.1 200 OK" cache block inputs: 14%|███████▌ | 70/512 [00:55<06:50, 1.08it/s]2025-09-29 18:40:16,568 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000064244.jpg "HTTP/1.1 200 OK" cache block inputs: 14%|███████▋ | 71/512 [00:56<06:30, 1.13it/s]2025-09-29 18:40:17,350 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000476106.jpg "HTTP/1.1 200 OK" cache block inputs: 14%|███████▋ | 72/512 [00:57<07:22, 1.00s/it]2025-09-29 18:40:18,656 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000071126.jpg "HTTP/1.1 200 OK" cache block inputs: 14%|███████▊ | 73/512 [00:58<06:56, 1.05it/s]2025-09-29 18:40:19,402 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000119247.jpg "HTTP/1.1 200 OK" cache block inputs: 14%|███████▉ | 74/512 [00:58<06:02, 1.21it/s]2025-09-29 18:40:19,987 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000093264.jpg "HTTP/1.1 200 OK" cache block inputs: 15%|████████ | 75/512 [00:59<05:29, 1.32it/s]2025-09-29 18:40:20,591 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000184786.jpg "HTTP/1.1 200 OK" cache block inputs: 15%|████████▏ | 76/512 [01:00<06:24, 1.13it/s]2025-09-29 18:40:21,758 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000130111.jpg "HTTP/1.1 200 OK" cache block inputs: 15%|████████▎ | 77/512 [01:01<07:17, 1.01s/it]2025-09-29 18:40:23,075 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000408445.jpg "HTTP/1.1 200 OK" cache block inputs: 15%|████████▍ | 78/512 [01:02<06:26, 1.12it/s]2025-09-29 18:40:23,675 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000144582.jpg "HTTP/1.1 200 OK" cache block inputs: 15%|████████▍ | 79/512 [01:03<06:24, 1.13it/s]2025-09-29 18:40:24,597 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000283666.jpg "HTTP/1.1 200 OK" cache block inputs: 16%|████████▌ | 80/512 [01:04<05:39, 1.27it/s]2025-09-29 18:40:25,049 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000491118.jpg "HTTP/1.1 200 OK" cache block inputs: 16%|████████▋ | 81/512 [01:04<04:55, 1.46it/s]2025-09-29 18:40:25,582 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000450414.jpg "HTTP/1.1 200 OK" cache block inputs: 16%|████████▊ | 82/512 [01:05<04:46, 1.50it/s]2025-09-29 18:40:26,128 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000438894.jpg "HTTP/1.1 200 OK" cache block inputs: 16%|████████▉ | 83/512 [01:05<04:30, 1.58it/s]2025-09-29 18:40:26,684 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000198441.jpg "HTTP/1.1 200 OK" cache block inputs: 16%|█████████ | 84/512 [01:06<04:57, 1.44it/s]2025-09-29 18:40:27,571 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000225124.jpg "HTTP/1.1 200 OK" cache block inputs: 17%|█████████▏ | 85/512 [01:07<06:11, 1.15it/s]2025-09-29 18:40:28,889 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000368521.jpg "HTTP/1.1 200 OK" cache block inputs: 17%|█████████▏ | 86/512 [01:08<06:18, 1.13it/s]2025-09-29 18:40:29,724 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000400606.jpg "HTTP/1.1 200 OK" cache block inputs: 17%|█████████▎ | 87/512 [01:09<06:03, 1.17it/s]2025-09-29 18:40:30,576 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000194200.jpg "HTTP/1.1 200 OK" cache block inputs: 17%|█████████▍ | 88/512 [01:10<07:11, 1.02s/it]2025-09-29 18:40:31,983 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000326209.jpg "HTTP/1.1 200 OK" cache block inputs: 17%|█████████▌ | 89/512 [01:11<07:08, 1.01s/it]2025-09-29 18:40:32,953 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000287201.jpg "HTTP/1.1 200 OK" cache block inputs: 18%|█████████▋ | 90/512 [01:12<06:02, 1.17it/s]2025-09-29 18:40:34,742 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000105228.jpg "HTTP/1.1 200 OK" cache block inputs: 18%|█████████▊ | 91/512 [01:15<09:48, 1.40s/it]2025-09-29 18:40:36,170 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000282209.jpg "HTTP/1.1 200 OK" cache block inputs: 18%|█████████▉ | 92/512 [01:15<08:39, 1.24s/it]2025-09-29 18:40:37,064 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000239849.jpg "HTTP/1.1 200 OK" cache block inputs: 18%|█████████▉ | 93/512 [01:16<07:54, 1.13s/it]2025-09-29 18:40:37,897 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000572036.jpg "HTTP/1.1 200 OK" cache block inputs: 18%|██████████ | 94/512 [01:17<07:19, 1.05s/it]2025-09-29 18:40:38,743 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000050463.jpg "HTTP/1.1 200 OK" cache block inputs: 19%|██████████▏ | 95/512 [01:18<06:25, 1.08it/s]2025-09-29 18:40:39,353 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000085284.jpg "HTTP/1.1 200 OK" cache block inputs: 19%|██████████▎ | 96/512 [01:19<07:07, 1.03s/it]2025-09-29 18:40:40,645 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000045299.jpg "HTTP/1.1 200 OK" cache block inputs: 19%|██████████▍ | 97/512 [01:20<06:38, 1.04it/s]2025-09-29 18:40:41,446 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000165046.jpg "HTTP/1.1 200 OK" cache block inputs: 19%|██████████▌ | 98/512 [01:21<07:08, 1.03s/it]2025-09-29 18:40:42,687 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000543622.jpg "HTTP/1.1 200 OK" cache block inputs: 19%|██████████▋ | 99/512 [01:22<06:44, 1.02it/s]2025-09-29 18:40:43,512 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000359567.jpg "HTTP/1.1 200 OK" cache block inputs: 20%|██████████▌ | 100/512 [01:23<07:25, 1.08s/it]2025-09-29 18:40:44,808 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000072312.jpg "HTTP/1.1 200 OK" cache block inputs: 20%|██████████▋ | 101/512 [01:24<06:25, 1.07it/s]2025-09-29 18:40:45,407 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000433637.jpg "HTTP/1.1 200 OK" cache block inputs: 20%|██████████▊ | 102/512 [01:24<05:45, 1.19it/s]2025-09-29 18:40:46,016 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000179011.jpg "HTTP/1.1 200 OK" cache block inputs: 20%|██████████▊ | 103/512 [01:25<05:14, 1.30it/s]2025-09-29 18:40:46,660 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000098408.jpg "HTTP/1.1 200 OK" cache block inputs: 20%|██████████▉ | 104/512 [01:26<06:31, 1.04it/s]2025-09-29 18:40:47,984 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000564557.jpg "HTTP/1.1 200 OK" cache block inputs: 21%|███████████ | 105/512 [01:27<05:21, 1.27it/s]2025-09-29 18:40:48,489 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000039312.jpg "HTTP/1.1 200 OK" cache block inputs: 21%|███████████▏ | 106/512 [01:29<07:07, 1.05s/it]2025-09-29 18:40:50,116 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000575908.jpg "HTTP/1.1 200 OK" cache block inputs: 21%|███████████▎ | 107/512 [01:29<06:38, 1.02it/s]2025-09-29 18:40:50,923 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000502232.jpg "HTTP/1.1 200 OK" cache block inputs: 21%|███████████▍ | 108/512 [01:30<06:05, 1.11it/s]2025-09-29 18:40:51,621 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000206465.jpg "HTTP/1.1 200 OK" cache block inputs: 21%|███████████▍ | 109/512 [01:31<05:55, 1.13it/s]2025-09-29 18:40:52,400 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000058714.jpg "HTTP/1.1 200 OK" cache block inputs: 21%|███████████▌ | 110/512 [01:31<05:14, 1.28it/s]2025-09-29 18:40:52,999 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000219674.jpg "HTTP/1.1 200 OK" cache block inputs: 22%|███████████▋ | 111/512 [01:33<06:38, 1.01it/s]2025-09-29 18:40:54,554 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000383205.jpg "HTTP/1.1 200 OK" cache block inputs: 22%|███████████▊ | 112/512 [01:34<06:20, 1.05it/s]2025-09-29 18:40:55,320 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000186699.jpg "HTTP/1.1 200 OK" cache block inputs: 22%|███████████▉ | 113/512 [01:34<05:35, 1.19it/s]2025-09-29 18:40:55,953 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000086825.jpg "HTTP/1.1 200 OK" cache block inputs: 22%|████████████ | 114/512 [01:35<05:31, 1.20it/s]2025-09-29 18:40:56,762 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000412761.jpg "HTTP/1.1 200 OK" cache block inputs: 22%|████████████▏ | 115/512 [01:36<05:05, 1.30it/s]2025-09-29 18:40:57,370 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000400377.jpg "HTTP/1.1 200 OK" cache block inputs: 23%|████████████▏ | 116/512 [01:37<05:12, 1.27it/s]2025-09-29 18:40:58,154 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000535099.jpg "HTTP/1.1 200 OK" cache block inputs: 23%|████████████▎ | 117/512 [01:37<04:33, 1.45it/s]2025-09-29 18:40:58,724 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000100022.jpg "HTTP/1.1 200 OK" cache block inputs: 23%|████████████▍ | 118/512 [01:38<05:13, 1.26it/s]2025-09-29 18:40:59,700 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000506920.jpg "HTTP/1.1 200 OK" cache block inputs: 23%|████████████▌ | 119/512 [01:39<05:23, 1.22it/s]2025-09-29 18:41:00,659 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000039138.jpg "HTTP/1.1 200 OK" cache block inputs: 23%|████████████▋ | 120/512 [01:40<04:55, 1.33it/s]2025-09-29 18:41:01,235 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000416912.jpg "HTTP/1.1 200 OK" cache block inputs: 24%|████████████▊ | 121/512 [01:40<04:43, 1.38it/s]2025-09-29 18:41:01,814 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000139729.jpg "HTTP/1.1 200 OK" cache block inputs: 24%|████████████▊ | 122/512 [01:41<05:13, 1.24it/s]2025-09-29 18:41:02,843 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000531860.jpg "HTTP/1.1 200 OK" cache block inputs: 24%|████████████▉ | 123/512 [01:42<05:18, 1.22it/s]2025-09-29 18:41:03,697 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000090628.jpg "HTTP/1.1 200 OK" cache block inputs: 24%|█████████████ | 124/512 [01:43<04:54, 1.32it/s]2025-09-29 18:41:04,337 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000455916.jpg "HTTP/1.1 200 OK" cache block inputs: 24%|█████████████▏ | 125/512 [01:44<06:25, 1.00it/s]2025-09-29 18:41:05,820 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000099728.jpg "HTTP/1.1 200 OK" cache block inputs: 25%|█████████████▎ | 126/512 [01:45<05:25, 1.18it/s]2025-09-29 18:41:06,388 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000350815.jpg "HTTP/1.1 200 OK" cache block inputs: 25%|█████████████▍ | 127/512 [01:46<06:31, 1.02s/it]2025-09-29 18:41:07,791 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000570209.jpg "HTTP/1.1 200 OK" cache block inputs: 25%|█████████████▌ | 128/512 [01:47<06:08, 1.04it/s]2025-09-29 18:41:08,618 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000156986.jpg "HTTP/1.1 200 OK" cache block inputs: 25%|█████████████▌ | 129/512 [01:48<06:49, 1.07s/it]2025-09-29 18:41:10,020 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000081504.jpg "HTTP/1.1 200 OK" cache block inputs: 25%|█████████████▋ | 130/512 [01:50<07:37, 1.20s/it]2025-09-29 18:41:11,388 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000161381.jpg "HTTP/1.1 200 OK" cache block inputs: 26%|█████████████▊ | 131/512 [01:51<06:52, 1.08s/it]2025-09-29 18:41:12,234 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000105047.jpg "HTTP/1.1 200 OK" cache block inputs: 26%|█████████████▉ | 132/512 [01:51<06:19, 1.00it/s]2025-09-29 18:41:13,011 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000034074.jpg "HTTP/1.1 200 OK" cache block inputs: 26%|██████████████ | 133/512 [01:52<05:54, 1.07it/s]2025-09-29 18:41:13,858 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000295716.jpg "HTTP/1.1 200 OK" cache block inputs: 26%|██████████████▏ | 134/512 [01:53<06:28, 1.03s/it]2025-09-29 18:41:15,057 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000126612.jpg "HTTP/1.1 200 OK" cache block inputs: 26%|██████████████▏ | 135/512 [01:54<06:01, 1.04it/s]2025-09-29 18:41:15,886 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000573085.jpg "HTTP/1.1 200 OK" cache block inputs: 27%|██████████████▎ | 136/512 [01:55<05:46, 1.09it/s]2025-09-29 18:41:16,772 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000380292.jpg "HTTP/1.1 200 OK" cache block inputs: 27%|██████████████▍ | 137/512 [01:56<05:19, 1.17it/s]2025-09-29 18:41:17,366 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000542514.jpg "HTTP/1.1 200 OK" cache block inputs: 27%|██████████████▌ | 138/512 [01:56<04:50, 1.29it/s]2025-09-29 18:41:17,959 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000496552.jpg "HTTP/1.1 200 OK" cache block inputs: 27%|██████████████▋ | 139/512 [01:57<05:20, 1.16it/s]2025-09-29 18:41:19,039 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000073626.jpg "HTTP/1.1 200 OK" cache block inputs: 27%|██████████████▊ | 140/512 [01:58<05:24, 1.15it/s]2025-09-29 18:41:19,959 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000538435.jpg "HTTP/1.1 200 OK" cache block inputs: 28%|██████████████▊ | 141/512 [02:00<06:36, 1.07s/it]2025-09-29 18:41:21,453 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000292009.jpg "HTTP/1.1 200 OK" cache block inputs: 28%|██████████████▉ | 142/512 [02:00<05:32, 1.11it/s]2025-09-29 18:41:21,984 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000511031.jpg "HTTP/1.1 200 OK" cache block inputs: 28%|███████████████ | 143/512 [02:01<05:26, 1.13it/s]2025-09-29 18:41:22,816 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000503822.jpg "HTTP/1.1 200 OK" cache block inputs: 28%|███████████████▏ | 144/512 [02:02<05:20, 1.15it/s]2025-09-29 18:41:23,662 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000258520.jpg "HTTP/1.1 200 OK" cache block inputs: 28%|███████████████▎ | 145/512 [02:03<05:13, 1.17it/s]2025-09-29 18:41:24,477 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000451768.jpg "HTTP/1.1 200 OK" cache block inputs: 29%|███████████████▍ | 146/512 [02:04<04:47, 1.27it/s]2025-09-29 18:41:25,105 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000011579.jpg "HTTP/1.1 200 OK" cache block inputs: 29%|███████████████▌ | 147/512 [02:05<05:42, 1.07it/s]2025-09-29 18:41:26,454 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000382664.jpg "HTTP/1.1 200 OK" cache block inputs: 29%|███████████████▌ | 148/512 [02:05<05:11, 1.17it/s]2025-09-29 18:41:27,040 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000147973.jpg "HTTP/1.1 200 OK" cache block inputs: 29%|███████████████▋ | 149/512 [02:07<05:36, 1.08it/s]2025-09-29 18:41:28,138 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000345643.jpg "HTTP/1.1 200 OK" cache block inputs: 29%|███████████████▊ | 150/512 [02:07<05:00, 1.21it/s]2025-09-29 18:41:28,761 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000022224.jpg "HTTP/1.1 200 OK" cache block inputs: 29%|███████████████▉ | 151/512 [02:08<05:48, 1.03it/s]2025-09-29 18:41:30,026 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000170602.jpg "HTTP/1.1 200 OK" cache block inputs: 30%|████████████████ | 152/512 [02:09<05:29, 1.09it/s]2025-09-29 18:41:30,821 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000567082.jpg "HTTP/1.1 200 OK" cache block inputs: 30%|████████████████▏ | 153/512 [02:10<05:13, 1.14it/s]2025-09-29 18:41:31,621 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000106364.jpg "HTTP/1.1 200 OK" cache block inputs: 30%|████████████████▏ | 154/512 [02:11<05:06, 1.17it/s]2025-09-29 18:41:32,446 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000239315.jpg "HTTP/1.1 200 OK" cache block inputs: 30%|████████████████▎ | 155/512 [02:12<05:06, 1.16it/s]2025-09-29 18:41:33,289 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000530658.jpg "HTTP/1.1 200 OK" cache block inputs: 30%|████████████████▍ | 156/512 [02:13<05:51, 1.01it/s]2025-09-29 18:41:34,572 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000396284.jpg "HTTP/1.1 200 OK" cache block inputs: 31%|████████████████▌ | 157/512 [02:14<06:25, 1.09s/it]2025-09-29 18:41:35,893 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000518981.jpg "HTTP/1.1 200 OK" cache block inputs: 31%|████████████████▋ | 158/512 [02:15<06:34, 1.11s/it]2025-09-29 18:41:37,049 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000219300.jpg "HTTP/1.1 200 OK" cache block inputs: 31%|████████████████▊ | 159/512 [02:17<06:28, 1.10s/it]2025-09-29 18:41:38,109 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000497500.jpg "HTTP/1.1 200 OK" cache block inputs: 31%|████████████████▉ | 160/512 [02:17<05:53, 1.01s/it]2025-09-29 18:41:38,896 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000062604.jpg "HTTP/1.1 200 OK" cache block inputs: 31%|████████████████▉ | 161/512 [02:18<05:32, 1.06it/s]2025-09-29 18:41:39,744 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000260852.jpg "HTTP/1.1 200 OK" cache block inputs: 32%|█████████████████ | 162/512 [02:19<05:17, 1.10it/s]2025-09-29 18:41:40,568 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000488731.jpg "HTTP/1.1 200 OK" cache block inputs: 32%|█████████████████▏ | 163/512 [02:20<05:07, 1.14it/s]2025-09-29 18:41:41,365 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000441523.jpg "HTTP/1.1 200 OK" cache block inputs: 32%|█████████████████▎ | 164/512 [02:20<04:38, 1.25it/s]2025-09-29 18:41:41,958 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000560158.jpg "HTTP/1.1 200 OK" cache block inputs: 32%|█████████████████▍ | 165/512 [02:21<04:35, 1.26it/s]2025-09-29 18:41:42,706 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000202672.jpg "HTTP/1.1 200 OK" cache block inputs: 32%|█████████████████▌ | 166/512 [02:22<05:19, 1.08it/s]2025-09-29 18:41:43,935 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000301916.jpg "HTTP/1.1 200 OK" cache block inputs: 33%|█████████████████▌ | 167/512 [02:23<05:04, 1.13it/s]2025-09-29 18:41:44,740 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000017526.jpg "HTTP/1.1 200 OK" cache block inputs: 33%|█████████████████▋ | 168/512 [02:24<05:42, 1.01it/s]2025-09-29 18:41:46,077 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000365738.jpg "HTTP/1.1 200 OK" cache block inputs: 33%|█████████████████▊ | 169/512 [02:26<06:06, 1.07s/it]2025-09-29 18:41:47,298 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000072947.jpg "HTTP/1.1 200 OK" cache block inputs: 33%|█████████████████▉ | 170/512 [02:27<06:00, 1.05s/it]2025-09-29 18:41:48,304 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000223534.jpg "HTTP/1.1 200 OK" cache block inputs: 33%|██████████████████ | 171/512 [02:27<05:15, 1.08it/s]2025-09-29 18:41:48,892 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000196653.jpg "HTTP/1.1 200 OK" cache block inputs: 34%|██████████████████▏ | 172/512 [02:28<04:59, 1.13it/s]2025-09-29 18:41:49,665 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000039395.jpg "HTTP/1.1 200 OK" cache block inputs: 34%|██████████████████▏ | 173/512 [02:29<05:07, 1.10it/s]2025-09-29 18:41:50,668 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000252364.jpg "HTTP/1.1 200 OK" cache block inputs: 34%|██████████████████▎ | 174/512 [02:30<05:15, 1.07it/s]2025-09-29 18:41:51,657 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000215410.jpg "HTTP/1.1 200 OK" cache block inputs: 34%|██████████████████▍ | 175/512 [02:31<05:10, 1.08it/s]2025-09-29 18:41:52,578 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000130164.jpg "HTTP/1.1 200 OK" cache block inputs: 34%|██████████████████▌ | 176/512 [02:32<04:42, 1.19it/s]2025-09-29 18:41:53,185 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000460575.jpg "HTTP/1.1 200 OK" cache block inputs: 35%|██████████████████▋ | 177/512 [02:32<04:17, 1.30it/s]2025-09-29 18:41:53,795 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000452005.jpg "HTTP/1.1 200 OK" cache block inputs: 35%|██████████████████▊ | 178/512 [02:33<04:19, 1.29it/s]2025-09-29 18:41:54,608 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000227250.jpg "HTTP/1.1 200 OK" cache block inputs: 35%|██████████████████▉ | 179/512 [02:34<04:49, 1.15it/s]2025-09-29 18:41:55,673 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000500405.jpg "HTTP/1.1 200 OK" cache block inputs: 35%|██████████████████▉ | 180/512 [02:36<05:51, 1.06s/it]2025-09-29 18:41:57,162 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000447025.jpg "HTTP/1.1 200 OK" cache block inputs: 35%|███████████████████ | 181/512 [02:36<05:21, 1.03it/s]2025-09-29 18:41:57,953 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000302078.jpg "HTTP/1.1 200 OK" cache block inputs: 36%|███████████████████▏ | 182/512 [02:37<05:07, 1.07it/s]2025-09-29 18:41:58,772 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000043347.jpg "HTTP/1.1 200 OK" cache block inputs: 36%|███████████████████▎ | 183/512 [02:38<04:52, 1.12it/s]2025-09-29 18:41:59,604 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000313525.jpg "HTTP/1.1 200 OK" cache block inputs: 36%|███████████████████▍ | 184/512 [02:39<05:47, 1.06s/it]2025-09-29 18:42:01,007 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000498449.jpg "HTTP/1.1 200 OK" cache block inputs: 36%|███████████████████▌ | 185/512 [02:40<05:20, 1.02it/s]2025-09-29 18:42:01,824 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000215407.jpg "HTTP/1.1 200 OK" cache block inputs: 36%|███████████████████▌ | 186/512 [02:41<05:01, 1.08it/s]2025-09-29 18:42:02,636 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000213389.jpg "HTTP/1.1 200 OK" cache block inputs: 37%|███████████████████▋ | 187/512 [02:42<04:53, 1.11it/s]2025-09-29 18:42:03,448 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000037186.jpg "HTTP/1.1 200 OK" cache block inputs: 37%|███████████████████▊ | 188/512 [02:43<04:39, 1.16it/s]2025-09-29 18:42:04,188 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000027364.jpg "HTTP/1.1 200 OK" cache block inputs: 37%|███████████████████▉ | 189/512 [02:43<03:59, 1.35it/s]2025-09-29 18:42:04,735 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000303992.jpg "HTTP/1.1 200 OK" cache block inputs: 37%|████████████████████ | 190/512 [02:44<04:07, 1.30it/s]2025-09-29 18:42:05,520 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000458724.jpg "HTTP/1.1 200 OK" cache block inputs: 37%|████████████████████▏ | 191/512 [02:45<04:08, 1.29it/s]2025-09-29 18:42:06,309 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000458705.jpg "HTTP/1.1 200 OK" cache block inputs: 38%|████████████████████▎ | 192/512 [02:46<04:08, 1.29it/s]2025-09-29 18:42:07,097 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000438060.jpg "HTTP/1.1 200 OK" cache block inputs: 38%|████████████████████▎ | 193/512 [02:46<03:51, 1.38it/s]2025-09-29 18:42:07,681 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000476846.jpg "HTTP/1.1 200 OK" cache block inputs: 38%|████████████████████▍ | 194/512 [02:47<03:36, 1.47it/s]2025-09-29 18:42:08,248 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000430342.jpg "HTTP/1.1 200 OK" cache block inputs: 38%|████████████████████▌ | 195/512 [02:47<03:43, 1.42it/s]2025-09-29 18:42:09,024 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000105531.jpg "HTTP/1.1 200 OK" cache block inputs: 38%|████████████████████▋ | 196/512 [02:49<04:25, 1.19it/s]2025-09-29 18:42:10,239 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000267422.jpg "HTTP/1.1 200 OK" cache block inputs: 38%|████████████████████▊ | 197/512 [02:49<04:24, 1.19it/s]2025-09-29 18:42:10,997 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000336397.jpg "HTTP/1.1 200 OK" cache block inputs: 39%|████████████████████▉ | 198/512 [02:50<03:48, 1.37it/s]2025-09-29 18:42:11,495 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000468263.jpg "HTTP/1.1 200 OK" cache block inputs: 39%|████████████████████▉ | 199/512 [02:51<03:56, 1.32it/s]2025-09-29 18:42:12,330 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000510245.jpg "HTTP/1.1 200 OK" cache block inputs: 39%|█████████████████████ | 200/512 [02:51<03:33, 1.46it/s]2025-09-29 18:42:12,796 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000030589.jpg "HTTP/1.1 200 OK" cache block inputs: 39%|█████████████████████▏ | 201/512 [02:52<03:11, 1.62it/s]2025-09-29 18:42:13,270 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000428149.jpg "HTTP/1.1 200 OK" cache block inputs: 39%|█████████████████████▎ | 202/512 [02:52<03:06, 1.66it/s]2025-09-29 18:42:13,879 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000338501.jpg "HTTP/1.1 200 OK" cache block inputs: 40%|█████████████████████▍ | 203/512 [02:53<03:07, 1.65it/s]2025-09-29 18:42:14,512 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000580235.jpg "HTTP/1.1 200 OK" cache block inputs: 40%|█████████████████████▌ | 204/512 [02:54<04:02, 1.27it/s]2025-09-29 18:42:15,692 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000480851.jpg "HTTP/1.1 200 OK" cache block inputs: 40%|█████████████████████▌ | 205/512 [02:55<04:01, 1.27it/s]2025-09-29 18:42:16,486 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000525684.jpg "HTTP/1.1 200 OK" cache block inputs: 40%|█████████████████████▋ | 206/512 [02:56<04:01, 1.27it/s]2025-09-29 18:42:17,298 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000537074.jpg "HTTP/1.1 200 OK" cache block inputs: 40%|█████████████████████▊ | 207/512 [02:57<04:06, 1.24it/s]2025-09-29 18:42:18,156 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000256938.jpg "HTTP/1.1 200 OK" cache block inputs: 41%|█████████████████████▉ | 208/512 [02:58<04:33, 1.11it/s]2025-09-29 18:42:19,248 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000461027.jpg "HTTP/1.1 200 OK" cache block inputs: 41%|██████████████████████ | 209/512 [02:59<04:27, 1.13it/s]2025-09-29 18:42:20,141 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000416603.jpg "HTTP/1.1 200 OK" cache block inputs: 41%|██████████████████████▏ | 210/512 [03:00<04:51, 1.04it/s]2025-09-29 18:42:21,288 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000261955.jpg "HTTP/1.1 200 OK" cache block inputs: 41%|██████████████████████▎ | 211/512 [03:01<04:42, 1.07it/s]2025-09-29 18:42:22,134 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000429248.jpg "HTTP/1.1 200 OK" cache block inputs: 41%|██████████████████████▎ | 212/512 [03:01<04:38, 1.08it/s]2025-09-29 18:42:22,992 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000034439.jpg "HTTP/1.1 200 OK" cache block inputs: 42%|██████████████████████▍ | 213/512 [03:02<04:05, 1.22it/s]2025-09-29 18:42:23,565 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000268100.jpg "HTTP/1.1 200 OK" cache block inputs: 42%|██████████████████████▌ | 214/512 [03:02<03:34, 1.39it/s]2025-09-29 18:42:24,084 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000263101.jpg "HTTP/1.1 200 OK" cache block inputs: 42%|██████████████████████▋ | 215/512 [03:03<03:40, 1.35it/s]2025-09-29 18:42:24,857 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000069148.jpg "HTTP/1.1 200 OK" cache block inputs: 42%|██████████████████████▊ | 216/512 [03:04<03:43, 1.33it/s]2025-09-29 18:42:25,699 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000292999.jpg "HTTP/1.1 200 OK" cache block inputs: 42%|██████████████████████▉ | 217/512 [03:05<03:49, 1.28it/s]2025-09-29 18:42:26,552 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000493477.jpg "HTTP/1.1 200 OK" cache block inputs: 43%|██████████████████████▉ | 218/512 [03:06<03:39, 1.34it/s]2025-09-29 18:42:27,228 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000067615.jpg "HTTP/1.1 200 OK" cache block inputs: 43%|███████████████████████ | 219/512 [03:06<03:48, 1.28it/s]2025-09-29 18:42:28,054 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000435182.jpg "HTTP/1.1 200 OK" cache block inputs: 43%|███████████████████████▏ | 220/512 [03:08<04:53, 1.00s/it]2025-09-29 18:42:29,576 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000229250.jpg "HTTP/1.1 200 OK" cache block inputs: 43%|███████████████████████▎ | 221/512 [03:09<04:39, 1.04it/s]2025-09-29 18:42:30,365 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000393027.jpg "HTTP/1.1 200 OK" cache block inputs: 43%|███████████████████████▍ | 222/512 [03:10<04:23, 1.10it/s]2025-09-29 18:42:31,217 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000048632.jpg "HTTP/1.1 200 OK" cache block inputs: 44%|███████████████████████▌ | 223/512 [03:11<04:56, 1.02s/it]2025-09-29 18:42:32,508 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000248879.jpg "HTTP/1.1 200 OK" cache block inputs: 44%|███████████████████████▋ | 224/512 [03:12<04:44, 1.01it/s]2025-09-29 18:42:33,410 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000350939.jpg "HTTP/1.1 200 OK" cache block inputs: 44%|███████████████████████▋ | 225/512 [03:13<04:44, 1.01it/s]2025-09-29 18:42:34,408 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000505701.jpg "HTTP/1.1 200 OK" cache block inputs: 44%|███████████████████████▊ | 226/512 [03:14<04:28, 1.07it/s]2025-09-29 18:42:35,208 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000481222.jpg "HTTP/1.1 200 OK" cache block inputs: 44%|███████████████████████▉ | 227/512 [03:15<04:26, 1.07it/s]2025-09-29 18:42:36,118 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000471028.jpg "HTTP/1.1 200 OK" cache block inputs: 45%|████████████████████████ | 228/512 [03:15<04:12, 1.12it/s]2025-09-29 18:42:36,917 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000367035.jpg "HTTP/1.1 200 OK" cache block inputs: 45%|████████████████████████▏ | 229/512 [03:17<04:53, 1.04s/it]2025-09-29 18:42:38,322 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000294527.jpg "HTTP/1.1 200 OK" cache block inputs: 45%|████████████████████████▎ | 230/512 [03:18<04:34, 1.03it/s]2025-09-29 18:42:39,154 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000369775.jpg "HTTP/1.1 200 OK" cache block inputs: 45%|████████████████████████▎ | 231/512 [03:19<04:52, 1.04s/it]2025-09-29 18:42:40,368 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000299794.jpg "HTTP/1.1 200 OK" cache block inputs: 45%|████████████████████████▍ | 232/512 [03:20<05:32, 1.19s/it]2025-09-29 18:42:41,860 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000467589.jpg "HTTP/1.1 200 OK" cache block inputs: 46%|████████████████████████▌ | 233/512 [03:22<06:04, 1.31s/it]2025-09-29 18:42:43,457 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000365011.jpg "HTTP/1.1 200 OK" cache block inputs: 46%|████████████████████████▋ | 234/512 [03:23<05:21, 1.16s/it]2025-09-29 18:42:44,277 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000033702.jpg "HTTP/1.1 200 OK" cache block inputs: 46%|████████████████████████▊ | 235/512 [03:23<04:37, 1.00s/it]2025-09-29 18:42:44,944 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000371514.jpg "HTTP/1.1 200 OK" cache block inputs: 46%|████████████████████████▉ | 236/512 [03:24<04:24, 1.04it/s]2025-09-29 18:42:45,731 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000487941.jpg "HTTP/1.1 200 OK" cache block inputs: 46%|████████████████████████▉ | 237/512 [03:25<04:49, 1.05s/it]2025-09-29 18:42:47,039 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000381017.jpg "HTTP/1.1 200 OK" cache block inputs: 46%|█████████████████████████ | 238/512 [03:26<04:13, 1.08it/s]2025-09-29 18:42:47,680 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000010948.jpg "HTTP/1.1 200 OK" cache block inputs: 47%|█████████████████████████▏ | 239/512 [03:27<03:49, 1.19it/s]2025-09-29 18:42:48,310 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000480022.jpg "HTTP/1.1 200 OK" cache block inputs: 47%|█████████████████████████▎ | 240/512 [03:28<03:47, 1.20it/s]2025-09-29 18:42:49,143 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000250443.jpg "HTTP/1.1 200 OK" cache block inputs: 47%|█████████████████████████▍ | 241/512 [03:28<03:49, 1.18it/s]2025-09-29 18:42:49,981 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000403454.jpg "HTTP/1.1 200 OK" cache block inputs: 47%|█████████████████████████▌ | 242/512 [03:29<03:47, 1.19it/s]2025-09-29 18:42:50,799 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000524662.jpg "HTTP/1.1 200 OK" cache block inputs: 47%|█████████████████████████▋ | 243/512 [03:30<03:26, 1.30it/s]2025-09-29 18:42:51,451 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000534662.jpg "HTTP/1.1 200 OK" cache block inputs: 48%|█████████████████████████▋ | 244/512 [03:31<03:31, 1.27it/s]2025-09-29 18:42:52,258 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000015269.jpg "HTTP/1.1 200 OK" cache block inputs: 48%|█████████████████████████▊ | 245/512 [03:31<03:17, 1.35it/s]2025-09-29 18:42:52,895 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000452814.jpg "HTTP/1.1 200 OK" cache block inputs: 48%|█████████████████████████▉ | 246/512 [03:32<03:26, 1.29it/s]2025-09-29 18:42:53,727 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000553505.jpg "HTTP/1.1 200 OK" cache block inputs: 48%|██████████████████████████ | 247/512 [03:33<03:26, 1.28it/s]2025-09-29 18:42:54,593 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000438055.jpg "HTTP/1.1 200 OK" cache block inputs: 48%|██████████████████████████▏ | 248/512 [03:34<03:33, 1.24it/s]2025-09-29 18:42:55,408 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000211221.jpg "HTTP/1.1 200 OK" cache block inputs: 49%|██████████████████████████▎ | 249/512 [03:35<03:32, 1.24it/s]2025-09-29 18:42:56,221 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000469658.jpg "HTTP/1.1 200 OK" cache block inputs: 49%|██████████████████████████▎ | 250/512 [03:36<04:16, 1.02it/s]2025-09-29 18:42:57,611 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000035663.jpg "HTTP/1.1 200 OK" cache block inputs: 49%|██████████████████████████▍ | 251/512 [03:37<03:48, 1.14it/s]2025-09-29 18:42:58,158 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000269422.jpg "HTTP/1.1 200 OK" cache block inputs: 49%|██████████████████████████▌ | 252/512 [03:37<03:14, 1.33it/s]2025-09-29 18:42:58,697 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000346179.jpg "HTTP/1.1 200 OK" cache block inputs: 49%|██████████████████████████▋ | 253/512 [03:38<03:20, 1.29it/s]2025-09-29 18:42:59,511 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000541374.jpg "HTTP/1.1 200 OK" cache block inputs: 50%|██████████████████████████▊ | 254/512 [03:39<03:21, 1.28it/s]2025-09-29 18:43:00,312 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000248745.jpg "HTTP/1.1 200 OK" cache block inputs: 50%|██████████████████████████▉ | 255/512 [03:39<03:08, 1.37it/s]2025-09-29 18:43:00,867 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000431530.jpg "HTTP/1.1 200 OK" cache block inputs: 50%|███████████████████████████ | 256/512 [03:40<02:53, 1.47it/s]2025-09-29 18:43:01,424 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000320682.jpg "HTTP/1.1 200 OK" cache block inputs: 50%|███████████████████████████ | 257/512 [03:41<03:59, 1.06it/s]2025-09-29 18:43:03,047 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000334607.jpg "HTTP/1.1 200 OK" cache block inputs: 50%|███████████████████████████▏ | 258/512 [03:42<04:07, 1.03it/s]2025-09-29 18:43:04,077 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000290034.jpg "HTTP/1.1 200 OK" cache block inputs: 51%|███████████████████████████▎ | 259/512 [03:44<04:22, 1.04s/it]2025-09-29 18:43:05,287 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000298152.jpg "HTTP/1.1 200 OK" cache block inputs: 51%|███████████████████████████▍ | 260/512 [03:45<04:04, 1.03it/s]2025-09-29 18:43:06,097 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000556999.jpg "HTTP/1.1 200 OK" cache block inputs: 51%|███████████████████████████▌ | 261/512 [03:45<03:37, 1.15it/s]2025-09-29 18:43:06,653 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000431997.jpg "HTTP/1.1 200 OK" cache block inputs: 51%|███████████████████████████▋ | 262/512 [03:46<03:27, 1.20it/s]2025-09-29 18:43:07,430 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000464871.jpg "HTTP/1.1 200 OK" cache block inputs: 51%|███████████████████████████▋ | 263/512 [03:46<03:08, 1.32it/s]2025-09-29 18:43:08,023 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000430994.jpg "HTTP/1.1 200 OK" cache block inputs: 52%|███████████████████████████▊ | 264/512 [03:47<02:48, 1.47it/s]2025-09-29 18:43:08,540 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000058660.jpg "HTTP/1.1 200 OK" cache block inputs: 52%|███████████████████████████▉ | 265/512 [03:48<02:57, 1.39it/s]2025-09-29 18:43:09,312 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000023603.jpg "HTTP/1.1 200 OK" cache block inputs: 52%|████████████████████████████ | 266/512 [03:49<03:06, 1.32it/s]2025-09-29 18:43:10,211 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000103512.jpg "HTTP/1.1 200 OK" cache block inputs: 52%|████████████████████████████▏ | 267/512 [03:49<02:55, 1.39it/s]2025-09-29 18:43:10,813 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000105119.jpg "HTTP/1.1 200 OK" cache block inputs: 52%|████████████████████████████▎ | 268/512 [03:50<02:46, 1.47it/s]2025-09-29 18:43:11,395 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000490508.jpg "HTTP/1.1 200 OK" cache block inputs: 53%|████████████████████████████▎ | 269/512 [03:51<02:52, 1.41it/s]2025-09-29 18:43:12,145 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000496415.jpg "HTTP/1.1 200 OK" cache block inputs: 53%|████████████████████████████▍ | 270/512 [03:51<02:54, 1.39it/s]2025-09-29 18:43:12,926 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000314164.jpg "HTTP/1.1 200 OK" cache block inputs: 53%|████████████████████████████▌ | 271/512 [03:53<03:32, 1.13it/s]2025-09-29 18:43:14,190 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000253031.jpg "HTTP/1.1 200 OK" cache block inputs: 53%|████████████████████████████▋ | 272/512 [03:53<03:25, 1.17it/s]2025-09-29 18:43:14,999 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000255210.jpg "HTTP/1.1 200 OK" cache block inputs: 53%|████████████████████████████▊ | 273/512 [03:54<03:06, 1.28it/s]2025-09-29 18:43:15,584 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000137832.jpg "HTTP/1.1 200 OK" cache block inputs: 54%|████████████████████████████▉ | 274/512 [03:55<03:39, 1.08it/s]2025-09-29 18:43:16,837 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000147520.jpg "HTTP/1.1 200 OK" cache block inputs: 54%|█████████████████████████████ | 275/512 [03:56<03:55, 1.00it/s]2025-09-29 18:43:18,026 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000476074.jpg "HTTP/1.1 200 OK" cache block inputs: 54%|█████████████████████████████ | 276/512 [03:57<03:27, 1.13it/s]2025-09-29 18:43:18,659 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000047729.jpg "HTTP/1.1 200 OK" cache block inputs: 54%|█████████████████████████████▏ | 277/512 [03:58<03:22, 1.16it/s]2025-09-29 18:43:19,449 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000293674.jpg "HTTP/1.1 200 OK" cache block inputs: 54%|█████████████████████████████▎ | 278/512 [03:58<02:56, 1.32it/s]2025-09-29 18:43:19,971 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000052924.jpg "HTTP/1.1 200 OK" cache block inputs: 54%|█████████████████████████████▍ | 279/512 [03:59<03:13, 1.21it/s]2025-09-29 18:43:20,960 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000128998.jpg "HTTP/1.1 200 OK" cache block inputs: 55%|█████████████████████████████▌ | 280/512 [04:01<03:50, 1.01it/s]2025-09-29 18:43:22,338 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000286292.jpg "HTTP/1.1 200 OK" cache block inputs: 55%|█████████████████████████████▋ | 281/512 [04:02<03:36, 1.07it/s]2025-09-29 18:43:23,143 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000351539.jpg "HTTP/1.1 200 OK" cache block inputs: 55%|█████████████████████████████▋ | 282/512 [04:02<03:29, 1.10it/s]2025-09-29 18:43:24,036 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000099966.jpg "HTTP/1.1 200 OK" cache block inputs: 55%|█████████████████████████████▊ | 283/512 [04:03<03:24, 1.12it/s]2025-09-29 18:43:24,849 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000055764.jpg "HTTP/1.1 200 OK" cache block inputs: 55%|█████████████████████████████▉ | 284/512 [04:04<03:17, 1.15it/s]2025-09-29 18:43:25,623 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000574951.jpg "HTTP/1.1 200 OK" cache block inputs: 56%|██████████████████████████████ | 285/512 [04:05<02:57, 1.28it/s]2025-09-29 18:43:26,224 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000308027.jpg "HTTP/1.1 200 OK" cache block inputs: 56%|██████████████████████████████▏ | 286/512 [04:05<02:57, 1.27it/s]2025-09-29 18:43:27,003 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000119523.jpg "HTTP/1.1 200 OK" cache block inputs: 56%|██████████████████████████████▎ | 287/512 [04:06<03:02, 1.23it/s]2025-09-29 18:43:27,915 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000243382.jpg "HTTP/1.1 200 OK" cache block inputs: 56%|██████████████████████████████▍ | 288/512 [04:07<02:43, 1.37it/s]2025-09-29 18:43:28,395 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000042858.jpg "HTTP/1.1 200 OK" cache block inputs: 56%|██████████████████████████████▍ | 289/512 [04:07<02:25, 1.53it/s]2025-09-29 18:43:28,910 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000071099.jpg "HTTP/1.1 200 OK" cache block inputs: 57%|██████████████████████████████▌ | 290/512 [04:08<02:22, 1.56it/s]2025-09-29 18:43:29,536 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000131374.jpg "HTTP/1.1 200 OK" cache block inputs: 57%|██████████████████████████████▋ | 291/512 [04:09<02:20, 1.58it/s]2025-09-29 18:43:30,124 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000495077.jpg "HTTP/1.1 200 OK" cache block inputs: 57%|██████████████████████████████▊ | 292/512 [04:10<03:06, 1.18it/s]2025-09-29 18:43:31,468 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000400617.jpg "HTTP/1.1 200 OK" cache block inputs: 57%|██████████████████████████████▉ | 293/512 [04:11<03:04, 1.19it/s]2025-09-29 18:43:32,300 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000387812.jpg "HTTP/1.1 200 OK" cache block inputs: 57%|███████████████████████████████ | 294/512 [04:11<02:47, 1.30it/s]2025-09-29 18:43:32,920 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000544660.jpg "HTTP/1.1 200 OK" cache block inputs: 58%|███████████████████████████████ | 295/512 [04:13<03:42, 1.02s/it]2025-09-29 18:43:34,580 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000184751.jpg "HTTP/1.1 200 OK" cache block inputs: 58%|███████████████████████████████▏ | 296/512 [04:14<03:29, 1.03it/s]2025-09-29 18:43:35,378 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000390756.jpg "HTTP/1.1 200 OK" cache block inputs: 58%|███████████████████████████████▎ | 297/512 [04:14<03:05, 1.16it/s]2025-09-29 18:43:35,971 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000454725.jpg "HTTP/1.1 200 OK" cache block inputs: 58%|███████████████████████████████▍ | 298/512 [04:15<02:47, 1.28it/s]2025-09-29 18:43:36,560 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000409226.jpg "HTTP/1.1 200 OK" cache block inputs: 58%|███████████████████████████████▌ | 299/512 [04:16<02:34, 1.38it/s]2025-09-29 18:43:37,161 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000419759.jpg "HTTP/1.1 200 OK" cache block inputs: 59%|███████████████████████████████▋ | 300/512 [04:17<03:08, 1.13it/s]2025-09-29 18:43:38,425 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000039398.jpg "HTTP/1.1 200 OK" cache block inputs: 59%|███████████████████████████████▋ | 301/512 [04:18<03:01, 1.16it/s]2025-09-29 18:43:39,193 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000260951.jpg "HTTP/1.1 200 OK" cache block inputs: 59%|███████████████████████████████▊ | 302/512 [04:18<02:56, 1.19it/s]2025-09-29 18:43:40,086 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000379645.jpg "HTTP/1.1 200 OK" cache block inputs: 59%|███████████████████████████████▉ | 303/512 [04:19<02:59, 1.17it/s]2025-09-29 18:43:40,918 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000472585.jpg "HTTP/1.1 200 OK" cache block inputs: 59%|████████████████████████████████ | 304/512 [04:20<02:54, 1.19it/s]2025-09-29 18:43:41,681 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000553299.jpg "HTTP/1.1 200 OK" cache block inputs: 60%|████████████████████████████████▏ | 305/512 [04:21<02:36, 1.32it/s]2025-09-29 18:43:42,284 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000468243.jpg "HTTP/1.1 200 OK" cache block inputs: 60%|████████████████████████████████▎ | 306/512 [04:21<02:38, 1.30it/s]2025-09-29 18:43:43,116 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000145631.jpg "HTTP/1.1 200 OK" cache block inputs: 60%|████████████████████████████████▍ | 307/512 [04:23<03:01, 1.13it/s]2025-09-29 18:43:44,309 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000494531.jpg "HTTP/1.1 200 OK" cache block inputs: 60%|████████████████████████████████▍ | 308/512 [04:24<03:05, 1.10it/s]2025-09-29 18:43:45,206 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000434200.jpg "HTTP/1.1 200 OK" cache block inputs: 60%|████████████████████████████████▌ | 309/512 [04:24<02:46, 1.22it/s]2025-09-29 18:43:45,831 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000536579.jpg "HTTP/1.1 200 OK" cache block inputs: 61%|████████████████████████████████▋ | 310/512 [04:25<02:33, 1.32it/s]2025-09-29 18:43:46,438 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000086378.jpg "HTTP/1.1 200 OK" cache block inputs: 61%|████████████████████████████████▊ | 311/512 [04:25<02:23, 1.40it/s]2025-09-29 18:43:47,048 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000335301.jpg "HTTP/1.1 200 OK" cache block inputs: 61%|████████████████████████████████▉ | 312/512 [04:27<02:51, 1.17it/s]2025-09-29 18:43:48,255 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000227552.jpg "HTTP/1.1 200 OK" cache block inputs: 61%|█████████████████████████████████ | 313/512 [04:28<03:17, 1.01it/s]2025-09-29 18:43:49,570 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000412720.jpg "HTTP/1.1 200 OK" cache block inputs: 61%|█████████████████████████████████ | 314/512 [04:29<03:06, 1.06it/s]2025-09-29 18:43:50,409 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000480116.jpg "HTTP/1.1 200 OK" cache block inputs: 62%|█████████████████████████████████▏ | 315/512 [04:30<02:59, 1.10it/s]2025-09-29 18:43:51,256 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000171967.jpg "HTTP/1.1 200 OK" cache block inputs: 62%|█████████████████████████████████▎ | 316/512 [04:30<02:54, 1.12it/s]2025-09-29 18:43:52,057 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000169527.jpg "HTTP/1.1 200 OK" cache block inputs: 62%|█████████████████████████████████▍ | 317/512 [04:31<02:37, 1.24it/s]2025-09-29 18:43:52,728 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000090570.jpg "HTTP/1.1 200 OK" cache block inputs: 62%|█████████████████████████████████▌ | 318/512 [04:32<02:41, 1.20it/s]2025-09-29 18:43:53,559 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000438154.jpg "HTTP/1.1 200 OK" cache block inputs: 62%|█████████████████████████████████▋ | 319/512 [04:33<02:41, 1.20it/s]2025-09-29 18:43:54,426 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000182275.jpg "HTTP/1.1 200 OK" cache block inputs: 62%|█████████████████████████████████▊ | 320/512 [04:34<02:56, 1.09it/s]2025-09-29 18:43:55,508 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000530082.jpg "HTTP/1.1 200 OK" cache block inputs: 63%|█████████████████████████████████▊ | 321/512 [04:35<02:50, 1.12it/s]2025-09-29 18:43:56,308 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000352180.jpg "HTTP/1.1 200 OK" cache block inputs: 63%|█████████████████████████████████▉ | 322/512 [04:35<02:31, 1.26it/s]2025-09-29 18:43:56,936 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000038910.jpg "HTTP/1.1 200 OK" cache block inputs: 63%|██████████████████████████████████ | 323/512 [04:36<02:15, 1.39it/s]2025-09-29 18:43:57,438 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000463004.jpg "HTTP/1.1 200 OK" cache block inputs: 63%|██████████████████████████████████▏ | 324/512 [04:37<02:18, 1.35it/s]2025-09-29 18:43:58,221 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000342401.jpg "HTTP/1.1 200 OK" cache block inputs: 63%|██████████████████████████████████▎ | 325/512 [04:37<02:20, 1.33it/s]2025-09-29 18:43:59,003 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000501329.jpg "HTTP/1.1 200 OK" cache block inputs: 64%|██████████████████████████████████▍ | 326/512 [04:38<02:21, 1.31it/s]2025-09-29 18:43:59,834 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000109386.jpg "HTTP/1.1 200 OK" cache block inputs: 64%|██████████████████████████████████▍ | 327/512 [04:39<02:24, 1.28it/s]2025-09-29 18:44:00,614 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000120179.jpg "HTTP/1.1 200 OK" cache block inputs: 64%|██████████████████████████████████▌ | 328/512 [04:40<02:45, 1.11it/s]2025-09-29 18:44:01,803 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000247269.jpg "HTTP/1.1 200 OK" cache block inputs: 64%|██████████████████████████████████▋ | 329/512 [04:41<02:44, 1.12it/s]2025-09-29 18:44:02,734 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000342495.jpg "HTTP/1.1 200 OK" cache block inputs: 64%|██████████████████████████████████▊ | 330/512 [04:42<02:29, 1.22it/s]2025-09-29 18:44:03,324 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000191856.jpg "HTTP/1.1 200 OK" cache block inputs: 65%|██████████████████████████████████▉ | 331/512 [04:43<02:37, 1.15it/s]2025-09-29 18:44:04,324 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000265646.jpg "HTTP/1.1 200 OK" cache block inputs: 65%|███████████████████████████████████ | 332/512 [04:43<02:22, 1.27it/s]2025-09-29 18:44:04,927 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000089093.jpg "HTTP/1.1 200 OK" cache block inputs: 65%|███████████████████████████████████ | 333/512 [04:44<02:31, 1.18it/s]2025-09-29 18:44:05,931 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000479461.jpg "HTTP/1.1 200 OK" cache block inputs: 65%|███████████████████████████████████▏ | 334/512 [04:45<02:46, 1.07it/s]2025-09-29 18:44:07,075 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000357971.jpg "HTTP/1.1 200 OK" cache block inputs: 65%|███████████████████████████████████▎ | 335/512 [04:46<02:29, 1.18it/s]2025-09-29 18:44:07,643 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000373426.jpg "HTTP/1.1 200 OK" cache block inputs: 66%|███████████████████████████████████▍ | 336/512 [04:47<02:28, 1.18it/s]2025-09-29 18:44:08,574 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000338173.jpg "HTTP/1.1 200 OK" cache block inputs: 66%|███████████████████████████████████▌ | 337/512 [04:48<02:17, 1.27it/s]2025-09-29 18:44:09,186 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000458025.jpg "HTTP/1.1 200 OK" cache block inputs: 66%|███████████████████████████████████▋ | 338/512 [04:48<02:07, 1.36it/s]2025-09-29 18:44:09,808 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000360693.jpg "HTTP/1.1 200 OK" cache block inputs: 66%|███████████████████████████████████▊ | 339/512 [04:49<02:27, 1.18it/s]2025-09-29 18:44:10,911 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000366934.jpg "HTTP/1.1 200 OK" cache block inputs: 66%|███████████████████████████████████▊ | 340/512 [04:51<02:42, 1.06it/s]2025-09-29 18:44:12,099 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000573312.jpg "HTTP/1.1 200 OK" cache block inputs: 67%|███████████████████████████████████▉ | 341/512 [04:51<02:25, 1.18it/s]2025-09-29 18:44:12,693 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000343834.jpg "HTTP/1.1 200 OK" cache block inputs: 67%|████████████████████████████████████ | 342/512 [04:52<02:11, 1.29it/s]2025-09-29 18:44:13,287 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000202328.jpg "HTTP/1.1 200 OK" cache block inputs: 67%|████████████████████████████████████▏ | 343/512 [04:53<02:11, 1.29it/s]2025-09-29 18:44:14,148 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000411775.jpg "HTTP/1.1 200 OK" cache block inputs: 67%|████████████████████████████████████▎ | 344/512 [04:53<02:05, 1.34it/s]2025-09-29 18:44:14,805 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000154496.jpg "HTTP/1.1 200 OK" cache block inputs: 67%|████████████████████████████████████▍ | 345/512 [04:54<02:11, 1.27it/s]2025-09-29 18:44:15,582 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000307475.jpg "HTTP/1.1 200 OK" cache block inputs: 68%|████████████████████████████████████▍ | 346/512 [04:55<02:32, 1.09it/s]2025-09-29 18:44:16,860 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000252919.jpg "HTTP/1.1 200 OK" cache block inputs: 68%|████████████████████████████████████▌ | 347/512 [04:57<02:50, 1.03s/it]2025-09-29 18:44:18,175 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000216324.jpg "HTTP/1.1 200 OK" cache block inputs: 68%|████████████████████████████████████▋ | 348/512 [04:57<02:38, 1.04it/s]2025-09-29 18:44:18,958 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000181562.jpg "HTTP/1.1 200 OK" cache block inputs: 68%|████████████████████████████████████▊ | 349/512 [04:58<02:28, 1.10it/s]2025-09-29 18:44:19,780 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000247521.jpg "HTTP/1.1 200 OK" cache block inputs: 68%|████████████████████████████████████▉ | 350/512 [04:59<02:27, 1.10it/s]2025-09-29 18:44:20,676 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000165829.jpg "HTTP/1.1 200 OK" cache block inputs: 69%|█████████████████████████████████████ | 351/512 [05:00<02:23, 1.12it/s]2025-09-29 18:44:21,547 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000351451.jpg "HTTP/1.1 200 OK" cache block inputs: 69%|█████████████████████████████████████▏ | 352/512 [05:01<02:24, 1.11it/s]2025-09-29 18:44:22,439 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000205947.jpg "HTTP/1.1 200 OK" cache block inputs: 69%|█████████████████████████████████████▏ | 353/512 [05:02<02:32, 1.04it/s]2025-09-29 18:44:23,516 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000002560.jpg "HTTP/1.1 200 OK" cache block inputs: 69%|█████████████████████████████████████▎ | 354/512 [05:03<02:50, 1.08s/it]2025-09-29 18:44:24,943 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000553446.jpg "HTTP/1.1 200 OK" cache block inputs: 69%|█████████████████████████████████████▍ | 355/512 [05:04<02:39, 1.02s/it]2025-09-29 18:44:25,755 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000388940.jpg "HTTP/1.1 200 OK" cache block inputs: 70%|█████████████████████████████████████▌ | 356/512 [05:05<02:45, 1.06s/it]2025-09-29 18:44:26,907 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000123514.jpg "HTTP/1.1 200 OK" cache block inputs: 70%|█████████████████████████████████████▋ | 357/512 [05:06<02:22, 1.09it/s]2025-09-29 18:44:27,503 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000379294.jpg "HTTP/1.1 200 OK" cache block inputs: 70%|█████████████████████████████████████▊ | 358/512 [05:07<02:21, 1.09it/s]2025-09-29 18:44:28,393 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000473254.jpg "HTTP/1.1 200 OK" cache block inputs: 70%|█████████████████████████████████████▊ | 359/512 [05:08<02:13, 1.15it/s]2025-09-29 18:44:29,172 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000370583.jpg "HTTP/1.1 200 OK" cache block inputs: 70%|█████████████████████████████████████▉ | 360/512 [05:09<02:29, 1.01it/s]2025-09-29 18:44:30,488 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000343090.jpg "HTTP/1.1 200 OK" cache block inputs: 71%|██████████████████████████████████████ | 361/512 [05:10<02:28, 1.02it/s]2025-09-29 18:44:31,416 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000506296.jpg "HTTP/1.1 200 OK" cache block inputs: 71%|██████████████████████████████████████▏ | 362/512 [05:10<02:10, 1.15it/s]2025-09-29 18:44:32,016 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000408978.jpg "HTTP/1.1 200 OK" cache block inputs: 71%|██████████████████████████████████████▎ | 363/512 [05:11<01:57, 1.27it/s]2025-09-29 18:44:32,618 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000052957.jpg "HTTP/1.1 200 OK" cache block inputs: 71%|██████████████████████████████████████▍ | 364/512 [05:12<02:17, 1.08it/s]2025-09-29 18:44:33,886 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000571451.jpg "HTTP/1.1 200 OK" cache block inputs: 71%|██████████████████████████████████████▍ | 365/512 [05:13<02:24, 1.02it/s]2025-09-29 18:44:35,048 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000139083.jpg "HTTP/1.1 200 OK" cache block inputs: 71%|██████████████████████████████████████▌ | 366/512 [05:14<02:21, 1.03it/s]2025-09-29 18:44:35,905 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000282982.jpg "HTTP/1.1 200 OK" cache block inputs: 72%|██████████████████████████████████████▋ | 367/512 [05:15<02:11, 1.10it/s]2025-09-29 18:44:36,659 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000389391.jpg "HTTP/1.1 200 OK" cache block inputs: 72%|██████████████████████████████████████▊ | 368/512 [05:16<01:56, 1.24it/s]2025-09-29 18:44:37,245 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000101820.jpg "HTTP/1.1 200 OK" cache block inputs: 72%|██████████████████████████████████████▉ | 369/512 [05:17<02:28, 1.04s/it]2025-09-29 18:44:38,828 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000126230.jpg "HTTP/1.1 200 OK" cache block inputs: 72%|███████████████████████████████████████ | 370/512 [05:18<02:08, 1.11it/s]2025-09-29 18:44:39,457 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000267715.jpg "HTTP/1.1 200 OK" cache block inputs: 72%|███████████████████████████████████████▏ | 371/512 [05:19<02:13, 1.06it/s]2025-09-29 18:44:40,521 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000517455.jpg "HTTP/1.1 200 OK" cache block inputs: 73%|███████████████████████████████████████▏ | 372/512 [05:20<02:09, 1.08it/s]2025-09-29 18:44:41,342 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000324006.jpg "HTTP/1.1 200 OK" cache block inputs: 73%|███████████████████████████████████████▎ | 373/512 [05:21<02:11, 1.06it/s]2025-09-29 18:44:42,318 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000566237.jpg "HTTP/1.1 200 OK" cache block inputs: 73%|███████████████████████████████████████▍ | 374/512 [05:21<01:51, 1.23it/s]2025-09-29 18:44:42,859 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000388980.jpg "HTTP/1.1 200 OK" cache block inputs: 73%|███████████████████████████████████████▌ | 375/512 [05:22<01:43, 1.32it/s]2025-09-29 18:44:43,479 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000370426.jpg "HTTP/1.1 200 OK" cache block inputs: 73%|███████████████████████████████████████▋ | 376/512 [05:23<01:44, 1.30it/s]2025-09-29 18:44:44,247 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000523799.jpg "HTTP/1.1 200 OK" cache block inputs: 74%|███████████████████████████████████████▊ | 377/512 [05:23<01:36, 1.40it/s]2025-09-29 18:44:44,879 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000353662.jpg "HTTP/1.1 200 OK" cache block inputs: 74%|███████████████████████████████████████▊ | 378/512 [05:25<02:01, 1.10it/s]2025-09-29 18:44:46,242 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000355688.jpg "HTTP/1.1 200 OK" cache block inputs: 74%|███████████████████████████████████████▉ | 379/512 [05:25<01:49, 1.21it/s]2025-09-29 18:44:46,805 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000082896.jpg "HTTP/1.1 200 OK" cache block inputs: 74%|████████████████████████████████████████ | 380/512 [05:26<01:46, 1.24it/s]2025-09-29 18:44:47,604 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000232123.jpg "HTTP/1.1 200 OK" cache block inputs: 74%|████████████████████████████████████████▏ | 381/512 [05:27<01:47, 1.22it/s]2025-09-29 18:44:48,447 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000399876.jpg "HTTP/1.1 200 OK" cache block inputs: 75%|████████████████████████████████████████▎ | 382/512 [05:28<01:45, 1.23it/s]2025-09-29 18:44:49,232 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000182746.jpg "HTTP/1.1 200 OK" cache block inputs: 75%|████████████████████████████████████████▍ | 383/512 [05:29<02:05, 1.03it/s]2025-09-29 18:44:50,625 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000432967.jpg "HTTP/1.1 200 OK" cache block inputs: 75%|████████████████████████████████████████▌ | 384/512 [05:30<01:58, 1.08it/s]2025-09-29 18:44:51,402 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000469431.jpg "HTTP/1.1 200 OK" cache block inputs: 75%|████████████████████████████████████████▌ | 385/512 [05:31<01:51, 1.13it/s]2025-09-29 18:44:52,212 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000523186.jpg "HTTP/1.1 200 OK" cache block inputs: 75%|████████████████████████████████████████▋ | 386/512 [05:31<01:41, 1.24it/s]2025-09-29 18:44:52,814 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000467131.jpg "HTTP/1.1 200 OK" cache block inputs: 76%|████████████████████████████████████████▊ | 387/512 [05:33<02:09, 1.04s/it]2025-09-29 18:44:54,434 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000408874.jpg "HTTP/1.1 200 OK" cache block inputs: 76%|████████████████████████████████████████▉ | 388/512 [05:34<02:02, 1.01it/s]2025-09-29 18:44:55,261 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000049718.jpg "HTTP/1.1 200 OK" cache block inputs: 76%|█████████████████████████████████████████ | 389/512 [05:35<02:11, 1.07s/it]2025-09-29 18:44:56,543 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000259103.jpg "HTTP/1.1 200 OK" cache block inputs: 76%|█████████████████████████████████████████▏ | 390/512 [05:36<02:14, 1.10s/it]2025-09-29 18:44:57,750 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000260415.jpg "HTTP/1.1 200 OK" cache block inputs: 76%|█████████████████████████████████████████▏ | 391/512 [05:38<02:25, 1.21s/it]2025-09-29 18:44:59,139 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000319611.jpg "HTTP/1.1 200 OK" cache block inputs: 77%|█████████████████████████████████████████▎ | 392/512 [05:38<02:12, 1.10s/it]2025-09-29 18:45:00,082 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000317216.jpg "HTTP/1.1 200 OK" cache block inputs: 77%|█████████████████████████████████████████▍ | 393/512 [05:39<02:02, 1.03s/it]2025-09-29 18:45:00,903 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000449467.jpg "HTTP/1.1 200 OK" cache block inputs: 77%|█████████████████████████████████████████▌ | 394/512 [05:40<01:55, 1.02it/s]2025-09-29 18:45:01,761 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000190920.jpg "HTTP/1.1 200 OK" cache block inputs: 77%|█████████████████████████████████████████▋ | 395/512 [05:41<01:41, 1.15it/s]2025-09-29 18:45:02,375 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000324115.jpg "HTTP/1.1 200 OK" cache block inputs: 77%|█████████████████████████████████████████▊ | 396/512 [05:41<01:28, 1.31it/s]2025-09-29 18:45:02,923 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000340060.jpg "HTTP/1.1 200 OK" cache block inputs: 78%|█████████████████████████████████████████▊ | 397/512 [05:42<01:23, 1.37it/s]2025-09-29 18:45:03,493 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000018908.jpg "HTTP/1.1 200 OK" cache block inputs: 78%|█████████████████████████████████████████▉ | 398/512 [05:42<01:11, 1.60it/s]2025-09-29 18:45:03,897 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000244465.jpg "HTTP/1.1 200 OK" cache block inputs: 78%|██████████████████████████████████████████ | 399/512 [05:43<01:20, 1.40it/s]2025-09-29 18:45:04,854 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000340129.jpg "HTTP/1.1 200 OK" cache block inputs: 78%|██████████████████████████████████████████▏ | 400/512 [05:44<01:23, 1.34it/s]2025-09-29 18:45:05,647 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000158854.jpg "HTTP/1.1 200 OK" cache block inputs: 78%|██████████████████████████████████████████▎ | 401/512 [05:45<01:24, 1.31it/s]2025-09-29 18:45:06,425 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000277069.jpg "HTTP/1.1 200 OK" cache block inputs: 79%|██████████████████████████████████████████▍ | 402/512 [05:46<01:39, 1.10it/s]2025-09-29 18:45:07,716 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000545226.jpg "HTTP/1.1 200 OK" cache block inputs: 79%|██████████████████████████████████████████▌ | 403/512 [05:47<01:29, 1.22it/s]2025-09-29 18:45:08,308 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000325089.jpg "HTTP/1.1 200 OK" cache block inputs: 79%|██████████████████████████████████████████▌ | 404/512 [05:48<01:42, 1.05it/s]2025-09-29 18:45:09,591 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000017570.jpg "HTTP/1.1 200 OK" cache block inputs: 79%|██████████████████████████████████████████▋ | 405/512 [05:49<01:31, 1.17it/s]2025-09-29 18:45:10,187 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000198997.jpg "HTTP/1.1 200 OK" cache block inputs: 79%|██████████████████████████████████████████▊ | 406/512 [05:49<01:28, 1.19it/s]2025-09-29 18:45:11,044 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000520617.jpg "HTTP/1.1 200 OK" cache block inputs: 79%|██████████████████████████████████████████▉ | 407/512 [05:50<01:30, 1.15it/s]2025-09-29 18:45:11,925 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000581770.jpg "HTTP/1.1 200 OK" cache block inputs: 80%|███████████████████████████████████████████ | 408/512 [05:52<01:40, 1.04it/s]2025-09-29 18:45:13,100 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000539475.jpg "HTTP/1.1 200 OK" cache block inputs: 80%|███████████████████████████████████████████▏ | 409/512 [05:52<01:24, 1.22it/s]2025-09-29 18:45:13,614 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000017216.jpg "HTTP/1.1 200 OK" cache block inputs: 80%|███████████████████████████████████████████▏ | 410/512 [05:53<01:23, 1.23it/s]2025-09-29 18:45:14,421 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000359656.jpg "HTTP/1.1 200 OK" cache block inputs: 80%|███████████████████████████████████████████▎ | 411/512 [05:53<01:16, 1.33it/s]2025-09-29 18:45:15,051 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000321991.jpg "HTTP/1.1 200 OK" cache block inputs: 80%|███████████████████████████████████████████▍ | 412/512 [05:54<01:17, 1.29it/s]2025-09-29 18:45:15,803 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000353402.jpg "HTTP/1.1 200 OK" cache block inputs: 81%|███████████████████████████████████████████▌ | 413/512 [05:55<01:18, 1.26it/s]2025-09-29 18:45:16,753 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000284012.jpg "HTTP/1.1 200 OK" cache block inputs: 81%|███████████████████████████████████████████▋ | 414/512 [05:56<01:19, 1.23it/s]2025-09-29 18:45:17,542 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000402936.jpg "HTTP/1.1 200 OK" cache block inputs: 81%|███████████████████████████████████████████▊ | 415/512 [05:57<01:12, 1.33it/s]2025-09-29 18:45:18,139 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000453541.jpg "HTTP/1.1 200 OK" cache block inputs: 81%|███████████████████████████████████████████▉ | 416/512 [05:57<01:13, 1.31it/s]2025-09-29 18:45:18,946 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000433133.jpg "HTTP/1.1 200 OK" cache block inputs: 81%|███████████████████████████████████████████▉ | 417/512 [05:58<01:08, 1.39it/s]2025-09-29 18:45:19,543 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000199256.jpg "HTTP/1.1 200 OK" cache block inputs: 82%|████████████████████████████████████████████ | 418/512 [05:59<01:12, 1.29it/s]2025-09-29 18:45:20,448 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000209662.jpg "HTTP/1.1 200 OK" cache block inputs: 82%|████████████████████████████████████████████▏ | 419/512 [06:00<01:12, 1.28it/s]2025-09-29 18:45:21,253 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000405718.jpg "HTTP/1.1 200 OK" cache block inputs: 82%|████████████████████████████████████████████▎ | 420/512 [06:01<01:13, 1.26it/s]2025-09-29 18:45:22,145 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000105987.jpg "HTTP/1.1 200 OK" cache block inputs: 82%|████████████████████████████████████████████▍ | 421/512 [06:02<01:25, 1.06it/s]2025-09-29 18:45:23,394 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000359686.jpg "HTTP/1.1 200 OK" cache block inputs: 82%|████████████████████████████████████████████▌ | 422/512 [06:03<01:26, 1.03it/s]2025-09-29 18:45:24,388 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000148781.jpg "HTTP/1.1 200 OK" cache block inputs: 83%|████████████████████████████████████████████▌ | 423/512 [06:04<01:33, 1.06s/it]2025-09-29 18:45:25,665 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000105590.jpg "HTTP/1.1 200 OK" cache block inputs: 83%|████████████████████████████████████████████▋ | 424/512 [06:05<01:27, 1.01it/s]2025-09-29 18:45:26,498 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000342234.jpg "HTTP/1.1 200 OK" cache block inputs: 83%|████████████████████████████████████████████▊ | 425/512 [06:06<01:21, 1.07it/s]2025-09-29 18:45:27,299 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000072373.jpg "HTTP/1.1 200 OK" cache block inputs: 83%|████████████████████████████████████████████▉ | 426/512 [06:07<01:16, 1.12it/s]2025-09-29 18:45:29,121 INFO _client.py L1025: HTTP Request: GET http://images.cocodataset.org/train2017/000000020145.jpg "HTTP/1.1 500 Internal Server Error" cache block inputs: 100%|██████████████████████████████████████████████████████| 512/512 [07:19<00:00, 1.16it/s] 2025-09-29 18:46:40 ERROR compressor.py L388: no data has been cached, please provide more data with sequence length >=2048 in the dataset or decease the sequence length

Tortoise17 avatar Sep 30 '25 05:09 Tortoise17

set the seqlen to 512 and retry.

wenhuach21 avatar Sep 30 '25 05:09 wenhuach21

This issue is similar to #866. As we’ll be on holiday, the fix may be a bit delayed and is expected no earlier than 10/8.

wenhuach21 avatar Sep 30 '25 05:09 wenhuach21

seqlen should be set at which stage?

ar = AutoRound(
    model=model_name_or_path,
    scheme="W4A16",
    iters=50,
    lr=5e-3,
seqlen=512,
)

like this didnt work

Tortoise17 avatar Sep 30 '25 05:09 Tortoise17

Sorry, I have no time to debug this issue today. @n1ck-guo could you take a look after the holiday?

wenhuach21 avatar Sep 30 '25 08:09 wenhuach21

@wenhuach21 @n1ck-guo in my tests, RTN MODE for exporting autoround format works so far. But, while exporting, there is error or log warning 2025-09-30 10:24:09 INFO base.py L751: thinker.visual.blocks.0.mlp.linear_fc1 will not be quantized due to its shape not being divisible by 32, resulting in an exporting issue to autogptq

and I don't know if the exported weights are still correct.

Remaining all the possibilities are no more possible.

Tortoise17 avatar Sep 30 '25 08:09 Tortoise17

You can safely ignore this warning. It simply indicates that some layers are being reverted to 16-bit precision, since quantizing them could cause inference issues. However, Heng mentioned earlier that the inference problems are definitely not related to this.

wenhuach21 avatar Sep 30 '25 08:09 wenhuach21

Hi, anybody successfully quantized qwen3 omni?

allerou4 avatar Dec 01 '25 06:12 allerou4

sorry, we have no update for omni, it still has some inference issue currently. We will take a further look when we are free.

wenhuach21 avatar Dec 01 '25 08:12 wenhuach21

@wenhuach21 @allerou4 Qwen3-Omni Quantized Here is the link for the Qwen3-Omni. But, I have found out that with auto-round pipelines are more stable than other mode of techniques. I am big fan of auto-round.

Tortoise17 avatar Dec 01 '25 08:12 Tortoise17

@wenhuach21 @allerou4 Qwen3-Omni Quantized Here is the link for the Qwen3-Omni. But, I have found out that with auto-round pipelines are more stable than other mode of techniques. I am big fan of auto-round.

Yeah, I tried this one, as we find that sometimes it will output repeating tokens, so we decide to do it on our own.

allerou4 avatar Dec 01 '25 09:12 allerou4

@allerou4 memory wise that is not stable as well. vllm and transformers are also culprit.

Tortoise17 avatar Dec 01 '25 09:12 Tortoise17