Image-Text Semantic Matching with AutoMM¶
Vision and language are two important aspects of human intelligence to understand the real world. Image-text semantic matching, measuring the visual-semantic similarity between image and text, plays a critical role in bridging the vision and language. Learning a joint space where text and image feature vectors are aligned is a typical solution for image-text matching. It is becoming increasingly significant for various vision-and-language tasks, such as cross-modal retrieval, image captioning, text-to-image synthesis, and multimodal neural machine translation. This tutorial will introduce how to apply AutoMM to the image-text matching task.
import os
import warnings
from IPython.display import Image, display
import numpy as np
warnings.filterwarnings('ignore')
np.random.seed(123)
Dataset¶
In this tutorial, we will use the Flickr30K dataset to demonstrate the image-text matching. The Flickr30k dataset is a popular benchmark for sentence-based picture portrayal. The dataset is comprised of 31,783 images that capture people engaged in everyday activities and events. Each image has a descriptive caption. We organized the dataset using pandas dataframe. To get started, Let’s download the dataset.
from autogluon.core.utils.loaders import load_pd
import pandas as pd
download_dir = './ag_automm_tutorial_imgtxt'
zip_file = 'https://automl-mm-bench.s3.amazonaws.com/flickr30k.zip'
from autogluon.core.utils.loaders import load_zip
load_zip.unzip(zip_file, unzip_dir=download_dir)
Downloading ./ag_automm_tutorial_imgtxt/file.zip from https://automl-mm-bench.s3.amazonaws.com/flickr30k.zip...
0%|          | 0.00/4.38G [00:00<?, ?iB/s]
0%|          | 6.63M/4.38G [00:00<01:55, 37.7MiB/s]
0%|          | 10.4M/4.38G [00:00<02:45, 26.4MiB/s]
0%|          | 15.4M/4.38G [00:00<03:08, 23.1MiB/s]
0%|          | 17.8M/4.38G [00:00<03:37, 20.0MiB/s]
1%|          | 23.4M/4.38G [00:00<02:51, 25.4MiB/s]
1%|          | 26.1M/4.38G [00:01<03:14, 22.4MiB/s]
1%|          | 33.5M/4.38G [00:01<02:16, 31.7MiB/s]
1%|          | 40.2M/4.38G [00:01<02:11, 33.0MiB/s]
1%|          | 43.7M/4.38G [00:01<02:36, 27.7MiB/s]
1%|          | 46.6M/4.38G [00:01<02:51, 25.2MiB/s]
1%|          | 50.3M/4.38G [00:01<02:56, 24.5MiB/s]
1%|▏         | 57.0M/4.38G [00:02<03:01, 23.8MiB/s]
1%|▏         | 59.4M/4.38G [00:02<03:09, 22.8MiB/s]
2%|▏         | 67.1M/4.38G [00:02<02:32, 28.2MiB/s]
2%|▏         | 75.5M/4.38G [00:02<02:10, 32.9MiB/s]
2%|▏         | 82.5M/4.38G [00:02<02:06, 33.9MiB/s]
2%|▏         | 85.9M/4.38G [00:03<02:15, 31.8MiB/s]
2%|▏         | 92.3M/4.38G [00:03<02:25, 29.5MiB/s]
2%|▏         | 98.9M/4.38G [00:03<03:29, 20.4MiB/s]
2%|▏         | 101M/4.38G [00:04<03:58, 18.0MiB/s]
2%|▏         | 108M/4.38G [00:04<02:51, 24.9MiB/s]
3%|▎         | 112M/4.38G [00:04<02:46, 25.6MiB/s]
3%|▎         | 116M/4.38G [00:04<02:54, 24.4MiB/s]
3%|▎         | 119M/4.38G [00:04<03:12, 22.2MiB/s]
3%|▎         | 124M/4.38G [00:04<03:26, 20.6MiB/s]
3%|▎         | 126M/4.38G [00:05<04:16, 16.6MiB/s]
3%|▎         | 134M/4.38G [00:05<03:05, 22.9MiB/s]
3%|▎         | 141M/4.38G [00:05<02:28, 28.6MiB/s]
3%|▎         | 144M/4.38G [00:05<03:04, 22.9MiB/s]
3%|▎         | 147M/4.38G [00:05<03:01, 23.4MiB/s]
3%|▎         | 150M/4.38G [00:06<03:04, 23.0MiB/s]
3%|▎         | 152M/4.38G [00:06<03:45, 18.7MiB/s]
4%|▎         | 158M/4.38G [00:06<03:11, 22.0MiB/s]
4%|▎         | 160M/4.38G [00:06<03:31, 19.9MiB/s]
4%|▍         | 166M/4.38G [00:06<03:02, 23.1MiB/s]
4%|▍         | 168M/4.38G [00:06<03:16, 21.4MiB/s]
4%|▍         | 174M/4.38G [00:07<02:26, 28.7MiB/s]
4%|▍         | 178M/4.38G [00:07<02:39, 26.4MiB/s]
4%|▍         | 183M/4.38G [00:07<02:53, 24.3MiB/s]
4%|▍         | 185M/4.38G [00:07<03:31, 19.8MiB/s]
4%|▍         | 191M/4.38G [00:07<03:26, 20.3MiB/s]
4%|▍         | 193M/4.38G [00:08<04:10, 16.7MiB/s]
5%|▍         | 200M/4.38G [00:08<03:09, 22.1MiB/s]
5%|▍         | 202M/4.38G [00:08<03:14, 21.5MiB/s]
5%|▍         | 210M/4.38G [00:08<02:43, 25.6MiB/s]
5%|▍         | 216M/4.38G [00:08<02:19, 29.9MiB/s]
5%|▌         | 219M/4.38G [00:09<02:43, 25.5MiB/s]
5%|▌         | 224M/4.38G [00:09<02:26, 28.5MiB/s]
5%|▌         | 227M/4.38G [00:09<02:54, 23.9MiB/s]
5%|▌         | 233M/4.38G [00:09<02:17, 30.2MiB/s]
5%|▌         | 236M/4.38G [00:09<02:27, 28.2MiB/s]
6%|▌         | 243M/4.38G [00:09<02:23, 28.8MiB/s]
6%|▌         | 250M/4.38G [00:09<01:55, 35.9MiB/s]
6%|▌         | 254M/4.38G [00:10<02:07, 32.4MiB/s]
6%|▌         | 258M/4.38G [00:10<02:22, 28.9MiB/s]
6%|▌         | 261M/4.38G [00:10<02:31, 27.2MiB/s]
6%|▌         | 264M/4.38G [00:10<03:01, 22.7MiB/s]
6%|▌         | 267M/4.38G [00:10<03:04, 22.3MiB/s]
6%|▌         | 269M/4.38G [00:10<03:33, 19.2MiB/s]
6%|▋         | 275M/4.38G [00:11<03:02, 22.5MiB/s]
6%|▋         | 278M/4.38G [00:11<03:14, 21.1MiB/s]
7%|▋         | 285M/4.38G [00:11<02:33, 26.6MiB/s]
7%|▋         | 292M/4.38G [00:11<02:11, 31.1MiB/s]
7%|▋         | 295M/4.38G [00:11<02:34, 26.4MiB/s]
7%|▋         | 300M/4.38G [00:12<03:39, 18.6MiB/s]
7%|▋         | 302M/4.38G [00:12<03:58, 17.1MiB/s]
7%|▋         | 309M/4.38G [00:12<03:10, 21.4MiB/s]
7%|▋         | 311M/4.38G [00:12<03:54, 17.3MiB/s]
7%|▋         | 317M/4.38G [00:13<03:08, 21.5MiB/s]
7%|▋         | 319M/4.38G [00:13<03:38, 18.6MiB/s]
7%|▋         | 325M/4.38G [00:13<02:59, 22.6MiB/s]
7%|▋         | 328M/4.38G [00:13<03:36, 18.8MiB/s]
8%|▊         | 334M/4.38G [00:13<03:01, 22.3MiB/s]
8%|▊         | 337M/4.38G [00:14<03:04, 21.9MiB/s]
8%|▊         | 342M/4.38G [00:14<02:24, 28.0MiB/s]
8%|▊         | 345M/4.38G [00:14<02:35, 26.0MiB/s]
8%|▊         | 352M/4.38G [00:14<02:31, 26.7MiB/s]
8%|▊         | 359M/4.38G [00:14<02:04, 32.3MiB/s]
8%|▊         | 362M/4.38G [00:14<02:08, 31.3MiB/s]
8%|▊         | 367M/4.38G [00:15<02:27, 27.2MiB/s]
8%|▊         | 370M/4.38G [00:15<03:05, 21.6MiB/s]
9%|▊         | 376M/4.38G [00:15<02:52, 23.2MiB/s]
9%|▊         | 378M/4.38G [00:15<03:40, 18.1MiB/s]
9%|▉         | 384M/4.38G [00:15<03:02, 21.9MiB/s]
9%|▉         | 387M/4.38G [00:16<03:12, 20.7MiB/s]
9%|▉         | 389M/4.38G [00:16<03:49, 17.4MiB/s]
9%|▉         | 391M/4.38G [00:16<05:02, 13.2MiB/s]
9%|▉         | 393M/4.38G [00:16<05:37, 11.8MiB/s]
9%|▉         | 394M/4.38G [00:16<05:46, 11.5MiB/s]
9%|▉         | 401M/4.38G [00:17<03:21, 19.8MiB/s]
9%|▉         | 405M/4.38G [00:17<02:41, 24.5MiB/s]
9%|▉         | 410M/4.38G [00:17<02:17, 28.8MiB/s]
9%|▉         | 413M/4.38G [00:17<02:58, 22.3MiB/s]
10%|▉         | 418M/4.38G [00:17<03:07, 21.1MiB/s]
10%|▉         | 420M/4.38G [00:17<03:29, 18.9MiB/s]
10%|▉         | 427M/4.38G [00:18<02:24, 27.5MiB/s]
10%|▉         | 430M/4.38G [00:18<02:58, 22.2MiB/s]
10%|▉         | 435M/4.38G [00:18<02:29, 26.4MiB/s]
10%|▉         | 438M/4.38G [00:18<02:28, 26.6MiB/s]
10%|█         | 444M/4.38G [00:18<01:54, 34.5MiB/s]
10%|█         | 448M/4.38G [00:18<02:12, 29.7MiB/s]
10%|█         | 452M/4.38G [00:18<02:24, 27.3MiB/s]
10%|█         | 455M/4.38G [00:19<02:44, 23.8MiB/s]
10%|█         | 460M/4.38G [00:19<02:27, 26.5MiB/s]
11%|█         | 463M/4.38G [00:19<02:35, 25.2MiB/s]
11%|█         | 470M/4.38G [00:19<02:06, 30.8MiB/s]
11%|█         | 476M/4.38G [00:19<01:58, 32.9MiB/s]
11%|█         | 480M/4.38G [00:19<02:16, 28.6MiB/s]
11%|█         | 485M/4.38G [00:20<01:59, 32.6MiB/s]
11%|█         | 488M/4.38G [00:20<02:14, 29.0MiB/s]
11%|█▏        | 493M/4.38G [00:20<01:57, 33.0MiB/s]
11%|█▏        | 497M/4.38G [00:20<02:14, 28.9MiB/s]
11%|█▏        | 503M/4.38G [00:20<02:06, 30.6MiB/s]
12%|█▏        | 510M/4.38G [00:20<01:47, 36.1MiB/s]
12%|█▏        | 514M/4.38G [00:21<02:22, 27.1MiB/s]
12%|█▏        | 520M/4.38G [00:21<02:08, 30.0MiB/s]
12%|█▏        | 527M/4.38G [00:21<02:13, 28.8MiB/s]
12%|█▏        | 530M/4.38G [00:21<02:43, 23.6MiB/s]
12%|█▏        | 532M/4.38G [00:21<02:58, 21.6MiB/s]
12%|█▏        | 537M/4.38G [00:22<03:01, 21.2MiB/s]
12%|█▏        | 544M/4.38G [00:22<02:30, 25.5MiB/s]
12%|█▏        | 546M/4.38G [00:22<02:42, 23.7MiB/s]
13%|█▎        | 552M/4.38G [00:22<02:03, 31.0MiB/s]
13%|█▎        | 556M/4.38G [00:22<02:04, 30.6MiB/s]
13%|█▎        | 561M/4.38G [00:22<01:48, 35.3MiB/s]
13%|█▎        | 565M/4.38G [00:22<01:51, 34.1MiB/s]
13%|█▎        | 570M/4.38G [00:23<01:46, 35.7MiB/s]
13%|█▎        | 577M/4.38G [00:23<01:33, 40.9MiB/s]
13%|█▎        | 581M/4.38G [00:23<02:01, 31.4MiB/s]
13%|█▎        | 587M/4.38G [00:23<01:55, 32.7MiB/s]
13%|█▎        | 591M/4.38G [00:23<01:58, 31.9MiB/s]
14%|█▎        | 596M/4.38G [00:23<02:06, 30.0MiB/s]
14%|█▍        | 603M/4.38G [00:23<01:41, 37.2MiB/s]
14%|█▍        | 607M/4.38G [00:24<01:56, 32.5MiB/s]
14%|█▍        | 612M/4.38G [00:24<01:51, 33.8MiB/s]
14%|█▍        | 619M/4.38G [00:24<02:04, 30.3MiB/s]
14%|█▍        | 622M/4.38G [00:24<02:21, 26.6MiB/s]
14%|█▍        | 627M/4.38G [00:24<02:22, 26.3MiB/s]
14%|█▍        | 630M/4.38G [00:25<02:35, 24.1MiB/s]
15%|█▍        | 638M/4.38G [00:25<02:10, 28.7MiB/s]
15%|█▍        | 644M/4.38G [00:25<02:18, 27.1MiB/s]
15%|█▍        | 647M/4.38G [00:25<02:59, 20.8MiB/s]
15%|█▍        | 654M/4.38G [00:26<02:24, 25.7MiB/s]
15%|█▌        | 661M/4.38G [00:26<02:16, 27.3MiB/s]
15%|█▌        | 664M/4.38G [00:26<02:44, 22.6MiB/s]
15%|█▌        | 669M/4.38G [00:26<02:27, 25.2MiB/s]
15%|█▌        | 672M/4.38G [00:26<02:53, 21.3MiB/s]
15%|█▌        | 676M/4.38G [00:26<02:35, 23.9MiB/s]
16%|█▌        | 679M/4.38G [00:27<02:39, 23.3MiB/s]
16%|█▌        | 686M/4.38G [00:27<01:56, 31.8MiB/s]
16%|█▌        | 690M/4.38G [00:27<01:53, 32.7MiB/s]
16%|█▌        | 696M/4.38G [00:27<01:43, 35.5MiB/s]
16%|█▌        | 703M/4.38G [00:27<01:45, 35.0MiB/s]
16%|█▌        | 707M/4.38G [00:27<02:13, 27.6MiB/s]
16%|█▋        | 713M/4.38G [00:28<02:10, 28.1MiB/s]
16%|█▋        | 721M/4.38G [00:28<01:40, 36.3MiB/s]
17%|█▋        | 730M/4.38G [00:28<01:51, 32.7MiB/s]
17%|█▋        | 738M/4.38G [00:28<01:50, 33.0MiB/s]
17%|█▋        | 745M/4.38G [00:29<02:07, 28.4MiB/s]
17%|█▋        | 748M/4.38G [00:29<02:18, 26.2MiB/s]
17%|█▋        | 753M/4.38G [00:29<02:08, 28.2MiB/s]
17%|█▋        | 756M/4.38G [00:29<02:12, 27.4MiB/s]
17%|█▋        | 763M/4.38G [00:29<02:04, 29.0MiB/s]
18%|█▊        | 770M/4.38G [00:29<01:42, 35.1MiB/s]
18%|█▊        | 774M/4.38G [00:30<02:28, 24.4MiB/s]
18%|█▊        | 778M/4.38G [00:30<02:47, 21.5MiB/s]
18%|█▊        | 781M/4.38G [00:30<03:11, 18.8MiB/s]
18%|█▊        | 789M/4.38G [00:30<02:36, 23.0MiB/s]
18%|█▊        | 795M/4.38G [00:31<02:23, 24.9MiB/s]
18%|█▊        | 798M/4.38G [00:31<02:45, 21.7MiB/s]
18%|█▊        | 804M/4.38G [00:31<02:11, 27.3MiB/s]
18%|█▊        | 807M/4.38G [00:31<02:16, 26.2MiB/s]
19%|█▊        | 812M/4.38G [00:31<02:03, 29.0MiB/s]
19%|█▊        | 815M/4.38G [00:31<02:12, 26.9MiB/s]
19%|█▊        | 821M/4.38G [00:32<02:06, 28.2MiB/s]
19%|█▉        | 824M/4.38G [00:32<02:28, 23.9MiB/s]
19%|█▉        | 829M/4.38G [00:32<03:38, 16.3MiB/s]
19%|█▉        | 831M/4.38G [00:32<03:39, 16.2MiB/s]
19%|█▉        | 837M/4.38G [00:33<02:54, 20.3MiB/s]
19%|█▉        | 839M/4.38G [00:33<03:10, 18.6MiB/s]
19%|█▉        | 847M/4.38G [00:33<02:18, 25.5MiB/s]
19%|█▉        | 854M/4.38G [00:33<01:51, 31.5MiB/s]
20%|█▉        | 857M/4.38G [00:33<02:14, 26.2MiB/s]
20%|█▉        | 864M/4.38G [00:34<02:08, 27.3MiB/s]
20%|█▉        | 871M/4.38G [00:34<01:43, 34.0MiB/s]
20%|█▉        | 875M/4.38G [00:34<01:53, 30.8MiB/s]
20%|██        | 879M/4.38G [00:34<02:02, 28.5MiB/s]
20%|██        | 882M/4.38G [00:34<02:23, 24.3MiB/s]
20%|██        | 889M/4.38G [00:34<01:46, 32.9MiB/s]
20%|██        | 893M/4.38G [00:34<01:50, 31.5MiB/s]
20%|██        | 898M/4.38G [00:35<02:06, 27.5MiB/s]
21%|██        | 904M/4.38G [00:35<01:57, 29.6MiB/s]
21%|██        | 907M/4.38G [00:35<02:20, 24.7MiB/s]
21%|██        | 913M/4.38G [00:36<04:16, 13.5MiB/s]
21%|██        | 915M/4.38G [00:36<04:15, 13.6MiB/s]
21%|██        | 921M/4.38G [00:36<03:30, 16.4MiB/s]
21%|██        | 923M/4.38G [00:36<03:30, 16.4MiB/s]
21%|██        | 929M/4.38G [00:36<02:26, 23.5MiB/s]
21%|██▏       | 933M/4.38G [00:37<02:45, 20.9MiB/s]
21%|██▏       | 938M/4.38G [00:37<02:18, 24.8MiB/s]
21%|██▏       | 941M/4.38G [00:37<02:41, 21.3MiB/s]
22%|██▏       | 946M/4.38G [00:37<02:08, 26.6MiB/s]
22%|██▏       | 949M/4.38G [00:37<02:35, 22.1MiB/s]
22%|██▏       | 956M/4.38G [00:37<01:51, 30.7MiB/s]
22%|██▏       | 964M/4.38G [00:38<01:33, 36.4MiB/s]
22%|██▏       | 969M/4.38G [00:38<01:47, 31.6MiB/s]
22%|██▏       | 972M/4.38G [00:38<02:05, 27.2MiB/s]
22%|██▏       | 975M/4.38G [00:38<02:45, 20.6MiB/s]
22%|██▏       | 981M/4.38G [00:38<02:19, 24.4MiB/s]
23%|██▎       | 988M/4.38G [00:39<02:36, 21.7MiB/s]
23%|██▎       | 991M/4.38G [00:39<02:42, 20.9MiB/s]
23%|██▎       | 996M/4.38G [00:39<02:34, 21.8MiB/s]
23%|██▎       | 999M/4.38G [00:39<02:26, 23.1MiB/s]
23%|██▎       | 1.01G/4.38G [00:40<02:04, 27.1MiB/s]
23%|██▎       | 1.01G/4.38G [00:40<01:58, 28.5MiB/s]
23%|██▎       | 1.01G/4.38G [00:40<02:05, 26.8MiB/s]
23%|██▎       | 1.02G/4.38G [00:40<02:21, 23.8MiB/s]
23%|██▎       | 1.02G/4.38G [00:40<02:18, 24.3MiB/s]
23%|██▎       | 1.02G/4.38G [00:40<02:36, 21.4MiB/s]
24%|██▎       | 1.03G/4.38G [00:40<02:08, 26.1MiB/s]
24%|██▎       | 1.03G/4.38G [00:41<02:39, 21.1MiB/s]
24%|██▎       | 1.03G/4.38G [00:41<03:09, 17.7MiB/s]
24%|██▎       | 1.04G/4.38G [00:41<03:35, 15.5MiB/s]
24%|██▎       | 1.04G/4.38G [00:41<04:10, 13.4MiB/s]
24%|██▍       | 1.05G/4.38G [00:42<02:48, 19.8MiB/s]
24%|██▍       | 1.05G/4.38G [00:42<03:10, 17.5MiB/s]
24%|██▍       | 1.06G/4.38G [00:42<02:26, 22.7MiB/s]
24%|██▍       | 1.06G/4.38G [00:42<01:48, 30.7MiB/s]
24%|██▍       | 1.07G/4.38G [00:42<01:55, 28.6MiB/s]
24%|██▍       | 1.07G/4.38G [00:43<02:14, 24.6MiB/s]
25%|██▍       | 1.08G/4.38G [00:43<02:18, 23.9MiB/s]
25%|██▍       | 1.08G/4.38G [00:43<02:16, 24.2MiB/s]
25%|██▍       | 1.08G/4.38G [00:43<03:00, 18.2MiB/s]
25%|██▍       | 1.09G/4.38G [00:43<02:30, 21.9MiB/s]
25%|██▍       | 1.09G/4.38G [00:43<02:33, 21.4MiB/s]
25%|██▌       | 1.10G/4.38G [00:44<02:04, 26.3MiB/s]
25%|██▌       | 1.10G/4.38G [00:44<02:14, 24.4MiB/s]
25%|██▌       | 1.11G/4.38G [00:44<01:48, 30.2MiB/s]
25%|██▌       | 1.12G/4.38G [00:44<01:23, 39.3MiB/s]
26%|██▌       | 1.12G/4.38G [00:44<01:37, 33.3MiB/s]
26%|██▌       | 1.12G/4.38G [00:44<01:57, 27.8MiB/s]
26%|██▌       | 1.13G/4.38G [00:45<01:57, 27.7MiB/s]
26%|██▌       | 1.13G/4.38G [00:45<01:40, 32.2MiB/s]
26%|██▌       | 1.14G/4.38G [00:45<02:04, 26.0MiB/s]
26%|██▌       | 1.14G/4.38G [00:45<02:03, 26.2MiB/s]
26%|██▌       | 1.15G/4.38G [00:45<02:02, 26.3MiB/s]
26%|██▋       | 1.15G/4.38G [00:46<02:13, 24.3MiB/s]
26%|██▋       | 1.16G/4.38G [00:46<01:56, 27.8MiB/s]
26%|██▋       | 1.16G/4.38G [00:46<02:13, 24.1MiB/s]
27%|██▋       | 1.16G/4.38G [00:46<01:43, 31.2MiB/s]
27%|██▋       | 1.17G/4.38G [00:46<01:53, 28.3MiB/s]
27%|██▋       | 1.17G/4.38G [00:46<01:47, 29.7MiB/s]
27%|██▋       | 1.18G/4.38G [00:46<01:54, 28.1MiB/s]
27%|██▋       | 1.18G/4.38G [00:46<01:32, 34.4MiB/s]
27%|██▋       | 1.19G/4.38G [00:47<01:47, 29.7MiB/s]
27%|██▋       | 1.19G/4.38G [00:47<01:58, 26.9MiB/s]
27%|██▋       | 1.19G/4.38G [00:47<01:57, 27.2MiB/s]
27%|██▋       | 1.20G/4.38G [00:47<01:53, 28.0MiB/s]
28%|██▊       | 1.21G/4.38G [00:47<01:33, 33.8MiB/s]
28%|██▊       | 1.22G/4.38G [00:47<01:12, 43.9MiB/s]
28%|██▊       | 1.22G/4.38G [00:48<02:00, 26.3MiB/s]
28%|██▊       | 1.23G/4.38G [00:48<02:01, 26.0MiB/s]
28%|██▊       | 1.23G/4.38G [00:48<01:41, 31.1MiB/s]
28%|██▊       | 1.24G/4.38G [00:48<01:46, 29.5MiB/s]
28%|██▊       | 1.24G/4.38G [00:49<01:43, 30.3MiB/s]
28%|██▊       | 1.25G/4.38G [00:49<01:35, 32.8MiB/s]
29%|██▊       | 1.25G/4.38G [00:49<01:45, 29.6MiB/s]
29%|██▊       | 1.26G/4.38G [00:49<01:53, 27.5MiB/s]
29%|██▉       | 1.26G/4.38G [00:49<01:48, 28.7MiB/s]
29%|██▉       | 1.27G/4.38G [00:49<01:51, 27.8MiB/s]
29%|██▉       | 1.28G/4.38G [00:50<01:42, 30.3MiB/s]
29%|██▉       | 1.28G/4.38G [00:50<01:23, 37.0MiB/s]
29%|██▉       | 1.29G/4.38G [00:50<01:27, 35.4MiB/s]
29%|██▉       | 1.29G/4.38G [00:50<01:46, 29.1MiB/s]
30%|██▉       | 1.30G/4.38G [00:50<01:34, 32.8MiB/s]
30%|██▉       | 1.31G/4.38G [00:51<01:24, 36.5MiB/s]
30%|██▉       | 1.31G/4.38G [00:51<01:42, 30.0MiB/s]
30%|███       | 1.32G/4.38G [00:51<01:32, 33.1MiB/s]
30%|███       | 1.32G/4.38G [00:51<01:41, 30.0MiB/s]
30%|███       | 1.32G/4.38G [00:51<01:35, 32.2MiB/s]
30%|███       | 1.33G/4.38G [00:51<01:28, 34.5MiB/s]
30%|███       | 1.33G/4.38G [00:51<01:15, 40.1MiB/s]
31%|███       | 1.34G/4.38G [00:52<01:40, 30.3MiB/s]
31%|███       | 1.34G/4.38G [00:52<01:47, 28.3MiB/s]
31%|███       | 1.34G/4.38G [00:52<02:13, 22.8MiB/s]
31%|███       | 1.35G/4.38G [00:52<01:47, 28.3MiB/s]
31%|███       | 1.35G/4.38G [00:52<01:53, 26.6MiB/s]
31%|███       | 1.36G/4.38G [00:52<01:45, 28.6MiB/s]
31%|███       | 1.36G/4.38G [00:52<02:05, 24.1MiB/s]
31%|███       | 1.37G/4.38G [00:53<02:00, 25.0MiB/s]
31%|███       | 1.37G/4.38G [00:53<02:28, 20.3MiB/s]
31%|███▏      | 1.37G/4.38G [00:53<01:58, 25.5MiB/s]
31%|███▏      | 1.38G/4.38G [00:53<01:58, 25.5MiB/s]
32%|███▏      | 1.38G/4.38G [00:53<01:31, 32.9MiB/s]
32%|███▏      | 1.39G/4.38G [00:53<01:52, 26.5MiB/s]
32%|███▏      | 1.39G/4.38G [00:54<01:37, 30.5MiB/s]
32%|███▏      | 1.39G/4.38G [00:54<01:59, 25.0MiB/s]
32%|███▏      | 1.40G/4.38G [00:54<01:51, 26.8MiB/s]
32%|███▏      | 1.41G/4.38G [00:54<01:33, 32.0MiB/s]
32%|███▏      | 1.41G/4.38G [00:54<01:32, 32.1MiB/s]
32%|███▏      | 1.42G/4.38G [00:54<01:33, 31.8MiB/s]
33%|███▎      | 1.42G/4.38G [00:55<01:39, 29.7MiB/s]
33%|███▎      | 1.43G/4.38G [00:55<01:52, 26.2MiB/s]
33%|███▎      | 1.43G/4.38G [00:55<02:13, 22.0MiB/s]
33%|███▎      | 1.44G/4.38G [00:55<02:37, 18.7MiB/s]
33%|███▎      | 1.44G/4.38G [00:56<02:10, 22.5MiB/s]
33%|███▎      | 1.45G/4.38G [00:56<02:05, 23.4MiB/s]
33%|███▎      | 1.45G/4.38G [00:56<02:15, 21.6MiB/s]
33%|███▎      | 1.46G/4.38G [00:56<01:44, 28.0MiB/s]
34%|███▎      | 1.47G/4.38G [00:56<01:17, 37.7MiB/s]
34%|███▎      | 1.47G/4.38G [00:56<01:21, 35.6MiB/s]
34%|███▎      | 1.48G/4.38G [00:57<01:24, 34.4MiB/s]
34%|███▍      | 1.48G/4.38G [00:57<01:23, 34.5MiB/s]
34%|███▍      | 1.49G/4.38G [00:57<01:10, 41.2MiB/s]
34%|███▍      | 1.50G/4.38G [00:57<01:20, 35.9MiB/s]
34%|███▍      | 1.50G/4.38G [00:58<02:10, 22.1MiB/s]
34%|███▍      | 1.50G/4.38G [00:58<02:12, 21.8MiB/s]
34%|███▍      | 1.51G/4.38G [00:58<01:31, 31.3MiB/s]
35%|███▍      | 1.52G/4.38G [00:58<01:26, 33.1MiB/s]
35%|███▍      | 1.52G/4.38G [00:58<01:35, 30.0MiB/s]
35%|███▍      | 1.53G/4.38G [00:58<01:29, 31.9MiB/s]
35%|███▍      | 1.53G/4.38G [00:58<01:34, 30.2MiB/s]
35%|███▌      | 1.53G/4.38G [00:59<01:46, 26.7MiB/s]
35%|███▌      | 1.54G/4.38G [00:59<01:57, 24.2MiB/s]
35%|███▌      | 1.54G/4.38G [00:59<02:02, 23.2MiB/s]
35%|███▌      | 1.55G/4.38G [00:59<01:37, 29.1MiB/s]
36%|███▌      | 1.56G/4.38G [00:59<01:26, 32.6MiB/s]
36%|███▌      | 1.57G/4.38G [01:00<01:37, 29.0MiB/s]
36%|███▌      | 1.57G/4.38G [01:00<01:44, 26.8MiB/s]
36%|███▌      | 1.58G/4.38G [01:00<01:44, 26.8MiB/s]
36%|███▌      | 1.58G/4.38G [01:00<01:54, 24.4MiB/s]
36%|███▌      | 1.59G/4.38G [01:00<01:31, 30.4MiB/s]
36%|███▋      | 1.59G/4.38G [01:01<01:46, 26.2MiB/s]
36%|███▋      | 1.60G/4.38G [01:01<02:11, 21.1MiB/s]
37%|███▋      | 1.60G/4.38G [01:01<02:00, 23.0MiB/s]
37%|███▋      | 1.60G/4.38G [01:01<02:17, 20.2MiB/s]
37%|███▋      | 1.61G/4.38G [01:02<01:50, 25.1MiB/s]
37%|███▋      | 1.61G/4.38G [01:02<02:12, 20.9MiB/s]
37%|███▋      | 1.62G/4.38G [01:02<01:59, 23.1MiB/s]
37%|███▋      | 1.62G/4.38G [01:02<02:58, 15.5MiB/s]
37%|███▋      | 1.62G/4.38G [01:03<03:17, 14.0MiB/s]
37%|███▋      | 1.63G/4.38G [01:03<02:49, 16.2MiB/s]
37%|███▋      | 1.64G/4.38G [01:03<01:43, 26.4MiB/s]
37%|███▋      | 1.64G/4.38G [01:03<01:38, 27.9MiB/s]
38%|███▊      | 1.64G/4.38G [01:03<01:40, 27.2MiB/s]
38%|███▊      | 1.65G/4.38G [01:03<01:33, 29.3MiB/s]
38%|███▊      | 1.65G/4.38G [01:04<01:53, 24.1MiB/s]
38%|███▊      | 1.66G/4.38G [01:04<01:39, 27.3MiB/s]
38%|███▊      | 1.66G/4.38G [01:04<01:54, 23.7MiB/s]
38%|███▊      | 1.67G/4.38G [01:04<01:49, 24.8MiB/s]
38%|███▊      | 1.67G/4.38G [01:04<01:59, 22.7MiB/s]
38%|███▊      | 1.68G/4.38G [01:05<02:00, 22.5MiB/s]
38%|███▊      | 1.68G/4.38G [01:05<02:10, 20.7MiB/s]
38%|███▊      | 1.68G/4.38G [01:05<01:49, 24.6MiB/s]
39%|███▊      | 1.69G/4.38G [01:05<02:01, 22.1MiB/s]
39%|███▊      | 1.69G/4.38G [01:05<01:25, 31.4MiB/s]
39%|███▉      | 1.70G/4.38G [01:05<01:37, 27.4MiB/s]
39%|███▉      | 1.70G/4.38G [01:06<01:44, 25.7MiB/s]
39%|███▉      | 1.71G/4.38G [01:06<02:31, 17.6MiB/s]
39%|███▉      | 1.71G/4.38G [01:06<02:35, 17.2MiB/s]
39%|███▉      | 1.72G/4.38G [01:06<01:50, 24.1MiB/s]
39%|███▉      | 1.73G/4.38G [01:07<01:30, 29.5MiB/s]
39%|███▉      | 1.73G/4.38G [01:07<01:37, 27.1MiB/s]
40%|███▉      | 1.73G/4.38G [01:07<01:47, 24.5MiB/s]
40%|███▉      | 1.74G/4.38G [01:07<01:49, 24.1MiB/s]
40%|███▉      | 1.74G/4.38G [01:07<01:27, 30.2MiB/s]
40%|███▉      | 1.75G/4.38G [01:08<01:51, 23.6MiB/s]
40%|███▉      | 1.75G/4.38G [01:08<01:38, 26.8MiB/s]
40%|████      | 1.75G/4.38G [01:08<01:39, 26.3MiB/s]
40%|████      | 1.76G/4.38G [01:08<01:27, 30.1MiB/s]
40%|████      | 1.76G/4.38G [01:08<01:26, 30.1MiB/s]
40%|████      | 1.77G/4.38G [01:08<01:18, 33.3MiB/s]
40%|████      | 1.77G/4.38G [01:08<01:31, 28.5MiB/s]
41%|████      | 1.78G/4.38G [01:08<01:31, 28.6MiB/s]
41%|████      | 1.78G/4.38G [01:09<01:38, 26.4MiB/s]
41%|████      | 1.79G/4.38G [01:09<01:28, 29.2MiB/s]
41%|████      | 1.79G/4.38G [01:09<01:43, 25.0MiB/s]
41%|████      | 1.79G/4.38G [01:09<01:37, 26.5MiB/s]
41%|████      | 1.80G/4.38G [01:09<01:44, 24.7MiB/s]
41%|████      | 1.80G/4.38G [01:09<01:24, 30.5MiB/s]
41%|████      | 1.80G/4.38G [01:10<01:44, 24.7MiB/s]
41%|████▏     | 1.81G/4.38G [01:10<01:34, 27.1MiB/s]
41%|████▏     | 1.81G/4.38G [01:10<01:51, 23.1MiB/s]
42%|████▏     | 1.82G/4.38G [01:10<01:27, 29.2MiB/s]
42%|████▏     | 1.82G/4.38G [01:10<01:31, 28.0MiB/s]
42%|████▏     | 1.83G/4.38G [01:10<01:28, 28.8MiB/s]
42%|████▏     | 1.84G/4.38G [01:11<01:10, 36.4MiB/s]
42%|████▏     | 1.84G/4.38G [01:11<01:51, 22.8MiB/s]
42%|████▏     | 1.85G/4.38G [01:11<01:47, 23.6MiB/s]
42%|████▏     | 1.85G/4.38G [01:11<01:49, 23.0MiB/s]
42%|████▏     | 1.85G/4.38G [01:12<01:51, 22.6MiB/s]
43%|████▎     | 1.86G/4.38G [01:12<01:32, 27.3MiB/s]
43%|████▎     | 1.87G/4.38G [01:12<01:44, 24.0MiB/s]
43%|████▎     | 1.87G/4.38G [01:12<01:51, 22.5MiB/s]
43%|████▎     | 1.88G/4.38G [01:12<01:30, 27.7MiB/s]
43%|████▎     | 1.88G/4.38G [01:13<01:41, 24.6MiB/s]
43%|████▎     | 1.89G/4.38G [01:13<01:41, 24.6MiB/s]
43%|████▎     | 1.89G/4.38G [01:13<01:27, 28.4MiB/s]
43%|████▎     | 1.90G/4.38G [01:13<01:34, 26.3MiB/s]
43%|████▎     | 1.90G/4.38G [01:13<01:20, 30.8MiB/s]
44%|████▎     | 1.91G/4.38G [01:13<01:04, 38.6MiB/s]
44%|████▍     | 1.92G/4.38G [01:14<00:57, 42.8MiB/s]
44%|████▍     | 1.92G/4.38G [01:14<01:45, 23.2MiB/s]
44%|████▍     | 1.93G/4.38G [01:14<01:41, 24.0MiB/s]
44%|████▍     | 1.94G/4.38G [01:14<01:23, 29.3MiB/s]
44%|████▍     | 1.94G/4.38G [01:15<01:26, 28.1MiB/s]
44%|████▍     | 1.95G/4.38G [01:15<01:25, 28.5MiB/s]
45%|████▍     | 1.95G/4.38G [01:15<01:22, 29.3MiB/s]
45%|████▍     | 1.96G/4.38G [01:15<01:23, 29.1MiB/s]
45%|████▍     | 1.96G/4.38G [01:15<01:20, 30.2MiB/s]
45%|████▍     | 1.96G/4.38G [01:15<01:34, 25.6MiB/s]
45%|████▍     | 1.97G/4.38G [01:16<01:24, 28.5MiB/s]
45%|████▌     | 1.97G/4.38G [01:16<01:34, 25.6MiB/s]
45%|████▌     | 1.98G/4.38G [01:16<01:30, 26.6MiB/s]
45%|████▌     | 1.99G/4.38G [01:16<01:13, 32.6MiB/s]
45%|████▌     | 1.99G/4.38G [01:16<01:17, 30.9MiB/s]
46%|████▌     | 2.00G/4.38G [01:16<01:06, 35.7MiB/s]
46%|████▌     | 2.00G/4.38G [01:17<01:16, 31.1MiB/s]
46%|████▌     | 2.00G/4.38G [01:17<01:24, 28.2MiB/s]
46%|████▌     | 2.01G/4.38G [01:17<01:35, 24.8MiB/s]
46%|████▌     | 2.01G/4.38G [01:17<01:31, 26.0MiB/s]
46%|████▌     | 2.01G/4.38G [01:17<01:41, 23.2MiB/s]
46%|████▌     | 2.02G/4.38G [01:17<01:16, 30.8MiB/s]
46%|████▌     | 2.02G/4.38G [01:18<01:30, 26.0MiB/s]
46%|████▋     | 2.03G/4.38G [01:18<01:40, 23.4MiB/s]
46%|████▋     | 2.03G/4.38G [01:18<01:48, 21.7MiB/s]
46%|████▋     | 2.04G/4.38G [01:18<01:22, 28.3MiB/s]
47%|████▋     | 2.04G/4.38G [01:18<01:33, 24.9MiB/s]
47%|████▋     | 2.04G/4.38G [01:18<01:57, 19.8MiB/s]
47%|████▋     | 2.05G/4.38G [01:19<02:45, 14.1MiB/s]
47%|████▋     | 2.05G/4.38G [01:19<02:47, 13.9MiB/s]
47%|████▋     | 2.05G/4.38G [01:19<02:12, 17.6MiB/s]
47%|████▋     | 2.06G/4.38G [01:19<02:19, 16.7MiB/s]
47%|████▋     | 2.06G/4.38G [01:19<01:35, 24.3MiB/s]
47%|████▋     | 2.06G/4.38G [01:20<01:33, 24.7MiB/s]
47%|████▋     | 2.07G/4.38G [01:20<01:16, 30.2MiB/s]
47%|████▋     | 2.07G/4.38G [01:20<01:21, 28.5MiB/s]
47%|████▋     | 2.08G/4.38G [01:20<01:33, 24.5MiB/s]
48%|████▊     | 2.08G/4.38G [01:20<01:44, 21.9MiB/s]
48%|████▊     | 2.09G/4.38G [01:20<01:27, 26.2MiB/s]
48%|████▊     | 2.09G/4.38G [01:21<01:40, 22.7MiB/s]
48%|████▊     | 2.10G/4.38G [01:21<01:45, 21.6MiB/s]
48%|████▊     | 2.10G/4.38G [01:21<01:48, 21.0MiB/s]
48%|████▊     | 2.11G/4.38G [01:21<01:26, 26.5MiB/s]
48%|████▊     | 2.11G/4.38G [01:21<01:23, 27.2MiB/s]
48%|████▊     | 2.12G/4.38G [01:22<01:28, 25.5MiB/s]
48%|████▊     | 2.12G/4.38G [01:22<01:23, 27.1MiB/s]
48%|████▊     | 2.12G/4.38G [01:22<01:25, 26.4MiB/s]
49%|████▊     | 2.13G/4.38G [01:22<01:13, 30.5MiB/s]
49%|████▊     | 2.13G/4.38G [01:22<01:25, 26.4MiB/s]
49%|████▉     | 2.14G/4.38G [01:22<01:04, 34.5MiB/s]
49%|████▉     | 2.14G/4.38G [01:22<01:10, 31.9MiB/s]
49%|████▉     | 2.15G/4.38G [01:23<01:33, 24.0MiB/s]
49%|████▉     | 2.15G/4.38G [01:23<01:51, 20.0MiB/s]
49%|████▉     | 2.15G/4.38G [01:23<01:56, 19.2MiB/s]
49%|████▉     | 2.15G/4.38G [01:23<02:08, 17.3MiB/s]
49%|████▉     | 2.16G/4.38G [01:23<02:22, 15.6MiB/s]
49%|████▉     | 2.16G/4.38G [01:24<01:44, 21.2MiB/s]
49%|████▉     | 2.16G/4.38G [01:24<01:59, 18.6MiB/s]
50%|████▉     | 2.17G/4.38G [01:24<01:27, 25.4MiB/s]
50%|████▉     | 2.18G/4.38G [01:24<01:36, 22.9MiB/s]
50%|████▉     | 2.18G/4.38G [01:25<01:54, 19.2MiB/s]
50%|████▉     | 2.19G/4.38G [01:25<01:40, 21.9MiB/s]
50%|████▉     | 2.19G/4.38G [01:25<01:51, 19.7MiB/s]
50%|█████     | 2.20G/4.38G [01:25<01:29, 24.3MiB/s]
50%|█████     | 2.20G/4.38G [01:25<01:36, 22.6MiB/s]
50%|█████     | 2.20G/4.38G [01:25<01:44, 20.9MiB/s]
50%|█████     | 2.20G/4.38G [01:26<01:47, 20.3MiB/s]
50%|█████     | 2.21G/4.38G [01:26<01:39, 21.9MiB/s]
50%|█████     | 2.21G/4.38G [01:26<02:11, 16.6MiB/s]
51%|█████     | 2.21G/4.38G [01:26<01:39, 21.7MiB/s]
51%|█████     | 2.22G/4.38G [01:26<01:54, 19.0MiB/s]
51%|█████     | 2.22G/4.38G [01:26<01:31, 23.5MiB/s]
51%|█████     | 2.23G/4.38G [01:27<01:17, 27.7MiB/s]
51%|█████     | 2.23G/4.38G [01:27<01:27, 24.4MiB/s]
51%|█████     | 2.24G/4.38G [01:27<01:10, 30.4MiB/s]
51%|█████     | 2.24G/4.38G [01:27<01:37, 21.9MiB/s]
51%|█████▏    | 2.25G/4.38G [01:27<01:27, 24.5MiB/s]
51%|█████▏    | 2.25G/4.38G [01:28<01:33, 22.8MiB/s]
51%|█████▏    | 2.25G/4.38G [01:28<01:48, 19.5MiB/s]
51%|█████▏    | 2.25G/4.38G [01:28<01:43, 20.6MiB/s]
52%|█████▏    | 2.26G/4.38G [01:28<03:22, 10.5MiB/s]
52%|█████▏    | 2.26G/4.38G [01:28<02:00, 17.5MiB/s]
52%|█████▏    | 2.27G/4.38G [01:29<02:00, 17.5MiB/s]
52%|█████▏    | 2.27G/4.38G [01:29<01:35, 22.0MiB/s]
52%|█████▏    | 2.27G/4.38G [01:29<01:45, 19.9MiB/s]
52%|█████▏    | 2.28G/4.38G [01:29<01:24, 24.8MiB/s]
52%|█████▏    | 2.28G/4.38G [01:29<01:33, 22.5MiB/s]
52%|█████▏    | 2.29G/4.38G [01:29<01:18, 26.6MiB/s]
52%|█████▏    | 2.29G/4.38G [01:30<01:21, 25.7MiB/s]
52%|█████▏    | 2.30G/4.38G [01:30<01:27, 23.7MiB/s]
53%|█████▎    | 2.31G/4.38G [01:30<01:11, 29.0MiB/s]
53%|█████▎    | 2.31G/4.38G [01:30<01:32, 22.4MiB/s]
53%|█████▎    | 2.31G/4.38G [01:31<01:30, 22.8MiB/s]
53%|█████▎    | 2.32G/4.38G [01:31<01:45, 19.5MiB/s]
53%|█████▎    | 2.32G/4.38G [01:31<01:17, 26.5MiB/s]
53%|█████▎    | 2.33G/4.38G [01:31<01:24, 24.4MiB/s]
53%|█████▎    | 2.33G/4.38G [01:31<01:20, 25.5MiB/s]
53%|█████▎    | 2.33G/4.38G [01:31<01:28, 23.2MiB/s]
53%|█████▎    | 2.34G/4.38G [01:32<01:23, 24.4MiB/s]
54%|█████▎    | 2.35G/4.38G [01:32<01:21, 25.1MiB/s]
54%|█████▎    | 2.35G/4.38G [01:32<01:33, 21.7MiB/s]
54%|█████▍    | 2.36G/4.38G [01:32<01:13, 27.7MiB/s]
54%|█████▍    | 2.36G/4.38G [01:33<01:19, 25.5MiB/s]
54%|█████▍    | 2.37G/4.38G [01:33<01:27, 23.0MiB/s]
54%|█████▍    | 2.37G/4.38G [01:33<01:16, 26.2MiB/s]
54%|█████▍    | 2.37G/4.38G [01:33<01:21, 24.7MiB/s]
54%|█████▍    | 2.38G/4.38G [01:33<01:26, 23.2MiB/s]
54%|█████▍    | 2.38G/4.38G [01:33<01:34, 21.2MiB/s]
55%|█████▍    | 2.39G/4.38G [01:34<01:18, 25.3MiB/s]
55%|█████▍    | 2.39G/4.38G [01:34<01:41, 19.7MiB/s]
55%|█████▍    | 2.40G/4.38G [01:34<01:13, 27.1MiB/s]
55%|█████▍    | 2.40G/4.38G [01:34<01:36, 20.5MiB/s]
55%|█████▍    | 2.41G/4.38G [01:34<01:22, 24.0MiB/s]
55%|█████▍    | 2.41G/4.38G [01:35<01:30, 21.8MiB/s]
55%|█████▌    | 2.41G/4.38G [01:35<01:14, 26.6MiB/s]
55%|█████▌    | 2.42G/4.38G [01:35<01:14, 26.5MiB/s]
55%|█████▌    | 2.42G/4.38G [01:35<01:01, 31.8MiB/s]
56%|█████▌    | 2.43G/4.38G [01:35<00:46, 41.7MiB/s]
56%|█████▌    | 2.44G/4.38G [01:35<01:10, 27.6MiB/s]
56%|█████▌    | 2.44G/4.38G [01:36<01:22, 23.4MiB/s]
56%|█████▌    | 2.44G/4.38G [01:36<01:42, 19.0MiB/s]
56%|█████▌    | 2.45G/4.38G [01:36<01:18, 24.7MiB/s]
56%|█████▌    | 2.46G/4.38G [01:36<01:03, 30.4MiB/s]
56%|█████▋    | 2.47G/4.38G [01:36<00:55, 34.8MiB/s]
56%|█████▋    | 2.47G/4.38G [01:37<00:55, 34.1MiB/s]
57%|█████▋    | 2.48G/4.38G [01:37<01:04, 29.6MiB/s]
57%|█████▋    | 2.48G/4.38G [01:37<01:09, 27.1MiB/s]
57%|█████▋    | 2.49G/4.38G [01:37<01:05, 28.9MiB/s]
57%|█████▋    | 2.50G/4.38G [01:37<00:52, 35.9MiB/s]
57%|█████▋    | 2.50G/4.38G [01:38<00:56, 33.1MiB/s]
57%|█████▋    | 2.51G/4.38G [01:38<01:04, 29.0MiB/s]
57%|█████▋    | 2.52G/4.38G [01:38<01:00, 30.6MiB/s]
57%|█████▋    | 2.52G/4.38G [01:38<01:01, 30.0MiB/s]
58%|█████▊    | 2.52G/4.38G [01:38<01:05, 28.1MiB/s]
58%|█████▊    | 2.53G/4.38G [01:39<00:50, 36.5MiB/s]
58%|█████▊    | 2.54G/4.38G [01:39<01:00, 30.3MiB/s]
58%|█████▊    | 2.54G/4.38G [01:39<00:57, 32.0MiB/s]
58%|█████▊    | 2.54G/4.38G [01:39<01:05, 28.2MiB/s]
58%|█████▊    | 2.55G/4.38G [01:39<01:17, 23.7MiB/s]
58%|█████▊    | 2.55G/4.38G [01:39<01:17, 23.5MiB/s]
58%|█████▊    | 2.55G/4.38G [01:40<01:31, 19.9MiB/s]
58%|█████▊    | 2.56G/4.38G [01:40<01:20, 22.8MiB/s]
59%|█████▊    | 2.57G/4.38G [01:40<01:01, 29.6MiB/s]
59%|█████▊    | 2.57G/4.38G [01:40<01:12, 25.0MiB/s]
59%|█████▊    | 2.57G/4.38G [01:40<01:19, 22.8MiB/s]
59%|█████▉    | 2.58G/4.38G [01:40<01:25, 21.1MiB/s]
59%|█████▉    | 2.58G/4.38G [01:41<01:03, 28.1MiB/s]
59%|█████▉    | 2.59G/4.38G [01:41<01:20, 22.4MiB/s]
59%|█████▉    | 2.59G/4.38G [01:41<01:20, 22.3MiB/s]
59%|█████▉    | 2.59G/4.38G [01:41<01:29, 20.1MiB/s]
59%|█████▉    | 2.60G/4.38G [01:42<01:25, 20.9MiB/s]
59%|█████▉    | 2.60G/4.38G [01:42<01:44, 17.0MiB/s]
60%|█████▉    | 2.61G/4.38G [01:42<01:09, 25.5MiB/s]
60%|█████▉    | 2.61G/4.38G [01:42<01:10, 25.2MiB/s]
60%|█████▉    | 2.62G/4.38G [01:42<01:04, 27.4MiB/s]
60%|█████▉    | 2.62G/4.38G [01:42<01:00, 29.3MiB/s]
60%|█████▉    | 2.63G/4.38G [01:43<01:11, 24.4MiB/s]
60%|██████    | 2.63G/4.38G [01:43<01:19, 21.9MiB/s]
60%|██████    | 2.63G/4.38G [01:43<01:27, 19.9MiB/s]
60%|██████    | 2.64G/4.38G [01:43<01:19, 21.8MiB/s]
60%|██████    | 2.64G/4.38G [01:43<01:31, 18.9MiB/s]
60%|██████    | 2.65G/4.38G [01:44<01:21, 21.3MiB/s]
61%|██████    | 2.65G/4.38G [01:44<01:37, 17.8MiB/s]
61%|██████    | 2.66G/4.38G [01:44<01:54, 15.0MiB/s]
61%|██████    | 2.66G/4.38G [01:45<02:03, 14.0MiB/s]
61%|██████    | 2.67G/4.38G [01:45<01:25, 20.0MiB/s]
61%|██████    | 2.67G/4.38G [01:45<01:06, 25.5MiB/s]
61%|██████    | 2.68G/4.38G [01:45<01:12, 23.4MiB/s]
61%|██████    | 2.68G/4.38G [01:45<01:08, 24.7MiB/s]
61%|██████▏   | 2.69G/4.38G [01:45<01:11, 23.7MiB/s]
61%|██████▏   | 2.69G/4.38G [01:46<00:52, 31.9MiB/s]
62%|██████▏   | 2.70G/4.38G [01:46<00:55, 30.5MiB/s]
62%|██████▏   | 2.70G/4.38G [01:46<00:59, 28.0MiB/s]
62%|██████▏   | 2.70G/4.38G [01:46<01:00, 27.8MiB/s]
62%|██████▏   | 2.71G/4.38G [01:46<01:05, 25.7MiB/s]
62%|██████▏   | 2.71G/4.38G [01:46<01:08, 24.3MiB/s]
62%|██████▏   | 2.72G/4.38G [01:46<00:46, 36.1MiB/s]
62%|██████▏   | 2.72G/4.38G [01:47<00:51, 32.1MiB/s]
62%|██████▏   | 2.73G/4.38G [01:47<00:49, 33.8MiB/s]
62%|██████▏   | 2.73G/4.38G [01:47<00:43, 38.0MiB/s]
63%|██████▎   | 2.74G/4.38G [01:47<00:37, 43.7MiB/s]
63%|██████▎   | 2.75G/4.38G [01:47<00:43, 37.6MiB/s]
63%|██████▎   | 2.75G/4.38G [01:47<00:48, 33.8MiB/s]
63%|██████▎   | 2.75G/4.38G [01:48<00:55, 29.2MiB/s]
63%|██████▎   | 2.76G/4.38G [01:48<01:14, 21.8MiB/s]
63%|██████▎   | 2.76G/4.38G [01:48<01:20, 20.2MiB/s]
63%|██████▎   | 2.76G/4.38G [01:48<01:25, 19.0MiB/s]
63%|██████▎   | 2.76G/4.38G [01:48<01:26, 18.7MiB/s]
63%|██████▎   | 2.77G/4.38G [01:48<01:10, 23.0MiB/s]
63%|██████▎   | 2.78G/4.38G [01:49<00:53, 30.1MiB/s]
63%|██████▎   | 2.78G/4.38G [01:49<01:07, 23.6MiB/s]
64%|██████▎   | 2.79G/4.38G [01:49<01:04, 24.8MiB/s]
64%|██████▍   | 2.79G/4.38G [01:49<00:54, 29.1MiB/s]
64%|██████▍   | 2.80G/4.38G [01:49<00:55, 28.4MiB/s]
64%|██████▍   | 2.80G/4.38G [01:50<00:59, 26.7MiB/s]
64%|██████▍   | 2.81G/4.38G [01:50<00:53, 29.4MiB/s]
64%|██████▍   | 2.81G/4.38G [01:50<01:02, 24.9MiB/s]
64%|██████▍   | 2.82G/4.38G [01:50<00:51, 30.1MiB/s]
64%|██████▍   | 2.82G/4.38G [01:50<00:51, 30.3MiB/s]
65%|██████▍   | 2.83G/4.38G [01:50<00:46, 33.6MiB/s]
65%|██████▍   | 2.83G/4.38G [01:50<00:37, 41.4MiB/s]
65%|██████▍   | 2.84G/4.38G [01:51<00:43, 35.6MiB/s]
65%|██████▍   | 2.84G/4.38G [01:51<00:42, 36.6MiB/s]
65%|██████▍   | 2.85G/4.38G [01:51<00:45, 34.0MiB/s]
65%|██████▌   | 2.85G/4.38G [01:51<00:45, 33.8MiB/s]
65%|██████▌   | 2.85G/4.38G [01:51<00:51, 29.4MiB/s]
65%|██████▌   | 2.86G/4.38G [01:51<00:45, 33.1MiB/s]
65%|██████▌   | 2.87G/4.38G [01:51<00:39, 37.9MiB/s]
66%|██████▌   | 2.88G/4.38G [01:52<00:44, 34.1MiB/s]
66%|██████▌   | 2.88G/4.38G [01:52<00:50, 29.9MiB/s]
66%|██████▌   | 2.88G/4.38G [01:52<00:49, 30.1MiB/s]
66%|██████▌   | 2.89G/4.38G [01:52<00:56, 26.5MiB/s]
66%|██████▌   | 2.89G/4.38G [01:52<00:51, 28.9MiB/s]
66%|██████▌   | 2.90G/4.38G [01:53<00:40, 36.2MiB/s]
66%|██████▋   | 2.91G/4.38G [01:53<00:38, 38.4MiB/s]
66%|██████▋   | 2.91G/4.38G [01:53<00:44, 32.8MiB/s]
67%|██████▋   | 2.92G/4.38G [01:53<00:49, 29.5MiB/s]
67%|██████▋   | 2.92G/4.38G [01:53<00:50, 28.7MiB/s]
67%|██████▋   | 2.93G/4.38G [01:53<00:51, 28.4MiB/s]
67%|██████▋   | 2.93G/4.38G [01:54<00:59, 24.5MiB/s]
67%|██████▋   | 2.93G/4.38G [01:54<01:06, 21.8MiB/s]
67%|██████▋   | 2.94G/4.38G [01:54<00:58, 24.9MiB/s]
67%|██████▋   | 2.94G/4.38G [01:54<00:53, 26.9MiB/s]
67%|██████▋   | 2.95G/4.38G [01:54<01:04, 22.4MiB/s]
67%|██████▋   | 2.95G/4.38G [01:54<01:07, 21.1MiB/s]
67%|██████▋   | 2.95G/4.38G [01:55<01:07, 21.3MiB/s]
67%|██████▋   | 2.95G/4.38G [01:55<01:14, 19.1MiB/s]
68%|██████▊   | 2.96G/4.38G [01:55<01:00, 23.4MiB/s]
68%|██████▊   | 2.96G/4.38G [01:55<01:02, 22.6MiB/s]
68%|██████▊   | 2.97G/4.38G [01:55<00:54, 25.9MiB/s]
68%|██████▊   | 2.98G/4.38G [01:56<00:48, 29.2MiB/s]
68%|██████▊   | 2.98G/4.38G [01:56<00:49, 28.4MiB/s]
68%|██████▊   | 2.99G/4.38G [01:56<00:46, 29.8MiB/s]
68%|██████▊   | 2.99G/4.38G [01:56<00:38, 36.4MiB/s]
68%|██████▊   | 3.00G/4.38G [01:56<00:51, 27.1MiB/s]
69%|██████▊   | 3.00G/4.38G [01:56<00:45, 30.5MiB/s]
69%|██████▊   | 3.01G/4.38G [01:56<00:36, 37.8MiB/s]
69%|██████▉   | 3.01G/4.38G [01:57<00:39, 34.2MiB/s]
69%|██████▉   | 3.02G/4.38G [01:57<00:42, 31.8MiB/s]
69%|██████▉   | 3.02G/4.38G [01:57<00:53, 25.4MiB/s]
69%|██████▉   | 3.03G/4.38G [01:57<00:41, 32.8MiB/s]
69%|██████▉   | 3.03G/4.38G [01:57<00:42, 31.8MiB/s]
69%|██████▉   | 3.04G/4.38G [01:57<00:47, 28.3MiB/s]
69%|██████▉   | 3.04G/4.38G [01:58<00:38, 34.5MiB/s]
70%|██████▉   | 3.05G/4.38G [01:58<00:48, 27.5MiB/s]
70%|██████▉   | 3.05G/4.38G [01:58<00:47, 28.1MiB/s]
70%|██████▉   | 3.06G/4.38G [01:58<00:38, 33.8MiB/s]
70%|███████   | 3.07G/4.38G [01:58<00:36, 35.6MiB/s]
70%|███████   | 3.08G/4.38G [01:59<00:45, 28.5MiB/s]
70%|███████   | 3.08G/4.38G [01:59<00:49, 26.2MiB/s]
70%|███████   | 3.09G/4.38G [01:59<00:44, 29.3MiB/s]
70%|███████   | 3.09G/4.38G [01:59<00:48, 26.9MiB/s]
71%|███████   | 3.09G/4.38G [01:59<00:42, 30.4MiB/s]
71%|███████   | 3.10G/4.38G [02:00<00:46, 27.4MiB/s]
71%|███████   | 3.10G/4.38G [02:00<00:37, 34.1MiB/s]
71%|███████   | 3.11G/4.38G [02:00<00:48, 26.2MiB/s]
71%|███████   | 3.11G/4.38G [02:00<00:44, 28.5MiB/s]
71%|███████   | 3.11G/4.38G [02:00<00:52, 24.2MiB/s]
71%|███████   | 3.12G/4.38G [02:00<00:49, 25.7MiB/s]
71%|███████▏  | 3.13G/4.38G [02:01<00:42, 29.7MiB/s]
71%|███████▏  | 3.13G/4.38G [02:01<00:43, 28.7MiB/s]
72%|███████▏  | 3.14G/4.38G [02:01<00:39, 31.8MiB/s]
72%|███████▏  | 3.14G/4.38G [02:01<00:47, 26.3MiB/s]
72%|███████▏  | 3.15G/4.38G [02:01<00:49, 24.7MiB/s]
72%|███████▏  | 3.15G/4.38G [02:01<00:37, 32.7MiB/s]
72%|███████▏  | 3.16G/4.38G [02:02<00:41, 29.4MiB/s]
72%|███████▏  | 3.16G/4.38G [02:02<00:41, 29.4MiB/s]
72%|███████▏  | 3.16G/4.38G [02:02<00:50, 24.1MiB/s]
72%|███████▏  | 3.17G/4.38G [02:02<00:42, 28.6MiB/s]
72%|███████▏  | 3.17G/4.38G [02:02<00:45, 26.3MiB/s]
73%|███████▎  | 3.18G/4.38G [02:02<00:39, 30.6MiB/s]
73%|███████▎  | 3.18G/4.38G [02:02<00:37, 32.1MiB/s]
73%|███████▎  | 3.19G/4.38G [02:03<00:45, 26.3MiB/s]
73%|███████▎  | 3.19G/4.38G [02:03<00:46, 25.8MiB/s]
73%|███████▎  | 3.19G/4.38G [02:03<00:40, 29.4MiB/s]
73%|███████▎  | 3.20G/4.38G [02:03<00:41, 28.9MiB/s]
73%|███████▎  | 3.20G/4.38G [02:03<00:38, 30.5MiB/s]
73%|███████▎  | 3.21G/4.38G [02:03<00:44, 26.2MiB/s]
73%|███████▎  | 3.21G/4.38G [02:04<00:48, 24.3MiB/s]
73%|███████▎  | 3.21G/4.38G [02:04<00:56, 20.5MiB/s]
73%|███████▎  | 3.22G/4.38G [02:04<00:45, 25.4MiB/s]
74%|███████▎  | 3.22G/4.38G [02:04<00:46, 25.1MiB/s]
74%|███████▎  | 3.23G/4.38G [02:04<00:36, 32.0MiB/s]
74%|███████▍  | 3.23G/4.38G [02:04<00:37, 30.8MiB/s]
74%|███████▍  | 3.24G/4.38G [02:04<00:34, 33.5MiB/s]
74%|███████▍  | 3.24G/4.38G [02:05<00:34, 33.1MiB/s]
74%|███████▍  | 3.25G/4.38G [02:05<00:37, 30.3MiB/s]
74%|███████▍  | 3.25G/4.38G [02:05<00:29, 38.0MiB/s]
74%|███████▍  | 3.26G/4.38G [02:05<00:39, 28.6MiB/s]
74%|███████▍  | 3.26G/4.38G [02:05<00:39, 28.3MiB/s]
75%|███████▍  | 3.27G/4.38G [02:05<00:33, 33.4MiB/s]
75%|███████▍  | 3.27G/4.38G [02:06<00:38, 29.0MiB/s]
75%|███████▍  | 3.28G/4.38G [02:06<00:37, 29.1MiB/s]
75%|███████▌  | 3.29G/4.38G [02:06<00:36, 30.4MiB/s]
75%|███████▌  | 3.29G/4.38G [02:06<00:40, 27.1MiB/s]
75%|███████▌  | 3.30G/4.38G [02:06<00:33, 32.2MiB/s]
75%|███████▌  | 3.30G/4.38G [02:07<00:36, 29.4MiB/s]
75%|███████▌  | 3.31G/4.38G [02:07<00:34, 31.0MiB/s]
76%|███████▌  | 3.31G/4.38G [02:07<00:30, 34.7MiB/s]
76%|███████▌  | 3.32G/4.38G [02:07<00:39, 27.1MiB/s]
76%|███████▌  | 3.32G/4.38G [02:07<00:37, 28.4MiB/s]
76%|███████▌  | 3.32G/4.38G [02:08<00:49, 21.3MiB/s]
76%|███████▌  | 3.33G/4.38G [02:08<00:42, 24.7MiB/s]
76%|███████▌  | 3.34G/4.38G [02:08<00:34, 30.2MiB/s]
76%|███████▌  | 3.34G/4.38G [02:08<00:39, 26.1MiB/s]
76%|███████▋  | 3.35G/4.38G [02:08<00:43, 23.8MiB/s]
76%|███████▋  | 3.35G/4.38G [02:08<00:45, 22.5MiB/s]
77%|███████▋  | 3.36G/4.38G [02:09<00:32, 31.3MiB/s]
77%|███████▋  | 3.36G/4.38G [02:09<00:29, 35.0MiB/s]
77%|███████▋  | 3.37G/4.38G [02:09<00:33, 30.7MiB/s]
77%|███████▋  | 3.37G/4.38G [02:09<00:31, 31.9MiB/s]
77%|███████▋  | 3.37G/4.38G [02:09<00:34, 29.4MiB/s]
77%|███████▋  | 3.38G/4.38G [02:09<00:30, 32.9MiB/s]
77%|███████▋  | 3.38G/4.38G [02:09<00:32, 30.7MiB/s]
77%|███████▋  | 3.39G/4.38G [02:10<00:36, 27.0MiB/s]
77%|███████▋  | 3.39G/4.38G [02:10<00:43, 22.8MiB/s]
78%|███████▊  | 3.40G/4.38G [02:10<00:34, 28.5MiB/s]
78%|███████▊  | 3.40G/4.38G [02:10<00:36, 26.7MiB/s]
78%|███████▊  | 3.40G/4.38G [02:10<00:34, 28.0MiB/s]
78%|███████▊  | 3.41G/4.38G [02:10<00:37, 25.8MiB/s]
78%|███████▊  | 3.41G/4.38G [02:11<00:37, 26.0MiB/s]
78%|███████▊  | 3.42G/4.38G [02:11<00:32, 29.5MiB/s]
78%|███████▊  | 3.42G/4.38G [02:11<00:38, 24.8MiB/s]
78%|███████▊  | 3.43G/4.38G [02:11<00:32, 29.2MiB/s]
78%|███████▊  | 3.44G/4.38G [02:11<00:24, 37.7MiB/s]
79%|███████▊  | 3.44G/4.38G [02:11<00:24, 38.6MiB/s]
79%|███████▉  | 3.45G/4.38G [02:12<00:19, 48.7MiB/s]
79%|███████▉  | 3.46G/4.38G [02:12<00:21, 42.8MiB/s]
79%|███████▉  | 3.46G/4.38G [02:12<00:24, 37.5MiB/s]
79%|███████▉  | 3.47G/4.38G [02:12<00:27, 32.8MiB/s]
79%|███████▉  | 3.47G/4.38G [02:12<00:35, 25.9MiB/s]
79%|███████▉  | 3.47G/4.38G [02:13<00:39, 23.0MiB/s]
79%|███████▉  | 3.48G/4.38G [02:13<00:43, 20.9MiB/s]
79%|███████▉  | 3.48G/4.38G [02:13<00:39, 22.8MiB/s]
80%|███████▉  | 3.49G/4.38G [02:13<00:35, 25.3MiB/s]
80%|███████▉  | 3.50G/4.38G [02:13<00:27, 32.5MiB/s]
80%|███████▉  | 3.50G/4.38G [02:13<00:27, 31.8MiB/s]
80%|███████▉  | 3.50G/4.38G [02:14<00:29, 30.1MiB/s]
80%|████████  | 3.51G/4.38G [02:14<00:32, 27.2MiB/s]
80%|████████  | 3.51G/4.38G [02:14<00:25, 34.2MiB/s]
80%|████████  | 3.52G/4.38G [02:14<00:34, 25.0MiB/s]
80%|████████  | 3.52G/4.38G [02:14<00:37, 23.2MiB/s]
80%|████████  | 3.52G/4.38G [02:14<00:37, 22.9MiB/s]
81%|████████  | 3.53G/4.38G [02:15<00:28, 29.5MiB/s]
81%|████████  | 3.53G/4.38G [02:15<00:31, 27.0MiB/s]
81%|████████  | 3.54G/4.38G [02:15<00:32, 26.0MiB/s]
81%|████████  | 3.54G/4.38G [02:15<00:36, 23.2MiB/s]
81%|████████  | 3.55G/4.38G [02:15<00:28, 29.7MiB/s]
81%|████████  | 3.55G/4.38G [02:15<00:33, 24.7MiB/s]
81%|████████  | 3.56G/4.38G [02:16<00:35, 23.0MiB/s]
81%|████████  | 3.56G/4.38G [02:16<00:43, 18.9MiB/s]
81%|████████▏ | 3.56G/4.38G [02:16<00:43, 18.8MiB/s]
81%|████████▏ | 3.56G/4.38G [02:16<00:54, 14.9MiB/s]
81%|████████▏ | 3.57G/4.38G [02:17<00:54, 14.8MiB/s]
82%|████████▏ | 3.57G/4.38G [02:17<00:36, 22.0MiB/s]
82%|████████▏ | 3.58G/4.38G [02:17<00:28, 27.7MiB/s]
82%|████████▏ | 3.59G/4.38G [02:17<00:23, 33.5MiB/s]
82%|████████▏ | 3.60G/4.38G [02:17<00:22, 34.4MiB/s]
82%|████████▏ | 3.60G/4.38G [02:17<00:26, 30.0MiB/s]
82%|████████▏ | 3.61G/4.38G [02:18<00:26, 29.5MiB/s]
83%|████████▎ | 3.62G/4.38G [02:18<00:25, 30.3MiB/s]
83%|████████▎ | 3.62G/4.38G [02:18<00:20, 36.2MiB/s]
83%|████████▎ | 3.63G/4.38G [02:18<00:22, 33.0MiB/s]
83%|████████▎ | 3.63G/4.38G [02:18<00:20, 36.9MiB/s]
83%|████████▎ | 3.64G/4.38G [02:19<00:24, 29.9MiB/s]
83%|████████▎ | 3.64G/4.38G [02:19<00:29, 25.3MiB/s]
83%|████████▎ | 3.65G/4.38G [02:19<00:25, 29.0MiB/s]
83%|████████▎ | 3.66G/4.38G [02:19<00:21, 33.6MiB/s]
84%|████████▎ | 3.66G/4.38G [02:19<00:20, 35.6MiB/s]
84%|████████▎ | 3.67G/4.38G [02:20<00:21, 33.8MiB/s]
84%|████████▍ | 3.67G/4.38G [02:20<00:19, 36.2MiB/s]
84%|████████▍ | 3.68G/4.38G [02:20<00:21, 32.4MiB/s]
84%|████████▍ | 3.68G/4.38G [02:20<00:19, 35.2MiB/s]
84%|████████▍ | 3.68G/4.38G [02:20<00:20, 33.4MiB/s]
84%|████████▍ | 3.69G/4.38G [02:20<00:18, 36.4MiB/s]
84%|████████▍ | 3.69G/4.38G [02:20<00:21, 31.7MiB/s]
84%|████████▍ | 3.70G/4.38G [02:21<00:23, 29.1MiB/s]
85%|████████▍ | 3.71G/4.38G [02:21<00:21, 31.3MiB/s]
85%|████████▍ | 3.71G/4.38G [02:21<00:24, 27.3MiB/s]
85%|████████▍ | 3.72G/4.38G [02:21<00:23, 28.6MiB/s]
85%|████████▌ | 3.72G/4.38G [02:21<00:17, 36.6MiB/s]
85%|████████▌ | 3.73G/4.38G [02:21<00:17, 38.0MiB/s]
85%|████████▌ | 3.73G/4.38G [02:22<00:20, 31.1MiB/s]
85%|████████▌ | 3.74G/4.38G [02:22<00:17, 35.9MiB/s]
86%|████████▌ | 3.75G/4.38G [02:22<00:16, 38.3MiB/s]
86%|████████▌ | 3.76G/4.38G [02:22<00:16, 38.3MiB/s]
86%|████████▌ | 3.76G/4.38G [02:22<00:19, 32.4MiB/s]
86%|████████▌ | 3.77G/4.38G [02:23<00:22, 27.7MiB/s]
86%|████████▌ | 3.77G/4.38G [02:23<00:21, 28.7MiB/s]
86%|████████▌ | 3.78G/4.38G [02:23<00:23, 25.2MiB/s]
86%|████████▋ | 3.78G/4.38G [02:23<00:21, 28.3MiB/s]
87%|████████▋ | 3.79G/4.38G [02:23<00:17, 34.1MiB/s]
87%|████████▋ | 3.79G/4.38G [02:23<00:19, 30.5MiB/s]
87%|████████▋ | 3.80G/4.38G [02:24<00:24, 23.7MiB/s]
87%|████████▋ | 3.80G/4.38G [02:24<00:28, 20.7MiB/s]
87%|████████▋ | 3.81G/4.38G [02:24<00:24, 23.5MiB/s]
87%|████████▋ | 3.81G/4.38G [02:24<00:25, 22.5MiB/s]
87%|████████▋ | 3.82G/4.38G [02:24<00:20, 27.0MiB/s]
87%|████████▋ | 3.82G/4.38G [02:25<00:22, 25.3MiB/s]
87%|████████▋ | 3.83G/4.38G [02:25<00:19, 28.1MiB/s]
87%|████████▋ | 3.83G/4.38G [02:25<00:17, 30.6MiB/s]
88%|████████▊ | 3.83G/4.38G [02:25<00:19, 28.2MiB/s]
88%|████████▊ | 3.84G/4.38G [02:25<00:19, 28.1MiB/s]
88%|████████▊ | 3.84G/4.38G [02:25<00:20, 25.8MiB/s]
88%|████████▊ | 3.85G/4.38G [02:26<00:15, 34.5MiB/s]
88%|████████▊ | 3.86G/4.38G [02:26<00:13, 38.8MiB/s]
88%|████████▊ | 3.86G/4.38G [02:26<00:13, 37.5MiB/s]
88%|████████▊ | 3.87G/4.38G [02:26<00:12, 40.6MiB/s]
88%|████████▊ | 3.87G/4.38G [02:27<00:31, 16.1MiB/s]
88%|████████▊ | 3.87G/4.38G [02:27<00:41, 12.2MiB/s]
88%|████████▊ | 3.88G/4.38G [02:27<00:40, 12.4MiB/s]
89%|████████▊ | 3.88G/4.38G [02:28<00:33, 15.1MiB/s]
89%|████████▊ | 3.88G/4.38G [02:28<00:32, 15.2MiB/s]
89%|████████▉ | 3.89G/4.38G [02:28<00:23, 20.9MiB/s]
89%|████████▉ | 3.89G/4.38G [02:28<00:26, 18.1MiB/s]
89%|████████▉ | 3.90G/4.38G [02:28<00:21, 22.6MiB/s]
89%|████████▉ | 3.90G/4.38G [02:28<00:20, 23.5MiB/s]
89%|████████▉ | 3.91G/4.38G [02:29<00:20, 23.0MiB/s]
89%|████████▉ | 3.92G/4.38G [02:29<00:16, 27.3MiB/s]
90%|████████▉ | 3.92G/4.38G [02:29<00:15, 29.4MiB/s]
90%|████████▉ | 3.93G/4.38G [02:29<00:15, 29.1MiB/s]
90%|████████▉ | 3.93G/4.38G [02:29<00:15, 28.2MiB/s]
90%|████████▉ | 3.94G/4.38G [02:30<00:18, 24.4MiB/s]
90%|████████▉ | 3.94G/4.38G [02:30<00:15, 27.5MiB/s]
90%|█████████ | 3.95G/4.38G [02:30<00:13, 31.7MiB/s]
90%|█████████ | 3.95G/4.38G [02:30<00:15, 27.4MiB/s]
90%|█████████ | 3.96G/4.38G [02:30<00:14, 29.2MiB/s]
90%|█████████ | 3.96G/4.38G [02:31<00:17, 24.7MiB/s]
91%|█████████ | 3.97G/4.38G [02:31<00:16, 25.2MiB/s]
91%|█████████ | 3.97G/4.38G [02:31<00:19, 21.5MiB/s]
91%|█████████ | 3.97G/4.38G [02:31<00:15, 26.5MiB/s]
91%|█████████ | 3.98G/4.38G [02:31<00:15, 26.3MiB/s]
91%|█████████ | 3.98G/4.38G [02:31<00:13, 30.1MiB/s]
91%|█████████ | 3.99G/4.38G [02:32<00:12, 30.0MiB/s]
91%|█████████▏| 4.00G/4.38G [02:32<00:11, 32.4MiB/s]
91%|█████████▏| 4.00G/4.38G [02:32<00:11, 31.8MiB/s]
91%|█████████▏| 4.01G/4.38G [02:32<00:11, 31.5MiB/s]
92%|█████████▏| 4.01G/4.38G [02:32<00:13, 26.8MiB/s]
92%|█████████▏| 4.02G/4.38G [02:32<00:11, 31.9MiB/s]
92%|█████████▏| 4.02G/4.38G [02:33<00:13, 27.0MiB/s]
92%|█████████▏| 4.03G/4.38G [02:33<00:11, 32.0MiB/s]
92%|█████████▏| 4.03G/4.38G [02:33<00:09, 38.4MiB/s]
92%|█████████▏| 4.04G/4.38G [02:33<00:09, 36.6MiB/s]
92%|█████████▏| 4.04G/4.38G [02:33<00:08, 40.3MiB/s]
92%|█████████▏| 4.05G/4.38G [02:33<00:08, 38.6MiB/s]
93%|█████████▎| 4.05G/4.38G [02:33<00:07, 46.3MiB/s]
93%|█████████▎| 4.06G/4.38G [02:34<00:08, 36.8MiB/s]
93%|█████████▎| 4.07G/4.38G [02:34<00:07, 39.5MiB/s]
93%|█████████▎| 4.07G/4.38G [02:34<00:09, 32.3MiB/s]
93%|█████████▎| 4.08G/4.38G [02:34<00:12, 25.2MiB/s]
93%|█████████▎| 4.08G/4.38G [02:34<00:13, 23.0MiB/s]
93%|█████████▎| 4.08G/4.38G [02:35<00:12, 24.6MiB/s]
93%|█████████▎| 4.09G/4.38G [02:35<00:12, 22.7MiB/s]
93%|█████████▎| 4.09G/4.38G [02:35<00:11, 25.2MiB/s]
93%|█████████▎| 4.09G/4.38G [02:35<00:13, 21.8MiB/s]
94%|█████████▎| 4.10G/4.38G [02:35<00:10, 25.7MiB/s]
94%|█████████▍| 4.11G/4.38G [02:35<00:08, 31.7MiB/s]
94%|█████████▍| 4.11G/4.38G [02:36<00:09, 27.9MiB/s]
94%|█████████▍| 4.12G/4.38G [02:36<00:08, 31.9MiB/s]
94%|█████████▍| 4.13G/4.38G [02:36<00:06, 38.5MiB/s]
94%|█████████▍| 4.13G/4.38G [02:36<00:07, 35.9MiB/s]
94%|█████████▍| 4.14G/4.38G [02:36<00:06, 38.9MiB/s]
95%|█████████▍| 4.14G/4.38G [02:36<00:06, 37.2MiB/s]
95%|█████████▍| 4.15G/4.38G [02:37<00:06, 33.1MiB/s]
95%|█████████▍| 4.15G/4.38G [02:37<00:08, 27.3MiB/s]
95%|█████████▍| 4.16G/4.38G [02:37<00:07, 30.9MiB/s]
95%|█████████▌| 4.16G/4.38G [02:37<00:07, 27.3MiB/s]
95%|█████████▌| 4.17G/4.38G [02:37<00:07, 26.7MiB/s]
95%|█████████▌| 4.18G/4.38G [02:38<00:07, 28.8MiB/s]
95%|█████████▌| 4.18G/4.38G [02:38<00:07, 25.3MiB/s]
96%|█████████▌| 4.18G/4.38G [02:38<00:07, 27.4MiB/s]
96%|█████████▌| 4.19G/4.38G [02:38<00:09, 21.5MiB/s]
96%|█████████▌| 4.19G/4.38G [02:38<00:07, 24.3MiB/s]
96%|█████████▌| 4.20G/4.38G [02:38<00:05, 32.0MiB/s]
96%|█████████▌| 4.21G/4.38G [02:39<00:05, 32.0MiB/s]
96%|█████████▌| 4.21G/4.38G [02:39<00:05, 31.5MiB/s]
96%|█████████▌| 4.21G/4.38G [02:39<00:06, 24.9MiB/s]
96%|█████████▋| 4.22G/4.38G [02:39<00:07, 21.0MiB/s]
96%|█████████▋| 4.22G/4.38G [02:39<00:08, 19.5MiB/s]
97%|█████████▋| 4.23G/4.38G [02:40<00:07, 21.8MiB/s]
97%|█████████▋| 4.23G/4.38G [02:40<00:05, 25.5MiB/s]
97%|█████████▋| 4.24G/4.38G [02:40<00:06, 22.4MiB/s]
97%|█████████▋| 4.24G/4.38G [02:40<00:04, 30.8MiB/s]
97%|█████████▋| 4.25G/4.38G [02:40<00:04, 29.4MiB/s]
97%|█████████▋| 4.25G/4.38G [02:41<00:04, 28.5MiB/s]
97%|█████████▋| 4.25G/4.38G [02:41<00:05, 23.6MiB/s]
97%|█████████▋| 4.26G/4.38G [02:41<00:04, 26.2MiB/s]
97%|█████████▋| 4.26G/4.38G [02:41<00:05, 21.8MiB/s]
97%|█████████▋| 4.27G/4.38G [02:41<00:05, 21.0MiB/s]
97%|█████████▋| 4.27G/4.38G [02:41<00:06, 16.2MiB/s]
97%|█████████▋| 4.27G/4.38G [02:42<00:07, 15.8MiB/s]
98%|█████████▊| 4.27G/4.38G [02:42<00:06, 17.8MiB/s]
98%|█████████▊| 4.28G/4.38G [02:42<00:06, 15.5MiB/s]
98%|█████████▊| 4.28G/4.38G [02:42<00:07, 14.1MiB/s]
98%|█████████▊| 4.29G/4.38G [02:42<00:04, 21.5MiB/s]
98%|█████████▊| 4.29G/4.38G [02:43<00:02, 31.9MiB/s]
98%|█████████▊| 4.30G/4.38G [02:43<00:02, 29.5MiB/s]
98%|█████████▊| 4.30G/4.38G [02:43<00:03, 24.5MiB/s]
98%|█████████▊| 4.31G/4.38G [02:43<00:03, 22.7MiB/s]
98%|█████████▊| 4.31G/4.38G [02:43<00:02, 24.1MiB/s]
98%|█████████▊| 4.31G/4.38G [02:44<00:03, 18.9MiB/s]
99%|█████████▊| 4.32G/4.38G [02:44<00:02, 23.9MiB/s]
99%|█████████▉| 4.33G/4.38G [02:44<00:01, 27.9MiB/s]
99%|█████████▉| 4.34G/4.38G [02:44<00:01, 23.7MiB/s]
99%|█████████▉| 4.34G/4.38G [02:45<00:02, 21.5MiB/s]
99%|█████████▉| 4.35G/4.38G [02:45<00:01, 27.4MiB/s]
99%|█████████▉| 4.35G/4.38G [02:45<00:00, 31.7MiB/s]
100%|█████████▉| 4.36G/4.38G [02:45<00:00, 38.1MiB/s]
100%|█████████▉| 4.37G/4.38G [02:45<00:00, 37.8MiB/s]
100%|█████████▉| 4.37G/4.38G [02:45<00:00, 40.2MiB/s]
100%|█████████▉| 4.37G/4.38G [02:45<00:00, 31.8MiB/s]
100%|█████████▉| 4.38G/4.38G [02:46<00:00, 27.3MiB/s]
100%|██████████| 4.38G/4.38G [02:46<00:00, 26.3MiB/s]
Then we will load the csv files.
dataset_path = os.path.join(download_dir, 'flickr30k_processed')
train_data = pd.read_csv(f'{dataset_path}/train.csv', index_col=0)
val_data = pd.read_csv(f'{dataset_path}/val.csv', index_col=0)
test_data = pd.read_csv(f'{dataset_path}/test.csv', index_col=0)
image_col = "image"
text_col = "caption"
We also need to expand the relative image paths to use their absolute local paths.
def path_expander(path, base_folder):
    path_l = path.split(';')
    return ';'.join([os.path.abspath(os.path.join(base_folder, path)) for path in path_l])
train_data[image_col] = train_data[image_col].apply(lambda ele: path_expander(ele, base_folder=dataset_path))
val_data[image_col] = val_data[image_col].apply(lambda ele: path_expander(ele, base_folder=dataset_path))
test_data[image_col] = test_data[image_col].apply(lambda ele: path_expander(ele, base_folder=dataset_path))
Take train_data for example, let’s see how the data look like in the dataframe.
train_data.head()
| caption | image | |
|---|---|---|
| 0 | Two young guys with shaggy hair look at their ... | /home/ci/autogluon/docs/tutorials/multimodal/s... | 
| 1 | Two young White males are outside near many bu... | /home/ci/autogluon/docs/tutorials/multimodal/s... | 
| 2 | Two men in green shirts are standing in a yard | /home/ci/autogluon/docs/tutorials/multimodal/s... | 
| 3 | A man in a blue shirt standing in a garden | /home/ci/autogluon/docs/tutorials/multimodal/s... | 
| 4 | Two friends enjoy time spent together | /home/ci/autogluon/docs/tutorials/multimodal/s... | 
Each row is one image and text pair, implying that they match each other. Since one image corresponds to five captions in the dataset, we copy each image path five times to build the correspondences. We can visualize one image-text pair.
train_data[text_col][0]
'Two young guys with shaggy hair look at their hands while hanging out in the yard'
pil_img = Image(filename=train_data[image_col][0])
display(pil_img)
 
To perform evaluation or semantic search, we need to extract the unique image and text items from text_data and add one label column in the test_data.
test_image_data = pd.DataFrame({image_col: test_data[image_col].unique().tolist()})
test_text_data = pd.DataFrame({text_col: test_data[text_col].unique().tolist()})
test_data_with_label = test_data.copy()
test_label_col = "relevance"
test_data_with_label[test_label_col] = [1] * len(test_data)
Initialize Predictor¶
To initialize a predictor for image-text matching, we need to set problem_type as image_text_similarity. query and response refer to the two dataframe columns in which two items in one row should match each other. You can set query=text_col and response=image_col, or query=image_col and response=text_col. In image-text matching, query and response are equivalent.
from autogluon.multimodal import MultiModalPredictor
predictor = MultiModalPredictor(
            query=text_col,
            response=image_col,
            problem_type="image_text_similarity",
            eval_metric="recall",
        )
/home/ci/opt/venv/lib/python3.11/site-packages/mmengine/optim/optimizer/zero_optimizer.py:11: DeprecationWarning: `TorchScript` support for functional optimizers is deprecated and will be removed in a future PyTorch release. Consider using the `torch.compile` optimizer instead.
  from torch.distributed.optim import \
By initializing the predictor for image_text_similarity, you have loaded the pretrained CLIP backbone openai/clip-vit-base-patch32.
Directly Evaluate on Test Dataset (Zero-shot)¶
You may be interested in getting the pretrained model’s performance on your data. Let’s compute the text-to-image and image-to-text retrieval scores.
txt_to_img_scores = predictor.evaluate(
            data=test_data_with_label,
            query_data=test_text_data,
            response_data=test_image_data,
            label=test_label_col,
            cutoffs=[1, 5, 10],
        )
img_to_txt_scores = predictor.evaluate(
            data=test_data_with_label,
            query_data=test_image_data,
            response_data=test_text_data,
            label=test_label_col,
            cutoffs=[1, 5, 10],
        )
print(f"txt_to_img_scores: {txt_to_img_scores}")
print(f"img_to_txt_scores: {img_to_txt_scores}")
txt_to_img_scores: {'recall@1': 0.58964, 'recall@5': 0.83533, 'recall@10': 0.90156}
img_to_txt_scores: {'recall@1': 0.15525, 'recall@5': 0.5708, 'recall@10': 0.7172}
Here we report the recall, which is the eval_metric in initializing the predictor above. One cutoff value means using the top k retrieved items to calculate the score. You may find that the text-to-image recalls are much higher than the image-to-text recalls. This is because each image is paired with five texts. In image-to-text retrieval, the upper bound of recall@1 is 20%, which means that the top-1 text is correct, but there are totally five texts to retrieve.
Finetune Predictor¶
After measuring the pretrained performance, we can finetune the model on our dataset to see whether we can get improvements. For a quick demo, here we set the time limit to 180 seconds.
predictor.fit(
            train_data=train_data,
            tuning_data=val_data,
            time_limit=180,
        )
No path specified. Models will be saved in: "AutogluonModels/ag-20241206_215404"
=================== System Info ===================
AutoGluon Version:  1.1.2b20241206
Python Version:     3.11.9
Operating System:   Linux
Platform Machine:   x86_64
Platform Version:   #1 SMP Tue Sep 24 10:00:37 UTC 2024
CPU Count:          8
Pytorch Version:    2.5.1+cu124
CUDA Version:       12.4
Memory Avail:       26.82 GB / 30.95 GB (86.7%)
Disk Space Avail:   172.15 GB / 255.99 GB (67.2%)
===================================================
AutoMM starts to create your model. ✨✨✨
To track the learning progress, you can open a terminal and launch Tensorboard:
    ```shell
    # Assume you have installed tensorboard
    tensorboard --logdir /home/ci/autogluon/docs/tutorials/multimodal/semantic_matching/AutogluonModels/ag-20241206_215404
    ```
INFO: Seed set to 0
GPU Count: 1
GPU Count to be Used: 1
GPU 0 Name: Tesla T4
GPU 0 Memory: 0.56GB/15.0GB (Used/Total)
INFO: Using 16bit Automatic Mixed Precision (AMP)
INFO: GPU available: True (cuda), used: True
INFO: TPU available: False, using: 0 TPU cores
INFO: HPU available: False, using: 0 HPUs
INFO: LOCAL_RANK: 0 - CUDA_VISIBLE_DEVICES: [0]
INFO: 
  | Name              | Type                      | Params | Mode 
------------------------------------------------------------------------
0 | query_model       | CLIPForImageText          | 151 M  | train
1 | response_model    | CLIPForImageText          | 151 M  | train
2 | validation_metric | CustomHitRate             | 0      | train
3 | loss_func         | MultiNegativesSoftmaxLoss | 0      | train
------------------------------------------------------------------------
151 M     Trainable params
0         Non-trainable params
151 M     Total params
605.109   Total estimated model params size (MB)
5         Modules in train mode
306       Modules in eval mode
INFO: Time limit reached. Elapsed time is 0:03:00. Signaling Trainer to stop.
INFO: Epoch 0, global step 362: 'val_recall' reached 0.56220 (best 0.56220), saving model to '/home/ci/autogluon/docs/tutorials/multimodal/semantic_matching/AutogluonModels/ag-20241206_215404/epoch=0-step=362.ckpt' as top 3
Start to fuse 1 checkpoints via the greedy soup algorithm.
AutoMM has created your model. 🎉🎉🎉
To load the model, use the code below:
    ```python
    from autogluon.multimodal import MultiModalPredictor
    predictor = MultiModalPredictor.load("/home/ci/autogluon/docs/tutorials/multimodal/semantic_matching/AutogluonModels/ag-20241206_215404")
    ```
If you are not satisfied with the model, try to increase the training time, 
adjust the hyperparameters (https://auto.gluon.ai/stable/tutorials/multimodal/advanced_topics/customization.html),
or post issues on GitHub (https://github.com/autogluon/autogluon/issues).
<autogluon.multimodal.predictor.MultiModalPredictor at 0x7f52d1a3ddd0>
Evaluate the Finetuned Model on the Test Dataset¶
Now Let’s evaluate the finetuned model. Similarly, we also compute the recalls of text-to-image and image-to-text retrievals.
txt_to_img_scores = predictor.evaluate(
            data=test_data_with_label,
            query_data=test_text_data,
            response_data=test_image_data,
            label=test_label_col,
            cutoffs=[1, 5, 10],
        )
img_to_txt_scores = predictor.evaluate(
            data=test_data_with_label,
            query_data=test_image_data,
            response_data=test_text_data,
            label=test_label_col,
            cutoffs=[1, 5, 10],
        )
print(f"txt_to_img_scores: {txt_to_img_scores}")
print(f"img_to_txt_scores: {img_to_txt_scores}")
txt_to_img_scores: {'recall@1': 0.69888, 'recall@5': 0.90476, 'recall@10': 0.95398}
img_to_txt_scores: {'recall@1': 0.16945, 'recall@5': 0.6688, 'recall@10': 0.8166}
We can observe large improvements over the zero-shot predictor. This means that finetuning CLIP on our customized data may help achieve better performance.
Predict Whether Image and Text Match¶
Whether finetuned or not, the predictor can predict whether image and text pairs match.
pred = predictor.predict(test_data.head(5))
print(pred)
0    1
1    1
2    1
3    1
4    1
dtype: int64
Predict Matching Probabilities¶
The predictor can also return to you the matching probabilities.
proba = predictor.predict_proba(test_data.head(5))
print(proba)
0         1
0  0.343352  0.656648
1  0.326183  0.673817
2  0.347374  0.652626
3  0.344602  0.655398
4  0.330454  0.669546
The second column is the probability of being a match.
Extract Embeddings¶
Another common user case is to extract image and text embeddings.
image_embeddings = predictor.extract_embedding({image_col: test_image_data[image_col][:5].tolist()})
print(image_embeddings.shape) 
(5, 512)
text_embeddings = predictor.extract_embedding({text_col: test_text_data[text_col][:5].tolist()})
print(text_embeddings.shape)
(5, 512)
Semantic Search¶
We also provide an advanced util function to conduct semantic search. First, given one or more texts, we can search semantically similar images from an image database.
from autogluon.multimodal.utils import semantic_search
text_to_image_hits = semantic_search(
        matcher=predictor,
        query_data=test_text_data.iloc[[3]],
        response_data=test_image_data,
        top_k=5,
    )
Let’s visualize the text query and top-1 image response.
test_text_data.iloc[[3]]
| caption | |
|---|---|
| 3 | A man in an orange hat starring at something | 
pil_img = Image(filename=test_image_data[image_col][text_to_image_hits[0][0]['response_id']])
display(pil_img)
 
Similarly, given one or more images, we can retrieve texts with similar semantic meanings.
image_to_text_hits = semantic_search(
        matcher=predictor,
        query_data=test_image_data.iloc[[6]],
        response_data=test_text_data,
        top_k=5,
    )
Let’s visualize the image query and top-1 text response.
pil_img = Image(filename=test_image_data[image_col][6])
display(pil_img)
 
test_text_data[text_col][image_to_text_hits[0][1]['response_id']]
'Several students waiting outside an igloo'
Other Examples¶
You may go to AutoMM Examples to explore other examples about AutoMM.
Customization¶
To learn how to customize AutoMM, please refer to Customize AutoMM.