YOLOv6, YOLOv7 and YOLOv8¶
YOLOv6¶
What's new in YOLOv6?¶
The original intention of this new version is to solve the practical problems encountered when dealing with industrial applications. MT-YOLOv6 is a target detection framework developed by the Visual Intelligence Department of Meituan (a Chinese shopping platform).
Please note that MT-YOLOv6 is not part of the official YOLO series and was named YOLOv6 because it was inspired by single-stage YOLO algorithms and is therefore being promoted as the next version of YOLO models by the authors.
It is a single-stage object detection framework primarily focused on industrial applications, with efficient hardware design and better performance than YOLOv5 in detection accuracy and inference speed. This makes it the best OS version of YOLO algorithms for production.
New improvements¶
Other than that, YOLOv6 has been enhanced by adding improvements from previous YOLO versions, specifically including -
- Anchorless paradigm: delivers a 51% speed improvement compared to anchor-based detectors.
- SimOTA labeling strategy: dynamically allocate positive samples to further improve detection accuracy.
- SIoU bounding box regression loss: to supervise network learning.
YOLOv6 Architecture Improvements¶
With each iteration of the YOLO model, the goal has been the same: to learn how to accurately predict bounding boxes around selected objects while keeping inference times at real-time speeds. The better the model, the less hardware is required to train and deploy it.
YOLO models take an input image and pass it through a series of convolutional layers in the backbone. YOLO models then feed these backbone features through the neck. YOLO models then pass the neck features to three heads, where they predict objectness, class, and box regression.
YOLOv6 iterates on the YOLO Backbone and Neck, redesigning them with hardware in mind. The model introduces what the authors call the EfficientRep Backbone and Rep-PAN Neck.
In YOLO models up to and including YOLOv5, the classification and box regression heads share the same features. In YOLOx and YOLOv6, the head is decoupled. This means that the network has additional layers that separate these features from the final head. This change has been empirically shown to increase model performance.
YOLOv7¶
The YOLO (You Only Look Once) v7 model is one of the latest in the YOLO family of models. YOLO models are single-stage object detectors. In a YOLO model, image frames are featured using a backbone. These features are combined and mixed in the backbone and then passed to the head of the network. YOLO predicts the locations and classes of objects around which bounding boxes should be drawn.
YOLO performs post-processing via non-maximum suppression (NMS) to arrive at its final prediction.
The authors of YOLOv7 sought to define the state of the art in object detection by creating a network architecture that would predict bounding boxes more accurately than its peers at similar inference speeds. To achieve these results, the authors of YOLOv7 made several changes to the YOLO network and training routines.
YOLOv7 Architecture¶
The YOLOv7 architecture is based on previous YOLO model architectures, namely YOLOv4, Scaled YOLOv4, and YOLO-R. Below, we will provide a high-level overview of the most important aspects detailed in the YOLOv7 paper.
Extended Efficient Layer Aggregation Network (E-ELAN)¶
The computational block in the YOLOv7 backbone is called E-ELAN, which stands for Extended Efficient Layer Aggregation Network. YOLOv7’s E-ELAN architecture allows the model to learn better by using “expand, shuffle, merge cardinality” to achieve the ability to continuously improve the network’s learning ability without destroying the original gradient path.
Sizing the YOLOv7 composite model¶
The main goal of model scaling is to adjust key model attributes to generate models that meet the needs of different application requirements. For example, model scaling can optimize model width (number of channels), depth (number of stages), and resolution (input image size). In traditional approaches with concatenation-based architectures (e.g., ResNet or PlainNet), different scaling factors cannot be analyzed independently and must be considered together. For example, increasing the model depth will cause a change in the ratio between the input channel and the output channel of a transition layer, which in turn may lead to a decrease in the hardware usage of the model. This is why YOLOv7 introduces composite model scaling for a concatenation-based model. The composite scaling method allows to maintain the properties that the model had in the initial design and thus maintain the optimal structure. And this is how composite model scaling works: for example, scaling the depth factor of a computational block also requires a change in the output channel of that block. Then width factor scaling is performed with the same level of change in the transition layers.
Planned re-parameterized convolution¶
Although RepConv has achieved excellent performance on VGG architectures, applying it directly to ResNet or DenseNet leads to significant accuracy loss. In YOLOv7, the planned re-parameterized convolution architecture uses RepConv without identity connection (RepConvN). The idea is to avoid having an identity connection when a convolutional layer with residual or concatenation is replaced by re-parameterized convolution.
Auxiliary Head Coarse-to-Fine¶
A YOLO architecture consists of a backbone, a neck, and a head. The head contains the predicted outputs of the model. Inspired by Deep Supervision, a technique commonly used in training deep neural networks, YOLOv7 is not limited to a single head. The head responsible for the final output is called the leader head, and the head used to assist in training the intermediate layers is called the auxiliary head. In addition, to improve deep network training, a Label Assigner mechanism has been introduced that considers the network’s prediction results along with the ground truth and then assigns soft labels. Compared to traditional label assignment that directly refers to the ground truth to generate hard labels based on certain rules, reliable soft labels use calculation and optimization methods that also consider the quality and distribution of the prediction output along with the ground truth.
YOLOv7 Implementation¶
Here the dataset is already prepared, with the images and their respective annotations in .xml format in a single folder:
Implementing¶
First let's install some libraries, import them and connect with Google Drive:
!pip install rasterio
!pip install geopandas
Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/simple/
Collecting rasterio
Downloading rasterio-1.3.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (20.9 MB)
|████████████████████████████████| 20.9 MB 15.2 MB/s
Requirement already satisfied: numpy>=1.18 in /usr/local/lib/python3.8/dist-packages (from rasterio) (1.21.6)
Requirement already satisfied: certifi in /usr/local/lib/python3.8/dist-packages (from rasterio) (2022.12.7)
Collecting snuggs>=1.4.1
Downloading snuggs-1.4.7-py3-none-any.whl (5.4 kB)
Collecting affine
Downloading affine-2.3.1-py2.py3-none-any.whl (16 kB)
Requirement already satisfied: setuptools in /usr/local/lib/python3.8/dist-packages (from rasterio) (57.4.0)
Requirement already satisfied: click>=4.0 in /usr/local/lib/python3.8/dist-packages (from rasterio) (7.1.2)
Collecting click-plugins
Downloading click_plugins-1.1.1-py2.py3-none-any.whl (7.5 kB)
Collecting cligj>=0.5
Downloading cligj-0.7.2-py3-none-any.whl (7.1 kB)
Requirement already satisfied: attrs in /usr/local/lib/python3.8/dist-packages (from rasterio) (22.1.0)
Requirement already satisfied: pyparsing>=2.1.6 in /usr/local/lib/python3.8/dist-packages (from snuggs>=1.4.1->rasterio) (3.0.9)
Installing collected packages: snuggs, cligj, click-plugins, affine, rasterio
Successfully installed affine-2.3.1 click-plugins-1.1.1 cligj-0.7.2 rasterio-1.3.4 snuggs-1.4.7
Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/simple/
Collecting geopandas
Downloading geopandas-0.12.2-py3-none-any.whl (1.1 MB)
|████████████████████████████████| 1.1 MB 14.2 MB/s
Collecting fiona>=1.8
Downloading Fiona-1.8.22-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.6 MB)
|████████████████████████████████| 16.6 MB 18.8 MB/s
Requirement already satisfied: shapely>=1.7 in /usr/local/lib/python3.8/dist-packages (from geopandas) (2.0.0)
Requirement already satisfied: packaging in /usr/local/lib/python3.8/dist-packages (from geopandas) (21.3)
Requirement already satisfied: pandas>=1.0.0 in /usr/local/lib/python3.8/dist-packages (from geopandas) (1.3.5)
Collecting pyproj>=2.6.1.post1
Downloading pyproj-3.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.8 MB)
|████████████████████████████████| 7.8 MB 36.2 MB/s
Requirement already satisfied: attrs>=17 in /usr/local/lib/python3.8/dist-packages (from fiona>=1.8->geopandas) (22.1.0)
Requirement already satisfied: click>=4.0 in /usr/local/lib/python3.8/dist-packages (from fiona>=1.8->geopandas) (7.1.2)
Requirement already satisfied: click-plugins>=1.0 in /usr/local/lib/python3.8/dist-packages (from fiona>=1.8->geopandas) (1.1.1)
Requirement already satisfied: cligj>=0.5 in /usr/local/lib/python3.8/dist-packages (from fiona>=1.8->geopandas) (0.7.2)
Collecting munch
Downloading munch-2.5.0-py2.py3-none-any.whl (10 kB)
Requirement already satisfied: six>=1.7 in /usr/local/lib/python3.8/dist-packages (from fiona>=1.8->geopandas) (1.15.0)
Requirement already satisfied: setuptools in /usr/local/lib/python3.8/dist-packages (from fiona>=1.8->geopandas) (57.4.0)
Requirement already satisfied: certifi in /usr/local/lib/python3.8/dist-packages (from fiona>=1.8->geopandas) (2022.12.7)
Requirement already satisfied: numpy>=1.17.3 in /usr/local/lib/python3.8/dist-packages (from pandas>=1.0.0->geopandas) (1.21.6)
Requirement already satisfied: pytz>=2017.3 in /usr/local/lib/python3.8/dist-packages (from pandas>=1.0.0->geopandas) (2022.6)
Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.8/dist-packages (from pandas>=1.0.0->geopandas) (2.8.2)
Requirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /usr/local/lib/python3.8/dist-packages (from packaging->geopandas) (3.0.9)
Installing collected packages: munch, pyproj, fiona, geopandas
Successfully installed fiona-1.8.22 geopandas-0.12.2 munch-2.5.0 pyproj-3.4.1
from google.colab import drive
drive.mount('/content/drive')
Mounted at /content/drive
import rasterio
import geopandas as gpd
import numpy as np
from matplotlib import pyplot as plt
import cv2
from rasterio.features import rasterize
from rasterio.windows import Window
from rasterio.plot import show
import os
from shapely.geometry import box
from shapely.ops import unary_union
import json
from shapely.geometry import shape
from shapely.geometry import Polygon
from shapely.geometry import MultiPolygon
from shapely.ops import unary_union
import shapely
import math
import pandas as pd
from skimage import io
from skimage.io import imsave
from sklearn import model_selection
import os
import shutil
import json
import ast
import numpy as np
from tqdm import tqdm
import pandas as pd
import seaborn as sns
import fastai.vision as vision
import xml.etree.ElementTree as ET
import glob
We have three databases. Let's import them separately and then concatenate them:
path_tonga = '/content/drive/MyDrive/Datasets/Mastertheis/MasterThesis-master/Tonga/images/train'
path_nicaragua = '/content/drive/MyDrive/Datasets/Mastertheis/MasterThesis-master/Nicaragua/images/train'
path_zanzibar = '/content/drive/MyDrive/Datasets/Mastertheis/MasterThesis-master/Zanzibar/images/train'
We start by importing the Tonga data:
xml_files_tonga = [f for f in os.listdir(path_tonga) if f.endswith('xml')]
xml_list_tonga = []
for xml_file in xml_files_tonga:
tree = ET.parse(os.path.join(path_tonga,xml_file))
root = tree.getroot()
for member in root.findall('object'):
value = (root.find('filename').text,
int(root.find('size')[0].text),
int(root.find('size')[1].text),
member[0].text,
int(member[4][0].text),
int(member[4][1].text),
int(member[4][2].text),
int(member[4][3].text)
)
xml_list_tonga.append(value)
column_name = ['filename', 'width', 'height', 'classname', 'xmin', 'ymin', 'xmax', 'ymax']
xml_df_tonga = pd.DataFrame(xml_list_tonga, columns=column_name)
xml_df_tonga
| filename | width | height | classname | xmin | ymin | xmax | ymax | |
|---|---|---|---|---|---|---|---|---|
| 0 | tonga_368.jpg | 1000 | 1000 | Palm | 19 | 51 | 100 | 135 |
| 1 | tonga_368.jpg | 1000 | 1000 | Palm | 236 | 46 | 315 | 122 |
| 2 | tonga_368.jpg | 1000 | 1000 | Palm | 739 | 11 | 814 | 89 |
| 3 | tonga_368.jpg | 1000 | 1000 | Palm | 568 | 514 | 618 | 573 |
| 4 | tonga_368.jpg | 1000 | 1000 | Palm | 198 | 879 | 255 | 941 |
| ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 6280 | tonga_23.jpg | 1000 | 1000 | Palm | 540 | 719 | 626 | 797 |
| 6281 | tonga_23.jpg | 1000 | 1000 | Palm | 572 | 894 | 642 | 971 |
| 6282 | tonga_23.jpg | 1000 | 1000 | Palm | 786 | 856 | 852 | 931 |
| 6283 | tonga_23.jpg | 1000 | 1000 | Palm | 693 | 757 | 770 | 833 |
| 6284 | tonga_23.jpg | 1000 | 1000 | Palm | 905 | 826 | 980 | 896 |
6285 rows × 8 columns
list_of_image_tonga = [f for f in os.listdir(path_tonga) if f.endswith('jpg')]
Let's plot an example:
i = 3
img = io.imread(os.path.join(path_tonga,list_of_image_tonga[i]))
detec = xml_df_tonga[xml_df_tonga['filename'] == list_of_image_tonga[i]]
for i, row in detec.iterrows():
color = (255,0,0)
cv2.rectangle(img, (max(0, row['xmin']), max(0, row['ymin']) , max(0, row['xmax'] - row['xmin']), max(0, row['ymax'] - row['ymin'])), color, 3)
plt.figure(figsize=(12,12))
plt.imshow(img)
plt.axis('off')
plt.show()
Now we import the Nicaragua database:
xml_files_nicaragua = [f for f in os.listdir(path_nicaragua) if f.endswith('xml')]
xml_list_nicaragua = []
for xml_file in xml_files_nicaragua:
tree = ET.parse(os.path.join(path_nicaragua,xml_file))
root = tree.getroot()
for member in root.findall('object'):
value = (root.find('filename').text,
int(root.find('size')[0].text),
int(root.find('size')[1].text),
member[0].text,
int(member[4][0].text),
int(member[4][1].text),
int(member[4][2].text),
int(member[4][3].text)
)
xml_list_nicaragua.append(value)
column_name = ['filename', 'width', 'height', 'classname', 'xmin', 'ymin', 'xmax', 'ymax']
xml_df_nicaragua = pd.DataFrame(xml_list_nicaragua, columns=column_name)
xml_df_nicaragua
| filename | width | height | classname | xmin | ymin | xmax | ymax | |
|---|---|---|---|---|---|---|---|---|
| 0 | IMG_2371_1.jpg | 1000 | 1000 | Palm | 794 | 884 | 880 | 961 |
| 1 | IMG_2371_1.jpg | 1000 | 1000 | Palm | 684 | 874 | 779 | 964 |
| 2 | IMG_2371_1.jpg | 1000 | 1000 | Palm | 580 | 872 | 679 | 963 |
| 3 | IMG_2371_1.jpg | 1000 | 1000 | Palm | 492 | 867 | 585 | 958 |
| 4 | IMG_2371_1.jpg | 1000 | 1000 | Palm | 400 | 866 | 498 | 958 |
| ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 1991 | IMG_2378_8.jpg | 1000 | 1000 | Palm | 856 | 390 | 933 | 464 |
| 1992 | IMG_2378_8.jpg | 1000 | 1000 | Palm | 752 | 363 | 837 | 430 |
| 1993 | IMG_2378_8.jpg | 1000 | 1000 | Palm | 777 | 419 | 857 | 493 |
| 1994 | IMG_2378_8.jpg | 1000 | 1000 | Palm | 594 | 476 | 669 | 547 |
| 1995 | IMG_2378_8.jpg | 1000 | 1000 | Palm | 745 | 563 | 814 | 627 |
1996 rows × 8 columns
list_of_image_nicaragua = [f for f in os.listdir(path_nicaragua) if f.endswith('jpg')]
We also plot an example to see the variations that exist between locations:
i = 3
img = io.imread(os.path.join(path_nicaragua,list_of_image_nicaragua[i]))
detec = xml_df_nicaragua[xml_df_nicaragua['filename'] == list_of_image_nicaragua[i]]
for i, row in detec.iterrows():
color = (255,0,0)
cv2.rectangle(img, (max(0, row['xmin']), max(0, row['ymin']) , max(0, row['xmax'] - row['xmin']), max(0, row['ymax'] - row['ymin'])), color, 3)
plt.figure(figsize=(12,12))
plt.imshow(img)
plt.axis('off')
plt.show()
Finally, we import the Zanzibar database:
xml_files_zanzibar = [f for f in os.listdir(path_zanzibar) if f.endswith('xml')]
xml_list_zanzibar = []
for xml_file in xml_files_zanzibar:
tree = ET.parse(os.path.join(path_zanzibar,xml_file))
root = tree.getroot()
for member in root.findall('object'):
value = (root.find('filename').text,
int(root.find('size')[0].text),
int(root.find('size')[1].text),
member[0].text,
int(member[4][0].text),
int(member[4][1].text),
int(member[4][2].text),
int(member[4][3].text)
)
xml_list_zanzibar.append(value)
column_name = ['filename', 'width', 'height', 'classname', 'xmin', 'ymin', 'xmax', 'ymax']
xml_df_zanzibar = pd.DataFrame(xml_list_zanzibar, columns=column_name)
xml_df_zanzibar
| filename | width | height | classname | xmin | ymin | xmax | ymax | |
|---|---|---|---|---|---|---|---|---|
| 0 | zanzibar2_830.jpg | 1000 | 1000 | Palm | 83 | 9 | 161 | 106 |
| 1 | zanzibar2_830.jpg | 1000 | 1000 | Palm | 217 | 38 | 314 | 139 |
| 2 | zanzibar2_830.jpg | 1000 | 1000 | Palm | 129 | 151 | 221 | 248 |
| 3 | zanzibar2_830.jpg | 1000 | 1000 | Palm | 65 | 238 | 162 | 332 |
| 4 | zanzibar2_830.jpg | 1000 | 1000 | Palm | 27 | 327 | 114 | 414 |
| ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 7153 | zanzibar2_108.jpg | 1000 | 1000 | Palm | 874 | 636 | 924 | 692 |
| 7154 | zanzibar2_108.jpg | 1000 | 1000 | Palm | 648 | 199 | 757 | 298 |
| 7155 | zanzibar2_108.jpg | 1000 | 1000 | Palm | 769 | 345 | 841 | 416 |
| 7156 | zanzibar2_108.jpg | 1000 | 1000 | Palm | 460 | 457 | 541 | 539 |
| 7157 | zanzibar2_108.jpg | 1000 | 1000 | Palm | 375 | 363 | 467 | 455 |
7158 rows × 8 columns
list_of_image_zanzibar = [f for f in os.listdir(path_zanzibar) if f.endswith('jpg')]
We plot an example:
i = 3
img = io.imread(os.path.join(path_zanzibar,list_of_image_zanzibar[i]))
detec = xml_df_zanzibar[xml_df_zanzibar['filename'] == list_of_image_zanzibar[i]]
for i, row in detec.iterrows():
color = (255,0,0)
cv2.rectangle(img, (max(0, row['xmin']), max(0, row['ymin']) , max(0, row['xmax'] - row['xmin']), max(0, row['ymax'] - row['ymin'])), color, 3)
plt.figure(figsize=(12,12))
plt.imshow(img)
plt.axis('off')
plt.show()
Now we import the validation bases for these three locations:
path_tonga_val = '/content/drive/MyDrive/Datasets/Mastertheis/MasterThesis-master/Tonga/images/validation'
path_nicaragua_val = '/content/drive/MyDrive/Datasets/Mastertheis/MasterThesis-master/Nicaragua/images/validation'
path_zanzibar_val = '/content/drive/MyDrive/Datasets/Mastertheis/MasterThesis-master/Zanzibar/images/validation'
xml_files_tonga_val = [f for f in os.listdir(path_tonga_val) if f.endswith('xml')]
list_of_image_tonga_val = [f for f in os.listdir(path_tonga_val) if f.endswith('jpg')]
xml_list_tonga_val = []
for xml_file in xml_files_tonga_val:
tree = ET.parse(os.path.join(path_tonga_val,xml_file))
root = tree.getroot()
for member in root.findall('object'):
value = (root.find('filename').text,
int(root.find('size')[0].text),
int(root.find('size')[1].text),
member[0].text,
int(member[4][0].text),
int(member[4][1].text),
int(member[4][2].text),
int(member[4][3].text)
)
xml_list_tonga_val.append(value)
column_name = ['filename', 'width', 'height', 'classname', 'xmin', 'ymin', 'xmax', 'ymax']
xml_df_tonga_val = pd.DataFrame(xml_list_tonga_val, columns=column_name)
xml_df_tonga_val
| filename | width | height | classname | xmin | ymin | xmax | ymax | |
|---|---|---|---|---|---|---|---|---|
| 0 | tonga_170.jpg | 1000 | 1000 | Palm | 4 | 224 | 79 | 309 |
| 1 | tonga_170.jpg | 1000 | 1000 | Palm | 63 | 298 | 122 | 371 |
| 2 | tonga_170.jpg | 1000 | 1000 | Palm | 141 | 272 | 213 | 350 |
| 3 | tonga_170.jpg | 1000 | 1000 | Palm | 58 | 452 | 118 | 517 |
| 4 | tonga_170.jpg | 1000 | 1000 | Palm | 178 | 430 | 243 | 505 |
| ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 2738 | tonga_115.jpg | 1000 | 1000 | Palm | 313 | 751 | 390 | 828 |
| 2739 | tonga_115.jpg | 1000 | 1000 | Palm | 503 | 719 | 570 | 789 |
| 2740 | tonga_115.jpg | 1000 | 1000 | Palm | 302 | 855 | 370 | 927 |
| 2741 | tonga_115.jpg | 1000 | 1000 | Palm | 267 | 921 | 352 | 995 |
| 2742 | tonga_115.jpg | 1000 | 1000 | Palm | 445 | 854 | 516 | 925 |
2743 rows × 8 columns
xml_files_nicaragua_val = [f for f in os.listdir(path_nicaragua_val) if f.endswith('xml')]
list_of_image_nicaragua_val = [f for f in os.listdir(path_nicaragua_val) if f.endswith('jpg')]
xml_list_nicaragua_val = []
for xml_file in xml_files_nicaragua_val:
tree = ET.parse(os.path.join(path_nicaragua_val,xml_file))
root = tree.getroot()
for member in root.findall('object'):
value = (root.find('filename').text,
int(root.find('size')[0].text),
int(root.find('size')[1].text),
member[0].text,
int(member[4][0].text),
int(member[4][1].text),
int(member[4][2].text),
int(member[4][3].text)
)
xml_list_nicaragua_val.append(value)
column_name = ['filename', 'width', 'height', 'classname', 'xmin', 'ymin', 'xmax', 'ymax']
xml_df_nicaragua_val = pd.DataFrame(xml_list_nicaragua_val, columns=column_name)
xml_df_nicaragua_val
| filename | width | height | classname | xmin | ymin | xmax | ymax | |
|---|---|---|---|---|---|---|---|---|
| 0 | IMG_2361_9.jpg | 1000 | 1000 | Palm | 733 | 10 | 815 | 94 |
| 1 | IMG_2361_9.jpg | 1000 | 1000 | Palm | 803 | 89 | 895 | 178 |
| 2 | IMG_2361_9.jpg | 1000 | 1000 | Palm | 889 | 79 | 985 | 167 |
| 3 | IMG_2361_9.jpg | 1000 | 1000 | Palm | 866 | 178 | 946 | 249 |
| 4 | IMG_2361_9.jpg | 1000 | 1000 | Palm | 757 | 169 | 846 | 260 |
| ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 760 | IMG_2395_10.jpg | 1000 | 1000 | Palm | 817 | 561 | 903 | 644 |
| 761 | IMG_2395_10.jpg | 1000 | 1000 | Palm | 747 | 483 | 844 | 580 |
| 762 | IMG_2395_10.jpg | 1000 | 1000 | Palm | 840 | 454 | 937 | 547 |
| 763 | IMG_2395_10.jpg | 1000 | 1000 | Palm | 780 | 406 | 857 | 471 |
| 764 | IMG_2395_10.jpg | 1000 | 1000 | Palm | 932 | 175 | 997 | 268 |
765 rows × 8 columns
xml_files_zanzibar_val = [f for f in os.listdir(path_zanzibar_val) if f.endswith('xml')]
list_of_image_zanzibar_val = [f for f in os.listdir(path_zanzibar_val) if f.endswith('jpg')]
xml_list_zanzibar_val = []
for xml_file in xml_files_zanzibar_val:
tree = ET.parse(os.path.join(path_zanzibar_val,xml_file))
root = tree.getroot()
for member in root.findall('object'):
value = (root.find('filename').text,
int(root.find('size')[0].text),
int(root.find('size')[1].text),
member[0].text,
int(member[4][0].text),
int(member[4][1].text),
int(member[4][2].text),
int(member[4][3].text)
)
xml_list_zanzibar_val.append(value)
column_name = ['filename', 'width', 'height', 'classname', 'xmin', 'ymin', 'xmax', 'ymax']
xml_df_zanzibar_val = pd.DataFrame(xml_list_zanzibar_val, columns=column_name)
xml_df_zanzibar_val
| filename | width | height | classname | xmin | ymin | xmax | ymax | |
|---|---|---|---|---|---|---|---|---|
| 0 | zanzibar1_6.jpg | 1000 | 1000 | Palm | 391 | 22 | 494 | 114 |
| 1 | zanzibar1_6.jpg | 1000 | 1000 | Palm | 613 | 1 | 702 | 71 |
| 2 | zanzibar1_6.jpg | 1000 | 1000 | Palm | 891 | 8 | 992 | 109 |
| 3 | zanzibar1_6.jpg | 1000 | 1000 | Palm | 904 | 97 | 998 | 205 |
| 4 | zanzibar1_6.jpg | 1000 | 1000 | Palm | 829 | 97 | 917 | 193 |
| ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 3051 | zanzibar2_996.jpg | 1000 | 1000 | Palm | 921 | 499 | 1000 | 582 |
| 3052 | zanzibar2_996.jpg | 1000 | 1000 | Palm | 794 | 623 | 899 | 724 |
| 3053 | zanzibar2_996.jpg | 1000 | 1000 | Palm | 654 | 640 | 767 | 749 |
| 3054 | zanzibar2_996.jpg | 1000 | 1000 | Palm | 7 | 834 | 107 | 929 |
| 3055 | zanzibar2_996.jpg | 1000 | 1000 | Palm | 471 | 784 | 561 | 873 |
3056 rows × 8 columns
After importing, we concatenate the training data and validation data from the three locations:
train_df = pd.concat([xml_df_tonga, xml_df_nicaragua,xml_df_zanzibar], axis=0)
valid_df = pd.concat([xml_df_tonga_val, xml_df_nicaragua_val,xml_df_zanzibar_val], axis=0)
We add the id of the class we have in our dataset:
train_df['class'] = 0
valid_df['class'] = 0
Now let's copy the images that are in Drive to folders in Colab's Content:
path_data_train = 'train'
path_data_valid = 'validation'
if not os.path.isdir(path_data_train):
os.mkdir(path_data_train)
if not os.path.isdir(path_data_valid):
os.mkdir(path_data_valid)
for images in list_of_image_tonga:
img = io.imread(os.path.join(path_tonga,images))
imsave(os.path.join(path_data_train,images.split('.')[0] + '.jpg'), img)
for images in list_of_image_nicaragua:
img = io.imread(os.path.join(path_nicaragua,images))
imsave(os.path.join(path_data_train,images.split('.')[0] + '.jpg'), img)
for images in list_of_image_zanzibar:
img = io.imread(os.path.join(path_zanzibar,images))
imsave(os.path.join(path_data_train,images.split('.')[0] + '.jpg'), img)
for images in list_of_image_tonga_val:
img = io.imread(os.path.join(path_tonga_val,images))
imsave(os.path.join(path_data_valid,images.split('.')[0] + '.jpg'), img)
for images in list_of_image_nicaragua_val:
img = io.imread(os.path.join(path_nicaragua_val,images))
imsave(os.path.join(path_data_valid,images.split('.')[0] + '.jpg'), img)
for images in list_of_image_zanzibar_val:
img = io.imread(os.path.join(path_zanzibar_val,images))
imsave(os.path.join(path_data_valid,images.split('.')[0] + '.jpg'), img)
From the columns of xmin, ymin, xmax and ymax, we will obtain the bounds:
def getBounds(df):
try:
xmin = df['xmin']
ymin = df['ymin']
xmax = df['xmax']
ymax = df['ymax']
return (xmin, ymin, xmax, ymax)
except:
return np.nan
def getWidth(bounds):
try:
(xmin, ymin, xmax, ymax) = bounds
return np.abs(xmax - xmin)
except:
return np.nan
def getHeight(bounds):
try:
(xmin, ymin, xmax, ymax) = bounds
return np.abs(ymax - ymin)
except:
return np.nan
train_df['bounds'] = train_df.apply(getBounds, axis=1)
train_df.loc[:,'width'] = train_df.loc[:,'bounds'].apply(getWidth)
train_df.loc[:,'height'] = train_df.loc[:,'bounds'].apply(getHeight)
train_df.head(10)
| filename | width | height | classname | xmin | ymin | xmax | ymax | class | bounds | |
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | tonga_368.jpg | 81 | 84 | Palm | 19 | 51 | 100 | 135 | 0 | (19, 51, 100, 135) |
| 1 | tonga_368.jpg | 79 | 76 | Palm | 236 | 46 | 315 | 122 | 0 | (236, 46, 315, 122) |
| 2 | tonga_368.jpg | 75 | 78 | Palm | 739 | 11 | 814 | 89 | 0 | (739, 11, 814, 89) |
| 3 | tonga_368.jpg | 50 | 59 | Palm | 568 | 514 | 618 | 573 | 0 | (568, 514, 618, 573) |
| 4 | tonga_368.jpg | 57 | 62 | Palm | 198 | 879 | 255 | 941 | 0 | (198, 879, 255, 941) |
| 5 | tonga_368.jpg | 80 | 79 | Palm | 590 | 597 | 670 | 676 | 0 | (590, 597, 670, 676) |
| 6 | tonga_368.jpg | 57 | 55 | Palm | 639 | 658 | 696 | 713 | 0 | (639, 658, 696, 713) |
| 7 | tonga_368.jpg | 66 | 56 | Palm | 767 | 685 | 833 | 741 | 0 | (767, 685, 833, 741) |
| 8 | tonga_368.jpg | 77 | 82 | Palm | 798 | 584 | 875 | 666 | 0 | (798, 584, 875, 666) |
| 9 | tonga_368.jpg | 75 | 78 | Palm | 925 | 585 | 1000 | 663 | 0 | (925, 585, 1000, 663) |
valid_df['bounds'] = valid_df.apply(getBounds, axis=1)
valid_df.loc[:,'width'] = valid_df.loc[:,'bounds'].apply(getWidth)
valid_df.loc[:,'height'] = valid_df.loc[:,'bounds'].apply(getHeight)
valid_df.head(10)
| filename | width | height | classname | xmin | ymin | xmax | ymax | class | bounds | |
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | tonga_170.jpg | 75 | 85 | Palm | 4 | 224 | 79 | 309 | 0 | (4, 224, 79, 309) |
| 1 | tonga_170.jpg | 59 | 73 | Palm | 63 | 298 | 122 | 371 | 0 | (63, 298, 122, 371) |
| 2 | tonga_170.jpg | 72 | 78 | Palm | 141 | 272 | 213 | 350 | 0 | (141, 272, 213, 350) |
| 3 | tonga_170.jpg | 60 | 65 | Palm | 58 | 452 | 118 | 517 | 0 | (58, 452, 118, 517) |
| 4 | tonga_170.jpg | 65 | 75 | Palm | 178 | 430 | 243 | 505 | 0 | (178, 430, 243, 505) |
| 5 | tonga_170.jpg | 90 | 102 | Palm | 99 | 536 | 189 | 638 | 0 | (99, 536, 189, 638) |
| 6 | tonga_170.jpg | 82 | 90 | Palm | 8 | 676 | 90 | 766 | 0 | (8, 676, 90, 766) |
| 7 | tonga_170.jpg | 80 | 83 | Palm | 300 | 452 | 380 | 535 | 0 | (300, 452, 380, 535) |
| 8 | tonga_170.jpg | 59 | 69 | Palm | 213 | 736 | 272 | 805 | 0 | (213, 736, 272, 805) |
| 9 | tonga_170.jpg | 75 | 80 | Palm | 93 | 830 | 168 | 910 | 0 | (93, 830, 168, 910) |
Let's save the training and validation dataframes to .csv files:
def convert(data, data_type):
df = data.groupby('filename')['bounds'].apply(list).reset_index(name='bboxes')
df['classes'] = data.groupby('filename')['class'].apply(list).reset_index(drop=True)
df.to_csv(data_type + '.csv', index=False)
print(data_type)
print(df.shape)
print(df.head())
df_train = convert(train_df, '/content/train')
df_valid = convert(valid_df, '/content/validation')
/content/train
(486, 3)
filename bboxes \
0 IMG_2361_1.jpg [(887, 1, 986, 84), (839, 84, 936, 177), (892,...
1 IMG_2361_10.jpg [(30, 2, 127, 93), (5, 91, 91, 177), (40, 168,...
2 IMG_2361_11.jpg [(907, 29, 983, 105), (804, 28, 894, 116), (84...
3 IMG_2361_3.jpg [(46, 67, 150, 165), (115, 163, 208, 248), (17...
4 IMG_2361_4.jpg [(48, 4, 144, 82), (7, 77, 100, 167), (153, 7,...
classes
0 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...
1 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...
2 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...
3 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...
4 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...
/content/validation
(206, 3)
filename bboxes \
0 IMG_2361_12.jpg [(18, 914, 99, 989), (66, 842, 149, 917), (15,...
1 IMG_2361_2.jpg [(37, 917, 135, 997), (148, 911, 250, 1000), (...
2 IMG_2361_6.jpg [(103, 2, 214, 100), (213, 7, 328, 115), (41, ...
3 IMG_2361_9.jpg [(733, 10, 815, 94), (803, 89, 895, 178), (889...
4 IMG_2367_4.jpg [(224, 597, 291, 668), (281, 644, 364, 723), (...
classes
0 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...
1 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...
2 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...
3 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...
4 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...
To train YOLOv7 we download its implementation from github and install its requirements:
!git clone https://github.com/WongKinYiu/yolov7
%cd yolov7
!pip install -r requirements.txt
Cloning into 'yolov7'...
remote: Enumerating objects: 1094, done.
remote: Total 1094 (delta 0), reused 0 (delta 0), pack-reused 1094
Receiving objects: 100% (1094/1094), 69.89 MiB | 16.15 MiB/s, done.
Resolving deltas: 100% (516/516), done.
/content/yolov7
Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/simple/
Requirement already satisfied: matplotlib>=3.2.2 in /usr/local/lib/python3.8/dist-packages (from -r requirements.txt (line 4)) (3.2.2)
Requirement already satisfied: numpy>=1.18.5 in /usr/local/lib/python3.8/dist-packages (from -r requirements.txt (line 5)) (1.21.6)
Requirement already satisfied: opencv-python>=4.1.1 in /usr/local/lib/python3.8/dist-packages (from -r requirements.txt (line 6)) (4.6.0.66)
Requirement already satisfied: Pillow>=7.1.2 in /usr/local/lib/python3.8/dist-packages (from -r requirements.txt (line 7)) (7.1.2)
Requirement already satisfied: PyYAML>=5.3.1 in /usr/local/lib/python3.8/dist-packages (from -r requirements.txt (line 8)) (6.0)
Requirement already satisfied: requests>=2.23.0 in /usr/local/lib/python3.8/dist-packages (from -r requirements.txt (line 9)) (2.23.0)
Requirement already satisfied: scipy>=1.4.1 in /usr/local/lib/python3.8/dist-packages (from -r requirements.txt (line 10)) (1.7.3)
Requirement already satisfied: torch!=1.12.0,>=1.7.0 in /usr/local/lib/python3.8/dist-packages (from -r requirements.txt (line 11)) (1.13.0+cu116)
Requirement already satisfied: torchvision!=0.13.0,>=0.8.1 in /usr/local/lib/python3.8/dist-packages (from -r requirements.txt (line 12)) (0.14.0+cu116)
Requirement already satisfied: tqdm>=4.41.0 in /usr/local/lib/python3.8/dist-packages (from -r requirements.txt (line 13)) (4.64.1)
Requirement already satisfied: protobuf<4.21.3 in /usr/local/lib/python3.8/dist-packages (from -r requirements.txt (line 14)) (3.19.6)
Requirement already satisfied: tensorboard>=2.4.1 in /usr/local/lib/python3.8/dist-packages (from -r requirements.txt (line 17)) (2.9.1)
Requirement already satisfied: pandas>=1.1.4 in /usr/local/lib/python3.8/dist-packages (from -r requirements.txt (line 21)) (1.3.5)
Requirement already satisfied: seaborn>=0.11.0 in /usr/local/lib/python3.8/dist-packages (from -r requirements.txt (line 22)) (0.11.2)
Requirement already satisfied: ipython in /usr/local/lib/python3.8/dist-packages (from -r requirements.txt (line 34)) (7.9.0)
Requirement already satisfied: psutil in /usr/local/lib/python3.8/dist-packages (from -r requirements.txt (line 35)) (5.4.8)
Collecting thop
Downloading thop-0.1.1.post2209072238-py3-none-any.whl (15 kB)
Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.8/dist-packages (from matplotlib>=3.2.2->-r requirements.txt (line 4)) (0.11.0)
Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 in /usr/local/lib/python3.8/dist-packages (from matplotlib>=3.2.2->-r requirements.txt (line 4)) (3.0.9)
Requirement already satisfied: python-dateutil>=2.1 in /usr/local/lib/python3.8/dist-packages (from matplotlib>=3.2.2->-r requirements.txt (line 4)) (2.8.2)
Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.8/dist-packages (from matplotlib>=3.2.2->-r requirements.txt (line 4)) (1.4.4)
Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.8/dist-packages (from requests>=2.23.0->-r requirements.txt (line 9)) (1.24.3)
Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.8/dist-packages (from requests>=2.23.0->-r requirements.txt (line 9)) (3.0.4)
Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.8/dist-packages (from requests>=2.23.0->-r requirements.txt (line 9)) (2022.12.7)
Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.8/dist-packages (from requests>=2.23.0->-r requirements.txt (line 9)) (2.10)
Requirement already satisfied: typing-extensions in /usr/local/lib/python3.8/dist-packages (from torch!=1.12.0,>=1.7.0->-r requirements.txt (line 11)) (4.4.0)
Requirement already satisfied: markdown>=2.6.8 in /usr/local/lib/python3.8/dist-packages (from tensorboard>=2.4.1->-r requirements.txt (line 17)) (3.4.1)
Requirement already satisfied: google-auth<3,>=1.6.3 in /usr/local/lib/python3.8/dist-packages (from tensorboard>=2.4.1->-r requirements.txt (line 17)) (2.15.0)
Requirement already satisfied: tensorboard-plugin-wit>=1.6.0 in /usr/local/lib/python3.8/dist-packages (from tensorboard>=2.4.1->-r requirements.txt (line 17)) (1.8.1)
Requirement already satisfied: absl-py>=0.4 in /usr/local/lib/python3.8/dist-packages (from tensorboard>=2.4.1->-r requirements.txt (line 17)) (1.3.0)
Requirement already satisfied: grpcio>=1.24.3 in /usr/local/lib/python3.8/dist-packages (from tensorboard>=2.4.1->-r requirements.txt (line 17)) (1.51.1)
Requirement already satisfied: werkzeug>=1.0.1 in /usr/local/lib/python3.8/dist-packages (from tensorboard>=2.4.1->-r requirements.txt (line 17)) (1.0.1)
Requirement already satisfied: wheel>=0.26 in /usr/local/lib/python3.8/dist-packages (from tensorboard>=2.4.1->-r requirements.txt (line 17)) (0.38.4)
Requirement already satisfied: tensorboard-data-server<0.7.0,>=0.6.0 in /usr/local/lib/python3.8/dist-packages (from tensorboard>=2.4.1->-r requirements.txt (line 17)) (0.6.1)
Requirement already satisfied: google-auth-oauthlib<0.5,>=0.4.1 in /usr/local/lib/python3.8/dist-packages (from tensorboard>=2.4.1->-r requirements.txt (line 17)) (0.4.6)
Requirement already satisfied: setuptools>=41.0.0 in /usr/local/lib/python3.8/dist-packages (from tensorboard>=2.4.1->-r requirements.txt (line 17)) (57.4.0)
Requirement already satisfied: pytz>=2017.3 in /usr/local/lib/python3.8/dist-packages (from pandas>=1.1.4->-r requirements.txt (line 21)) (2022.6)
Requirement already satisfied: rsa<5,>=3.1.4 in /usr/local/lib/python3.8/dist-packages (from google-auth<3,>=1.6.3->tensorboard>=2.4.1->-r requirements.txt (line 17)) (4.9)
Requirement already satisfied: six>=1.9.0 in /usr/local/lib/python3.8/dist-packages (from google-auth<3,>=1.6.3->tensorboard>=2.4.1->-r requirements.txt (line 17)) (1.15.0)
Requirement already satisfied: cachetools<6.0,>=2.0.0 in /usr/local/lib/python3.8/dist-packages (from google-auth<3,>=1.6.3->tensorboard>=2.4.1->-r requirements.txt (line 17)) (5.2.0)
Requirement already satisfied: pyasn1-modules>=0.2.1 in /usr/local/lib/python3.8/dist-packages (from google-auth<3,>=1.6.3->tensorboard>=2.4.1->-r requirements.txt (line 17)) (0.2.8)
Requirement already satisfied: requests-oauthlib>=0.7.0 in /usr/local/lib/python3.8/dist-packages (from google-auth-oauthlib<0.5,>=0.4.1->tensorboard>=2.4.1->-r requirements.txt (line 17)) (1.3.1)
Requirement already satisfied: importlib-metadata>=4.4 in /usr/local/lib/python3.8/dist-packages (from markdown>=2.6.8->tensorboard>=2.4.1->-r requirements.txt (line 17)) (5.1.0)
Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.8/dist-packages (from importlib-metadata>=4.4->markdown>=2.6.8->tensorboard>=2.4.1->-r requirements.txt (line 17)) (3.11.0)
Requirement already satisfied: pyasn1<0.5.0,>=0.4.6 in /usr/local/lib/python3.8/dist-packages (from pyasn1-modules>=0.2.1->google-auth<3,>=1.6.3->tensorboard>=2.4.1->-r requirements.txt (line 17)) (0.4.8)
Requirement already satisfied: oauthlib>=3.0.0 in /usr/local/lib/python3.8/dist-packages (from requests-oauthlib>=0.7.0->google-auth-oauthlib<0.5,>=0.4.1->tensorboard>=2.4.1->-r requirements.txt (line 17)) (3.2.2)
Requirement already satisfied: pexpect in /usr/local/lib/python3.8/dist-packages (from ipython->-r requirements.txt (line 34)) (4.8.0)
Requirement already satisfied: pygments in /usr/local/lib/python3.8/dist-packages (from ipython->-r requirements.txt (line 34)) (2.6.1)
Requirement already satisfied: decorator in /usr/local/lib/python3.8/dist-packages (from ipython->-r requirements.txt (line 34)) (4.4.2)
Requirement already satisfied: pickleshare in /usr/local/lib/python3.8/dist-packages (from ipython->-r requirements.txt (line 34)) (0.7.5)
Requirement already satisfied: traitlets>=4.2 in /usr/local/lib/python3.8/dist-packages (from ipython->-r requirements.txt (line 34)) (5.7.1)
Collecting jedi>=0.10
Downloading jedi-0.18.2-py2.py3-none-any.whl (1.6 MB)
|████████████████████████████████| 1.6 MB 15.1 MB/s
Requirement already satisfied: prompt-toolkit<2.1.0,>=2.0.0 in /usr/local/lib/python3.8/dist-packages (from ipython->-r requirements.txt (line 34)) (2.0.10)
Requirement already satisfied: backcall in /usr/local/lib/python3.8/dist-packages (from ipython->-r requirements.txt (line 34)) (0.2.0)
Requirement already satisfied: parso<0.9.0,>=0.8.0 in /usr/local/lib/python3.8/dist-packages (from jedi>=0.10->ipython->-r requirements.txt (line 34)) (0.8.3)
Requirement already satisfied: wcwidth in /usr/local/lib/python3.8/dist-packages (from prompt-toolkit<2.1.0,>=2.0.0->ipython->-r requirements.txt (line 34)) (0.2.5)
Requirement already satisfied: ptyprocess>=0.5 in /usr/local/lib/python3.8/dist-packages (from pexpect->ipython->-r requirements.txt (line 34)) (0.7.0)
Installing collected packages: jedi, thop
Successfully installed jedi-0.18.2 thop-0.1.1.post2209072238
!ls
cfg detect.py hubconf.py models requirements.txt tools utils data export.py inference paper scripts train_aux.py deploy figure LICENSE.md README.md test.py train.py
Inside the main yolov7 folder we created a folder to receive our images and labels:
!mkdir plant_data
%cd plant_data
/content/yolov7/plant_data
And inside this folder we create directories for images and labels:
!mkdir images
!mkdir labels
%cd images
!mkdir train
!mkdir validation
%cd ..
%cd labels
!mkdir train
!mkdir validation
%cd ..
%cd ..
%cd ..
/content/yolov7/plant_data/images /content/yolov7/plant_data /content/yolov7/plant_data/labels /content/yolov7/plant_data /content/yolov7 /content
for root,dir,_ in os.walk('yolov7/plant_data'):
print(root)
print(dir)
yolov7/plant_data ['images', 'labels'] yolov7/plant_data/images ['train', 'validation'] yolov7/plant_data/images/train [] yolov7/plant_data/images/validation [] yolov7/plant_data/labels ['train', 'validation'] yolov7/plant_data/labels/train [] yolov7/plant_data/labels/validation []
The next step is to copy the training and validation images to their respective directories in the folder we created. We will also open the training and validation .csv files and for each image we will create a .txt with the annotations belonging to the image. The bounds values will be normalized, and we will feed the model with the central x and y values, height and width.
INPUT_PATH = '/content/'
OUTPUT_PATH = '/content/yolov7/plant_data'
def process_data(data, data_type='train'):
for _, row in tqdm(data.iterrows(), total = len(data)):
image_name = row['filename'].split('.')[0]
bounding_boxes = row['bboxes']
classes = row['classes']
yolo_data = []
for bbox, Class in zip(bounding_boxes, classes):
x_min = bbox[0]
y_min = bbox[1]
x_max = bbox[2]
y_max = bbox[3]
'''x = x_min / 1000
y = y_min / 1000
width = (x_max - x_min) / 1000
height = (y_max - y_min) / 1000
print(Class, x, y, width, height)
yolo_data.append([Class, x, y, width, height])'''
x_center = (x_min + x_max) / 2.0 / 1000
y_center = (y_min + y_max) / 2.0 / 1000
x_extend = (x_max - x_min) / 1000
y_extend = (y_max - y_min) / 1000
print(Class, x_center, y_center, x_extend, y_extend)
yolo_data.append([Class, x_center, y_center, x_extend, y_extend])
''''x = bbox[0]
y = bbox[1]
w = bbox[2]
h = bbox[3]
x_center = x + w / 2
y_center = y + h / 2
x_center /= 1024
y_center /= 1024
w /= 1024
h /= 1024
yolo_data.append([Class, x_center, y_center, w, h])'''
yoy_data = np.array(yolo_data)
np.savetxt(
os.path.join(OUTPUT_PATH, f"labels/{data_type}/{image_name}.txt"),
yolo_data,
fmt = ["%d", "%f", "%f", "%f", "%f"]
)
shutil.copyfile(
os.path.join(INPUT_PATH, f"{data_type}/{image_name}.jpg"),
os.path.join(OUTPUT_PATH, f"images/{data_type}/{image_name}.jpg")
)
df_train = pd.read_csv('/content/train.csv')
df_train.bboxes = df_train.bboxes.apply(ast.literal_eval)
df_train.classes = df_train.classes.apply(ast.literal_eval)
df_valid = pd.read_csv('/content/validation.csv')
df_valid.bboxes = df_valid.bboxes.apply(ast.literal_eval)
df_valid.classes = df_valid.classes.apply(ast.literal_eval)
process_data(df_train, data_type='train')
process_data(df_valid, data_type='validation')
0%| | 2/486 [00:00<00:28, 16.94it/s]
0 0.9365 0.0425 0.099 0.083 0 0.8875 0.1305 0.097 0.093 0 0.9425 0.209 0.101 0.092 0 0.837 0.218 0.086 0.084 0 0.8375 0.061 0.089 0.082 0 0.6855 0.152 0.103 0.092 0 0.5665 0.3245 0.109 0.101 0 0.4645 0.336 0.103 0.104 0 0.416 0.425 0.106 0.102 0 0.567 0.5115 0.1 0.105 0 0.6705 0.4965 0.099 0.093 0 0.1445 0.535 0.103 0.096 0 0.1505 0.713 0.099 0.09 0 0.092 0.44 0.094 0.096 0 0.8905 0.4725 0.109 0.099 0 0.729 0.399 0.084 0.088 0 0.3025 0.249 0.093 0.092 0 0.474 0.8955 0.09 0.091 0 0.2105 0.8115 0.097 0.093 0 0.1025 0.8165 0.099 0.099 0 0.0875 0.272 0.089 0.088 0 0.1935 0.2535 0.091 0.087 0 0.213 0.622 0.092 0.09 0 0.091 0.6215 0.104 0.097 0 0.1505 0.354 0.073 0.072 0 0.1995 0.4395 0.091 0.091 0 0.311 0.4355 0.098 0.095 0 0.1375 0.1795 0.087 0.085 0 0.2915 0.075 0.091 0.082 0 0.355 0.1615 0.09 0.085 0 0.5745 0.153 0.091 0.086 0 0.3645 0.3385 0.091 0.087 0 0.626 0.411 0.092 0.086 0 0.677 0.3155 0.096 0.081 0 0.786 0.3125 0.082 0.077 0 0.265 0.904 0.092 0.088 0 0.156 0.911 0.108 0.088 0 0.049 0.912 0.092 0.096 0 0.3795 0.895 0.085 0.086 0 0.6835 0.8805 0.087 0.079 0 0.418 0.7995 0.088 0.079 0 0.898 0.671 0.098 0.096 0 0.7805 0.6735 0.093 0.091 0 0.7315 0.777 0.097 0.09 0 0.9015 0.867 0.095 0.092 0 0.7265 0.5865 0.091 0.081 0 0.952 0.5705 0.086 0.091 0 0.3525 0.534 0.099 0.084 0 0.947 0.384 0.09 0.088 0 0.0445 0.7255 0.085 0.095 0 0.781 0.4815 0.09 0.095 0 0.4125 0.245 0.089 0.08 0 0.5125 0.237 0.087 0.08 0 0.6195 0.232 0.091 0.078 0 0.7295 0.23 0.079 0.068 0 0.0785 0.0475 0.097 0.091 0 0.048 0.134 0.086 0.086 0 0.085 0.209 0.09 0.082 0 0.1395 0.2925 0.097 0.083 0 0.1825 0.211 0.103 0.09 0 0.1375 0.1215 0.087 0.081 0 0.1785 0.045 0.097 0.086 0 0.2735 0.0425 0.099 0.083 0 0.381 0.0425 0.106 0.083 0 0.2285 0.1325 0.093 0.087 0 0.334 0.126 0.104 0.084 0 0.2815 0.2115 0.091 0.091 0 0.2435 0.2945 0.095 0.091 0 0.343 0.2945 0.09 0.091 0 0.4335 0.118 0.087 0.08 0 0.4815 0.037 0.069 0.06 0 0.588 0.0475 0.098 0.085 0 0.6905 0.0425 0.091 0.083 0 0.797 0.047 0.112 0.086 0 0.9035 0.038 0.083 0.072 0 0.9525 0.115 0.089 0.096 0 0.9075 0.206 0.091 0.1 0 0.852 0.1165 0.092 0.087 0 0.7535 0.126 0.103 0.094 0 0.806 0.2095 0.104 0.109 0 0.6355 0.131 0.099 0.096 0 0.529 0.128 0.104 0.094 0 0.487 0.224 0.108 0.094 0 0.549 0.302 0.096 0.088 0 0.647 0.296 0.09 0.094 0 0.7055 0.222 0.091 0.086 0 0.7545 0.3015 0.089 0.091 0 0.8515 0.2865 0.099 0.087 0 0.759 0.444 0.088 0.106 0 0.8625 0.4475 0.103 0.095 0 0.401 0.386 0.082 0.08 0 0.945 0.067 0.076 0.076 0 0.849 0.072 0.09 0.088 0 0.8855 0.1455 0.077 0.077 0 0.9355 0.213 0.089 0.098 0 0.735 0.0705 0.088 0.079 0 0.654 0.082 0.082 0.084 0 0.556 0.091 0.11 0.096 0 0.461 0.0935 0.076 0.073 0 0.3575 0.091 0.119 0.1 0 0.1975 0.1705 0.095 0.091 0 0.689 0.1605 0.096 0.087 0 0.6015 0.166 0.073 0.072 0 0.5065 0.175 0.093 0.084 0 0.4085 0.18 0.103 0.092 0 0.0545 0.276 0.101 0.094 0 0.1035 0.3535 0.091 0.081 0 0.0565 0.44 0.089 0.076 0 0.109 0.5115 0.09 0.075 0 0.155 0.4295 0.096 0.093 0 0.2075 0.342 0.085 0.082 0 0.259 0.256 0.094 0.082 0 0.3535 0.257 0.081 0.08 0 0.2935 0.341 0.087 0.088 0 0.255 0.4235 0.08 0.075 0 0.209 0.4995 0.082 0.077 0 0.2495 0.562 0.079 0.074 0 0.3475 0.5505 0.073 0.071 0 0.4465 0.543 0.073 0.068 0 0.4965 0.473 0.095 0.09 0 0.4065 0.332 0.081 0.078 0 0.6965 0.9555 0.083 0.079 0 0.7405 0.875 0.087 0.088 0 0.862 0.947 0.096 0.084 0 0.918 0.8745 0.092 0.079 0 0.791 0.806 0.084 0.076 0 0.961 0.7965 0.078 0.089 0 0.873 0.795 0.088 0.078 0 0.7845 0.2915 0.085 0.083 0 0.691 0.3045 0.094 0.091 0 0.824 0.371 0.084 0.082 0 0.676 0.4515 0.082 0.083 0 0.9475 0.4325 0.079 0.083 0 0.6615 0.5985 0.083 0.071 0 0.855 0.588 0.082 0.076 0 0.8085 0.5115 0.087 0.089 0 0.9015 0.509 0.087 0.082 0 0.5895 0.463 0.087 0.092 0 0.098 0.116 0.104 0.098 0 0.1615 0.2055 0.093 0.085 0 0.2135 0.126 0.087 0.086 0 0.1185 0.299
1%| | 4/486 [00:00<00:35, 13.68it/s]
0.095 0.098 0 0.2155 0.299 0.093 0.094 0 0.0665 0.403 0.097 0.094 0 0.169 0.398 0.096 0.096 0 0.277 0.4015 0.11 0.109 0 0.227 0.4895 0.076 0.077 0 0.271 0.2135 0.086 0.093 0 0.318 0.1205 0.096 0.097 0 0.374 0.2065 0.094 0.097 0 0.4185 0.129 0.095 0.094 0 0.4715 0.0425 0.089 0.083 0 0.5765 0.0415 0.089 0.081 0 0.527 0.127 0.1 0.104 0 0.582 0.218 0.08 0.078 0 0.7415 0.13 0.093 0.096 0 0.791 0.046 0.094 0.088 0 0.325 0.307 0.106 0.098 0 0.4255 0.3025 0.093 0.093 0 0.533 0.3085 0.1 0.097 0 0.389 0.405 0.098 0.106 0 0.489 0.402 0.09 0.094 0 0.6 0.4015 0.098 0.091 0 0.544 0.491 0.108 0.102 0 0.6945 0.401 0.087 0.088 0 0.8 0.3985 0.112 0.103 0 0.798 0.2115 0.1 0.079 0 0.8925 0.2085 0.087 0.087 0 0.956 0.306 0.086 0.09 0 0.9075 0.4015 0.075 0.077 0 0.8625 0.4875 0.085 0.089 0 0.956 0.4845 0.086 0.087 0 0.7555 0.491 0.101 0.104 0 0.647 0.499 0.078 0.082 0 0.707 0.576 0.108 0.1 0 0.9145 0.584 0.113 0.112 0 0.3325 0.4885 0.103 0.095 0 0.1735 0.5895 0.089 0.083 0 0.2795 0.575 0.111 0.106 0 0.388 0.579 0.098 0.094 0 0.1215 0.6745 0.107 0.101 0 0.235 0.6765 0.104 0.101 0 0.346 0.6705 0.104 0.107 0 0.4485 0.669 0.095 0.106 0 0.5585 0.6665 0.081 0.085 0 0.656 0.668 0.102 0.09 0 0.7615 0.669 0.077 0.07 0 0.1265 0.854 0.107 0.1 0 0.238 0.8475 0.104 0.107 0 0.293 0.767 0.09 0.088 0 0.079 0.948 0.098 0.098 0 0.187 0.951 0.106 0.09 0 0.292 0.9485 0.094 0.093 0 0.3975 0.9435 0.113 0.103 0 0.5025 0.943 0.107 0.106 0 0.6115 0.95 0.107 0.09 0 0.5495 0.846 0.097 0.094 0 0.6 0.763 0.09 0.078 0 0.7175 0.9405 0.099 0.097 0 0.6685 0.8525 0.083 0.075 0 0.7205 0.769 0.101 0.106 0 0.774 0.8565 0.098 0.095 0 0.8275 0.7605 0.099 0.113 0 0.8745 0.856 0.105 0.104 0 0.929 0.756 0.1 0.11 0 0.096 0.043 0.096 0.078 0 0.0535 0.122 0.093 0.09 0 0.1935 0.0455 0.081 0.077 0 0.1545 0.1245 0.095 0.097 0 0.1085 0.2055 0.093 0.099 0 0.2105 0.2065 0.083 0.085 0 0.2535 0.123 0.083 0.092 0 0.3455 0.1315 0.087 0.093 0 0.4655 0.056 0.093 0.082 0 0.5615 0.064 0.089 0.084 0 0.923 0.0795 0.078 0.073 0 0.8255 0.09 0.077 0.082 0 0.888 0.1725 0.084 0.083 0 0.697 0.1615 0.084 0.087 0 0.662 0.0665 0.092 0.089 0 0.6125 0.159 0.089 0.096 0 0.5275 0.153 0.101 0.104 0 0.435 0.1425 0.096 0.097 0 0.2965 0.2195 0.089 0.103 0 0.389 0.227 0.09 0.09 0 0.069 0.296 0.092 0.096 0 0.1695 0.3005 0.097 0.099 0 0.259 0.3125 0.086 0.093 0 0.3565 0.3155 0.101 0.099 0 0.444 0.3155 0.092 0.101 0 0.525 0.3275 0.092 0.091 0 0.6195 0.3275 0.109 0.111 0 0.7125 0.334 0.097 0.092 0 0.752 0.252 0.09 0.084 0 0.8435 0.255 0.087 0.088 0 0.9295 0.2565 0.087 0.083 0 0.895 0.341 0.098 0.09 0 0.7985 0.342 0.077 0.074 0 0.9405 0.4255 0.087 0.091 0 0.83 0.4265 0.08 0.077 0 0.7535 0.4285 0.085 0.079 0 0.0665 0.4755 0.101 0.109 0 0.3145 0.4025 0.075 0.091 0 0.5745 0.413 0.081 0.09 0 0.3555 0.4905 0.091 0.085 0 0.4495 0.493 0.089 0.1 0 0.54 0.4925 0.086 0.093 0 0.6295 0.5065 0.089 0.097 0 0.7105 0.5145 0.075 0.081 0 0.8075 0.5125 0.093 0.085 0 0.8905 0.5115 0.069 0.067 0 0.1755 0.6725 0.091 0.101 0 0.0745 0.676 0.091 0.104 0 0.269 0.678 0.094 0.106 0 0.3135 0.5845 0.101 0.093 0 0.445 0.6755 0.094 0.091 0 0.499 0.59 0.096 0.088 0 0.6265 0.6885 0.103 0.099 0 0.684 0.604 0.076 0.08 0 0.76 0.601 0.09 0.078 0 0.856 0.6045 0.086 0.087 0 0.902 0.6885 0.088 0.067 0 0.815 0.695 0.08 0.076 0 0.721 0.688 0.082 0.086 0 0.956 0.7725 0.088 0.081 0 0.8535 0.7765 0.097 0.093 0 0.756 0.7745 0.102 0.099 0 0.219 0.7695 0.096 0.087 0 0.3195 0.772 0.085 0.082 0 0.417 0.7735 0.098 0.087 0 0.507 0.773 0.084 0.092 0 0.597 0.78
1%| | 6/486 [00:00<00:46, 10.22it/s]
0.09 0.082 0 0.0765 0.853 0.093 0.086 0 0.173 0.8575 0.066 0.069 0 0.2645 0.863 0.109 0.106 0 0.3145 0.9445 0.101 0.099 0 0.4165 0.944 0.111 0.102 0 0.512 0.9395 0.096 0.107 0 0.5525 0.857 0.093 0.07 0 0.6415 0.8615 0.075 0.067 0 0.6005 0.942 0.089 0.088 0 0.686 0.9475 0.088 0.081 0 0.765 0.9485 0.092 0.087 0 0.804 0.8625 0.096 0.097 0 0.942 0.9485 0.108 0.097 0 0.0485 0.1115 0.091 0.085 0 0.162 0.1045 0.09 0.073 0 0.3725 0.093 0.085 0.076 0 0.479 0.084 0.088 0.08 0 0.592 0.083 0.108 0.088 0 0.695 0.0815 0.08 0.083 0 0.802 0.07 0.112 0.098 0 0.9235 0.069 0.109 0.106 0 0.216 0.1965 0.096 0.079 0 0.32 0.1925 0.106 0.093 0 0.435 0.19 0.112 0.096 0 0.764 0.1765 0.088 0.085 0 0.8695 0.1655 0.085 0.077 0 0.0725 0.3045 0.079 0.079 0 0.1785 0.298 0.087 0.076 0 0.2835 0.295 0.109 0.088 0 0.394 0.2845 0.08 0.079 0 0.4945 0.287 0.099 0.088 0 0.6115 0.2705 0.101 0.097 0 0.715 0.2755 0.096 0.085 0 0.8355 0.263 0.093 0.088 0 0.94 0.257 0.098 0.094 0 0.043 0.396 0.084 0.088 0 0.1355 0.3965 0.101 0.083 0 0.239 0.3895 0.084 0.085 0 0.345 0.3815 0.08 0.069 0 0.557 0.3705 0.102 0.093 0 0.674 0.3695 0.114 0.087 0 0.8905 0.359 0.085 0.082 0 0.3165 0.483 0.095 0.098 0 0.4205 0.474 0.105 0.106 0 0.521 0.474 0.108 0.098 0 0.6325 0.4645 0.091 0.097 0 0.741 0.462 0.106 0.096 0 0.8555 0.453 0.087 0.088 0 0.952 0.448 0.09 0.094 0 0.0865 0.5665 0.095 0.091 0 0.1815 0.568 0.091 0.092 0 0.278 0.565 0.102 0.098 0 0.374 0.5685 0.09 0.085 0 0.484 0.563 0.104 0.1 0 0.587 0.5565 0.072 0.079 0 0.693 0.5475 0.096 0.093 0 0.8065 0.5535 0.101 0.089 0 0.9095 0.5455 0.093 0.087 0 0.055 0.6535 0.088 0.081 0 0.146 0.6585 0.092 0.081 0 0.253 0.653 0.084 0.082 0 0.3395 0.6575 0.075 0.071 0 0.54 0.648 0.102 0.094 0 0.651 0.647 0.098 0.096 0 0.7575 0.6425 0.089 0.091 0 0.8695 0.6335 0.083 0.079 0 0.114 0.748 0.098 0.092 0 0.21 0.742 0.09 0.092 0 0.294 0.7455 0.094 0.081 0 0.396 0.7465 0.118 0.103 0 0.509 0.7475 0.114 0.091 0 0.606 0.746 0.096 0.09 0 0.7155 0.74 0.097 0.082 0 0.8275 0.745 0.105 0.094 0 0.9395 0.7255 0.089 0.087 0 0.0925 0.8305 0.091 0.085 0 0.1845 0.8345 0.103 0.089 0 0.2855 0.8295 0.101 0.097 0 0.462 0.834 0.108 0.096 0 0.568 0.8365 0.096 0.095 0 0.7835 0.8285 0.079 0.073 0 0.9475 0.8825 0.095 0.101 0 0.8555 0.896 0.091 0.092 0 0.6405 0.9095 0.089 0.083 0 0.5325 0.9245 0.089 0.073 0 0.425 0.9095 0.088 0.089 0 0.2495 0.9195 0.093 0.075 0 0.15 0.913 0.092 0.084 0 0.1335 0.053 0.105 0.098 0 0.091 0.1335 0.102 0.101 0 0.045 0.228 0.082 0.096 0 0.191 0.137 0.088 0.088 0 0.137 0.2275 0.092 0.093 0 0.0915 0.3185 0.101 0.099 0 0.047 0.4115 0.086 0.087 0 0.2925 0.135 0.097 0.092 0 0.243 0.2275 0.102 0.107 0 0.199 0.327 0.11 0.112 0 0.145 0.41 0.098 0.104 0 0.099 0.5 0.082 0.076 0 0.052 0.5915 0.102 0.115 0 0.4525 0.043 0.095 0.084 0 0.399 0.128 0.096 0.096 0 0.353 0.217 0.092 0.086 0 0.3035 0.3105 0.093 0.091 0 0.258 0.422 0.096 0.098 0 0.1575 0.5855 0.101 0.093 0 0.0995 0.6895 0.097 0.093 0 0.5555 0.048 0.101 0.094 0 0.5115 0.1285 0.093 0.097 0 0.4605 0.2185 0.111 0.115 0 0.4015 0.3135 0.111 0.105 0 0.353 0.3945 0.096 0.091 0 0.254 0.5825 0.102 0.103 0 0.205 0.6785 0.106 0.103 0 0.157 0.7785 0.098 0.089 0 0.151 0.9455 0.11 0.089 0 0.2055 0.8605 0.105 0.097 0 0.2645 0.95 0.097 0.078 0 0.305 0.8425 0.102 0.097 0 0.359 0.7525 0.098 0.103 0 0.413 0.669 0.1 0.088 0 0.3565 0.581 0.097 0.098 0 0.409 0.4935 0.086 0.089 0 0.5115 0.484 0.103 0.108 0 0.513 0.305 0.098 0.1 0 0.5605 0.403 0.093 0.098 0 0.609 0.304 0.094 0.096 0 0.555 0.218 0.082 0.08 0 0.6065 0.1285 0.103 0.113 0 0.6645 0.0425 0.103 0.083 0 0.7645 0.04 0.091 0.076 0 0.864 0.0415 0.102 0.081 0 0.717 0.1235 0.104 0.097 0 0.6585 0.216 0.103 0.102 0 0.6115 0.308 0.093 0.096 0 0.923 0.1285 0.088 0.091 0 0.8655
2%|▏ | 8/486 [00:00<00:51, 9.21it/s]
0.2125 0.097 0.091 0 0.8205 0.3045 0.083 0.085 0 0.9285 0.3065 0.097 0.099 0 0.768 0.2175 0.076 0.073 0 0.7655 0.3935 0.089 0.097 0 0.72 0.4865 0.1 0.097 0 0.9155 0.469 0.117 0.11 0 0.608 0.489 0.088 0.08 0 0.667 0.5815 0.106 0.103 0 0.7765 0.5725 0.107 0.107 0 0.564 0.927 0.1 0.098 0 0.6575 0.913 0.091 0.088 0 0.7525 0.9165 0.091 0.101 0 0.853 0.9145 0.108 0.087 0 0.9195 0.8265 0.095 0.097 0 0.8055 0.832 0.105 0.092 0 0.7085 0.833 0.093 0.082 0 0.508 0.834 0.086 0.082 0 0.5625 0.745 0.105 0.092 0 0.6695 0.749 0.097 0.084 0 0.7675 0.7485 0.093 0.081 0 0.866 0.7495 0.09 0.087 0 0.62 0.6625 0.094 0.087 0 0.782 0.573 0.09 0.1 0 0.912 0.041 0.084 0.078 0 0.816 0.042 0.084 0.08 0 0.863 0.1235 0.084 0.085 0 0.955 0.122 0.082 0.084 0 0.8955 0.2065 0.069 0.069 0 0.9465 0.287 0.089 0.092 0 0.8595 0.2925 0.061 0.063 0 0.945 0.456 0.09 0.1 0 0.645 0.042 0.092 0.08 0 0.7325 0.199 0.097 0.104 0 0.777 0.295 0.086 0.086 0 0.8205 0.3735 0.087 0.087 0 0.86 0.4515 0.086 0.085 0 0.902 0.5375 0.084 0.089 0 0.9305 0.627 0.085 0.076 0 0.9635 0.702 0.073 0.084 0 0.9545 0.8705 0.083 0.093 0 0.922 0.7865 0.088 0.089 0 0.885 0.703 0.088 0.088 0 0.8465 0.6295 0.089 0.087 0 0.813 0.547 0.082 0.074 0 0.774 0.465 0.098 0.094 0 0.7275 0.3755 0.095 0.091 0 0.681 0.2985 0.082 0.073 0 0.633 0.214 0.1 0.1 0 0.59 0.131 0.078 0.074 0 0.553 0.045 0.086 0.084 0 0.46 0.0425 0.086 0.081 0 0.502 0.131 0.092 0.086 0 0.5445 0.213 0.087 0.092 0 0.5915 0.303 0.091 0.092 0 0.636 0.3785 0.09 0.077 0 0.723 0.541 0.088 0.08 0 0.3695 0.0475 0.089 0.085 0 0.4125 0.128 0.089 0.086 0 0.4575 0.216 0.089 0.1 0 0.502 0.2985 0.09 0.085 0 0.549 0.3825 0.094 0.087 0 0.582 0.4765 0.074 0.071 0 0.629 0.547 0.078 0.076 0 0.6695 0.6295 0.069 0.071 0 0.708 0.7105 0.09 0.093 0 0.796 0.708 0.096 0.086 0 0.875 0.869 0.08 0.088 0 0.9035 0.946 0.077 0.076 0 0.8175 0.9465 0.089 0.079 0 0.785 0.8665 0.094 0.083 0 0.8265 0.795 0.071 0.068 0 0.7545 0.7955 0.083 0.079 0 0.7315 0.9555 0.085 0.075 0 0.6955 0.8745 0.087 0.079 0 0.66 0.793 0.09 0.084 0 0.624 0.724 0.08 0.072 0 0.5825 0.633 0.099 0.094 0 0.5395 0.5485 0.085 0.069 0 0.498 0.4685 0.088 0.077 0 0.4605 0.3875 0.085 0.081 0 0.405 0.2915 0.1 0.103 0 0.274 0.0455 0.094 0.081 0 0.18 0.042 0.092 0.08 0 0.228 0.13 0.086 0.084 0 0.2775 0.212 0.089 0.09 0 0.326 0.296 0.092 0.092 0 0.3575 0.38 0.085 0.078 0 0.4125 0.4725 0.091 0.093 0 0.456 0.56 0.09 0.084 0 0.501 0.638 0.092 0.082 0 0.5265 0.7205 0.091 0.081 0 0.569 0.7975 0.072 0.063 0 0.5975 0.8695 0.065 0.055 0 0.6295 0.944 0.101 0.09 0 0.5485 0.954 0.087 0.08 0 0.52 0.8825 0.092 0.083 0 0.481 0.7995 0.094 0.099 0 0.425 0.72 0.094 0.078 0 0.402 0.648 0.096 0.088 0 0.3615 0.5605 0.101 0.093 0 0.324 0.4735 0.098 0.095 0 0.271 0.385 0.092 0.088 0 0.224 0.303 0.088 0.086 0 0.1815 0.2145 0.101 0.091 0 0.0795 0.2155 0.103 0.101 0 0.0415 0.1255 0.077 0.091 0 0.043 0.311 0.078 0.086 0 0.074 0.3925 0.086 0.091 0 0.1735 0.3885 0.101 0.093 0 0.1245 0.4785 0.097 0.091 0 0.2195 0.4785 0.091 0.091 0 0.057 0.731 0.106 0.104 0 0.2475 0.726 0.101 0.094 0 0.31 0.6435 0.1 0.091 0 0.108 0.8205 0.09 0.089 0 0.2015 0.8235 0.099 0.095 0 0.388 0.808 0.094 0.1 0 0.378 0.958 0.112 0.084 0 0.1375 0.7075 0.081 0.077 0 0.2225 0.705 0.079 0.076 0 0.307 0.7135 0.076 0.063 0 0.3825 0.7085 0.071 0.073 0 0.442 0.7105 0.072 0.075 0 0.517 0.7045 0.078 0.077 0 0.5885 0.707 0.069 0.07 0 0.6575 0.7135 0.081 0.059 0 0.257 0.617 0.08 0.064 0 0.356 0.633 0.078 0.078 0 0.4245 0.6395 0.087 0.071 0 0.491 0.6195 0.072 0.071 0 0.5495 0.6255 0.075 0.075 0 0.7 0.6315 0.072 0.067 0 0.7545 0.6295 0.059 0.071 0 0.808 0.6265 0.072 0.073 0
2%|▏ | 10/486 [00:00<00:46, 10.13it/s]
0.118 0.546 0.064 0.062 0 0.1765 0.623 0.059 0.054 0 0.176 0.4725 0.07 0.063 0 0.244 0.4725 0.068 0.065 0 0.3035 0.5425 0.093 0.091 0 0.517 0.557 0.07 0.062 0 0.592 0.5545 0.08 0.071 0 0.662 0.561 0.068 0.072 0 0.7255 0.561 0.071 0.076 0 0.696 0.4865 0.076 0.077 0 0.4925 0.4855 0.073 0.073 0 0.223 0.399 0.068 0.064 0 0.2875 0.401 0.055 0.05 0 0.365 0.4085 0.066 0.061 0 0.588 0.4095 0.072 0.059 0 0.664 0.412 0.066 0.062 0 0.255 0.3215 0.066 0.059 0 0.1645 0.187 0.063 0.072 0 0.232 0.1765 0.066 0.067 0 0.3985 0.1945 0.075 0.065 0 0.837 0.9225 0.086 0.077 0 0.7315 0.919 0.095 0.09 0 0.6295 0.9175 0.099 0.091 0 0.5385 0.9125 0.093 0.091 0 0.449 0.912 0.098 0.092 0 0.361 0.911 0.088 0.086 0 0.2675 0.904 0.095 0.086 0 0.0985 0.901 0.097 0.078 0 0.0455 0.815 0.085 0.078 0 0.2235 0.8125 0.103 0.087 0 0.321 0.821 0.098 0.09 0 0.405 0.816 0.094 0.082 0 0.497 0.826 0.102 0.082 0 0.584 0.8175 0.1 0.089 0 0.688 0.826 0.094 0.084 0 0.785 0.8245 0.096 0.085 0 0.886 0.819 0.094 0.088 0 0.853 0.7405 0.1 0.083 0 0.0865 0.7335 0.085 0.075 0 0.2345 0.6535 0.101 0.083 0 0.5085 0.6495 0.089 0.079 0 0.6115 0.6565 0.089 0.075 0 0.702 0.6505 0.08 0.077 0 0.811 0.654 0.088 0.082 0 0.9155 0.6615 0.093 0.079 0 0.956 0.576 0.084 0.086 0 0.8625 0.579 0.085 0.078 0 0.765 0.57 0.092 0.082 0 0.655 0.5495 0.104 0.091 0 0.576 0.5705 0.078 0.077 0 0.387 0.566 0.08 0.072 0 0.269 0.5575 0.092 0.085 0 0.1805 0.545 0.093 0.092 0 0.259 0.4785 0.092 0.085 0 0.444 0.4755 0.082 0.081 0 0.5325 0.4785 0.097 0.091 0 0.713 0.47 0.094 0.088 0 0.8185 0.487 0.079 0.084 0 0.916 0.4865 0.09 0.077 0 0.888 0.3995 0.08 0.081 0 0.7775 0.4025 0.083 0.083 0 0.6765 0.3955 0.097 0.091 0 0.4935 0.389 0.091 0.088 0 0.261 0.318 0.092 0.086 0 0.36 0.3045 0.08 0.075 0 0.437 0.3015 0.086 0.085 0 0.5355 0.3025 0.095 0.091 0 0.645 0.3095 0.094 0.091 0 0.734 0.2955 0.094 0.089 0 0.8345 0.313 0.089 0.088 0 0.9365 0.3275 0.083 0.079 0 0.8935 0.246 0.067 0.064 0 0.7865 0.243 0.077 0.07 0 0.5945 0.2215 0.109 0.105 0 0.3005 0.2335 0.089 0.083 0 0.25 0.152 0.09 0.084 0 0.452 0.1495 0.09 0.077 0 0.398 0.2285 0.084 0.073 0 0.6015 0.067 0.069 0.066 0 0.6955 0.063 0.089 0.092 0 0.79 0.082 0.102 0.086 0 0.9255 0.151 0.089 0.092 0 0.961 0.233 0.078 0.098 0 0.8405 0.161 0.083 0.088 0 0.6485 0.1475 0.091 0.091 0 0.045 0.116 0.076 0.08 0 0.138 0.1115 0.086 0.089 0 0.2815 0.039 0.093 0.074 0 0.238 0.1165 0.084 0.095 0 0.194 0.1885 0.09 0.089 0 0.0915 0.203 0.079 0.084 0 0.0525 0.282 0.077 0.07 0 0.1445 0.2845 0.077 0.077 0 0.098 0.3655 0.082 0.087 0 0.047 0.4435 0.074 0.083 0 0.0905 0.5265 0.083 0.091 0 0.1515 0.4375 0.079 0.081 0 0.1905 0.363 0.077 0.072 0 0.382 0.047 0.092 0.084 0 0.3305 0.1225 0.081 0.089 0 0.2935 0.2015 0.081 0.081 0 0.4805 0.041 0.085 0.078 0 0.433 0.121 0.084 0.082 0 0.383 0.2075 0.078 0.083 0 0.33 0.2915 0.086 0.085 0 0.2925 0.36 0.091 0.082 0 0.2405 0.4485 0.079 0.081 0 0.205 0.5275 0.088 0.091 0 0.1505 0.6025 0.071 0.073 0 0.091 0.686 0.078 0.07 0 0.0495 0.769 0.083 0.084 0 0.0465 0.9335 0.079 0.085 0 0.0945 0.856 0.081 0.08 0 0.1475 0.772 0.079 0.086 0 0.1945 0.68 0.085 0.084 0 0.235 0.6135 0.086 0.073 0 0.1445 0.9425 0.079 0.077 0 0.1885 0.86 0.069 0.066 0 0.2365 0.7785 0.077 0.073 0 0.3145 0.6095 0.093 0.093 0 0.327 0.4485 0.096 0.089 0 0.3785 0.3735 0.083 0.083 0 0.472 0.21 0.094 0.092 0 0.5675 0.051 0.075 0.07 0 0.6635 0.047 0.089 0.082 0 0.763 0.049 0.086 0.08 0 0.86 0.05 0.088 0.086 0 0.7145 0.131 0.083 0.082 0 0.807 0.137 0.084 0.09 0 0.9065 0.134 0.085 0.082 0 0.552 0.2015 0.074 0.085 0 0.6745 0.21 0.085 0.082 0 0.766 0.2165 0.072 0.079 0
2%|▏ | 12/486 [00:01<00:50, 9.37it/s]
0.8635 0.217 0.077 0.084 0 0.5225 0.284 0.075 0.07 0 0.6165 0.301 0.057 0.066 0 0.706 0.2945 0.098 0.093 0 0.813 0.301 0.082 0.082 0 0.904 0.305 0.082 0.082 0 0.467 0.3735 0.086 0.085 0 0.5645 0.3775 0.079 0.075 0 0.6655 0.3815 0.083 0.079 0 0.7605 0.383 0.085 0.08 0 0.855 0.388 0.084 0.086 0 0.9475 0.3955 0.073 0.077 0 0.431 0.453 0.082 0.076 0 0.522 0.454 0.088 0.078 0 0.616 0.4565 0.082 0.081 0 0.717 0.4665 0.08 0.075 0 0.897 0.471 0.072 0.066 0 0.373 0.524 0.088 0.088 0 0.47 0.5315 0.084 0.081 0 0.425 0.613 0.078 0.082 0 0.521 0.618 0.084 0.084 0 0.61 0.622 0.07 0.068 0 0.795 0.633 0.064 0.062 0 0.383 0.6955 0.076 0.087 0 0.4595 0.6955 0.079 0.075 0 0.56 0.702 0.078 0.072 0 0.6605 0.703 0.101 0.088 0 0.761 0.707 0.088 0.084 0 0.8545 0.7135 0.079 0.081 0 0.94 0.7145 0.078 0.073 0 0.559 0.535 0.082 0.074 0 0.6605 0.535 0.101 0.082 0 0.762 0.546 0.084 0.078 0 0.8505 0.548 0.089 0.086 0 0.9405 0.5535 0.093 0.083 0 0.337 0.78 0.086 0.084 0 0.5155 0.7785 0.075 0.071 0 0.6085 0.787 0.075 0.076 0 0.6955 0.7965 0.071 0.065 0 0.8895 0.794 0.081 0.076 0 0.28 0.8625 0.082 0.083 0 0.3835 0.856 0.079 0.076 0 0.5655 0.87 0.077 0.072 0 0.8375 0.8795 0.079 0.075 0 0.932 0.8845 0.074 0.077 0 0.2385 0.937 0.085 0.078 0 0.336 0.94 0.084 0.078 0 0.4305 0.946 0.093 0.09 0 0.525 0.956 0.088 0.076 0 0.616 0.953 0.092 0.076 0 0.7105 0.9565 0.089 0.083 0 0.799 0.9595 0.076 0.071 0 0.8855 0.964 0.075 0.064 0 0.1385 0.1135 0.079 0.073 0 0.1885 0.2 0.077 0.076 0 0.337 0.113 0.092 0.084 0 0.2955 0.196 0.101 0.092 0 0.378 0.204 0.076 0.078 0 0.4255 0.1225 0.085 0.081 0 0.476 0.038 0.082 0.074 0 0.5705 0.0405 0.083 0.077 0 0.6645 0.0435 0.087 0.075 0 0.751 0.0445 0.078 0.079 0 0.8345 0.0445 0.077 0.073 0 0.9215 0.0515 0.083 0.073 0 0.9645 0.1395 0.071 0.081 0 0.88 0.1345 0.078 0.067 0 0.701 0.1265 0.086 0.081 0 0.6135 0.1245 0.083 0.081 0 0.525 0.124 0.09 0.082 0 0.479 0.2035 0.088 0.081 0 0.5705 0.2125 0.083 0.077 0 0.6505 0.2145 0.077 0.079 0 0.7385 0.2175 0.079 0.081 0 0.912 0.2135 0.078 0.075 0 0.038 0.2865 0.074 0.085 0 0.194 0.0335 0.084 0.065 0 0.084 0.3735 0.088 0.079 0 0.1805 0.3735 0.079 0.071 0 0.23 0.2915 0.078 0.073 0 0.2785 0.374 0.073 0.076 0 0.4245 0.2965 0.089 0.077 0 0.3755 0.3775 0.077 0.075 0 0.6095 0.295 0.079 0.082 0 0.6895 0.3 0.079 0.08 0 0.7715 0.2955 0.069 0.071 0 0.8545 0.2935 0.079 0.071 0 0.558 0.3875 0.086 0.079 0 0.7445 0.386 0.091 0.08 0 0.8245 0.38 0.081 0.082 0 0.9105 0.3805 0.081 0.077 0 0.0415 0.4655 0.075 0.083 0 0.1295 0.454 0.075 0.074 0 0.225 0.459 0.086 0.082 0 0.329 0.464 0.078 0.076 0 0.502 0.4615 0.076 0.077 0 0.6785 0.454 0.079 0.082 0 0.769 0.463 0.074 0.07 0 0.862 0.4645 0.08 0.081 0 0.9495 0.461 0.091 0.08 0 0.076 0.532 0.062 0.066 0 0.1885 0.5595 0.071 0.065 0 0.276 0.548 0.078 0.076 0 0.36 0.546 0.088 0.078 0 0.453 0.54 0.072 0.068 0 0.637 0.5385 0.074 0.075 0 0.728 0.545 0.084 0.078 0 0.8125 0.5415 0.081 0.079 0 0.894 0.544 0.074 0.074 0 0.038 0.627 0.072 0.084 0 0.1265 0.6255 0.083 0.083 0 0.22 0.6295 0.084 0.079 0 0.5045 0.624 0.079 0.08 0 0.585 0.6275 0.088 0.079 0 0.676 0.623 0.084 0.08 0 0.9355 0.619 0.089 0.078 0 0.847 0.619 0.074 0.07 0 0.404 0.6185 0.082 0.081 0 0.1055 0.052 0.085 0.08 0 0.19 0.061 0.08 0.076 0 0.2745 0.064 0.079 0.074 0 0.444 0.071 0.086 0.074 0 0.541 0.0725 0.078 0.075 0 0.631 0.081 0.084 0.074 0 0.845 0.0845 0.08 0.073 0 0.93
3%|▎ | 13/486 [00:01<00:50, 9.32it/s]
0.0835 0.08 0.079 0 0.054 0.139 0.07 0.076 0 0.1255 0.1415 0.073 0.075 0 0.2165 0.144 0.073 0.07 0 0.3955 0.143 0.065 0.068 0 0.485 0.1595 0.078 0.069 0 0.566 0.1605 0.068 0.065 0 0.6385 0.159 0.067 0.072 0 0.725 0.164 0.074 0.072 0 0.799 0.1685 0.072 0.071 0 0.882 0.165 0.084 0.08 0 0.094 0.2185 0.076 0.079 0 0.1815 0.224 0.081 0.08 0 0.264 0.225 0.066 0.07 0 0.3435 0.228 0.079 0.078 0 0.045 0.3005 0.082 0.077 0 0.283 0.312 0.074 0.07 0 0.389 0.3025 0.078 0.073 0 0.461 0.312 0.072 0.078 0 0.621 0.316 0.082 0.08 0 0.6925 0.237 0.065 0.06 0 0.826 0.2425 0.078 0.067 0 0.913 0.2435 0.076 0.073 0 0.712 0.326 0.074 0.072 0 0.7825 0.316 0.077 0.084 0 0.8565 0.3195 0.065 0.069 0 0.943 0.3195 0.082 0.085 0 0.259 0.387 0.076 0.078 0 0.3335 0.3865 0.069 0.073 0 0.4205 0.3935 0.091 0.085 0 0.501 0.394 0.076 0.076 0 0.581 0.3965 0.078 0.073 0 0.6515 0.3945 0.069 0.077 0 0.728 0.3905 0.084 0.077 0 0.814 0.399 0.086 0.084 0 0.897 0.3975 0.082 0.085 0 0.0405 0.463 0.073 0.078 0 0.114 0.4625 0.078 0.069 0 0.3715 0.4685 0.083 0.075 0 0.4485 0.469 0.071 0.07 0 0.522 0.4645 0.072 0.073 0 0.6055 0.47 0.083 0.082 0 0.6765 0.4745 0.069 0.077 0 0.766 0.474 0.078 0.07 0 0.852 0.4725 0.078 0.069 0 0.9345 0.478 0.079 0.078 0 0.0725 0.5405 0.077 0.073 0 0.1465 0.55 0.077 0.078 0 0.3295 0.546 0.087 0.078 0 0.483 0.5415 0.082 0.071 0 0.5575 0.5475 0.075 0.069 0 0.637 0.55 0.082 0.076 0 0.791 0.552 0.08 0.08 0 0.878 0.5525 0.08 0.085 0 0.264 0.6225 0.086 0.079 0 0.3595 0.6265 0.089 0.081 0 0.5055 0.6255 0.085 0.075 0 0.757 0.624 0.082 0.076 0 0.8315 0.6295 0.063 0.069 0 0.9105 0.6295 0.083 0.071 0 0.806 0.945 0.09 0.086 0 0.705 0.942 0.082 0.08 0 0.604 0.942 0.094 0.088 0 0.5055 0.933 0.091 0.088 0 0.4115 0.937 0.087 0.084 0 0.3055 0.918 0.113 0.1 0 0.185 0.9255 0.1 0.085 0 0.8805 0.8615 0.093 0.093 0 0.667 0.861 0.08 0.08 0 0.556 0.8465 0.1 0.095 0 0.4475 0.8465 0.113 0.093 0 0.3495 0.844 0.093 0.084 0 0.1345 0.829 0.103 0.088 0 0.089 0.7355 0.112 0.083 0 0.204 0.7525 0.094 0.093 0 0.298 0.7485 0.1 0.093 0 0.414 0.7555 0.112 0.089 0 0.608 0.761 0.104 0.092 0 0.8085 0.779 0.103 0.092 0 0.9385 0.688 0.097 0.096 0 0.8485 0.693 0.095 0.092 0 0.7525 0.6755 0.097 0.095 0 0.652 0.676 0.098 0.092 0 0.4705 0.6695 0.101 0.087 0 0.3545 0.663 0.105 0.094 0 0.2485 0.6545 0.101 0.091 0 0.139 0.6475 0.096 0.085 0 0.798 0.5905 0.104 0.099 0 0.696 0.586 0.09 0.088 0 0.613 0.598 0.082 0.076 0 0.516 0.5865 0.094 0.083 0 0.2985 0.567 0.105 0.084 0 0.176 0.561 0.096 0.086 0 0.767 0.4985 0.088 0.075 0 0.4485 0.493 0.099 0.092 0 0.336 0.4855 0.108 0.091 0 0.2205 0.473 0.105 0.096 0 0.4985 0.3895 0.109 0.103 0 0.3915 0.3895 0.091 0.087 0 0.2745 0.388 0.109 0.104 0 0.1615 0.3685 0.115 0.109 0 0.1145 0.269 0.119 0.1 0 0.332 0.2865 0.106 0.095 0 0.6545 0.3225 0.093 0.087 0 0.7825 0.2305 0.093 0.099 0 0.7315 0.127 0.107 0.1 0 0.5945 0.2165 0.121 0.115 0 0.5415 0.125 0.111 0.102 0 0.5955 0.0475 0.111 0.093 0 0.4365 0.118 0.097 0.098 0 0.333 0.127 0.106 0.106 0 0.224 0.1115 0.106 0.107 0 0.087 0.185 0.12 0.082 0 0.7785 0.555 0.085 0.086 0 0.826 0.474 0.088 0.086 0 0.668 0.5565 0.088 0.079 0 0.5795 0.5525 0.079 0.075 0 0.725 0.471 0.088 0.08 0 0.621 0.477 0.1 0.084 0 0.4635 0.5385 0.095 0.067 0 0.345 0.554 0.1 0.094 0 0.2375 0.5515 0.087 0.077 0 0.131 0.541 0.102 0.074 0 0.1785 0.464 0.097 0.082 0 0.29 0.4705 0.112 0.089 0 0.67 0.3855 0.09 0.081 0 0.5575 0.397 0.087 0.084 0 0.445 0.3805 0.088 0.077 0 0.3425 0.3815 0.105 0.101 0 0.233 0.377 0.108 0.092 0 0.126 0.367 0.092 0.084 0 0.08 0.2715 0.096 0.087 0 0.184 0.283 0.1 0.094 0 0.2815 0.2805 0.101 0.099 0 0.3915 0.2865 0.105 0.089 0 0.5115 0.2865 0.107 0.089 0 0.6735 0.203 0.097 0.086 0 0.57 0.203 0.1 0.094 0 0.453 0.1995 0.084 0.083 0 0.3395 0.1985 0.103 0.093 0 0.2315 0.1935 0.079 0.073 0 0.131 0.1845 0.104 0.097 0 0.176 0.102 0.106 0.09 0 0.282 0.102 0.104 0.094 0 0.4005 0.106 0.099 0.09 0 0.5205 0.106 0.095 0.1 0 0.6115
3%|▎ | 15/486 [00:01<00:43, 10.81it/s]
0.1205 0.085 0.081 0 0.716 0.129 0.102 0.086 0 0.91 0.137 0.082 0.08 0 0.9395 0.0365 0.087 0.069 0 0.66 0.043 0.112 0.084 0 0.053 0.037 0.094 0.072 0 0.1225 0.1065 0.085 0.087 0 0.1135 0.191 0.087 0.096 0 0.209 0.09 0.094 0.098 0 0.306 0.0915 0.088 0.095 0 0.395 0.078 0.09 0.09 0 0.277 0.179 0.094 0.096 0 0.368 0.1715 0.09 0.099 0 0.446 0.1515 0.078 0.087 0 0.5615 0.053 0.079 0.084 0 0.537 0.143 0.084 0.086 0 0.7345 0.0985 0.089 0.085 0 0.832 0.0735 0.09 0.085 0 0.8095 0.17 0.087 0.08 0 0.7045 0.1775 0.089 0.083 0 0.609 0.209 0.086 0.076 0 0.878 0.244 0.094 0.102 0 0.783 0.266 0.094 0.098 0 0.6785 0.2815 0.085 0.081 0 0.5815 0.302 0.103 0.096 0 0.3275 0.2775 0.077 0.075 0 0.7435 0.368 0.095 0.088 0 0.9285 0.336 0.093 0.096 0 0.3015 0.363 0.075 0.064 0 0.457 0.4175 0.08 0.079 0 0.2905 0.436 0.075 0.074 0 0.3575 0.5115 0.085 0.089 0 0.432 0.5125 0.072 0.071 0 0.5285 0.486 0.101 0.1 0 0.418 0.593 0.096 0.084 0 0.592 0.5695 0.092 0.089 0 0.6875 0.5425 0.081 0.073 0 0.7735 0.522 0.089 0.086 0 0.8655 0.512 0.085 0.096 0 0.9625 0.4125 0.075 0.087 0 0.9185 0.5725 0.091 0.085 0 0.561 0.653 0.102 0.082 0 0.6665 0.6355 0.095 0.093 0 0.7485 0.618 0.083 0.078 0 0.5525 0.733 0.107 0.102 0 0.7145 0.7095 0.093 0.091 0 0.808 0.6915 0.088 0.087 0 0.8995 0.679 0.093 0.086 0 0.862 0.742 0.088 0.08 0 0.936 0.9275 0.09 0.075 0 0.8525 0.9485 0.085 0.079 0 0.783 0.9545 0.078 0.081 0 0.8875 0.86 0.091 0.084 0 0.796 0.8805 0.084 0.071 0 0.6585 0.9195 0.091 0.079 0 0.7765 0.812 0.079 0.072 0 0.6935 0.8345 0.081 0.079 0 0.5305 0.864 0.089 0.076 0 0.957 0.6965 0.074 0.083 0 0.878 0.713 0.074 0.072 0 0.789 0.7335 0.094 0.087 0 0.659 0.7645 0.086 0.075 0 0.558 0.7795 0.084 0.079 0 0.9205 0.6195 0.087 0.077 0 0.762 0.6585 0.086 0.081 0 0.6835 0.673 0.071 0.078 0 0.6065 0.69 0.087 0.092 0 0.5125 0.7165 0.091 0.095 0 0.417 0.73 0.09 0.078 0 0.2775 0.6845 0.093 0.087 0 0.37 0.6595 0.086 0.077 0 0.4585 0.6315 0.083 0.075 0 0.7 0.5915 0.094 0.079 0 0.804 0.5595 0.088 0.091 0 0.9415 0.537 0.091 0.072 0 0.219 0.6085 0.09 0.087 0 0.2925 0.5785 0.075 0.071 0 0.4035 0.5605 0.091 0.083 0 0.4935 0.546 0.085 0.078 0 0.5745 0.531 0.087 0.07 0 0.742 0.493 0.092 0.078 0 0.9065 0.47 0.087 0.078 0 0.153 0.5305 0.1 0.081 0 0.245 0.509 0.088 0.062 0 0.336 0.489 0.094 0.08 0 0.435 0.4725 0.092 0.085 0 0.531 0.456 0.1 0.088 0 0.5435 0.3675 0.077 0.069 0 0.46 0.385 0.084 0.084 0 0.286 0.42 0.082 0.072 0 0.2055 0.439 0.089 0.074 0 0.103 0.461 0.076 0.072 0 0.056 0.3855 0.086 0.083 0 0.2295 0.3495 0.097 0.083 0 0.4015 0.3175 0.087 0.075 0 0.499 0.291 0.084 0.074 0 0.5775 0.2775 0.083 0.079 0 0.784 0.399 0.076 0.084 0 0.8525 0.3925 0.063 0.073 0 0.929 0.3805 0.084 0.077 0 0.899 0.2925 0.084 0.083 0 0.811 0.316 0.086 0.072 0 0.7175 0.333 0.089 0.076 0 0.6695 0.2565 0.081 0.081 0 0.7505 0.2325 0.073 0.079 0 0.922 0.206 0.094 0.074 0 0.869 0.1375 0.074 0.077 0 0.787 0.149 0.084 0.086 0 0.702 0.164 0.08 0.076 0 0.6185 0.181 0.087 0.09 0 0.528 0.2015 0.076 0.077 0 0.4395 0.215 0.091 0.084 0 0.3495 0.2415 0.089 0.085 0 0.2605 0.2575 0.081
4%|▍ | 19/486 [00:01<00:41, 11.18it/s]
0.079 0 0.1705 0.273 0.091 0.09 0 0.115 0.206 0.084 0.086 0 0.905 0.051 0.086 0.084 0 0.8255 0.0615 0.081 0.077 0 0.743 0.0725 0.08 0.079 0 0.661 0.092 0.092 0.082 0 0.5595 0.1115 0.093 0.077 0 0.474 0.128 0.09 0.086 0 0.384 0.1495 0.092 0.083 0 0.2325 0.099 0.091 0.084 0 0.327 0.0745 0.082 0.081 0 0.413 0.0505 0.072 0.069 0 0.504 0.04 0.086 0.078 0 0.061 0.135 0.078 0.078 0 0.0935 0.0385 0.081 0.075 0 0.472 0.046 0.082 0.084 0 0.524 0.1035 0.076 0.075 0 0.6 0.0835 0.07 0.063 0 0.683 0.059 0.076 0.07 0 0.752 0.0445 0.078 0.069 0 0.8195 0.0345 0.069 0.067 0 0.936 0.0785 0.094 0.077 0 0.839 0.096 0.072 0.062 0 0.782 0.118 0.066 0.06 0 0.7235 0.13 0.069 0.07 0 0.6615 0.1485 0.073 0.071 0 0.884 0.1485 0.074 0.067 0 0.867 0.2305 0.074 0.069 0 0.787 0.2505 0.094 0.075 0 0.709 0.2735 0.088 0.075 0 0.5365 0.268 0.087 0.074 0 0.587 0.31 0.086 0.078 0 0.612 0.377 0.086 0.074 0 0.756 0.338 0.08 0.072 0 0.838 0.314 0.096 0.076 0 0.968 0.4055 0.064 0.083 0 0.8945 0.427 0.077 0.074 0 0.7945 0.3965 0.085 0.067 0 0.817 0.456 0.08 0.074 0 0.6315 0.5115 0.075 0.071 0 0.7795 0.595 0.069 0.064 0 0.1675 0.041 0.089 0.078 0 0.0725 0.1575 0.083 0.081 0 0.146 0.117 0.082 0.08 0 0.055 0.2535 0.086 0.083 0 0.046 0.3385 0.08 0.075 0 0.1385 0.2135 0.089 0.091 0 0.212 0.1745 0.074 0.077 0 0.2275 0.092 0.081 0.082 0 0.308 0.0465 0.09 0.091 0 0.3755 0.098 0.083 0.086 0 0.2935 0.142 0.085 0.084 0 0.3615 0.1785 0.069 0.067 0 0.274 0.2275 0.078 0.077 0 0.036 0.432 0.066 0.088 0 0.1015 0.3955 0.079 0.073 0 0.1785 0.3545 0.083 0.083 0 0.2605 0.322 0.091 0.086 0 0.344 0.288 0.086 0.09 0 0.4125 0.2375 0.075 0.081 0 0.483 0.204 0.078 0.08 0 0.564 0.171 0.094 0.092 0 0.575 0.0885 0.106 0.093 0 0.7025 0.0985 0.079 0.071 0 0.7865 0.0725 0.077 0.075 0 0.8555 0.0375 0.077 0.067 0 0.846 0.1215 0.082 0.085 0 0.77 0.154 0.084 0.078 0 0.6375 0.228 0.099 0.092 0 0.5505 0.268 0.089 0.08 0 0.245 0.416 0.08 0.082 0 0.167 0.4445 0.078 0.075 0 0.076 0.488 0.08 0.082 0 0.0635 0.569 0.087 0.092 0 0.1425 0.536 0.081 0.074 0 0.222 0.502 0.072 0.062 0 0.3005 0.459 0.091 0.084 0 0.043 0.6565 0.078 0.071 0 0.0445 0.747 0.083 0.098 0 0.115 0.712 0.084 0.098 0 0.1855 0.6755 0.065 0.063 0 0.205 0.5895 0.088 0.079 0 0.269 0.6375 0.094 0.091 0 0.292 0.542 0.086 0.082 0 0.371 0.508 0.072 0.068 0 0.4555 0.4015 0.095 0.085 0 0.5265 0.3455 0.091 0.081 0 0.6115 0.313 0.097 0.084 0 0.695 0.2775 0.074 0.079 0 0.7605 0.2405 0.081 0.085 0 0.835 0.203 0.08 0.08 0 0.9555 0.2225 0.079 0.089 0 0.8905 0.261 0.079 0.076 0 0.9415 0.314 0.079 0.08 0 0.8595 0.3445 0.081 0.077 0 0.783 0.3845 0.074 0.075 0 0.605 0.3975 0.082 0.077 0 0.5025 0.517 0.095 0.092 0 0.419 0.5695 0.092 0.091 0 0.4795 0.627 0.077 0.07 0 0.2565 0.732 0.087 0.084 0 0.172 0.7685 0.07 0.071 0 0.143 0.9375 0.098 0.093 0 0.2765 0.949 0.091 0.094 0 0.319 0.776 0.088 0.09 0 0.385 0.738 0.072 0.074 0 0.448 0.7915 0.084 0.085 0 0.442 0.8825 0.092 0.097 0 0.459 0.7005 0.076 0.077 0 0.526 0.7605 0.08 0.075 0 0.586 0.808 0.084 0.074 0 0.6315 0.9395 0.093 0.083 0 0.6155 0.6365 0.093 0.081 0 0.696 0.5045 0.086 0.089 0 0.737 0.9345 0.082 0.083 0 0.807 0.8915 0.082 0.089 0 0.9115 0.8865 0.077 0.083 0 0.735 0.6375 0.078 0.073 0 0.756 0.5575 0.078 0.071 0 0.8165 0.6065 0.077 0.071 0 0.9035 0.6865 0.083 0.075 0 0.8335 0.5245 0.087 0.085 0 0.847 0.442 0.084 0.08 0 0.219 0.104 0.09 0.1 0 0.32 0.072 0.084 0.076 0 0.4255 0.041 0.087 0.08 0 0.2035 0.209 0.091 0.094 0 0.3085 0.174 0.109 0.11 0 0.1805 0.32 0.103 0.102 0 0.284 0.2875 0.092 0.095 0 0.3735 0.254 0.091 0.096 0 0.4765 0.2215 0.089 0.095 0 0.163 0.43 0.086 0.078 0 0.265 0.39 0.104 0.102 0 0.362 0.363 0.098 0.098 0 0.4595 0.326 0.103 0.1 0 0.1475 0.532 0.101 0.096 0 0.2435 0.4915 0.093 0.101 0 0.338 0.4695 0.098 0.095 0 0.4355 0.4355 0.099 0.101 0 0.5315 0.4065 0.103 0.099 0 0.2235 0.606 0.081 0.08 0 0.3155 0.578 0.081 0.076 0 0.4175 0.5535 0.077 0.073 0 0.51 0.504 0.092 0.09 0 0.607 0.4755 0.098 0.091 0 0.593 0.0835 0.094 0.103 0 0.692 0.0565 0.096 0.091 0 0.6665 0.1585 0.103 0.103 0 0.767 0.124 0.098 0.104 0 0.8555 0.0935 0.091 0.101 0 0.9495 0.0595 0.095 0.105 0 0.938 0.1675 0.098 0.101 0 0.839 0.196 0.1 0.092 0 0.7395 0.2315 0.081 0.073 0 0.651 0.26 0.09 0.096 0 0.7165 0.3405 0.099 0.103 0 0.815 0.3025 0.096 0.109 0 0.9085 0.2755 0.097 0.105 0 0.9615 0.346 0.077 0.1 0 0.8775 0.3815 0.095 0.103 0 0.792 0.408 0.09 0.084 0 0.9515 0.4495 0.097 0.097 0 0.7705 0.5165 0.095 0.097 0 0.576 0.593 0.082 0.082 0 0.4895 0.6185 0.083 0.081 0 0.393 0.652 0.082 0.074 0 0.3015 0.6785 0.093 0.089 0 0.2045 0.713 0.097 0.09 0 0.9325 0.5565 0.089 0.091 0 0.8425 0.5865 0.081 0.077 0 0.75 0.6195 0.09 0.091 0 0.6565 0.6495 0.087 0.081 0 0.467 0.7175 0.108 0.099 0 0.377 0.7505 0.082 0.087 0 0.284 0.787 0.106 0.104 0 0.1815 0.8175 0.081 0.081 0 0.168 0.923 0.088 0.1 0 0.2635 0.8885 0.093 0.087 0 0.355 0.859 0.09 0.098 0 0.444 0.8225 0.086 0.079 0 0.6345 0.7525 0.101 0.097 0 0.7295 0.724 0.105 0.11 0 0.82 0.6905 0.084 0.087 0 0.9085 0.656 0.081 0.082 0 0.8955 0.753 0.093 0.102 0 0.7995 0.787 0.091 0.084 0 0.7045 0.8215 0.083 0.079 0 0.612 0.84 0.096 0.082 0 0.5275 0.887 0.103 0.104 0 0.4305 0.9195 0.089 0.097 0 0.3365 0.9575 0.081 0.079 0 0.598 0.9565 0.08 0.075 0 0.779 0.8855 0.1 0.095 0 0.954 0.832 0.066 0.074 0 0.933 0.9255 0.098 0.105 0 0.8405 0.958 0.081 0.074 0 0.106 0.106 0.102 0.098 0 0.1935 0.081 0.075 0.096 0 0.282 0.052 0.09 0.092 0 0.088 0.2125 0.104 0.097 0 0.1695 0.184 0.075 0.082 0 0.254 0.159 0.076 0.08 0 0.3375 0.1335 0.079 0.077 0 0.4295 0.099 0.095 0.09 0 0.5165 0.0685 0.077 0.089 0 0.6015 0.0465 0.101 0.089 0 0.058 0.3195 0.086 0.095 0 0.1425 0.286 0.087 0.082 0 0.239 0.259 0.094 0.096 0 0.321 0.2295 0.084 0.087 0 0.4085 0.195 0.103 0.098 0 0.4945 0.1705 0.085 0.093 0 0.5705 0.141 0.081 0.09 0 0.737 0.0885 0.094 0.089 0 0.211 0.358 0.084 0.078 0 0.294 0.329 0.092 0.086 0 0.3835 0.2975 0.103 0.099 0 0.4755 0.267 0.093 0.092 0 0.558 0.2395 0.09 0.081 0 0.6305 0.215 0.083 0.096 0 0.1045 0.4895 0.093 0.089 0 0.1865 0.468 0.077 0.074 0 0.362 0.4055 0.09 0.089 0 0.4455 0.3725 0.079 0.081 0 0.528 0.335 0.086 0.092 0 0.083 0.595 0.068 0.078 0 0.1635 0.5605 0.085 0.089 0 0.2525 0.5295 0.073 0.065 0 0.336 0.5 0.1 0.098 0 0.4185 0.48 0.079 0.078 0 0.5775 0.414 0.085 0.088 0 0.0625 0.6905 0.083 0.085 0 0.1515 0.6625 0.089 0.093 0 0.229 0.6295 0.084 0.091 0 0.308 0.602 0.084 0.082 0 0.402 0.573 0.094 0.092 0 0.481 0.544 0.096 0.096 0 0.0425 0.788 0.075 0.074 0 0.121 0.7595 0.086 0.091 0 0.2095 0.7295 0.087 0.097 0 0.293 0.6905 0.08 0.085 0 0.371 0.665 0.086 0.082 0 0.11 0.857 0.09 0.088 0 0.191 0.826 0.092 0.082 0 0.345 0.764 0.078 0.074 0 0.428 0.731 0.074 0.072 0 0.5105 0.702 0.081 0.082 0 0.0785 0.9565 0.075 0.079 0 0.1635 0.9245 0.093 0.093 0 0.2525 0.8945 0.073 0.079 0 0.298 0.9565 0.072 0.069 0 0.377 0.9265 0.088 0.085 0 0.462 0.893 0.086 0.09 0 0.515 0.9565 0.074 0.079 0 0.592 0.9265 0.084 0.085 0 0.5375 0.863 0.083 0.078 0 0.488 0.799 0.086 0.088 0 0.6715 0.899 0.087 0.1 0 0.6175 0.837 0.087 0.088 0 0.559 0.7655 0.072 0.067 0 0.739 0.8655 0.088 0.085 0 0.69 0.8015 0.09 0.081 0 0.932 0.8715 0.074 0.077 0 0.8685 0.8075 0.079 0.079 0 0.828 0.744 0.072 0.076 0 0.726 0.712 0.084 0.092 0 0.664 0.6475 0.088 0.083 0 0.6125 0.584 0.077 0.08 0 0.5695 0.501 0.091 0.082 0 0.9475 0.7845 0.073 0.073 0 0.9095 0.7085 0.079 0.081 0 0.807 0.677 0.076 0.078 0 0.749 0.612 0.09 0.092 0 0.6815 0.55 0.079 0.08 0 0.6385 0.481 0.077 0.076 0 0.762 0.525 0.068 0.07 0 0.7075 0.457 0.077 0.08 0 0.6595 0.389 0.081 0.08 0 0.6085 0.3135 0.085 0.083 0 0.9185 0.6215 0.083 0.077 0 0.885 0.565 0.076 0.084 0 0.8365 0.491 0.073 0.072 0 0.7875 0.4205 0.081 0.075 0 0.7365 0.3585 0.075 0.087
4%|▍ | 21/486 [00:02<00:44, 10.40it/s]
0 0.0545 0.0535 0.079 0.081 0 0.0465 0.1505 0.085 0.075 0 0.144 0.0315 0.08 0.059 0 0.1175 0.117 0.065 0.064 0 0.2005 0.087 0.089 0.082 0 0.283 0.051 0.082 0.082 0 0.3605 0.0345 0.071 0.059 0 0.1015 0.215 0.087 0.084 0 0.187 0.1805 0.086 0.083 0 0.2585 0.1435 0.075 0.085 0 0.3355 0.1155 0.079 0.077 0 0.424 0.084 0.088 0.09 0 0.0795 0.303 0.087 0.088 0 0.161 0.274 0.084 0.08 0 0.2425 0.248 0.077 0.084 0 0.3205 0.204 0.063 0.07 0 0.391 0.177 0.088 0.082 0 0.474 0.1455 0.074 0.073 0 0.5415 0.1115 0.077 0.079 0 0.6185 0.0865 0.067 0.069 0 0.687 0.0505 0.086 0.081 0 0.6695 0.1395 0.067 0.063 0 0.7345 0.1175 0.073 0.067 0 0.806 0.0835 0.076 0.075 0 0.8775 0.0505 0.085 0.077 0 0.8485 0.1435 0.069 0.067 0 0.7725 0.168 0.067 0.06 0 0.6525 0.2305 0.073 0.071 0 0.0685 0.3985 0.095 0.083 0 0.151 0.367 0.076 0.08 0 0.301 0.307 0.078 0.07 0 0.3745 0.2715 0.079 0.075 0 0.457 0.245 0.084 0.08 0 0.13 0.4605 0.088 0.083 0 0.2035 0.421 0.067 0.082 0 0.2845 0.3915 0.093 0.095 0 0.361 0.3585 0.074 0.083 0 0.4395 0.33 0.095 0.092 0 0.5155 0.291 0.071 0.074 0 0.035 0.5865 0.066 0.079 0 0.1055 0.551 0.081 0.082 0 0.1845 0.5195 0.091 0.089 0 0.4285 0.422 0.085 0.08 0 0.568 0.356 0.08 0.076 0 0.65 0.3255 0.072 0.075 0 0.089 0.651 0.086 0.084 0 0.171 0.608 0.08 0.084 0 0.324 0.539 0.094 0.094 0 0.0705 0.7355 0.085 0.085 0 0.156 0.706 0.084 0.082 0 0.237 0.67 0.072 0.074 0 0.2495 0.5795 0.067 0.071 0 0.314 0.6375 0.082 0.083 0 0.411 0.5085 0.078 0.085 0 0.4895 0.4755 0.079 0.073 0 0.4735 0.565 0.073 0.078 0 0.555 0.538 0.074 0.072 0 0.564 0.4405 0.078 0.079 0 0.619 0.507 0.074 0.072 0 0.7455 0.438 0.077 0.074 0 0.7445 0.521 0.077 0.082 0 0.677 0.5645 0.09 0.087 0 0.5345 0.622 0.079 0.078 0 0.515 0.707 0.082 0.076 0 0.293 0.723 0.08 0.074 0 0.1345 0.7955 0.081 0.087 0 0.0535 0.83 0.083 0.078 0 0.0465 0.9225 0.089 0.101 0 0.105 0.9695 0.084 0.061 0 0.1745 0.9355 0.075 0.079 0 0.1975 0.8535 0.079 0.071 0 0.2645 0.9075 0.087 0.079 0 0.3245 0.954 0.077 0.062 0 0.2795 0.8205 0.091 0.093 0 0.362 0.785 0.074 0.076 0 0.5365 0.9415 0.089 0.081 0 0.47 0.887 0.074 0.08 0 0.4195 0.832 0.071 0.074 0 0.4345 0.7505 0.075 0.071 0 0.4915 0.8025 0.073 0.077 0 0.5575 0.857 0.089 0.078 0 0.6615 0.9595 0.081 0.063 0 0.7415 0.923 0.085 0.088 0 0.6785 0.8805 0.077 0.075 0 0.635 0.808 0.086 0.088 0 0.8625 0.9465 0.081 0.077 0 0.8095 0.8875 0.083 0.087 0 0.8715 0.8535 0.077 0.077 0 0.7545 0.75 0.075 0.076 0 0.893 0.773 0.084 0.084 0 0.829 0.7175 0.076 0.075 0 0.7815 0.661 0.083 0.08 0 0.8415 0.625 0.079 0.08 0 0.897 0.593 0.08 0.084 0 0.0995 0.0515 0.099 0.101 0 0.189 0.1465 0.1 0.101 0 0.159 0.259 0.11 0.116 0 0.3005 0.116 0.103 0.096 0 0.7945 0.072 0.113 0.114 0 0.911 0.0555 0.1 0.093 0 0.5865 0.13 0.109 0.104 0 0.6565 0.214 0.103 0.114 0 0.772 0.196 0.104 0.106 0 0.5545 0.2495 0.107 0.103 0 0.45 0.2765 0.112 0.117 0 0.3835 0.195 0.103 0.096 0 0.4185 0.3885 0.117 0.109 0 0.7415 0.307 0.105 0.102 0 0.8595 0.277 0.111 0.104 0 0.9435 0.3685 0.089 0.093 0 0.835 0.3875 0.112 0.123 0 0.7225 0.4155 0.125 0.123 0 0.608 0.443 0.096 0.092 0 0.5055 0.466 0.099 0.086 0 0.396 0.4945 0.09 0.079 0 0.2925 0.5295 0.085 0.079 0 0.1865 0.5535 0.101 0.103 0 0.157 0.662 0.102 0.106 0 0.2645 0.6325 0.113 0.113 0 0.13 0.767 0.09 0.096 0 0.111 0.8815 0.076 0.087 0 0.177 0.949 0.108 0.096 0 0.2095 0.849 0.115 0.1 0 0.244 0.7475 0.106 0.095 0 0.343 0.722 0.108 0.106 0 0.316 0.8295 0.102 0.107 0 0.292 0.934 0.104 0.108 0 0.399 0.91 0.108 0.106 0 0.584 0.953 0.102 0.086 0 0.5 0.879 0.108 0.102 0 0.4225 0.799 0.109 0.106 0 0.803 0.912 0.1 0.09 0 0.714 0.8285 0.106 0.097 0 0.6275 0.736 0.109 0.104 0 0.9035 0.886 0.109 0.1 0 0.8205 0.802 0.115 0.108 0 0.7525 0.727 0.075 0.078 0 0.659 0.639 0.106 0.114 0 0.586 0.5555 0.104 0.103 0 0.9365 0.7765 0.117 0.111 0 0.8505 0.698 0.103 0.106 0 0.775 0.6135 0.126 0.115 0 0.703 0.5385 0.106 0.099 0 0.9525 0.662 0.095 0.11 0 0.8905 0.5825 0.113 0.103 0 0.915 0.478 0.104 0.1 0 0.8055 0.506 0.091 0.086
5%|▍ | 23/486 [00:02<00:45, 10.14it/s]
0 0.097 0.0925 0.082 0.073 0 0.1965 0.0605 0.069 0.071 0 0.073 0.191 0.088 0.084 0 0.16 0.1585 0.08 0.085 0 0.258 0.1295 0.084 0.075 0 0.1085 0.3465 0.103 0.095 0 0.1955 0.3095 0.093 0.093 0 0.2285 0.2175 0.077 0.073 0 0.3245 0.1985 0.077 0.075 0 0.0845 0.4415 0.089 0.085 0 0.176 0.4205 0.082 0.081 0 0.145 0.5245 0.102 0.097 0 0.122 0.6125 0.086 0.083 0 0.0925 0.7115 0.093 0.095 0 0.0725 0.8075 0.095 0.089 0 0.049 0.915 0.094 0.098 0 0.1405 0.8815 0.087 0.081 0 0.2115 0.9475 0.079 0.071 0 0.302 0.931 0.102 0.098 0 0.2335 0.8615 0.095 0.093 0 0.1665 0.7885 0.091 0.089 0 0.1925 0.691 0.083 0.088 0 0.2945 0.2975 0.095 0.093 0 0.3915 0.267 0.081 0.076 0 0.5075 0.1485 0.077 0.071 0 0.5705 0.2155 0.069 0.067 0 0.542 0.307 0.09 0.082 0 0.458 0.33 0.086 0.088 0 0.361 0.363 0.08 0.066 0 0.276 0.394 0.08 0.072 0 0.2405 0.4925 0.089 0.085 0 0.315 0.565 0.098 0.086 0 0.2865 0.6535 0.101 0.091 0 0.3435 0.465 0.085 0.074 0 0.4345 0.425 0.091 0.088 0 0.409 0.53 0.086 0.08 0 0.3845 0.6275 0.085 0.087 0 0.3535 0.7295 0.085 0.091 0 0.401 0.898 0.082 0.082 0 0.4945 0.878 0.101 0.092 0 0.423 0.797 0.092 0.086 0 0.5145 0.768 0.087 0.076 0 0.4535 0.7025 0.091 0.081 0 0.5725 0.9275 0.095 0.089 0 0.757 0.892 0.088 0.084 0 0.9095 0.9425 0.093 0.083 0 0.925 0.83 0.08 0.082 0 0.837 0.8535 0.086 0.091 0 0.765 0.7865 0.096 0.081 0 0.6785 0.813 0.077 0.068 0 0.8585 0.759 0.097 0.082 0 0.7005 0.7 0.081 0.084 0 0.4735 0.6035 0.091 0.091 0 0.5645 0.579 0.113 0.096 0 0.497 0.5075 0.096 0.077 0 0.5845 0.471 0.085 0.082 0 0.524 0.409 0.098 0.084 0 0.5415 0.3045 0.085 0.079 0 0.613 0.3785 0.07 0.067 0 0.696 0.3425 0.08 0.083 0 0.7865 0.319 0.077 0.076 0 0.866 0.286 0.076 0.076 0 0.9345 0.3605 0.081 0.087 0 0.766 0.4085 0.102 0.091 0 0.6755 0.444 0.095 0.092 0 0.6545 0.5445 0.087 0.091 0 0.8075 0.57 0.089 0.082 0 0.898 0.551 0.098 0.11 0 0.956 0.6205 0.088 0.093 0 0.947 0.7255 0.078 0.073 0 0.114 0.9535 0.082 0.075 0 0.049 0.8695 0.086 0.087 0 0.1515 0.8455 0.107 0.111 0 0.084 0.7675 0.106 0.097 0 0.2175 0.9235 0.101 0.099 0 0.3105 0.9055 0.101 0.107 0 0.2425 0.8275 0.087 0.091 0 0.193 0.726 0.116 0.106 0 0.0685 0.584 0.113 0.11 0 0.105 0.477 0.112 0.112 0 0.042 0.393 0.082 0.104 0 0.131 0.372 0.098 0.088 0 0.2015 0.4535 0.103 0.105 0 0.161 0.5675 0.1 0.099 0 0.228 0.6385 0.112 0.091 0 0.2945 0.729 0.093 0.094 0 0.3365 0.8075 0.101 0.087 0 0.397 0.8895 0.088 0.091 0 0.4395 0.952 0.079 0.082 0 0.5345 0.937 0.093 0.088 0 0.488 0.8635 0.088 0.095 0 0.712 0.887 0.092 0.096 0 0.7685 0.957 0.077 0.078 0 0.843 0.9465 0.086 0.093 0 0.9225 0.921 0.081 0.078 0 0.7925 0.8695 0.083 0.081 0 0.889 0.849 0.102 0.09 0 0.665 0.816 0.074 0.07 0 0.8425 0.7735 0.103 0.089 0 0.941 0.7525 0.09 0.093 0 0.8945 0.6635 0.105 0.101 0 0.7985 0.697 0.087 0.082 0 0.705 0.7125 0.096 0.095 0 0.3765 0.7025 0.079 0.075 0 0.4745 0.6885 0.107 0.101 0 0.5745 0.658 0.091 0.082 0 0.663 0.627 0.094 0.1 0 0.7485 0.61 0.095 0.088 0 0.2695 0.5445 0.117 0.109 0 0.3325 0.626
5%|▌ | 26/486 [00:02<00:49, 9.29it/s]
0.093 0.094 0 0.9345 0.5675 0.101 0.101 0 0.5165 0.569 0.091 0.09 0 0.4265 0.6005 0.097 0.083 0 0.382 0.5105 0.106 0.109 0 0.299 0.4315 0.098 0.091 0 0.2375 0.348 0.103 0.094 0 0.339 0.3285 0.1 0.109 0 0.165 0.2695 0.106 0.107 0 0.267 0.252 0.096 0.096 0 0.367 0.219 0.108 0.094 0 0.4485 0.3015 0.109 0.119 0 0.566 0.473 0.104 0.102 0 0.8785 0.492 0.099 0.1 0 0.824 0.421 0.092 0.094 0 0.774 0.3335 0.092 0.099 0 0.953 0.3025 0.086 0.093 0 0.0475 0.109 0.085 0.104 0 0.135 0.087 0.102 0.104 0 0.2345 0.0715 0.103 0.107 0 0.326 0.058 0.11 0.104 0 0.676 0.0835 0.094 0.095 0 0.0675 0.0505 0.093 0.087 0 0.0495 0.1565 0.095 0.105 0 0.151 0.1305 0.078 0.073 0 0.1175 0.2355 0.093 0.089 0 0.092 0.335 0.09 0.08 0 0.0685 0.4425 0.101 0.099 0 0.042 0.5475 0.08 0.093 0 0.26 0.096 0.1 0.088 0 0.219 0.214 0.108 0.108 0 0.192 0.3095 0.106 0.095 0 0.1695 0.418 0.095 0.094 0 0.144 0.513 0.08 0.076 0 0.118 0.619 0.09 0.09 0 0.085 0.7245 0.09 0.081 0 0.0685 0.821 0.077 0.072 0 0.3585 0.077 0.079 0.076 0 0.325 0.1765 0.1 0.097 0 0.303 0.28 0.11 0.108 0 0.273 0.392 0.096 0.104 0 0.2465 0.5015 0.103 0.099 0 0.216 0.594 0.082 0.078 0 0.1945 0.6915 0.067 0.063 0 0.162 0.7935 0.1 0.085 0 0.137 0.8985 0.098 0.101 0 0.22 0.9605 0.1 0.073 0 0.242 0.868 0.1 0.098 0 0.2645 0.775 0.093 0.088 0 0.29 0.676 0.102 0.102 0 0.3215 0.572 0.089 0.088 0 0.348 0.4675 0.1 0.091 0 0.405 0.257 0.094 0.09 0 0.4355 0.158 0.095 0.088 0 0.4725 0.053 0.111 0.096 0 0.571 0.0395 0.088 0.077 0 0.547 0.132 0.104 0.112 0 0.6525 0.1085 0.103 0.095 0 0.754 0.0765 0.1 0.103 0 0.8495 0.0555 0.095 0.091 0 0.9555 0.048 0.087 0.086 0 0.9315 0.1375 0.085 0.083 0 0.825 0.1645 0.082 0.079 0 0.899 0.237 0.096 0.094 0 0.9555 0.323 0.089 0.102 0 0.9375 0.415 0.085 0.088 0 0.518 0.235 0.096 0.09 0 0.6945 0.288 0.095 0.09 0 0.485 0.3395 0.09 0.081 0 0.592 0.3155 0.086 0.083 0 0.665 0.392 0.102 0.098 0 0.7665 0.367 0.091 0.088 0 0.836 0.4415 0.092 0.087 0 0.7355 0.461 0.091 0.086 0 0.6345 0.488 0.101 0.1 0 0.533 0.5195 0.11 0.095 0 0.4195 0.5445 0.077 0.077 0 0.3945 0.641 0.109 0.086 0 0.4995 0.6155 0.085 0.097 0 0.3645 0.7385 0.097 0.095 0 0.3355 0.8475 0.103 0.105 0 0.4465 0.818 0.091 0.086 0 0.472 0.7135 0.09 0.089 0 0.4205 0.9195 0.093 0.085 0 0.516 0.889 0.096 0.092 0 0.543 0.796 0.088 0.094 0 0.572 0.6925 0.11 0.109 0 0.608 0.589 0.106 0.094 0 0.585 0.9555 0.098 0.083 0 0.617 0.869 0.094 0.09 0 0.6875 0.932 0.095 0.094 0 0.7925 0.9085 0.079 0.067 0 0.8915 0.8775 0.081 0.087 0 0.6445 0.769 0.089 0.088 0 0.6795 0.6635 0.075 0.067 0 0.7485 0.7345 0.087 0.077 0 0.9615 0.9525 0.059 0.063 0 0.9245 0.7835 0.079 0.071 0 0.8475 0.718 0.083 0.082 0 0.94 0.6855 0.088 0.093 0 0.778 0.644 0.08 0.074 0 0.7105 0.5665 0.089 0.097 0 0.8045 0.54 0.097 0.104 0 0.905 0.518 0.104 0.102 0 0.077 0.048 0.092 0.088 0 0.0455 0.1455 0.085 0.097 0 0.134 0.1245 0.09 0.077 0 0.183 0.0425 0.096 0.083 0 0.23 0.104 0.102 0.08 0 0.1945 0.1975 0.093 0.093 0 0.4085 0.044 0.097 0.078 0 0.4925 0.0425 0.087 0.077 0 0.728 0.0635 0.106 0.101 0 0.7795 0.1315 0.097 0.095 0 0.6835 0.148 0.089 0.088 0 0.605 0.169 0.104 0.088 0 0.518 0.201 0.088 0.09 0 0.286 0.1685 0.094 0.085 0 0.3335 0.2495 0.097 0.085 0 0.064 0.3145 0.096 0.093 0 0.084 0.478 0.106 0.094 0 0.048 0.5755 0.092 0.099 0 0.104 0.645 0.094 0.076 0 0.067 0.7305 0.098 0.099 0 0.0405 0.82 0.073 0.088 0 0.1165 0.7965 0.063 0.059 0 0.158 0.713 0.092 0.084 0 0.193 0.617 0.106 0.096 0 0.1825 0.453 0.105 0.102 0 0.229 0.532 0.088 0.078 0 0.3355 0.6575 0.095 0.081 0 0.437 0.6375 0.086 0.083 0 0.376 0.5715 0.086 0.095 0 0.2125 0.363 0.095 0.084 0 0.469 0.546 0.076 0.07 0 0.423 0.4805 0.082 0.081 0 0.3605 0.404 0.085 0.086 0 0.396 0.317 0.09 0.082 0 0.55 0.526 0.078 0.074 0 0.5035 0.4535 0.069 0.071 0 0.4555 0.387 0.089 0.082 0 0.6455 0.498 0.079 0.074 0 0.5495 0.361 0.069 0.068 0 0.4895 0.292 0.095 0.092 0 0.721 0.4755 0.07 0.069 0 0.6265 0.343 0.081 0.076 0 0.5805 0.269 0.079 0.078 0 0.7115
6%|▌ | 28/486 [00:02<00:44, 10.20it/s]
0.3195 0.085 0.081 0 0.67 0.2455 0.08 0.079 0 0.7495 0.22 0.083 0.088 0 0.7985 0.292 0.075 0.082 0 0.87 0.271 0.076 0.084 0 0.141 0.0395 0.088 0.075 0 0.1205 0.131 0.087 0.094 0 0.2245 0.1075 0.087 0.089 0 0.1925 0.2105 0.073 0.075 0 0.3235 0.089 0.089 0.08 0 0.3 0.184 0.1 0.086 0 0.432 0.0605 0.094 0.079 0 0.527 0.0395 0.092 0.077 0 0.508 0.131 0.11 0.09 0 0.401 0.156 0.096 0.088 0 0.609 0.11 0.092 0.078 0 0.7015 0.089 0.105 0.102 0 0.8035 0.0625 0.105 0.095 0 0.911 0.0445 0.1 0.087 0 0.359 0.2515 0.102 0.099 0 0.4785 0.2295 0.107 0.091 0 0.675 0.1805 0.096 0.089 0 0.783 0.164 0.078 0.07 0 0.88 0.145 0.088 0.08 0 0.1495 0.3955 0.103 0.091 0 0.246 0.3745 0.098 0.087 0 0.3505 0.355 0.113 0.086 0 0.5555 0.307 0.101 0.09 0 0.652 0.276 0.096 0.074 0 0.7595 0.248 0.089 0.08 0 0.859 0.233 0.102 0.09 0 0.929 0.304 0.1 0.096 0 0.8225 0.3355 0.099 0.091 0 0.9135 0.405 0.103 0.09 0 0.7925 0.4255 0.111 0.095 0 0.63 0.382 0.084 0.078 0 0.5285 0.3995 0.083 0.077 0 0.4245 0.423 0.089 0.098 0 0.1185 0.503 0.089 0.082 0 0.2155 0.487 0.101 0.088 0 0.318 0.449 0.11 0.096 0 0.2035 0.571 0.093 0.078 0 0.504 0.4945 0.086 0.075 0 0.5955 0.471 0.079 0.066 0 0.696 0.4525 0.094 0.083 0 0.7825 0.5175 0.089 0.081 0 0.673 0.548 0.09 0.088 0 0.581 0.5635 0.082 0.077 0 0.3835 0.615 0.097 0.078 0 0.1675 0.67 0.073 0.06 0 0.3465 0.715 0.099 0.094 0 0.3175 0.812 0.101 0.102 0 0.2075 0.9095 0.099 0.095 0 0.0945 0.9515 0.083 0.079 0 0.145 0.7635 0.07 0.075 0 0.248 0.7325 0.096 0.087 0 0.305 0.9055 0.096 0.085 0 0.398 0.879 0.094 0.094 0 0.427 0.7795 0.1 0.097 0 0.477 0.9525 0.106 0.087 0 0.673 0.9065 0.098 0.091 0 0.7475 0.9565 0.097 0.071 0 0.849 0.9385 0.1 0.089 0 0.691 0.8165 0.098 0.083 0 0.5465 0.665 0.119 0.112 0 0.654 0.6395 0.096 0.085 0 0.7245 0.7175 0.105 0.091 0 0.869 0.85 0.09 0.084 0 0.906 0.7585 0.098 0.083 0 0.825 0.687 0.1 0.092 0 0.928 0.6645 0.1 0.085 0 0.754 0.624 0.072 0.068 0 0.949 0.572 0.092 0.09 0 0.0555 0.095 0.095 0.102 0 0.154 0.055 0.096 0.092 0 0.0465 0.1995 0.083 0.089 0 0.043 0.3135 0.078 0.089 0 0.132 0.2725 0.086 0.085 0 0.1265 0.3895 0.089 0.083 0 0.2415 0.12 0.101 0.102 0 0.3395 0.0795 0.101 0.097 0 0.435 0.0495 0.106 0.097 0 0.622 0.0705 0.118 0.103 0 0.523 0.111 0.096 0.102 0 0.43 0.1485 0.1 0.099 0 0.234 0.2245 0.092 0.085 0 0.227 0.3465 0.094 0.091 0 0.113 0.496 0.096 0.09 0 0.104 0.605 0.098 0.088 0 0.097 0.7155 0.098 0.095 0 0.098 0.8075 0.088 0.087 0 0.0905 0.9095 0.079 0.075 0 0.1835 0.946 0.095 0.09 0 0.1815 0.8675 0.083 0.079 0 0.1915 0.77 0.081 0.08 0 0.198 0.663 0.088 0.094 0 0.205 0.562 0.09 0.08 0 0.213 0.458 0.098 0.088 0 0.283 0.927 0.09 0.084 0 0.283 0.823 0.088 0.076 0 0.2845 0.726 0.099 0.092 0 0.3555 0.895 0.083 0.074 0 0.3785 0.78 0.101 0.098 0 0.381 0.683 0.096 0.09 0 0.3865 0.5815 0.101 0.099 0 0.3235 0.2985 0.099 0.089 0 0.333 0.193 0.096 0.096 0 0.414 0.2545 0.096 0.093 0 0.406 0.3705 0.088 0.091 0 0.513 0.2205 0.1 0.103 0 0.501 0.33 0.104 0.106 0 0.4865 0.4365 0.089 0.087 0 0.5875 0.3925 0.097 0.099 0 0.5955 0.283 0.089 0.076 0 0.6065 0.1795 0.087 0.093 0 0.7145 0.045 0.093 0.086 0 0.793 0.1 0.108 0.104 0 0.785 0.208 0.096 0.102 0 0.6825 0.3455 0.107 0.099 0 0.7785 0.311 0.101 0.094 0 0.889 0.156 0.102 0.118 0 0.8725 0.267 0.103 0.108 0 0.957 0.329 0.086 0.114 0 0.858 0.3715 0.1 0.105 0 0.761 0.4135 0.1 0.101 0 0.6805 0.4535 0.119 0.103 0 0.936 0.541 0.116 0.114 0 0.921 0.636 0.108 0.094 0 0.57 0.6075 0.11 0.099 0 0.56 0.708 0.104 0.092 0 0.5555 0.8085 0.101 0.097 0 0.561 0.9115 0.088 0.081 0 0.6275 0.9605 0.095 0.079 0 0.644 0.864 0.096 0.098 0 0.6525 0.7725 0.095 0.087 0 0.72 0.915 0.098 0.092 0 0.8035 0.964 0.097 0.072 0 0.898 0.928 0.1 0.102 0 0.805 0.8755 0.102 0.105 0 0.7255 0.814 0.109 0.098 0 0.908 0.8225 0.094 0.093 0 0.818 0.7815 0.096 0.083 0 0.9165 0.726 0.107 0.096 0 0.8295 0.696 0.103 0.088 0 0.736 0.625 0.102 0.092 0 0.301 0.526 0.096 0.094
6%|▌ | 30/486 [00:02<00:47, 9.67it/s]
0 0.07 0.0805 0.084 0.097 0 0.162 0.0515 0.096 0.093 0 0.1585 0.147 0.097 0.1 0 0.241 0.1105 0.088 0.095 0 0.326 0.0675 0.124 0.107 0 0.1425 0.245 0.111 0.104 0 0.0515 0.3885 0.101 0.111 0 0.1475 0.3485 0.111 0.105 0 0.2295 0.304 0.087 0.086 0 0.127 0.4455 0.086 0.079 0 0.042 0.491 0.082 0.106 0 0.1135 0.5315 0.097 0.101 0 0.1015 0.623 0.107 0.1 0 0.198 0.5955 0.098 0.105 0 0.206 0.4955 0.098 0.097 0 0.215 0.4015 0.096 0.093 0 0.3145 0.171 0.099 0.094 0 0.3085 0.264 0.095 0.096 0 0.301 0.3575 0.092 0.087 0 0.3015 0.4585 0.093 0.097 0 0.397 0.1395 0.082 0.093 0 0.392 0.227 0.086 0.092 0 0.3895 0.329 0.097 0.096 0 0.384 0.417 0.088 0.08 0 0.378 0.506 0.076 0.08 0 0.277 0.641 0.092 0.094 0 0.254 0.7415 0.104 0.097 0 0.083 0.8295 0.102 0.101 0 0.0715 0.933 0.097 0.094 0 0.163 0.887 0.094 0.088 0 0.241 0.9405 0.078 0.071 0 0.2565 0.8405 0.101 0.101 0 0.3355 0.889 0.099 0.094 0 0.349 0.793 0.11 0.102 0 0.3595 0.7015 0.095 0.091 0 0.422 0.9415 0.072 0.069 0 0.4425 0.7535 0.091 0.109 0 0.456 0.6545 0.096 0.081 0 0.5865 0.955 0.103 0.084 0 0.603 0.863 0.09 0.09 0 0.526 0.8035 0.088 0.083 0 0.6805 0.915 0.083 0.078 0 0.764 0.872 0.088 0.088 0 0.693 0.818 0.092 0.09 0 0.61 0.7695 0.1 0.089 0 0.7045 0.7245 0.093 0.095 0 0.5465 0.709 0.089 0.098 0 0.6345 0.6585 0.095 0.107 0 0.712 0.619 0.09 0.084 0 0.545 0.609 0.102 0.09 0 0.628 0.563 0.086 0.094 0 0.712 0.5245 0.088 0.085 0 0.7875 0.4965 0.087 0.085 0 0.541 0.522 0.094 0.076 0 0.633 0.472 0.09 0.09 0 0.72 0.441 0.072 0.072 0 0.789 0.3985 0.084 0.071 0 0.465 0.4675 0.102 0.103 0 0.551 0.4215 0.102 0.093 0 0.4665 0.3765 0.087 0.075 0 0.5545 0.325 0.087 0.08 0 0.478 0.28 0.098 0.096 0 0.629 0.2885 0.078 0.075 0 0.6985 0.2635 0.091 0.085 0 0.786 0.2315 0.092 0.091 0 0.619 0.201 0.074 0.066 0 0.7985 0.136 0.093 0.086 0 0.703 0.1725 0.094 0.093 0 0.632 0.1185 0.084 0.091 0 0.716 0.074 0.09 0.088 0 0.4685 0.1905 0.073 0.079 0 0.104 0.124 0.092 0.086 0 0.2125 0.084 0.097 0.082 0 0.3185 0.0425 0.095 0.071 0 0.511 0.0555 0.094 0.083 0 0.105 0.2225 0.098 0.085 0 0.216 0.1805 0.092 0.075 0 0.3695 0.1375 0.099 0.085 0 0.2085 0.285 0.081 0.074 0 0.318 0.2375 0.088 0.075 0 0.5155 0.159 0.077 0.074 0 0.6145 0.118 0.085 0.078 0 0.708 0.075 0.094 0.08 0 0.8945 0.0895 0.073 0.069 0 0.8035 0.133 0.073 0.062 0 0.112 0.434 0.102 0.086 0 0.2115 0.3895 0.093 0.077 0 0.308 0.3475 0.072 0.061 0 0.4135 0.2955 0.085 0.071 0 0.5135 0.254 0.067 0.06 0 0.609 0.2115 0.082 0.069 0 0.105 0.536 0.096 0.08 0 0.207 0.492 0.086 0.082 0 0.3085 0.45 0.083 0.07 0 0.3015 0.5455 0.077 0.065 0 0.2035 0.595 0.097 0.082 0 0.1085 0.6365 0.081 0.073 0 0.1025 0.7325 0.089 0.073 0 0.208 0.684 0.078 0.07 0 0.406 0.5005 0.072 0.067 0 0.2435 0.8675 0.075 0.079 0 0.3165 0.683 0.073 0.072 0 0.347 0.598 0.068 0.066 0 0.451 0.615 0.074 0.072 0 0.511 0.949 0.066 0.064 0 0.8135 0.9035 0.081 0.071 0 0.6855 0.865 0.071 0.066 0 0.6495 0.7395 0.071 0.067 0 0.861 0.8115 0.078 0.069 0 0.942 0.674 0.084 0.084 0 0.9655 0.5235 0.069 0.075 0 0.9775 0.6235 0.045 0.055 0 0.8645 0.6205 0.067 0.071 0 0.3765 0.5125 0.057 0.063 0 0.1805 0.4655 0.055 0.055 0 0.205 0.4095 0.066 0.061 0 0.242 0.343 0.06 0.062 0 0.284 0.395 0.056 0.066 0 0.366 0.3785 0.064 0.069 0 0.4625 0.405 0.079 0.076 0 0.8215 0.396 0.061 0.06 0 0.8165 0.098 0.057 0.06 0 0.736 0.1555 0.058 0.059 0 0.5885 0.2125 0.067 0.063 0 0.428 0.2445 0.074 0.073 0 0.3645 0.244 0.069 0.078 0 0.279 0.2535 0.062 0.061 0 0.3295 0.1865 0.061 0.069 0 0.269 0.1995 0.068 0.063 0 0.1965 0.1845 0.079 0.073 0 0.119 0.2405 0.07 0.069 0 0.0525 0.2115 0.073 0.075 0 0.0865 0.164 0.071 0.064 0 0.11
7%|▋ | 33/486 [00:03<00:38, 11.65it/s]
0.095 0.074 0.07 0 0.1665 0.054 0.071 0.076 0 0.232 0.027 0.05 0.046 0 0.3185 0.059 0.057 0.062 0 0.381 0.073 0.052 0.056 0 0.537 0.0785 0.068 0.071 0 0.131 0.073 0.084 0.086 0 0.1855 0.1295 0.075 0.089 0 0.257 0.033 0.08 0.064 0 0.331 0.0505 0.066 0.069 0 0.392 0.076 0.088 0.09 0 0.4675 0.102 0.077 0.084 0 0.6425 0.0665 0.083 0.081 0 0.773 0.0375 0.094 0.073 0 0.889 0.0295 0.086 0.057 0 0.966 0.115 0.068 0.082 0 0.8775 0.105 0.095 0.094 0 0.796 0.09 0.078 0.076 0 0.766 0.1345 0.074 0.073 0 0.708 0.1515 0.07 0.075 0 0.691 0.214 0.078 0.072 0 0.8545 0.26 0.073 0.078 0 0.9355 0.317 0.089 0.074 0 0.8245 0.2115 0.087 0.101 0 0.884 0.184 0.072 0.076 0 0.9445 0.267 0.075 0.068 0 0.535 0.1465 0.076 0.083 0 0.5765 0.2345 0.081 0.089 0 0.486 0.2045 0.08 0.095 0 0.421 0.221 0.082 0.084 0 0.3065 0.1715 0.083 0.079 0 0.0485 0.2165 0.051 0.061 0 0.097 0.248 0.086 0.084 0 0.0515 0.3255 0.047 0.051 0 0.107 0.3765 0.082 0.077 0 0.1565 0.334 0.057 0.058 0 0.193 0.2885 0.088 0.095 0 0.2555 0.303 0.083 0.094 0 0.3785 0.3475 0.089 0.099 0 0.519 0.417 0.072 0.082 0 0.7295 0.349 0.085 0.084 0 0.9615 0.44 0.077 0.082 0 0.8505 0.5045 0.079 0.081 0 0.782 0.512 0.058 0.058 0 0.818 0.4215 0.076 0.073 0 0.8395 0.3855 0.063 0.061 0 0.8925 0.387 0.063 0.056 0 0.813 0.3245 0.07 0.079 0 0.573 0.561 0.082 0.094 0 0.954 0.7205 0.092 0.089 0 0.8445 0.674 0.071 0.07 0 0.9005 0.82 0.079 0.078 0 0.8275 0.7885 0.081 0.083 0 0.862 0.897 0.09 0.084 0 0.695 0.7495 0.082 0.079 0 0.6155 0.741 0.075 0.072 0 0.55 0.8065 0.078 0.081 0 0.622 0.8625 0.078 0.083 0 0.5655 0.9435 0.095 0.095 0 0.3935 0.8955 0.087 0.093 0 0.422 0.793 0.086 0.084 0 0.4455 0.676 0.083 0.082 0 0.358 0.7645 0.078 0.081 0 0.1865 0.949 0.083 0.086 0 0.27 0.8535 0.074 0.073 0 0.274 0.742 0.076 0.086 0 0.282 0.639 0.074 0.076 0 0.06 0.5695 0.09 0.089 0 0.1235 0.6895 0.079 0.083 0 0.059 0.76 0.082 0.078 0 0.1295 0.8145 0.077 0.079 0 0.039 0.8995 0.07 0.079 0 0.0315 0.909 0.059 0.092 0 0.1155 0.9475 0.065 0.049 0 0.072 0.8155 0.068 0.069 0 0.04 0.693 0.074 0.088 0 0.1265 0.7465 0.087 0.081 0 0.227 0.832 0.074 0.084 0 0.285 0.907 0.068 0.074 0 0.353 0.9015 0.07 0.079 0 0.453 0.9395 0.078 0.065 0 0.6085 0.9335 0.087 0.077 0 0.723 0.896 0.068 0.074 0 0.636 0.8725 0.068 0.077 0 0.512 0.846 0.078 0.082 0 0.3865 0.8085 0.079 0.085 0 0.2755 0.7495 0.081 0.083 0 0.169 0.669 0.068 0.068 0 0.081 0.599 0.066 0.07 0 0.117 0.53 0.07 0.068 0 0.22 0.59 0.07 0.074 0 0.446 0.747 0.088 0.088 0 0.544 0.7895 0.056 0.059 0 0.7085 0.7905 0.061 0.057 0 0.968 0.6435 0.062 0.075 0 0.865 0.58 0.07 0.078 0 0.713 0.5675 0.064 0.067 0 0.506 0.4485 0.078 0.073 0 0.931 0.4645 0.074 0.077 0 0.893 0.295 0.066 0.074 0 0.931 0.1895 0.07 0.073 0 0.9635 0.11 0.071 0.08 0 0.301 0.107 0.056 0.072 0 0.2495 0.2115 0.043 0.051 0 0.102 0.205 0.074 0.066 0 0.087 0.1255 0.068 0.073 0 0.1545 0.153 0.061 0.064 0 0.133 0.0425 0.064 0.067 0 0.1945 0.097 0.067 0.072 0 0.229 0.0295 0.068 0.057 0 0.8885 0.0865 0.079 0.081 0 0.9175 0.305 0.079 0.078 0 0.7865 0.1895 0.087 0.085 0 0.6895 0.126 0.071 0.064 0 0.6315 0.1225 0.051 0.067 0 0.582 0.106 0.07 0.068 0 0.473 0.0375 0.076 0.071 0 0.0285 0.323 0.051 0.064 0 0.19 0.5175 0.05 0.055 0 0.4875 0.4735 0.053 0.053 0 0.555 0.4135 0.072 0.069 0 0.646 0.4565 0.076 0.077 0 0.5215 0.584 0.057 0.052 0 0.209 0.7495 0.054 0.061 0 0.6405 0.8485 0.063 0.065 0 0.247 0.975 0.062 0.05 0 0.1485 0.9525 0.063 0.061 0 0.037 0.9225 0.062 0.059 0 0.949 0.961 0.076 0.064 0 0.862 0.9185 0.088 0.091 0 0.643 0.9645 0.086 0.067 0 0.709 0.8625 0.08 0.083 0 0.5415 0.921 0.079 0.074 0 0.3925 0.9645 0.085 0.069 0 0.2695 0.9125 0.073 0.075 0 0.444 0.8585 0.076 0.071 0 0.7405 0.762 0.075 0.072 0 0.6345 0.7885 0.075 0.077 0 0.5385 0.716
8%|▊ | 38/486 [00:03<00:30, 14.83it/s]
0.065 0.07 0 0.855 0.682 0.064 0.074 0 0.7505 0.6905 0.079 0.073 0 0.707 0.6355 0.08 0.079 0 0.753 0.576 0.066 0.068 0 0.8055 0.4955 0.045 0.047 0 0.871 0.58 0.058 0.052 0 0.892 0.2555 0.074 0.077 0 0.9195 0.057 0.063 0.066 0 0.83 0.03 0.052 0.056 0 0.708 0.041 0.078 0.072 0 0.6475 0.0785 0.065 0.057 0 0.5825 0.031 0.063 0.06 0 0.4485 0.0435 0.069 0.059 0 0.53 0.1105 0.062 0.067 0 0.183 0.038 0.064 0.068 0 0.2225 0.098 0.079 0.074 0 0.3375 0.167 0.089 0.082 0 0.1945 0.202 0.073 0.082 0 0.029 0.246 0.054 0.072 0 0.0325 0.3125 0.059 0.065 0 0.0395 0.386 0.077 0.078 0 0.262 0.4285 0.074 0.071 0 0.3325 0.336 0.075 0.082 0 0.345 0.4555 0.076 0.079 0 0.398 0.384 0.07 0.066 0 0.4455 0.291 0.061 0.07 0 0.4715 0.2325 0.063 0.061 0 0.8645 0.8205 0.083 0.077 0 0.8985 0.745 0.067 0.062 0 0.8535 0.5795 0.069 0.075 0 0.889 0.491 0.074 0.066 0 0.7605 0.4965 0.079 0.073 0 0.7255 0.5715 0.067 0.071 0 0.6295 0.809 0.077 0.08 0 0.5325 0.822 0.065 0.05 0 0.64 0.447 0.078 0.078 0 0.971 0.1805 0.058 0.073 0 0.962 0.029 0.068 0.056 0 0.898 0.0815 0.08 0.073 0 0.8695 0.156 0.073 0.066 0 0.7925 0.2435 0.085 0.091 0 0.776 0.0285 0.066 0.053 0 0.6835 0.2 0.081 0.076 0 0.362 0.0765 0.068 0.063 0 0.0785 0.1385 0.073 0.077 0 0.148 0.168 0.062 0.066 0 0.221 0.2 0.064 0.07 0 0.33 0.1755 0.07 0.067 0 0.3025 0.2445 0.071 0.075 0 0.1865 0.2665 0.079 0.075 0 0.1415 0.316 0.069 0.064 0 0.2425 0.2855 0.063 0.071 0 0.2745 0.344 0.073 0.078 0 0.3295 0.3785 0.077 0.081 0 0.403 0.279 0.066 0.058 0 0.4965 0.2885 0.079 0.069 0 0.4485 0.3495 0.085 0.083 0 0.1645 0.4115 0.077 0.069 0 0.284 0.4505 0.078 0.079 0 0.394 0.4975 0.064 0.067 0 0.0475 0.478 0.055 0.064 0 0.0885 0.5795 0.083 0.079 0 0.0425 0.6645 0.067 0.063 0 0.2565 0.533 0.067 0.07 0 0.2185 0.607 0.071 0.072 0 0.301 0.6535 0.06 0.069 0 0.3725 0.692 0.065 0.06 0 0.1865 0.695 0.065 0.07 0 0.14 0.778 0.082 0.076 0 0.241 0.7995 0.07 0.071 0 0.3375 0.838 0.067 0.066 0 0.1305 0.841 0.067 0.054 0 0.223 0.874 0.056 0.062 0 0.044 0.9375 0.058 0.055 0 0.1165 0.932 0.077 0.08 0 0.0425 0.0385 0.083 0.075 0 0.0595 0.141 0.073 0.064 0 0.2355 0.1115 0.059 0.069 0 0.402 0.0415 0.08 0.075 0 0.3755 0.1075 0.077 0.073 0 0.354 0.184 0.076 0.064 0 0.478 0.156 0.07 0.08 0 0.7035 0.0585 0.083 0.081 0 0.952 0.039 0.086 0.076 0 0.853 0.03 0.088 0.058 0 0.6265 0.183 0.085 0.086 0 0.56 0.27 0.092 0.088 0 0.3985 0.4215 0.065 0.073 0 0.566 0.391 0.082 0.082 0 0.5985 0.499 0.069 0.07 0 0.546 0.544 0.08 0.076 0 0.495 0.617 0.072 0.076 0 0.5565 0.7145 0.065 0.067 0 0.0555 0.6525 0.059 0.059 0 0.217 0.655 0.05 0.054 0 0.0355 0.8975 0.061 0.065 0 0.1565 0.9465 0.077 0.077 0 0.203 0.846 0.06 0.064 0 0.3035 0.844 0.071 0.076 0 0.4025 0.8715 0.069 0.079 0 0.4805 0.858 0.065 0.066 0 0.36 0.946 0.058 0.064 0 0.5765 0.9325 0.081 0.083 0 0.6305 0.836 0.061 0.064 0 0.721 0.7455 0.064 0.063 0 0.5175 0.716 0.065 0.066 0 0.4355 0.706 0.071 0.06 0 0.917 0.603 0.056 0.062 0 0.875 0.4445 0.066 0.059 0 0.8195 0.3845 0.059 0.055 0 0.883 0.332 0.072 0.068 0 0.865 0.2515 0.062 0.055 0 0.8265 0.105 0.083 0.08 0 0.6655 0.0645 0.081 0.081 0 0.6275 0.2475 0.075 0.075 0 0.6705 0.5135 0.077 0.093 0 0.548 0.5785 0.052 0.053 0 0.4595 0.2005 0.075 0.077 0 0.455 0.429 0.062 0.07 0 0.469 0.511 0.068 0.074 0 0.562 0.5185 0.074 0.065 0 0.124 0.746 0.066 0.056 0 0.05 0.6 0.06 0.07 0 0.0795 0.508 0.073 0.064 0 0.225 0.507 0.076 0.072 0 0.065 0.452 0.068 0.052 0 0.0845 0.413 0.071 0.06 0 0.215 0.4135 0.054 0.065 0 0.161 0.3935 0.064 0.067 0 0.203 0.323 0.078 0.08 0 0.2965 0.321 0.071 0.074 0 0.384 0.2765 0.074 0.083 0 0.0735 0.287 0.057 0.062 0 0.1255 0.2875 0.057 0.077 0 0.1645 0.201 0.061 0.06 0 0.029 0.2105 0.056 0.069 0 0.0485 0.128 0.061 0.064 0 0.0745 0.0515 0.065 0.073 0 0.182 0.091 0.058 0.072 0 0.285 0.0735 0.064 0.075
9%|▉ | 44/486 [00:03<00:22, 19.32it/s]
0 0.866 0.123 0.064 0.066 0 0.937 0.3935 0.066 0.067 0 0.8385 0.346 0.055 0.05 0 0.789 0.293 0.068 0.068 0 0.8845 0.506 0.077 0.078 0 0.819 0.659 0.062 0.062 0 0.8885 0.8435 0.053 0.051 0 0.7645 0.9335 0.067 0.059 0 0.564 0.7815 0.068 0.065 0 0.681 0.573 0.066 0.064 0 0.413 0.849 0.058 0.064 0 0.497 0.675 0.068 0.066 0 0.5385 0.53 0.071 0.07 0 0.604 0.3725 0.066 0.067 0 0.2005 0.9335 0.073 0.063 0 0.2515 0.7795 0.071 0.073 0 0.384 0.702 0.072 0.078 0 0.2305 0.662 0.067 0.072 0 0.263 0.6045 0.058 0.061 0 0.296 0.5335 0.07 0.071 0 0.311 0.482 0.058 0.052 0 0.0735 0.4095 0.083 0.075 0 0.2355 0.321 0.077 0.082 0 0.262 0.181 0.068 0.068 0 0.325 0.0695 0.064 0.061 0 0.117 0.0905 0.068 0.083 0 0.028 0.057 0.054 0.07 0 0.903 0.1285 0.088 0.085 0 0.7955 0.0915 0.079 0.079 0 0.7015 0.0405 0.089 0.079 0 0.625 0.109 0.08 0.086 0 0.6905 0.168 0.075 0.08 0 0.8035 0.1985 0.083 0.081 0 0.9355 0.279 0.087 0.09 0 0.944 0.4375 0.084 0.091 0 0.965 0.551 0.07 0.08 0 0.8605 0.3695 0.073 0.079 0 0.843 0.48 0.064 0.066 0 0.7815 0.337 0.081 0.086 0 0.702 0.404 0.06 0.054 0 0.7005 0.2735 0.075 0.075 0 0.611 0.304 0.07 0.072 0 0.529 0.187 0.092 0.094 0 0.529 0.0825 0.082 0.087 0 0.4405 0.129 0.081 0.08 0 0.425 0.2655 0.072 0.087 0 0.33 0.067 0.084 0.074 0 0.322 0.207 0.078 0.086 0 0.318 0.3305 0.07 0.067 0 0.1915 0.264 0.075 0.072 0 0.1975 0.134 0.069 0.078 0 0.2405 0.118 0.049 0.052 0 0.226 0.0325 0.074 0.063 0 0.1235 0.0505 0.075 0.071 0 0.0385 0.207 0.065 0.078 0 0.0465 0.434 0.071 0.06 0 0.127 0.614 0.082 0.072 0 0.2115 0.6345 0.061 0.067 0 0.168 0.753 0.078 0.078 0 0.03 0.6895 0.058 0.075 0 0.8185 0.649 0.067 0.068 0 0.8705 0.7545 0.117 0.107 0 0.875 0.839 0.098 0.082 0 0.1015 0.8715 0.069 0.065 0 0.19 0.9175 0.08 0.077 0 0.067 0.702 0.07 0.072 0 0.1725 0.768 0.079 0.08 0 0.266 0.818 0.088 0.09 0 0.366 0.8785 0.086 0.091 0 0.459 0.9265 0.082 0.073 0 0.0295 0.5305 0.053 0.059 0 0.1325 0.6135 0.073 0.079 0 0.2035 0.685 0.073 0.086 0 0.259 0.6595 0.042 0.045 0 0.3325 0.723 0.077 0.076 0 0.464 0.732 0.07 0.076 0 0.6175 0.834 0.067 0.072 0 0.7165 0.8145 0.075 0.075 0 0.7045 0.903 0.085 0.078 0 0.843 0.9305 0.078 0.069 0 0.948 0.8645 0.078 0.079 0 0.8815 0.696 0.085 0.086 0 0.795 0.669 0.074 0.084 0 0.689 0.61 0.076 0.078 0 0.6195 0.529 0.071 0.07 0 0.563 0.565 0.07 0.066 0 0.0885 0.4335 0.081 0.085 0 0.1895 0.495 0.091 0.088 0 0.3025 0.5005 0.081 0.085 0 0.372 0.463 0.062 0.06 0 0.251 0.397 0.084 0.08 0 0.0905 0.1565 0.081 0.073 0 0.179 0.0795 0.072 0.075 0 0.2495 0.2425 0.081 0.081 0 0.319 0.2885 0.09 0.089 0 0.424 0.3605 0.068 0.075 0 0.541 0.3675 0.072 0.079 0 0.701 0.3995 0.074 0.079 0 0.669 0.4505 0.064 0.069 0 0.949 0.448 0.09 0.098 0 0.9535 0.3405 0.077 0.073 0 0.8315 0.2855 0.077 0.065 0 0.7365 0.318 0.083 0.076 0 0.5915 0.289 0.079 0.082 0 0.48 0.256 0.098 0.082 0 0.3605 0.188 0.079 0.074 0 0.42 0.0755 0.082 0.087 0 0.5285 0.1465 0.077 0.075 0 0.6375 0.172 0.077 0.066 0 0.854 0.184 0.082 0.084 0 0.9445 0.1015 0.071 0.079 0 0.8245 0.052 0.073 0.078 0 0.1795 0.117 0.083 0.084 0 0.3295 0.077 0.073 0.07 0 0.262 0.217 0.078 0.078 0 0.3735 0.2035 0.055 0.051 0 0.1915 0.3425 0.077 0.083 0 0.5385 0.319 0.083 0.074 0 0.479 0.41 0.082 0.076 0 0.119 0.5135 0.078 0.067 0 0.1925 0.599 0.067 0.068 0 0.351 0.6705 0.072 0.075 0 0.7535 0.567 0.075 0.082 0 0.4835 0.734 0.071 0.082 0 0.862 0.7575 0.068 0.069 0 0.6505 0.805 0.071 0.068 0 0.8125 0.8715 0.079 0.077 0 0.5695 0.9315 0.079 0.085 0 0.416 0.8555 0.074 0.079 0 0.3665 0.9525 0.071 0.079 0 0.252 0.958 0.082 0.078 0 0.2285 0.874 0.085 0.078 0 0.19 0.9065 0.084 0.081 0 0.5395 0.784 0.049 0.052 0 0.7425 0.8575 0.061 0.067 0 0.8725 0.9175 0.051 0.065 0 0.951 0.7625 0.064 0.063 0 0.83 0.66 0.054 0.056 0 0.5005 0.65 0.059 0.062 0 0.4005 0.571 0.051 0.05 0 0.2415 0.471 0.057 0.06 0 0.3775 0.4615 0.045 0.057 0 0.45 0.467 0.056 0.054 0 0.5655 0.143 0.053 0.048 0 0.74 0.189 0.048 0.054 0 0.904 0.1655 0.07 0.067 0 0.12 0.283 0.06 0.064 0 0.0305 0.414 0.043 0.048 0 0.438 0.492 0.05 0.054 0 0.0355 0.593 0.059 0.062 0 0.149 0.579
10%|▉ | 47/486 [00:03<00:22, 19.59it/s]
0.058 0.054 0 0.096 0.6515 0.048 0.055 0 0.1955 0.7085 0.053 0.051 0 0.2435 0.711 0.055 0.05 0 0.3175 0.8055 0.055 0.049 0 0.7415 0.641 0.065 0.062 0 0.749 0.8 0.066 0.062 0 0.1245 0.9325 0.069 0.067 0 0.515 0.9265 0.094 0.081 0 0.4775 0.8055 0.091 0.087 0 0.5745 0.8455 0.079 0.079 0 0.6765 0.8805 0.083 0.091 0 0.785 0.8675 0.064 0.067 0 0.8 0.805 0.082 0.082 0 0.7095 0.77 0.077 0.076 0 0.4975 0.674 0.097 0.084 0 0.0705 0.658 0.073 0.074 0 0.043 0.404 0.072 0.08 0 0.1705 0.4935 0.081 0.073 0 0.371 0.527 0.08 0.072 0 0.3775 0.463 0.085 0.076 0 0.578 0.4925 0.074 0.079 0 0.753 0.5205 0.06 0.057 0 0.9145 0.557 0.069 0.076 0 0.8015 0.464 0.077 0.086 0 0.894 0.4845 0.058 0.061 0 0.9155 0.425 0.075 0.08 0 0.8265 0.389 0.077 0.072 0 0.9245 0.3315 0.081 0.091 0 0.815 0.3105 0.068 0.065 0 0.8895 0.2565 0.081 0.079 0 0.7255 0.258 0.079 0.084 0 0.6445 0.246 0.053 0.05 0 0.388 0.2255 0.068 0.069 0 0.465 0.1835 0.072 0.069 0 0.412 0.139 0.068 0.068 0 0.167 0.273 0.06 0.062 0 0.032 0.1855 0.058 0.063 0 0.166 0.1265 0.07 0.067 0 0.195 0.082 0.064 0.062 0 0.2345 0.0765 0.081 0.083 0 0.246 0.032 0.088 0.062 0 0.345 0.0595 0.086 0.081 0 0.5555 0.1155 0.073 0.079 0 0.6765 0.1425 0.089 0.079 0 0.7955 0.033 0.069 0.06 0 0.8545 0.073 0.067 0.068 0 0.8055 0.1115 0.107 0.097 0 0.9435 0.093 0.081 0.076 0 0.967 0.219 0.064 0.064 0 0.7665 0.032 0.077 0.062 0 0.869 0.093 0.078 0.082 0 0.7185 0.1225 0.081 0.075 0 0.927 0.245 0.08 0.076 0 0.9715 0.4035 0.057 0.073 0 0.858 0.343 0.076 0.074 0 0.936 0.5045 0.076 0.083 0 0.8925 0.5865 0.077 0.079 0 0.8205 0.4405 0.073 0.077 0 0.7625 0.536 0.077 0.078 0 0.652 0.4775 0.074 0.069 0 0.5515 0.4095 0.071 0.069 0 0.456 0.347 0.082 0.078 0 0.4885 0.258 0.081 0.078 0 0.3395 0.0745 0.077 0.077 0 0.3325 0.3035 0.063 0.061 0 0.237 0.252 0.088 0.088 0 0.1825 0.101 0.069 0.07 0 0.126 0.1625 0.082 0.071 0 0.1285 0.23 0.073 0.07 0 0.265 0.4085 0.066 0.061 0 0.372 0.46 0.08 0.076 0 0.4895 0.5045 0.101 0.093 0 0.6 0.5785 0.078 0.067 0 0.7005 0.644 0.061 0.062 0 0.797 0.6955 0.08 0.089 0 0.8665 0.768 0.077 0.078 0 0.945 0.758 0.078 0.074 0 0.5475 0.6905 0.067 0.065 0 0.335 0.5705 0.078 0.077 0 0.2135 0.5135 0.083 0.081 0 0.153 0.8705 0.062 0.057 0 0.2445 0.928 0.063 0.078 0 0.415 0.8865 0.068 0.071 0 0.4825 0.896 0.053 0.056 0 0.5325 0.944 0.069 0.07 0 0.5945 0.8385 0.073 0.075 0 0.6705 0.943 0.063 0.062 0 0.102 0.033 0.07 0.064 0 0.222 0.026 0.06 0.05 0 0.286 0.0255 0.068 0.049 0 0.307 0.137 0.08 0.084 0 0.0795 0.212 0.083 0.094 0 0.139 0.3655 0.062 0.069 0 0.081 0.4615 0.07 0.071 0 0.1855 0.4915 0.065 0.065 0 0.087 0.5675 0.064 0.069 0 0.2585 0.535 0.075 0.068 0 0.4825 0.231 0.065 0.064 0 0.724 0.065 0.066 0.064 0 0.8665 0.224 0.063 0.062 0 0.8915 0.355 0.053 0.056 0 0.9575 0.332 0.049 0.056 0 0.5025 0.4155 0.075 0.077 0 0.867 0.62 0.066 0.072 0 0.796 0.672 0.068 0.06 0 0.872 0.746 0.07 0.066 0 0.0455 0.0335 0.075 0.065 0 0.0835 0.1385 0.075 0.069 0 0.1175 0.0855 0.043 0.045 0 0.298 0.029 0.068 0.056 0 0.3475 0.06 0.081 0.078 0 0.3585 0.1235 0.069 0.063 0 0.2795 0.1245 0.073 0.071 0 0.2275 0.1715 0.081 0.079 0 0.081 0.2385 0.066 0.067 0 0.1605 0.2595 0.077 0.073 0 0.258 0.25 0.092 0.076 0 0.3475 0.302 0.081 0.082 0 0.2625 0.323 0.075 0.076 0 0.069 0.3405 0.078 0.081 0 0.1685 0.4135 0.079 0.077 0 0.0415 0.456 0.081 0.08 0 0.1435 0.521 0.079 0.084 0 0.0455 0.5435 0.083 0.089 0 0.1345 0.646 0.071 0.064 0 0.174 0.6075 0.08 0.081 0 0.304 0.5755 0.104 0.093 0 0.1285 0.718 0.077 0.066 0 0.1285 0.774 0.083 0.064 0 0.2475 0.655 0.067 0.054 0 0.3505 0.6635 0.075 0.067 0 0.393 0.739 0.064 0.058 0 0.4725 0.7985 0.063 0.061 0 0.4525 0.8615 0.057 0.059 0 0.4175 0.8975 0.059 0.053 0 0.352 0.976 0.058 0.048 0 0.475 0.9545 0.06 0.063 0 0.587
10%|█ | 50/486 [00:03<00:20, 20.97it/s]
0.917 0.062 0.066 0 0.6705 0.77 0.059 0.06 0 0.85 0.9725 0.068 0.055 0 0.747 0.1545 0.068 0.071 0 0.8625 0.054 0.067 0.072 0 0.7965 0.0285 0.063 0.055 0 0.933 0.0415 0.068 0.071 0 0.9165 0.78 0.071 0.07 0 0.928 0.9175 0.062 0.073 0 0.8525 0.92 0.057 0.062 0 0.8045 0.82 0.063 0.072 0 0.7625 0.9055 0.059 0.057 0 0.7075 0.903 0.053 0.058 0 0.6435 0.8025 0.061 0.063 0 0.524 0.873 0.066 0.068 0 0.6305 0.6605 0.053 0.073 0 0.6345 0.389 0.061 0.056 0 0.316 0.9615 0.066 0.063 0 0.3295 0.8255 0.049 0.065 0 0.3575 0.729 0.047 0.046 0 0.394 0.67 0.07 0.074 0 0.3575 0.593 0.057 0.064 0 0.364 0.454 0.072 0.064 0 0.2685 0.661 0.065 0.068 0 0.2005 0.7625 0.055 0.071 0 0.044 0.7765 0.076 0.077 0 0.1155 0.792 0.053 0.048 0 0.174 0.866 0.074 0.07 0 0.152 0.9465 0.062 0.061 0 0.2285 0.9305 0.055 0.065 0 0.471 0.2605 0.064 0.061 0 0.485 0.034 0.062 0.066 0 0.4405 0.8155 0.059 0.059 0 0.891 0.0785 0.058 0.059 0 0.847 0.171 0.068 0.072 0 0.717 0.1635 0.058 0.061 0 0.5405 0.046 0.065 0.066 0 0.057 0.089 0.066 0.066 0 0.244 0.1545 0.074 0.063 0 0.412 0.2205 0.076 0.073 0 0.7305 0.3025 0.097 0.105 0 0.706 0.3925 0.078 0.075 0 0.7985 0.2925 0.079 0.077 0 0.9035 0.434 0.075 0.082 0 0.0645 0.271 0.081 0.084 0 0.08 0.4345 0.08 0.081 0 0.166 0.4275 0.074 0.075 0 0.2515 0.4355 0.079 0.067 0 0.1185 0.546 0.093 0.092 0 0.278 0.63 0.076 0.072 0 0.273 0.5265 0.072 0.069 0 0.372 0.5455 0.07 0.065 0 0.368 0.643 0.094 0.086 0 0.3265 0.736 0.083 0.08 0 0.4395 0.687 0.073 0.074 0 0.4835 0.5915 0.089 0.079 0 0.427 0.7765 0.094 0.089 0 0.5015 0.804 0.091 0.086 0 0.5655 0.737 0.081 0.078 0 0.622 0.6325 0.078 0.069 0 0.6575 0.5895 0.081 0.071 0 0.641 0.771 0.076 0.082 0 0.726 0.784 0.09 0.084 0 0.8375 0.8855 0.075 0.077 0 0.8765 0.9485 0.061 0.061 0 0.7615 0.9125 0.067 0.071 0 0.6345 0.9475 0.075 0.075 0 0.545 0.8815 0.074 0.071 0 0.4125 0.8875 0.059 0.059 0 0.4585 0.929 0.073 0.064 0 0.1275 0.907 0.085 0.084 0 0.086 0.971 0.086 0.058 0 0.8535 0.953 0.071 0.07 0 0.966 0.434 0.068 0.07 0 0.937 0.271 0.074 0.072 0 0.7015 0.1425 0.071 0.071 0 0.5095 0.0615 0.083 0.079 0 0.3295 0.062 0.063 0.066 0 0.1545 0.3885 0.077 0.083 0 0.2695 0.463 0.067 0.078 0 0.4195 0.32 0.065 0.062 0 0.3805 0.3945 0.065 0.069 0 0.472 0.502 0.07 0.068 0 0.626 0.496 0.066 0.066 0 0.184 0.6165 0.05 0.049 0 0.1695 0.672 0.067 0.066 0 0.295 0.625 0.066 0.068 0 0.429 0.6425 0.072 0.071 0 0.5605 0.663 0.069 0.066 0 0.663 0.7265 0.088 0.077 0 0.6375 0.8155 0.069 0.059 0 0.3635 0.7835 0.081 0.079 0 0.328 0.8745 0.072 0.067 0 0.309 0.0635 0.068 0.067 0 0.4765 0.039 0.069 0.074 0 0.8715 0.0915 0.083 0.089 0 0.936 0.3615 0.09 0.095 0 0.766 0.277 0.086 0.09 0 0.3645 0.224 0.081 0.078 0 0.211 0.27 0.076 0.076 0 0.2875 0.308 0.067 0.074 0 0.473 0.318 0.09 0.082 0 0.852 0.469 0.078 0.088 0 0.7825 0.4365 0.073 0.095 0 0.9635 0.5745 0.069 0.083 0 0.927 0.839 0.072 0.07 0 0.875 0.95 0.086 0.078 0 0.6805 0.8135 0.089 0.071 0 0.3035 0.829 0.091 0.098 0 0.4295 0.758 0.093 0.096 0 0.177 0.5395 0.088 0.087 0 0.0935 0.466 0.083 0.086 0 0.187
12%|█▏ | 56/486 [00:04<00:21, 19.74it/s]
0.438 0.084 0.088 0 0.1265 0.366 0.083 0.086 0 0.0465 0.3165 0.075 0.075 0 0.033 0.197 0.064 0.076 0 0.8265 0.16 0.095 0.096 0 0.7345 0.3095 0.087 0.097 0 0.6595 0.4455 0.085 0.089 0 0.9395 0.4455 0.093 0.089 0 0.8835 0.5675 0.097 0.087 0 0.9555 0.783 0.079 0.084 0 0.854 0.824 0.086 0.106 0 0.736 0.834 0.09 0.096 0 0.7255 0.758 0.087 0.08 0 0.477 0.9085 0.084 0.079 0 0.481 0.8205 0.078 0.079 0 0.6855 0.899 0.077 0.072 0 0.56 0.787 0.052 0.05 0 0.601 0.708 0.08 0.08 0 0.527 0.722 0.074 0.072 0 0.3385 0.8955 0.083 0.071 0 0.3245 0.826 0.077 0.076 0 0.409 0.8045 0.078 0.071 0 0.3385 0.748 0.069 0.066 0 0.433 0.7305 0.074 0.063 0 0.373 0.668 0.082 0.076 0 0.44 0.6655 0.082 0.081 0 0.301 0.625 0.066 0.07 0 0.1605 0.97 0.071 0.052 0 0.1305 0.6535 0.057 0.057 0 0.394 0.587 0.082 0.08 0 0.4735 0.5415 0.075 0.073 0 0.414 0.5035 0.076 0.063 0 0.366 0.424 0.074 0.072 0 0.4655 0.4255 0.079 0.079 0 0.5965 0.582 0.077 0.082 0 0.3635 0.3405 0.077 0.071 0 0.4345 0.3045 0.073 0.077 0 0.6745 0.0395 0.087 0.077 0 0.1645 0.07 0.087 0.092 0 0.0845 0.2065 0.097 0.099 0 0.3905 0.0365 0.067 0.059 0 0.565 0.0695 0.054 0.057 0 0.5955 0.1865 0.057 0.057 0 0.7545 0.1865 0.071 0.073 0 0.561 0.2565 0.062 0.063 0 0.4835 0.2515 0.061 0.059 0 0.3965 0.301 0.055 0.058 0 0.2495 0.276 0.095 0.086 0 0.193 0.3825 0.1 0.101 0 0.136 0.514 0.092 0.1 0 0.141 0.672 0.086 0.09 0 0.047 0.6825 0.072 0.073 0 0.1335 0.751 0.083 0.084 0 0.3465 0.676 0.081 0.068 0 0.2865 0.8355 0.073 0.073 0 0.214 0.953 0.076 0.072 0 0.536 0.9575 0.086 0.077 0 0.605 0.9605 0.084 0.079 0 0.6695 0.838 0.069 0.074 0 0.7195 0.753 0.089 0.086 0 0.6005 0.698 0.097 0.092 0 0.67 0.659 0.078 0.076 0 0.678 0.587 0.074 0.08 0 0.781 0.677 0.082 0.098 0 0.569 0.4545 0.054 0.051 0 0.654 0.3465 0.064 0.067 0 0.8565 0.253 0.053 0.054 0 0.8055 0.385 0.085 0.086 0 0.7475 0.493 0.081 0.068 0 0.8335 0.555 0.063 0.066 0 0.868 0.4545 0.066 0.071 0 0.915 0.402 0.078 0.092 0 0.2505 0.064 0.069 0.066 0 0.104 0.1185 0.064 0.073 0 0.363 0.2605 0.052 0.061 0 0.476 0.2345 0.054 0.055 0 0.541 0.2475 0.064 0.073 0 0.636 0.2575 0.05 0.053 0 0.288 0.408 0.054 0.06 0 0.3485 0.4315 0.079 0.095 0 0.2765 0.543 0.103 0.09 0 0.2125 0.6585 0.055 0.059 0 0.09 0.8885 0.084 0.077 0 0.282 0.953 0.092 0.086 0 0.361 0.789 0.082 0.094 0 0.4135 0.77 0.049 0.056 0 0.4495 0.66 0.101 0.1 0 0.527 0.5225 0.094 0.093 0 0.509 0.959 0.066 0.066 0 0.6935 0.8925 0.061 0.069 0 0.8905 0.7325 0.059 0.065 0 0.1265 0.0615 0.061 0.063 0 0.186 0.1285 0.068 0.061 0 0.6335 0.0275 0.059 0.053 0 0.8885 0.031 0.079 0.06 0 0.963 0.259 0.074 0.072 0 0.825 0.2135 0.082 0.077 0 0.6635 0.197 0.091 0.072 0 0.5955 0.12 0.085 0.078 0 0.61 0.3045 0.078 0.079 0 0.6975 0.3745 0.067 0.067 0 0.4715 0.4275 0.053 0.047 0 0.684 0.49 0.058 0.056 0 0.691 0.582 0.066 0.066 0 0.794 0.6525 0.072 0.061 0 0.5435 0.555 0.059 0.056 0 0.957 0.801 0.068 0.064 0 0.9145 0.604 0.087 0.07 0 0.5705 0.7075 0.063 0.061 0 0.497 0.661 0.082 0.08 0 0.568 0.895 0.068 0.068 0 0.4675 0.852 0.091 0.086 0 0.3385 0.894 0.067 0.064 0 0.175 0.823 0.066 0.07 0 0.0715 0.7765 0.067 0.075 0 0.1075 0.699 0.057 0.056 0 0.0805 0.5715 0.071 0.075 0 0.167 0.5755 0.078 0.083 0 0.24 0.6335 0.07 0.071 0 0.0505 0.4505 0.059 0.065
12%|█▏ | 59/486 [00:04<00:22, 19.37it/s]
0 0.9275 0.798 0.063 0.064 0 0.9195 0.886 0.063 0.062 0 0.7895 0.8705 0.061 0.059 0 0.588 0.8445 0.068 0.061 0 0.74 0.8 0.058 0.062 0 0.805 0.7265 0.06 0.069 0 0.844 0.6625 0.062 0.063 0 0.8215 0.598 0.057 0.068 0 0.6375 0.7265 0.061 0.065 0 0.6255 0.63 0.061 0.06 0 0.531 0.675 0.064 0.06 0 0.326 0.931 0.06 0.062 0 0.215 0.9125 0.068 0.057 0 0.052 0.958 0.062 0.06 0 0.075 0.8965 0.056 0.055 0 0.2045 0.842 0.053 0.066 0 0.2225 0.7365 0.051 0.077 0 0.046 0.6365 0.064 0.065 0 0.1315 0.604 0.079 0.078 0 0.208 0.556 0.068 0.068 0 0.2875 0.573 0.073 0.08 0 0.369 0.615 0.08 0.082 0 0.457 0.5055 0.058 0.059 0 0.3425 0.4325 0.061 0.061 0 0.228 0.375 0.072 0.062 0 0.1465 0.343 0.071 0.074 0 0.0655 0.426 0.063 0.062 0 0.0825 0.2915 0.073 0.073 0 0.5025 0.3735 0.057 0.055 0 0.3085 0.1935 0.065 0.069 0 0.1395 0.032 0.069 0.06 0 0.2245 0.0325 0.065 0.061 0 0.349 0.045 0.058 0.054 0 0.4385 0.116 0.063 0.064 0 0.504 0.079 0.066 0.062 0 0.567 0.0485 0.062 0.061 0 0.634 0.026 0.066 0.05 0 0.824 0.0365 0.068 0.069 0 0.925 0.164 0.072 0.068 0 0.797 0.1115 0.066 0.063 0 0.6335 0.1275 0.073 0.069 0 0.573 0.1895 0.084 0.081 0 0.661 0.18 0.072 0.07 0 0.6525 0.2875 0.059 0.051 0 0.7995 0.907 0.083 0.076 0 0.645 0.8665 0.076 0.075 0 0.455 0.97 0.074 0.06 0 0.309 0.9585 0.08 0.071 0 0.21 0.9325 0.076 0.071 0 0.1095 0.733 0.077 0.08 0 0.255 0.76 0.072 0.082 0 0.372 0.7895 0.086 0.087 0 0.503 0.8255 0.084 0.083 0 0.556 0.667 0.086 0.088 0 0.301 0.596 0.076 0.076 0 0.042 0.4655 0.072 0.077 0 0.0655 0.356 0.069 0.064 0 0.335 0.4495 0.076 0.081 0 0.478 0.4875 0.068 0.065 0 0.6135 0.5285 0.067 0.073 0 0.7175 0.4405 0.077 0.069 0 0.739 0.203 0.068 0.078 0 0.6265 0.28 0.071 0.07 0 0.861 0.125 0.038 0.048 0 0.7085 0.051 0.075 0.068 0 0.476 0.128 0.078 0.074 0 0.2395 0.0655 0.067 0.063 0 0.163 0.048 0.07 0.064 0 0.9595 0.9135 0.067 0.065 0 0.813 0.913 0.068 0.064 0 0.868 0.854 0.076 0.074 0 0.9165 0.775 0.091 0.086 0 0.7505 0.7905 0.077 0.073 0 0.829 0.7415 0.072 0.065 0 0.966 0.651 0.068 0.072 0 0.89 0.622 0.058 0.058 0 0.6235 0.7435 0.061 0.057 0 0.7075 0.681 0.059 0.058 0 0.568 0.7075 0.062 0.057 0 0.5125 0.756 0.075 0.064 0 0.624 0.6495 0.076 0.065 0 0.7945 0.5535 0.073 0.071 0 0.9115 0.4445 0.075 0.069 0 0.922 0.382 0.066 0.066 0 0.975 0.3125 0.05 0.065 0 0.933 0.327 0.048 0.05 0 0.8785 0.302 0.047 0.052 0 0.912 0.047 0.06 0.06 0 0.7945 0.439 0.075 0.102 0 0.7235 0.4285 0.097 0.095 0 0.6865 0.4785 0.101 0.099 0 0.5885 0.5335 0.071 0.069 0 0.338 0.909 0.058 0.062 0 0.1625 0.95 0.077 0.08 0 0.0845 0.929 0.089 0.09 0 0.334 0.7915 0.082 0.089 0 0.1865 0.786 0.061 0.052 0 0.165 0.726 0.082 0.08 0 0.0745 0.704 0.081 0.082 0 0.5335 0.489 0.061 0.056 0 0.408 0.5445 0.066 0.069 0 0.452 0.465 0.078 0.08 0 0.3265 0.5345 0.073 0.067 0 0.2455 0.506 0.075 0.074 0 0.4415 0.3395 0.081 0.081 0 0.614 0.216 0.08 0.084 0 0.4575 0.24 0.069 0.068 0 0.259 0.382 0.074 0.074 0 0.273 0.328 0.076 0.07 0 0.2835 0.2915 0.057 0.051 0 0.3315 0.2935 0.067 0.077 0 0.153 0.393 0.042 0.048 0 0.0965 0.3895 0.069 0.065 0 0.104 0.19 0.058 0.05 0 0.2205 0.22 0.067 0.068 0 0.048 0.1165 0.07 0.079 0 0.073 0.046 0.076 0.068 0 0.174 0.1015 0.078 0.089 0 0.2645 0.122 0.079 0.086 0 0.4285 0.1285 0.073 0.071 0 0.3935 0.038 0.085 0.074 0 0.167 0.759 0.056 0.058 0 0.8955 0.813 0.073 0.068 0 0.927 0.7395 0.088 0.087 0 0.966 0.6585 0.068 0.069 0 0.899 0.2255 0.076 0.079 0 0.884 0.4205 0.056 0.051 0 0.7385 0.5035 0.079 0.089 0 0.6725 0.4895 0.059 0.059 0 0.6295 0.424 0.085 0.088 0 0.4575 0.4345 0.093 0.087 0 0.5585 0.379 0.073 0.07 0 0.719 0.337 0.09 0.082 0 0.579 0.305 0.078 0.074 0 0.662 0.2655 0.086 0.083 0 0.688 0.191 0.072 0.07 0 0.5185 0.2395 0.069 0.069 0 0.6045 0.1685 0.097 0.099 0 0.664 0.0565 0.096 0.089 0 0.5055 0.0705 0.075 0.081 0 0.432 0.0475 0.074 0.081 0 0.268 0.1435 0.07 0.077 0 0.3755 0.196 0.095 0.09
13%|█▎ | 64/486 [00:04<00:20, 20.60it/s]
0 0.942 0.589 0.112 0.114 0 0.882 0.71 0.096 0.088 0 0.839 0.818 0.088 0.09 0 0.7795 0.925 0.099 0.102 0 0.563 0.967 0.068 0.066 0 0.418 0.962 0.084 0.076 0 0.582 0.8675 0.098 0.097 0 0.6765 0.701 0.093 0.086 0 0.7585 0.5545 0.101 0.093 0 0.929 0.2255 0.076 0.073 0 0.968 0.1245 0.064 0.067 0 0.664 0.0555 0.106 0.097 0 0.6085 0.1265 0.099 0.097 0 0.676 0.2725 0.08 0.081 0 0.59 0.418 0.078 0.082 0 0.5235 0.5595 0.091 0.083 0 0.48 0.3975 0.09 0.083 0 0.4425 0.497 0.077 0.084 0 0.3645 0.6245 0.095 0.093 0 0.335 0.723 0.092 0.096 0 0.2475 0.8425 0.069 0.069 0 0.1785 0.8375 0.075 0.077 0 0.12 0.937 0.076 0.078 0 0.2565 0.969 0.083 0.062 0 0.0595 0.766 0.079 0.084 0 0.2365 0.4175 0.089 0.091 0 0.311 0.4205 0.08 0.079 0 0.3615 0.397 0.089 0.09 0 0.039 0.1155 0.066 0.063 0 0.2315 0.054 0.083 0.076 0 0.1935 0.1365 0.083 0.081 0 0.1355 0.2305 0.103 0.095 0 0.0775 0.3395 0.091 0.091 0 0.0385 0.454 0.075 0.106 0 0.1895 0.495 0.069 0.074 0 0.362 0.399 0.074 0.07 0 0.6775 0.311 0.081 0.074 0 0.6905 0.0365 0.077 0.071 0 0.8005 0.025 0.055 0.048 0 0.9695 0.108 0.061 0.088 0 0.916 0.146 0.072 0.066 0 0.938 0.23 0.09 0.09 0 0.9715 0.3935 0.057 0.061 0 0.9135 0.4965 0.077 0.079 0 0.8005 0.602 0.077 0.068 0 0.938 0.659 0.09 0.092 0 0.864 0.7835 0.086 0.091 0 0.037 0.852 0.072 0.074 0 0.043 0.784 0.06 0.06 0 0.1595 0.77 0.081 0.078 0 0.1195 0.6525 0.075 0.077 0 0.222 0.7105 0.072 0.075 0 0.0995 0.5225 0.071 0.075 0 0.027 0.3395 0.052 0.071 0 0.1255 0.361 0.067 0.07 0 0.3585 0.856 0.069 0.07 0 0.4285 0.805 0.073 0.072 0 0.636 0.7715 0.064 0.061 0 0.0335 0.1105 0.061 0.073 0 0.0845 0.156 0.067 0.066 0 0.182 0.2295 0.062 0.057 0 0.336 0.3435 0.076 0.069 0 0.554 0.436 0.064 0.07 0 0.618 0.502 0.064 0.062 0 0.8075 0.5075 0.085 0.089 0 0.808 0.5995 0.068 0.065 0 0.9125 0.5415 0.061 0.063 0 0.9285 0.654 0.067 0.062 0 0.9005 0.3125 0.071 0.069 0 0.838 0.212 0.06 0.056 0 0.6205 0.2105 0.067 0.065 0 0.5185 0.1795 0.067 0.071 0 0.4425 0.154 0.059 0.07 0 0.214 0.047 0.054 0.06 0 0.4025 0.0485 0.059 0.063 0 0.48 0.0625 0.056 0.059 0 0.6315 0.076 0.067 0.066 0 0.7035 0.158 0.055 0.056 0 0.856 0.087 0.056 0.054 0 0.963 0.06 0.056 0.064 0 0.181 0.052 0.082 0.082 0 0.0565 0.288 0.063 0.066 0 0.103 0.4005 0.07 0.065 0 0.043 0.5025 0.07 0.073 0 0.066 0.614 0.072 0.062 0 0.179 0.529 0.074 0.074 0 0.153 0.6425 0.078 0.091 0 0.265 0.607 0.084 0.076 0 0.4315 0.4925 0.061 0.061 0 0.5205 0.428 0.067 0.066 0 0.6565 0.121 0.063 0.066 0 0.714 0.2415 0.052 0.055 0 0.9575 0.4535 0.085 0.093 0 0.6535 0.5895 0.067 0.067 0 0.907 0.647 0.068 0.06 0 0.7905 0.663 0.075 0.074 0 0.776 0.76 0.084 0.092 0 0.6355 0.711 0.091 0.092 0 0.557 0.693 0.078 0.076 0 0.483 0.652 0.08 0.078 0 0.404 0.6555 0.068 0.069 0 0.301 0.747 0.056 0.058 0 0.3745 0.8475 0.077 0.073 0 0.4825 0.918 0.071 0.078 0 0.5815 0.866 0.073 0.07 0 0.727 0.859 0.08 0.072 0 0.96 0.9475 0.064 0.073 0 0.8605 0.937 0.053 0.056 0 0.8175 0.9215 0.067 0.089 0 0.0635 0.056 0.079 0.082 0 0.1855 0.07 0.065 0.07 0 0.042 0.1945 0.076 0.079 0 0.1425 0.217 0.061 0.064 0 0.255 0.2355 0.07 0.063 0 0.3735 0.2645 0.069 0.067 0 0.515 0.3025 0.072 0.071 0 0.6515 0.34 0.071 0.064 0 0.573 0.193 0.076 0.078 0 0.5905 0.033 0.081 0.064 0 0.7545 0.059 0.067 0.074 0 0.8295 0.082 0.063 0.062 0 0.7715 0.1315 0.069 0.067 0 0.869 0.247 0.076 0.086 0 0.111 0.3455 0.084 0.087 0 0.215 0.3595 0.084 0.085 0 0.359 0.433 0.076 0.082 0 0.482 0.4635 0.074 0.075 0 0.6125 0.4905 0.079 0.085 0 0.742 0.5375 0.082 0.089 0 0.893 0.57 0.07 0.072 0 0.8425 0.699 0.077 0.084 0 0.687 0.6885 0.068 0.085 0 0.582 0.662 0.064 0.076 0 0.4465 0.621 0.069 0.074 0 0.166 0.522 0.076 0.08 0 0.0835 0.4645 0.063 0.063 0 0.285 0.6795 0.09 0.089 0 0.134 0.7715 0.088 0.085 0 0.1675 0.95 0.059 0.062 0 0.524 0.7855 0.084 0.077 0 0.6635
14%|█▍ | 67/486 [00:04<00:21, 19.49it/s]
0.8195 0.071 0.071 0 0.7905 0.8435 0.069 0.065 0 0.91 0.8265 0.072 0.073 0 0.0275 0.282 0.053 0.072 0 0.195 0.3225 0.074 0.079 0 0.155 0.458 0.068 0.078 0 0.2675 0.4385 0.075 0.087 0 0.3195 0.418 0.059 0.06 0 0.606 0.0805 0.068 0.073 0 0.585 0.346 0.088 0.09 0 0.7105 0.356 0.083 0.082 0 0.8915 0.5255 0.079 0.075 0 0.713 0.4955 0.084 0.089 0 0.575 0.4765 0.084 0.083 0 0.4245 0.4865 0.079 0.083 0 0.0435 0.5925 0.073 0.081 0 0.113 0.5735 0.058 0.061 0 0.0825 0.69 0.075 0.076 0 0.239 0.574 0.082 0.08 0 0.2065 0.689 0.057 0.068 0 0.586 0.615 0.076 0.08 0 0.1765 0.806 0.071 0.074 0 0.0615 0.8285 0.081 0.089 0 0.0945 0.8995 0.057 0.061 0 0.058 0.9655 0.086 0.069 0 0.185 0.963 0.068 0.064 0 0.0275 0.282 0.053 0.072 0 0.195 0.3225 0.074 0.079 0 0.155 0.458 0.068 0.078 0 0.2675 0.4385 0.075 0.087 0 0.3195 0.418 0.059 0.06 0 0.606 0.0805 0.068 0.073 0 0.585 0.346 0.088 0.09 0 0.7105 0.356 0.083 0.082 0 0.8915 0.5255 0.079 0.075 0 0.713 0.4955 0.084 0.089 0 0.575 0.4765 0.084 0.083 0 0.4245 0.4865 0.079 0.083 0 0.0435 0.5925 0.073 0.081 0 0.113 0.5735 0.058 0.061 0 0.0825 0.69 0.075 0.076 0 0.239 0.574 0.082 0.08 0 0.2065 0.689 0.057 0.068 0 0.586 0.615 0.076 0.08 0 0.1765 0.806 0.071 0.074 0 0.0615 0.8285 0.081 0.089 0 0.0945 0.8995 0.057 0.061 0 0.058 0.9655 0.086 0.069 0 0.185 0.963 0.068 0.064 0 0.8155 0.1535 0.105 0.103 0 0.713 0.125 0.084 0.088 0 0.5915 0.0825 0.085 0.093 0 0.6375 0.087 0.059 0.064 0 0.6345 0.038 0.057 0.056 0 0.498 0.059 0.112 0.11 0 0.218 0.0505 0.102 0.089 0 0.1525 0.1735 0.099 0.095 0 0.2615 0.2455 0.105 0.105 0 0.356 0.1895 0.078 0.077 0 0.4095 0.275 0.091 0.082 0 0.494 0.1685 0.074 0.073 0 0.6015 0.2825 0.095 0.103 0 0.6955 0.316 0.093 0.11 0 0.78 0.359 0.098 0.102 0 0.5415 0.4145 0.069 0.067 0 0.3035 0.347 0.095 0.102 0 0.0935 0.321 0.091 0.106 0 0.036 0.48 0.062 0.066 0 0.2925 0.4885 0.055 0.059 0 0.236 0.7295 0.078 0.077 0 0.1895 0.8005 0.077 0.071 0 0.132 0.914 0.068 0.064 0 0.3065 0.8725 0.061 0.057 0 0.3605 0.866 0.075 0.084 0 0.3905 0.7295 0.097 0.093 0 0.4725 0.6675 0.069 0.069 0 0.541 0.609 0.09 0.084 0 0.555 0.675 0.062 0.054 0 0.622 0.6945 0.072 0.067 0 0.7955 0.662 0.061 0.054 0 0.609 0.911 0.104 0.1 0 0.6925 0.954 0.103 0.092 0 0.8155 0.1535 0.105 0.103 0 0.713 0.125 0.084 0.088 0 0.5915 0.0825 0.085 0.093 0 0.6375 0.087 0.059 0.064 0 0.6345 0.038 0.057 0.056 0 0.498 0.059 0.112 0.11 0 0.218 0.0505 0.102 0.089 0 0.1525 0.1735 0.099 0.095 0 0.2615 0.2455 0.105 0.105 0 0.356 0.1895 0.078 0.077 0 0.4095 0.275 0.091 0.082 0 0.494 0.1685 0.074 0.073 0 0.6015 0.2825 0.095 0.103 0 0.6955 0.316 0.093 0.11 0 0.78 0.359 0.098 0.102 0 0.5415 0.4145 0.069 0.067 0 0.3035 0.347 0.095 0.102 0 0.0935 0.321 0.091 0.106 0 0.036 0.48 0.062 0.066 0 0.2925 0.4885 0.055 0.059 0 0.236 0.7295 0.078 0.077 0 0.1895 0.8005 0.077 0.071 0 0.132 0.914 0.068 0.064 0 0.3065 0.8725 0.061 0.057 0 0.3605 0.866 0.075 0.084 0 0.3905 0.7295 0.097 0.093 0 0.4725 0.6675 0.069 0.069 0 0.541 0.609 0.09 0.084 0 0.555 0.675 0.062 0.054 0 0.622 0.6945 0.072 0.067 0 0.7955 0.662 0.061 0.054 0 0.609 0.911 0.104 0.1 0 0.6925 0.954 0.103 0.092 0 0.115 0.099 0.072 0.074 0 0.2155 0.163 0.075 0.076 0 0.414 0.089 0.094 0.092 0 0.491 0.1585 0.076 0.073 0 0.638 0.058 0.076 0.072 0 0.596 0.122 0.078 0.076 0 0.7885 0.0535 0.087 0.089 0 0.9315 0.0515 0.103 0.085 0 0.7295
14%|█▍ | 69/486 [00:05<00:28, 14.61it/s]
0.1345 0.079 0.079 0 0.8125 0.1455 0.055 0.063 0 0.8545 0.1985 0.073 0.069 0 0.953 0.292 0.078 0.082 0 0.802 0.3195 0.09 0.079 0 0.6965 0.246 0.079 0.068 0 0.557 0.238 0.086 0.088 0 0.5325 0.3095 0.081 0.069 0 0.638 0.3705 0.094 0.087 0 0.2355 0.425 0.071 0.072 0 0.4575 0.424 0.071 0.07 0 0.5235 0.514 0.079 0.07 0 0.8955 0.415 0.075 0.068 0 0.856 0.489 0.072 0.07 0 0.7305 0.4515 0.079 0.065 0 0.627 0.534 0.086 0.084 0 0.398 0.5775 0.084 0.075 0 0.5115 0.5975 0.079 0.075 0 0.1225 0.6935 0.095 0.091 0 0.3755 0.6635 0.081 0.067 0 0.3265 0.728 0.075 0.076 0 0.489 0.6915 0.082 0.081 0 0.605 0.7385 0.102 0.099 0 0.285 0.825 0.096 0.084 0 0.18 0.8675 0.09 0.085 0 0.1155 0.9275 0.067 0.065 0 0.2105 0.9135 0.071 0.059 0 0.3885 0.895 0.081 0.08 0 0.4215 0.8125 0.069 0.067 0 0.514 0.904 0.062 0.062 0 0.47 0.969 0.072 0.062 0 0.701 0.831 0.068 0.068 0 0.6845 0.9205 0.075 0.075 0 0.7485 0.75 0.071 0.07 0 0.78 0.6705 0.07 0.071 0 0.8085 0.5725 0.083 0.083 0 0.968 0.5575 0.064 0.077 0 0.929 0.6335 0.072 0.071 0 0.967 0.686 0.066 0.074 0 0.9295 0.7755 0.063 0.071 0 0.9015 0.8455 0.077 0.077 0 0.8625 0.909 0.065 0.064 0 0.115 0.099 0.072 0.074 0 0.2155 0.163 0.075 0.076 0 0.414 0.089 0.094 0.092 0 0.491 0.1585 0.076 0.073 0 0.638 0.058 0.076 0.072 0 0.596 0.122 0.078 0.076 0 0.7885 0.0535 0.087 0.089 0 0.9315 0.0515 0.103 0.085 0 0.7295 0.1345 0.079 0.079 0 0.8125 0.1455 0.055 0.063 0 0.8545 0.1985 0.073 0.069 0 0.953 0.292 0.078 0.082 0 0.802 0.3195 0.09 0.079 0 0.6965 0.246 0.079 0.068 0 0.557 0.238 0.086 0.088 0 0.5325 0.3095 0.081 0.069 0 0.638 0.3705 0.094 0.087 0 0.2355 0.425 0.071 0.072 0 0.4575 0.424 0.071 0.07 0 0.5235 0.514 0.079 0.07 0 0.8955 0.415 0.075 0.068 0 0.856 0.489 0.072 0.07 0 0.7305 0.4515 0.079 0.065 0 0.627 0.534 0.086 0.084 0 0.398 0.5775 0.084 0.075 0 0.5115 0.5975 0.079 0.075 0 0.1225 0.6935 0.095 0.091 0 0.3755 0.6635 0.081 0.067 0 0.3265 0.728 0.075 0.076 0 0.489 0.6915 0.082 0.081 0 0.605 0.7385 0.102 0.099 0 0.285 0.825 0.096 0.084 0 0.18 0.8675 0.09 0.085 0 0.1155 0.9275 0.067 0.065 0 0.2105 0.9135 0.071 0.059 0 0.3885 0.895 0.081 0.08 0 0.4215 0.8125 0.069 0.067 0 0.514 0.904 0.062 0.062 0 0.47 0.969 0.072 0.062 0 0.701 0.831 0.068 0.068 0 0.6845 0.9205 0.075 0.075 0 0.7485 0.75 0.071 0.07 0 0.78 0.6705 0.07 0.071 0 0.8085 0.5725 0.083 0.083 0 0.968 0.5575 0.064 0.077 0 0.929 0.6335 0.072 0.071 0 0.967 0.686 0.066 0.074 0 0.9295 0.7755 0.063 0.071 0 0.9015 0.8455 0.077 0.077 0 0.8625 0.909 0.065 0.064 0 0.0555 0.0775 0.073 0.077 0 0.136 0.1225 0.072 0.073 0 0.2275 0.0395 0.081 0.071 0 0.11 0.2385 0.086 0.083 0 0.0715 0.3235 0.091 0.097 0 0.3215 0.2275 0.067 0.073 0 0.2145 0.2865 0.071 0.065 0 0.296 0.335 0.068 0.066 0 0.251 0.41 0.088 0.092 0 0.4035 0.357 0.075 0.072 0 0.3615 0.463 0.061 0.062 0 0.1545 0.579 0.085 0.076 0 0.3425 0.5395 0.093 0.079 0 0.3085 0.6085 0.081 0.083 0 0.2195 0.7015 0.069 0.061 0 0.092 0.736 0.082 0.094 0 0.0435 0.8 0.055 0.062 0 0.1995 0.869 0.081 0.08 0 0.271 0.9605 0.084 0.075 0 0.37 0.7445 0.074 0.071 0 0.4605 0.8215 0.061 0.065 0 0.55 0.907 0.072 0.076 0 0.6205 0.91 0.069 0.076 0 0.4885 0.7585 0.073 0.071 0 0.7495 0.9485 0.071 0.073 0 0.7075 0.789 0.083 0.086 0 0.787 0.7035 0.064 0.075 0 0.907 0.655 0.066 0.074 0 0.85 0.6035 0.076 0.073 0 0.866 0.5355 0.072 0.071 0 0.91 0.4505 0.078 0.081 0 0.9645 0.33 0.071 0.074 0 0.695 0.634 0.072 0.07 0 0.717 0.5665 0.072 0.075 0 0.767 0.505 0.076 0.082 0 0.7945 0.4045 0.081 0.081 0 0.8485 0.299 0.069 0.07 0 0.5305 0.6545 0.077 0.071 0 0.5795 0.587 0.073 0.08 0 0.657 0.4705 0.05 0.051 0 0.6605 0.4235 0.077 0.071 0 0.696 0.308 0.082 0.084 0 0.958 0.097 0.078 0.076 0 0.833 0.088 0.076 0.082 0 0.691 0.058 0.06 0.066 0 0.644 0.124 0.054 0.056 0 0.64 0.2335 0.066 0.069 0 0.5795 0.287 0.069 0.074 0 0.5515 0.3965 0.065 0.069 0 0.446 0.59 0.052 0.064 0 0.0555 0.0775 0.073 0.077 0 0.136 0.1225 0.072 0.073 0 0.2275 0.0395 0.081 0.071 0 0.11 0.2385 0.086 0.083
15%|█▍ | 71/486 [00:05<00:33, 12.56it/s]
0 0.0715 0.3235 0.091 0.097 0 0.3215 0.2275 0.067 0.073 0 0.2145 0.2865 0.071 0.065 0 0.296 0.335 0.068 0.066 0 0.251 0.41 0.088 0.092 0 0.4035 0.357 0.075 0.072 0 0.3615 0.463 0.061 0.062 0 0.1545 0.579 0.085 0.076 0 0.3425 0.5395 0.093 0.079 0 0.3085 0.6085 0.081 0.083 0 0.2195 0.7015 0.069 0.061 0 0.092 0.736 0.082 0.094 0 0.0435 0.8 0.055 0.062 0 0.1995 0.869 0.081 0.08 0 0.271 0.9605 0.084 0.075 0 0.37 0.7445 0.074 0.071 0 0.4605 0.8215 0.061 0.065 0 0.55 0.907 0.072 0.076 0 0.6205 0.91 0.069 0.076 0 0.4885 0.7585 0.073 0.071 0 0.7495 0.9485 0.071 0.073 0 0.7075 0.789 0.083 0.086 0 0.787 0.7035 0.064 0.075 0 0.907 0.655 0.066 0.074 0 0.85 0.6035 0.076 0.073 0 0.866 0.5355 0.072 0.071 0 0.91 0.4505 0.078 0.081 0 0.9645 0.33 0.071 0.074 0 0.695 0.634 0.072 0.07 0 0.717 0.5665 0.072 0.075 0 0.767 0.505 0.076 0.082 0 0.7945 0.4045 0.081 0.081 0 0.8485 0.299 0.069 0.07 0 0.5305 0.6545 0.077 0.071 0 0.5795 0.587 0.073 0.08 0 0.657 0.4705 0.05 0.051 0 0.6605 0.4235 0.077 0.071 0 0.696 0.308 0.082 0.084 0 0.958 0.097 0.078 0.076 0 0.833 0.088 0.076 0.082 0 0.691 0.058 0.06 0.066 0 0.644 0.124 0.054 0.056 0 0.64 0.2335 0.066 0.069 0 0.5795 0.287 0.069 0.074 0 0.5515 0.3965 0.065 0.069 0 0.446 0.59 0.052 0.064 0 0.1675 0.031 0.087 0.06 0 0.129 0.1005 0.086 0.087 0 0.053 0.1595 0.084 0.077 0 0.0385 0.2405 0.073 0.079 0 0.493 0.4105 0.058 0.059 0 0.8965 0.605 0.053 0.06 0 0.8115 0.8085 0.051 0.065 0 0.896 0.029 0.07 0.054 0 0.1675 0.031 0.087 0.06 0 0.129 0.1005 0.086 0.087 0 0.053 0.1595 0.084 0.077 0 0.0385 0.2405 0.073 0.079 0 0.493 0.4105 0.058 0.059 0 0.8965 0.605 0.053 0.06 0 0.8115 0.8085 0.051 0.065 0 0.896 0.029 0.07 0.054 0 0.0435 0.1985 0.071 0.073 0 0.127 0.222 0.054 0.058 0 0.5345 0.1035 0.073 0.071 0 0.862 0.102 0.082 0.092 0 0.794 0.2085 0.09 0.093 0 0.952 0.4855 0.064 0.075 0 0.9645 0.695 0.071 0.08 0 0.9125 0.632 0.083 0.088 0 0.844 0.6265 0.074 0.081 0 0.7085 0.5715 0.075 0.071 0 0.4565 0.5665 0.065 0.061 0 0.1385 0.5995 0.069 0.085 0 0.195 0.613 0.068 0.078 0 0.274 0.641 0.082 0.094 0 0.332 0.6775 0.072 0.079 0 0.398 0.6865 0.078 0.083 0 0.469 0.727 0.088 0.092 0 0.643 0.775 0.082 0.084 0 0.7155 0.824 0.073 0.072 0 0.774 0.8405 0.058 0.073 0 0.832 0.8615 0.064 0.081 0 0.8895 0.883 0.071 0.086 0 0.9365 0.91 0.071 0.088 0 0.041 0.7975 0.074 0.087 0 0.1095 0.826 0.081 0.098 0 0.2035 0.8705 0.079 0.079 0 0.271 0.8385 0.074 0.069 0 0.36 0.916 0.088
15%|█▌ | 73/486 [00:05<00:32, 12.87it/s]
0.088 0 0.431 0.9405 0.076 0.081 0 0.073 0.9555 0.076 0.073 0 0.4205 0.038 0.075 0.074 0 0.369 0.103 0.078 0.078 0 0.5085 0.1535 0.055 0.059 0 0.196 0.211 0.068 0.072 0 0.258 0.2295 0.044 0.051 0 0.3725 0.2615 0.067 0.073 0 0.4555 0.26 0.055 0.05 0 0.531 0.234 0.062 0.058 0 0.755 0.1445 0.08 0.077 0 0.7955 0.216 0.069 0.07 0 0.6915 0.243 0.073 0.074 0 0.8855 0.287 0.071 0.08 0 0.879 0.3505 0.076 0.063 0 0.0835 0.447 0.063 0.056 0 0.1835 0.393 0.069 0.064 0 0.248 0.4115 0.064 0.055 0 0.405 0.387 0.064 0.074 0 0.4795 0.4575 0.059 0.063 0 0.5495 0.352 0.091 0.094 0 0.7355 0.3985 0.055 0.059 0 0.8425 0.425 0.075 0.074 0 0.927 0.4715 0.064 0.061 0 0.8435 0.523 0.059 0.062 0 0.3405 0.485 0.063 0.062 0 0.3885 0.554 0.067 0.076 0 0.462 0.528 0.062 0.066 0 0.5025 0.58 0.069 0.072 0 0.624 0.4635 0.07 0.073 0 0.573 0.508 0.066 0.074 0 0.5685 0.5855 0.059 0.059 0 0.61 0.566 0.076 0.096 0 0.6695 0.568 0.065 0.06 0 0.7345 0.555 0.069 0.066 0 0.804 0.6145 0.066 0.069 0 0.8785 0.6535 0.077 0.095 0 0.873 0.7795 0.064 0.063 0 0.051 0.588 0.054 0.058 0 0.0345 0.71 0.063 0.092 0 0.0875 0.721 0.075 0.094 0 0.139 0.7465 0.08 0.097 0 0.187 0.764 0.056 0.08 0 0.2495 0.7735 0.081 0.091 0 0.0845 0.9535 0.083 0.089 0 0.587 0.913 0.076 0.076 0 0.1895 0.04 0.069 0.07 0 0.402 0.0875 0.056 0.045 0 0.353 0.1645 0.074 0.069 0 0.523 0.1035 0.082 0.079 0 0.6335 0.0305 0.067 0.059 0 0.721 0.036 0.074 0.07 0 0.8755 0.073 0.081 0.092 0 0.7865 0.1875 0.089 0.097 0 0.895 0.285 0.076 0.074 0 0.8345 0.3585 0.089 0.075 0 0.741 0.2885 0.092 0.089 0 0.6635 0.336 0.087 0.082 0 0.6355 0.126 0.081 0.07 0 0.55 0.2235 0.07 0.071 0 0.469 0.2515 0.066 0.069 0 0.121 0.2925 0.05 0.051 0 0.0345 0.4085 0.067 0.071 0 0.149 0.5665 0.064 0.065 0 0.0875 0.6785 0.063 0.067 0 0.179 0.679 0.058 0.054 0 0.0455 0.8365 0.079 0.079 0 0.381 0.7625 0.07 0.079 0 0.495 0.6275 0.06 0.067 0 0.5395 0.482 0.061 0.064 0 0.5785 0.4295 0.075 0.083 0 0.793 0.4445 0.072 0.081 0 0.7035 0.5035 0.063 0.075 0 0.8705 0.5025 0.071 0.081 0 0.9565 0.602 0.073 0.08 0 0.8225 0.625 0.073 0.074 0 0.892 0.6895 0.068 0.081 0 0.5875 0.84 0.047 0.048 0 0.684 0.9035 0.064 0.065 0 0.7015 0.9675 0.089 0.059 0 0.4195 0.949 0.063 0.062 0 0.056 0.0555 0.072 0.075 0 0.2515 0.115 0.071 0.074 0 0.343 0.169 0.07 0.062 0 0.7665 0.034 0.059 0.046 0 0.923 0.025 0.06 0.048 0 0.963 0.179 0.066 0.07 0 0.9095 0.1585 0.093 0.079 0 0.6445 0.2185 0.067 0.071 0 0.556 0.332 0.054 0.05 0 0.62 0.3285 0.05 0.047 0 0.783 0.3385 0.086 0.091 0 0.877 0.3855 0.064 0.077 0 0.9345 0.3745 0.071 0.093 0 0.975 0.435 0.05 0.056 0 0.5875 0.3885 0.053 0.049 0 0.5575 0.434 0.063 0.066 0 0.621 0.45 0.066 0.056 0 0.419 0.5285 0.076 0.085 0 0.5025 0.542 0.073 0.074 0 0.597 0.5265 0.076 0.069 0 0.6995 0.5515 0.083 0.089 0 0.8145 0.585 0.085 0.086 0 0.8925 0.61 0.075 0.078 0 0.091 0.5935 0.076 0.073 0 0.379 0.6835 0.082 0.085 0 0.2975 0.7265 0.065 0.065 0 0.361 0.7925 0.07 0.075 0 0.499 0.6555 0.052 0.057 0 0.557 0.665 0.07 0.066 0 0.754 0.6505 0.064 0.075 0 0.853 0.747 0.066 0.068 0 0.9695 0.7415 0.061 0.083 0 0.975 0.645 0.05 0.058 0 0.5655 0.7485 0.079 0.083 0 0.626 0.7775 0.05 0.087 0 0.6915 0.7885 0.085 0.089 0 0.784 0.829 0.068 0.072 0 0.846 0.844 0.05 0.068 0 0.92 0.87 0.084 0.088 0 0.903 0.9545 0.084 0.073 0 0.6835 0.8915 0.073 0.087 0 0.683 0.9565 0.09 0.071 0 0.5665 0.9595 0.057 0.063 0 0.559 0.855 0.068 0.066 0 0.4995 0.915 0.061
16%|█▌ | 77/486 [00:05<00:29, 14.00it/s]
0.06 0 0.254 0.8775 0.072 0.065 0 0.1665 0.888 0.049 0.046 0 0.251 0.0335 0.084 0.065 0 0.325 0.0465 0.082 0.075 0 0.381 0.065 0.054 0.054 0 0.4305 0.0845 0.069 0.077 0 0.4945 0.108 0.061 0.068 0 0.709 0.114 0.062 0.048 0 0.83 0.1365 0.056 0.059 0 0.919 0.1715 0.066 0.071 0 0.957 0.261 0.058 0.062 0 0.9315 0.3755 0.051 0.051 0 0.632 0.3365 0.072 0.073 0 0.4165 0.2995 0.083 0.067 0 0.363 0.2255 0.068 0.063 0 0.34 0.308 0.062 0.06 0 0.249 0.2665 0.1 0.095 0 0.181 0.226 0.07 0.08 0 0.1115 0.219 0.091 0.086 0 0.059 0.4435 0.078 0.083 0 0.159 0.4685 0.088 0.083 0 0.2305 0.4925 0.071 0.073 0 0.289 0.4565 0.06 0.067 0 0.2775 0.524 0.063 0.07 0 0.528 0.686 0.062 0.06 0 0.8675 0.6605 0.059 0.059 0 0.7025 0.747 0.065 0.07 0 0.674 0.8605 0.058 0.073 0 0.5805 0.809 0.069 0.066 0 0.497 0.7915 0.058 0.055 0 0.6685 0.973 0.065 0.054 0 0.463 0.8755 0.052 0.063 0 0.3725 0.794 0.067 0.062 0 0.2525 0.7515 0.063 0.061 0 0.153 0.71 0.08 0.088 0 0.048 0.6675 0.078 0.087 0 0.0825 0.784 0.057 0.068 0 0.158 0.9225 0.066 0.073 0 0.2245 0.948 0.097 0.084 0 0.0715 0.912 0.057 0.07 0 0.186 0.2015 0.066 0.065 0 0.1595 0.419 0.061 0.062 0 0.2085 0.4725 0.069 0.065 0 0.073 0.5135 0.062 0.067 0 0.057 0.596 0.072 0.064 0 0.086 0.7165 0.06 0.065 0 0.4585 0.545 0.061 0.06 0 0.761 0.322 0.046 0.052 0 0.559 0.9555 0.086 0.075 0 0.895 0.7315 0.076 0.067 0 0.8845 0.7975 0.075 0.065 0 0.8745 0.832 0.065 0.06 0 0.861 0.8985 0.074 0.071 0 0.0895 0.113 0.067 0.07 0 0.0775 0.197 0.071 0.068 0 0.065 0.2835 0.062 0.065 0 0.2095 0.1395 0.061 0.059 0 0.1875 0.182 0.079 0.076 0 0.178 0.2545 0.076 0.067 0 0.1285 0.3665 0.065 0.061 0 0.0655 0.4385 0.061 0.061 0 0.1885 0.4165 0.065 0.065 0 0.232 0.399 0.068 0.07 0 0.179 0.507 0.082 0.078 0 0.0795 0.6275 0.083 0.077 0 0.096 0.7865 0.082 0.087 0 0.1525 0.7 0.059 0.064 0 0.115 0.7185 0.058 0.057 0 0.216 0.64 0.066 0.068 0 0.285 0.513 0.076 0.078 0 0.296 0.4335 0.076 0.077 0 0.2995 0.357 0.071 0.064 0 0.3575 0.324 0.061 0.07 0 0.371 0.42 0.07 0.078 0 0.3925 0.2255 0.065 0.065 0 0.0785 0.915 0.055 0.052 0 0.138 0.961 0.08 0.074 0 0.203 0.876 0.068 0.068 0 0.3425 0.7055 0.073 0.077 0 0.398 0.593 0.062 0.074 0 0.4585 0.4955 0.073 0.081 0 0.576 0.149 0.05 0.052 0 0.6435 0.219 0.057 0.058 0 0.556 0.3005 0.076 0.077 0 0.5835 0.3655 0.069 0.065 0 0.5585 0.4715 0.083 0.067 0 0.5455 0.5855 0.057 0.055 0 0.479 0.6865 0.062 0.061 0 0.4235 0.783 0.047 0.052 0 0.48 0.815 0.07 0.062 0 0.4315 0.9255
16%|█▋ | 79/486 [00:05<00:29, 13.80it/s]
0.085 0.087 0 0.6195 0.7985 0.085 0.081 0 0.554 0.753 0.072 0.078 0 0.6465 0.6675 0.065 0.067 0 0.7715 0.9455 0.079 0.093 0 0.943 0.942 0.084 0.086 0 0.8815 0.7705 0.057 0.063 0 0.833 0.7105 0.058 0.067 0 0.9625 0.681 0.055 0.066 0 0.868 0.5675 0.066 0.073 0 0.794 0.538 0.066 0.078 0 0.717 0.4615 0.068 0.069 0 0.769 0.37 0.062 0.068 0 0.9525 0.539 0.063 0.068 0 0.8555 0.086 0.065 0.064 0 0.056 0.083 0.1 0.104 0 0.2935 0.0685 0.059 0.055 0 0.4145 0.105 0.053 0.062 0 0.2785 0.182 0.067 0.068 0 0.194 0.286 0.056 0.052 0 0.146 0.351 0.062 0.064 0 0.3265 0.32 0.063 0.062 0 0.3835 0.338 0.057 0.066 0 0.4795 0.447 0.065 0.07 0 0.143 0.6585 0.08 0.075 0 0.0355 0.9055 0.069 0.069 0 0.0275 0.9695 0.053 0.059 0 0.442 0.8755 0.09 0.085 0 0.632 0.869 0.07 0.062 0 0.703 0.973 0.07 0.052 0 0.7885 0.972 0.071 0.054 0 0.844 0.831 0.048 0.054 0 0.8675 0.7635 0.083 0.081 0 0.7525 0.704 0.087 0.092 0 0.9675 0.541 0.065 0.072 0 0.8655 0.522 0.091 0.078 0 0.7525 0.475 0.073 0.074 0 0.917 0.4445 0.062 0.059 0 0.8015 0.3815 0.067 0.065 0 0.9645 0.334 0.071 0.07 0 0.836 0.3265 0.078 0.067 0 0.703 0.283 0.064 0.064 0 0.859 0.2455 0.076 0.075 0 0.8875 0.168 0.077 0.08 0 0.928 0.1045 0.086 0.079 0 0.9455 0.0335 0.081 0.065 0 0.757 0.1665 0.058 0.057 0 0.7835 0.0815 0.065 0.075 0 0.6695 0.0405 0.061 0.055 0 0.2675 0.876 0.065 0.066 0 0.3435 0.7515 0.055 0.059 0 0.6355 0.628 0.057 0.056 0 0.548 0.6115 0.062 0.061 0 0.135 0.5035 0.06 0.059 0 0.048 0.4775 0.066 0.053 0 0.219 0.361 0.06 0.062 0 0.421 0.3445 0.056 0.055 0 0.459 0.4055 0.05 0.047 0 0.558 0.173 0.066 0.062 0 0.579 0.033 0.06 0.054 0 0.167 0.9535 0.084 0.079 0 0.225 0.83 0.078 0.076 0 0.3455 0.915 0.079 0.078 0 0.3865 0.803 0.051 0.052 0 0.516 0.8695 0.082 0.083 0 0.6395 0.9135 0.085 0.089 0 0.9275 0.944 0.085 0.078 0 0.696 0.815 0.098 0.094 0 0.553 0.772 0.08 0.08 0 0.424 0.6955 0.082 0.073 0 0.118 0.457 0.062 0.056 0 0.208 0.5575 0.054 0.061 0 0.2455 0.383 0.065 0.058 0 0.3395 0.3385 0.093 0.095 0 0.3905 0.4165 0.069 0.053 0 0.439 0.323 0.07 0.062 0 0.532 0.3665 0.088 0.085 0 0.5045 0.479 0.087 0.088 0 0.4755 0.5715 0.083 0.079 0 0.5555 0.501 0.053 0.058 0 0.6185 0.5665 0.077 0.077 0 0.729 0.743 0.09 0.066 0 0.7645 0.6065 0.097 0.079 0 0.929 0.5155 0.052 0.049 0 0.787 0.462 0.066 0.06 0 0.8125 0.5085 0.083 0.067 0 0.875 0.4685 0.066 0.065 0 0.959 0.427 0.08 0.088 0 0.849 0.383 0.092 0.084 0 0.7785 0.366 0.081 0.088 0 0.712 0.3305 0.076 0.077 0 0.6295 0.279 0.067 0.062 0 0.589 0.254 0.074 0.086 0 0.664 0.221 0.07 0.066 0 0.48 0.1985 0.074 0.073 0 0.27 0.208 0.074 0.066 0 0.2435 0.1185 0.085 0.079 0 0.368 0.06 0.068 0.064 0 0.512 0.13 0.072 0.058 0 0.507 0.0835 0.066 0.055 0 0.579 0.1365 0.056 0.061 0 0.5765 0.187 0.061 0.048 0 0.685 0.1555 0.056 0.067 0 0.8935 0.275 0.075 0.072 0 0.768 0.208 0.072 0.078 0 0.8155 0.091 0.095 0.096 0 0.945 0.1495 0.082 0.085
17%|█▋ | 84/486 [00:06<00:26, 15.09it/s]
0 0.1625 0.945 0.073 0.08 0 0.07 0.9095 0.06 0.059 0 0.19 0.8535 0.062 0.071 0 0.3445 0.8395 0.091 0.075 0 0.19 0.584 0.098 0.086 0 0.3975 0.6775 0.089 0.071 0 0.9525 0.962 0.089 0.074 0 0.884 0.895 0.082 0.074 0 0.8925 0.7135 0.073 0.071 0 0.8315 0.6835 0.071 0.085 0 0.7725 0.671 0.065 0.076 0 0.721 0.654 0.07 0.084 0 0.4275 0.5905 0.079 0.073 0 0.3435 0.533 0.071 0.07 0 0.2315 0.4435 0.085 0.075 0 0.124 0.39 0.052 0.05 0 0.184 0.2775 0.068 0.073 0 0.2825 0.315 0.065 0.064 0 0.3065 0.3755 0.071 0.063 0 0.396 0.378 0.066 0.066 0 0.482 0.4605 0.072 0.071 0 0.7255 0.411 0.081 0.092 0 0.805 0.444 0.07 0.078 0 0.8595 0.4505 0.061 0.057 0 0.943 0.48 0.072 0.084 0 0.9785 0.5045 0.043 0.051 0 0.101 0.109 0.064 0.058 0 0.2625 0.0595 0.091 0.089 0 0.384 0.1375 0.076 0.077 0 0.438 0.3105 0.076 0.067 0 0.605 0.237 0.084 0.076 0 0.8815 0.2195 0.079 0.075 0 0.962 0.266 0.076 0.102 0 0.924 0.8795 0.09 0.079 0 0.828 0.885 0.078 0.058 0 0.296 0.839 0.086 0.084 0 0.492 0.752 0.086 0.084 0 0.744 0.725 0.086 0.084 0 0.9085 0.6605 0.083 0.095 0 0.7995 0.6195 0.087 0.087 0 0.661 0.573 0.088 0.084 0 0.5315 0.6525 0.071 0.073 0 0.5655 0.5335 0.071 0.077 0 0.487 0.5115 0.084 0.081 0 0.416 0.5555 0.054 0.057 0 0.3505 0.582 0.091 0.078 0 0.4075 0.4545 0.075 0.077 0 0.931 0.5565 0.084 0.085 0 0.894 0.4955 0.048 0.055 0 0.8165 0.495 0.077 0.08 0 0.847 0.439 0.054 0.048 0 0.858 0.373 0.086 0.086 0 0.705 0.3815 0.06 0.067 0 0.751 0.328 0.08 0.086 0 0.669 0.3085 0.066 0.063 0 0.5865 0.263 0.075 0.074 0 0.9095 0.271 0.081 0.076 0 0.6165 0.1785 0.085 0.091 0 0.943 0.171 0.08 0.084 0 0.764 0.1145 0.084 0.083 0 0.661 0.056 0.078 0.08 0 0.908 0.0345 0.058 0.065 0 0.5085 0.125 0.073 0.068 0 0.0935 0.0965 0.077 0.073 0 0.08 0.1865 0.084 0.089 0 0.1435 0.208 0.087 0.096 0 0.037 0.42 0.066 0.088 0 0.108 0.445 0.088 0.092 0 0.8355 0.865 0.067 0.072 0 0.677 0.9545 0.072 0.067 0 0.5735 0.895 0.069 0.07 0 0.3115 0.9205 0.067 0.073 0 0.1875 0.8935 0.075 0.077 0 0.0495 0.937 0.067 0.072 0 0.1365 0.972 0.069 0.056 0 0.3475 0.808 0.077 0.078 0 0.253 0.775 0.102 0.1 0 0.1325 0.732 0.079 0.086 0 0.0575 0.604 0.075 0.092 0 0.083 0.4845 0.084 0.091 0 0.733 0.815 0.082 0.072 0 0.6155 0.7905 0.049 0.053 0 0.5665 0.677 0.071 0.07 0 0.8755 0.747 0.067 0.066 0 0.734 0.7 0.07 0.072 0 0.913 0.6275 0.092 0.095 0 0.66 0.5285 0.09 0.079 0 0.2335 0.4055 0.083 0.079 0 0.124 0.3745 0.074 0.073 0 0.037 0.3155 0.068 0.083 0 0.94 0.5215 0.072 0.067 0 0.9625 0.4225 0.075 0.079 0 0.9495 0.285 0.071 0.082 0 0.8275 0.1425 0.069 0.069 0 0.7705 0.194 0.073 0.072 0 0.8035 0.059 0.079 0.08 0 0.752 0.112 0.078 0.072 0 0.673 0.1295 0.08 0.083 0 0.5855 0.129 0.079 0.076 0 0.6205 0.0445 0.093 0.075 0 0.5095 0.0665 0.087 0.085 0 0.41 0.0425 0.094 0.081 0 0.2185 0.0655 0.077 0.069 0 0.095 0.1025 0.088 0.073 0 0.8505 0.824 0.083 0.08 0 0.786 0.81 0.072 0.084 0 0.722 0.786 0.074 0.086 0 0.801 0.733 0.07 0.072 0 0.6135 0.7575 0.083 0.089 0 0.5205 0.7655 0.061 0.061 0 0.4635 0.708 0.069 0.08 0 0.372 0.685 0.074 0.08 0 0.236 0.6885 0.074 0.069 0 0.267 0.7835 0.066 0.063 0 0.157 0.6905 0.076 0.067 0 0.268 0.617 0.074 0.07 0 0.17 0.617 0.09 0.082 0 0.0365 0.6795 0.067 0.073 0 0.0435 0.557 0.065 0.064 0 0.1005 0.4615 0.075 0.067 0 0.1305 0.3865 0.085 0.085 0 0.1675 0.317 0.067 0.066 0 0.294 0.4015 0.094 0.091 0 0.3955 0.4315 0.093 0.099 0 0.4855 0.5715 0.065 0.053 0 0.498 0.474 0.068 0.072 0 0.5625 0.4965 0.065 0.067 0 0.644 0.488 0.09 0.094 0 0.721 0.536 0.062 0.072 0 0.7665 0.5185 0.071 0.083 0 0.822 0.5925 0.07 0.071 0 0.929 0.597 0.08 0.084 0 0.9025 0.3695 0.053 0.049 0 0.756 0.37 0.066 0.062 0 0.881 0.323 0.056 0.056 0 0.7845 0.312 0.087 0.09 0 0.651 0.3515 0.066 0.061 0 0.6745 0.293 0.083 0.09 0 0.735 0.196 0.072 0.076 0 0.5765 0.239 0.087 0.084 0 0.4815 0.2215 0.087 0.083 0 0.3745 0.1795 0.093 0.079 0 0.1165 0.25 0.075 0.082 0 0.0425 0.2485 0.073 0.081 0 0.164 0.1515 0.08 0.075 0 0.084 0.103 0.078 0.074 0 0.1655 0.034 0.093 0.066 0 0.4205 0.0425 0.077 0.069 0 0.491 0.069 0.084 0.082 0 0.5585 0.084 0.069 0.098 0 0.63 0.079 0.07 0.086 0 0.6355 0.132 0.091 0.072 0 0.8035 0.1465 0.051 0.049 0 0.911 0.2235 0.062 0.063 0 0.1055 0.1885 0.083 0.085 0 0.0485 0.281 0.063 0.064 0 0.038 0.4195 0.074 0.099 0 0.079 0.619 0.078 0.08 0 0.03 0.6675 0.058 0.079 0 0.2065 0.662 0.071 0.07 0 0.2535 0.6095 0.089 0.081 0 0.2885 0.5345 0.069 0.073 0 0.2425 0.428 0.063 0.068 0 0.3235 0.4425 0.071 0.075 0 0.374 0.345 0.082 0.088 0 0.447 0.3105 0.064 0.071 0 0.5395 0.3045 0.073 0.075 0 0.623 0.0865 0.068 0.075 0 0.594 0.167 0.064 0.064 0 0.6555 0.221 0.075 0.08 0 0.731 0.27 0.078 0.086 0 0.57 0.391 0.074 0.074 0 0.4925 0.442 0.075 0.082 0 0.5485 0.5115 0.079 0.073 0 0.3235 0.655 0.063 0.068 0 0.3885 0.711 0.085 0.086 0 0.439 0.7845 0.078 0.069 0 0.4635 0.841 0.071 0.062 0 0.2635 0.925 0.067 0.08 0 0.5105 0.945 0.089 0.078 0 0.5545 0.854 0.077 0.076 0 0.768 0.904 0.078 0.076
18%|█▊ | 88/486 [00:06<00:28, 14.02it/s]
0 0.8365 0.6625 0.055 0.071 0 0.882 0.6465 0.048 0.065 0 0.896 0.458 0.074 0.074 0 0.9455 0.4025 0.065 0.061 0 0.906 0.287 0.08 0.08 0 0.82 0.0775 0.056 0.063 0 0.8515 0.177 0.063 0.07 0 0.958 0.229 0.082 0.088 0 0.8235 0.27 0.071 0.064 0 0.706 0.1125 0.056 0.063 0 0.754 0.106 0.056 0.066 0 0.2405 0.0345 0.083 0.067 0 0.376 0.062 0.076 0.078 0 0.4955 0.146 0.085 0.08 0 0.2065 0.1765 0.085 0.077 0 0.338 0.2005 0.08 0.071 0 0.167 0.2775 0.096 0.089 0 0.2925 0.3045 0.083 0.071 0 0.5655 0.2815 0.073 0.071 0 0.685 0.3295 0.058 0.059 0 0.9095 0.452 0.077 0.078 0 0.9585 0.587 0.079 0.076 0 0.5745 0.4795 0.073 0.073 0 0.257 0.423 0.072 0.078 0 0.39 0.4575 0.08 0.077 0 0.4865 0.514 0.071 0.08 0 0.2185 0.5385 0.079 0.075 0 0.1095 0.626 0.061 0.058 0 0.1645 0.6705 0.057 0.051 0 0.12 0.6905 0.064 0.065 0 0.275 0.8145 0.078 0.081 0 0.2515 0.9125 0.075 0.083 0 0.5155 0.797 0.081 0.078 0 0.6205 0.823 0.085 0.09 0 0.878 0.7995 0.09 0.079 0 0.5815 0.9525 0.097 0.081 0 0.587 0.0335 0.084 0.063 0 0.53 0.0805 0.088 0.075 0 0.4325 0.1815 0.063 0.055 0 0.557 0.1665 0.07 0.065 0 0.499 0.235 0.066 0.06 0 0.1845 0.429 0.069 0.072 0 0.277 0.4955 0.064 0.067 0 0.415 0.581 0.084 0.074 0 0.586 0.5415 0.088 0.083 0 0.7035 0.356 0.073 0.076 0 0.9225 0.4645 0.083 0.079 0 0.802 0.56 0.086 0.084 0 0.8965 0.7055 0.075 0.081 0 0.809 0.663 0.09 0.092 0 0.2375 0.592 0.065 0.066 0 0.129 0.653 0.068 0.072 0 0.251 0.7795 0.074 0.077 0 0.3325 0.8125 0.065 0.071 0 0.431 0.7085 0.064 0.053 0 0.4125 0.7765 0.079 0.065 0 0.4155 0.8455 0.075 0.073 0 0.316 0.902 0.068 0.072 0 0.202 0.8625 0.056 0.055 0 0.492 0.9025 0.094 0.081 0 0.387 0.9445 0.088 0.087 0 0.6005 0.9465 0.067 0.061 0 0.6065 0.8145 0.091 0.085 0 0.666 0.849 0.07 0.084 0 0.7305 0.871 0.079 0.086 0 0.793 0.91 0.084 0.084 0 0.851 0.938 0.068 0.074 0 0.891 0.968 0.08 0.064
19%|█▊ | 91/486 [00:06<00:23, 16.95it/s]
0 0.219 0.0745 0.052 0.055 0 0.366 0.1015 0.072 0.065 0 0.414 0.082 0.062 0.052 0 0.156 0.8455 0.08 0.081 0 0.249 0.895 0.074 0.086 0 0.314 0.9225 0.068 0.073 0 0.376 0.9385 0.072 0.087 0 0.424 0.9645 0.088 0.071 0 0.958 0.2365 0.056 0.055 0 0.891 0.923 0.06 0.054 0 0.166 0.25 0.058 0.064 0 0.326 0.2095 0.056 0.063 0 0.4805 0.174 0.075 0.076 0 0.865 0.1665 0.088 0.085 0 0.928 0.1935 0.072 0.067 0 0.9685 0.229 0.063 0.066 0 0.894 0.291 0.052 0.05 0 0.4585 0.277 0.057 0.058 0 0.123 0.4565 0.086 0.089 0 0.056 0.4835 0.064 0.063 0 0.068 0.588 0.096 0.09 0 0.2355 0.527 0.077 0.084 0 0.2615 0.441 0.063 0.066 0 0.4145 0.408 0.067 0.062 0 0.536 0.4875 0.054 0.051 0 0.5805 0.7525 0.069 0.067 0 0.4735 0.839 0.099 0.086 0 0.566 0.899 0.09 0.084 0 0.515 0.9455 0.096 0.087 0 0.3905 0.878 0.081 0.078 0 0.297 0.829 0.1 0.1 0 0.271 0.9395 0.092 0.089 0 0.1555 0.881 0.087 0.09 0 0.042 0.824 0.082 0.102 0 0.04 0.0375 0.078 0.073 0 0.1145 0.037 0.085 0.072 0 0.2195 0.0445 0.093 0.087 0 0.797 0.0485 0.084 0.079 0 0.905 0.088 0.08 0.082 0 0.7615 0.2745 0.083 0.083 0 0.65 0.199 0.084 0.08 0 0.1235 0.265 0.081 0.084 0 0.194 0.2875 0.074 0.085 0 0.2295 0.3335 0.077 0.077 0 0.2925 0.335 0.085 0.088 0 0.4925 0.4085 0.089 0.087 0 0.567 0.4495 0.09 0.083 0 0.6695 0.4975 0.089 0.083 0 0.798 0.517 0.09 0.086 0 0.8865 0.6135 0.071 0.075 0 0.088 0.457 0.076 0.076 0 0.0665 0.5165 0.065 0.065 0 0.1675 0.5195 0.089 0.085 0 0.3505 0.603 0.077 0.076 0 0.744 0.766 0.078 0.076 0 0.8325 0.767 0.073 0.068 0 0.85 0.851 0.072 0.074 0 0.8455 0.9605 0.073 0.069 0 0.694 0.959 0.076 0.074 0 0.082 0.751 0.074 0.068 0 0.833 0.128 0.09 0.086 0 0.749 0.235 0.086 0.088 0 0.8245 0.258 0.081 0.094 0 0.9155 0.2715 0.091 0.091 0 0.9625 0.4675 0.073 0.081 0 0.857 0.414 0.09 0.086 0 0.7375 0.3535 0.081 0.085 0 0.6265 0.3075 0.079 0.071 0 0.5295 0.2275 0.065 0.065 0 0.3265 0.4445 0.059 0.053 0 0.108 0.499 0.068 0.068 0 0.1985 0.5205 0.087 0.081 0 0.3535 0.5925 0.055 0.049 0 0.7565 0.7365 0.073 0.071 0 0.6855 0.8895 0.087 0.081 0 0.8025 0.926 0.055 0.058 0 0.4645 0.922 0.065 0.066 0 0.5535 0.944 0.079 0.076 0 0.8635 0.162 0.051 0.058 0 0.8945 0.2 0.049 0.062 0 0.848 0.329 0.072 0.08 0 0.804 0.2535 0.062 0.059 0 0.69 0.1435 0.088 0.083 0 0.64 0.2895 0.08 0.071 0 0.7715 0.442 0.063 0.058 0 0.601 0.556 0.064 0.064 0 0.5225 0.599 0.071 0.064 0 0.4035 0.576 0.063 0.064 0 0.3355 0.532 0.071 0.072 0 0.4475 0.522 0.057 0.052 0 0.5165 0.4805 0.073 0.063 0 0.4205 0.489 0.067 0.066 0 0.5135 0.395 0.065 0.06 0 0.54 0.327 0.068 0.064 0 0.3575 0.436 0.057 0.06 0 0.4045 0.4185 0.057 0.053 0 0.4025 0.3565 0.063 0.059 0 0.2225 0.347 0.069 0.066 0 0.274 0.281 0.068 0.064 0 0.111 0.273 0.054 0.052 0 0.1225 0.154 0.063 0.052 0 0.2405 0.0975 0.055 0.053 0 0.2805 0.0655 0.061 0.055 0 0.335 0.0555 0.058 0.057 0 0.0775 0.051 0.055 0.052 0 0.2175 0.049 0.065 0.062 0 0.449 0.0385 0.096 0.075 0 0.4765 0.13 0.061 0.066 0 0.1355 0.367 0.071 0.078 0 0.118 0.4735 0.072 0.075 0 0.37 0.429 0.074 0.07 0 0.033 0.646 0.064 0.07 0 0.44 0.638 0.082 0.074 0 0.18 0.881 0.062 0.06
20%|█▉ | 97/486 [00:06<00:19, 19.74it/s]
0 0.6475 0.0595 0.079 0.085 0 0.7685 0.0695 0.065 0.071 0 0.6055 0.323 0.069 0.07 0 0.751 0.349 0.08 0.078 0 0.8685 0.348 0.079 0.08 0 0.921 0.236 0.074 0.074 0 0.6875 0.751 0.081 0.08 0 0.576 0.736 0.084 0.086 0 0.474 0.7355 0.092 0.087 0 0.3465 0.7285 0.091 0.079 0 0.154 0.4815 0.074 0.075 0 0.2115 0.851 0.079 0.08 0 0.208 0.913 0.058 0.06 0 0.281 0.8845 0.064 0.069 0 0.3085 0.942 0.055 0.05 0 0.3785 0.9205 0.055 0.055 0 0.325 0.828 0.076 0.076 0 0.38 0.8085 0.088 0.075 0 0.4625 0.8515 0.089 0.083 0 0.4495 0.9665 0.089 0.067 0 0.5845 0.9665 0.085 0.067 0 0.571 0.8545 0.09 0.085 0 0.679 0.8515 0.082 0.087 0 0.6985 0.9595 0.087 0.077 0 0.8095 0.858 0.085 0.082 0 0.0365 0.106 0.069 0.076 0 0.137 0.125 0.078 0.078 0 0.076 0.4025 0.084 0.087 0 0.2235 0.398 0.085 0.086 0 0.067 0.54 0.07 0.072 0 0.2025 0.558 0.087 0.078 0 0.0395 0.1975 0.051 0.059 0 0.1605 0.2075 0.065 0.065 0 0.216 0.1075 0.07 0.069 0 0.3075 0.0715 0.065 0.059 0 0.492 0.0365 0.056 0.059 0 0.531 0.11 0.056 0.066 0 0.8165 0.12 0.063 0.074 0 0.9255 0.1695 0.067 0.061 0 0.7445 0.2445 0.059 0.069 0 0.864 0.263 0.07 0.074 0 0.8365 0.38 0.061 0.076 0 0.72 0.312 0.068 0.066 0 0.885 0.6295 0.058 0.061 0 0.774 0.56 0.062 0.064 0 0.5895 0.5175 0.079 0.073 0 0.4845 0.4575 0.065 0.063 0 0.576 0.388 0.05 0.05 0 0.4065 0.3665 0.071 0.075 0 0.3165 0.485 0.075 0.076 0 0.264 0.336 0.078 0.074 0 0.225 0.4075 0.072 0.077 0 0.1005 0.5065 0.093 0.089 0 0.173 0.6565 0.062 0.065 0 0.1265 0.8355 0.071 0.079 0 0.216 0.843 0.074 0.084 0 0.2995 0.827 0.069 0.074 0 0.225 0.9665 0.07 0.067 0 0.3095 0.902 0.083 0.072 0 0.386 0.8715 0.074 0.083 0 0.4335 0.913 0.077 0.076 0 0.5405 0.9605 0.079 0.071 0 0.515 0.8585 0.07 0.071 0 0.4945 0.7755 0.079 0.085 0 0.583 0.758 0.086 0.078 0 0.607 0.9325 0.07 0.077 0 0.819 0.8935 0.066 0.075 0 0.7315 0.795 0.077 0.076 0 0.9425 0.861 0.075 0.07 0 0.0325 0.477 0.057 0.062 0 0.2425 0.567 0.075 0.076 0 0.4635 0.6755 0.069 0.065 0 0.464 0.615 0.07 0.068 0 0.4755 0.5525 0.073 0.063 0 0.502 0.502 0.078 0.066 0 0.5355 0.3995 0.071 0.069 0 0.531 0.173 0.056 0.056 0 0.6275 0.117 0.079 0.08 0 0.6495 0.049 0.083 0.082 0 0.8885 0.028 0.061 0.054 0 0.9075 0.0765 0.077 0.077 0 0.865 0.1645 0.08 0.081 0 0.8505 0.287 0.075 0.08 0 0.8045 0.379 0.069 0.07 0 0.7605 0.481 0.079 0.07 0 0.75 0.5685 0.084 0.085 0 0.896 0.525 0.082 0.08 0 0.858 0.656 0.084 0.09 0 0.9485 0.695 0.063 0.064 0 0.708 0.6375 0.08 0.067 0 0.7035 0.694 0.085 0.07 0 0.691 0.747 0.078 0.068 0 0.794 0.745 0.086 0.076 0 0.9215 0.7965 0.071 0.067 0 0.9515 0.8575 0.069 0.067 0 0.0415 0.1055 0.081 0.079 0 0.1855 0.036 0.077 0.07 0 0.312 0.06 0.08 0.074 0 0.1675 0.14 0.091 0.08 0 0.107 0.264 0.078 0.072 0 0.0935 0.3565 0.089 0.085 0 0.1915 0.409 0.077 0.074 0 0.042 0.4905 0.082 0.081 0 0.1505 0.5345 0.083 0.083 0 0.346 0.3655 0.044 0.045 0 0.31 0.4555 0.06 0.061 0 0.2745 0.565 0.093 0.084 0 0.373 0.609 0.088 0.086 0 0.441 0.3695 0.092 0.091 0 0.496 0.645 0.078 0.08 0 0.5935 0.6855 0.077 0.057 0 0.7495 0.228 0.083 0.076 0 0.863 0.446 0.096 0.088 0 0.8495 0.5405 0.067 0.069 0 0.912 0.505 0.068 0.066 0 0.9445 0.5645 0.077 0.071 0 0.066 0.6535 0.06 0.051 0 0.0695 0.72 0.075 0.072 0 0.103 0.7725 0.072 0.067 0 0.2405 0.6845 0.097 0.085 0 0.2135 0.782 0.083 0.086 0 0.1635 0.945 0.105 0.092 0 0.454 0.7485 0.084 0.083 0 0.427 0.953 0.088 0.076 0 0.5345 0.9285 0.077 0.071 0 0.611 0.9175 0.076 0.067 0 0.7245 0.9115 0.083 0.071 0 0.79 0.849 0.066 0.066 0 0.916 0.8935 0.084 0.063 0 0.899 0.9675 0.072 0.063 0 0.73 0.973 0.096 0.048 0 0.757 0.9175 0.076 0.079 0 0.6855 0.871 0.087 0.09 0 0.61 0.816 0.092 0.088 0 0.5585 0.957 0.069 0.058 0 0.541 0.858 0.07 0.064 0 0.5285 0.7825 0.085 0.077 0 0.46 0.9685 0.082 0.061 0 0.382 0.9435 0.074 0.073 0 0.4425 0.8765 0.063 0.073 0 0.3555 0.868 0.059 0.066 0 0.2835 0.974 0.063 0.052 0 0.2265 0.936 0.069 0.074 0 0.11 0.968 0.088 0.064 0 0.1405 0.909 0.081 0.082 0 0.1735 0.853 0.069 0.064 0 0.0435 0.773 0.071 0.068 0 0.124 0.796 0.062 0.056 0 0.1455 0.7405 0.075 0.071 0 0.2355 0.74 0.065 0.068 0 0.306 0.757 0.074 0.07 0 0.3755 0.783 0.073 0.068 0 0.388 0.702 0.094 0.09 0 0.3125 0.6575 0.083 0.099 0 0.2275 0.6425 0.077 0.095 0 0.113 0.653 0.082 0.09 0 0.0385 0.622 0.067 0.074 0 0.134 0.5805 0.074 0.073 0 0.0885 0.5265 0.079 0.077 0 0.9195 0.743 0.079 0.092 0 0.812 0.7195 0.09 0.093 0 0.7115 0.729 0.059 0.06 0 0.7515 0.658 0.089 0.094 0 0.6465 0.6235 0.087 0.089 0 0.5855 0.5785 0.077 0.079 0 0.505 0.5555 0.096 0.091 0 0.434 0.505 0.082 0.108 0 0.3585 0.4885 0.085 0.091 0 0.304 0.45 0.074 0.086 0 0.235 0.4155 0.09 0.089 0 0.9415 0.5095 0.073 0.083 0 0.8905 0.4965 0.055 0.063 0 0.837 0.47 0.064 0.078 0 0.74 0.4095 0.066 0.069 0 0.6815 0.3895 0.065 0.071 0 0.6285 0.3515 0.071 0.075 0 0.5685 0.3335 0.065 0.077 0 0.524 0.3005 0.074 0.079 0 0.4655 0.279 0.065 0.074 0 0.408 0.2505 0.082 0.081
21%|██ | 100/486 [00:07<00:26, 14.49it/s]
0 0.3215 0.215 0.081 0.082 0 0.251 0.1775 0.08 0.093 0 0.155 0.193 0.072 0.07 0 0.2005 0.1275 0.071 0.075 0 0.1095 0.125 0.077 0.078 0 0.9695 0.257 0.059 0.086 0 0.907 0.2405 0.07 0.083 0 0.8515 0.212 0.071 0.086 0 0.742 0.144 0.086 0.096 0 0.669 0.2065 0.048 0.049 0 0.656 0.137 0.096 0.08 0 0.618 0.0945 0.076 0.077 0 0.567 0.0665 0.076 0.083 0 0.507 0.0465 0.076 0.091 0 0.4285 0.0405 0.081 0.079 0 0.9455 0.885 0.077 0.078 0 0.806 0.925 0.084 0.1 0 0.697 0.886 0.07 0.076 0 0.641 0.97 0.078 0.06 0 0.8475 0.7965 0.085 0.091 0 0.8615 0.692 0.079 0.084 0 0.762 0.637 0.068 0.074 0 0.278 0.854 0.078 0.084 0 0.11 0.873 0.08 0.086 0 0.0475 0.842 0.079 0.096 0 0.407 0.7635 0.082 0.085 0 0.2985 0.726 0.079 0.08 0 0.199 0.6385 0.082 0.091 0 0.14 0.614 0.068 0.092 0 0.087 0.5965 0.072 0.091 0 0.05 0.5635 0.07 0.081 0 0.34 0.5945 0.076 0.073 0 0.434 0.641 0.07 0.068 0 0.1715 0.4435 0.061 0.065 0 0.294 0.4255 0.088 0.093 0 0.2195 0.3895 0.079 0.075 0 0.155 0.3505 0.082 0.085 0 0.079 0.323 0.078 0.09 0 0.511 0.418 0.056 0.054 0 0.9565 0.448 0.067 0.068 0 0.87 0.455 0.068 0.06 0 0.7575 0.4005 0.075 0.067 0 0.548 0.323 0.072 0.056 0 0.336 0.195 0.074 0.078 0 0.278 0.166 0.066 0.07 0 0.22 0.144 0.07 0.074 0 0.125 0.094 0.064 0.064 0 0.074 0.059 0.082 0.086 0 0.689 0.2365 0.068 0.075 0 0.852 0.17 0.076 0.064 0 0.8965 0.0445 0.069 0.065 0 0.737 0.1195 0.072 0.069 0 0.6355 0.075 0.045 0.04 0 0.698 0.0405 0.052 0.051 0 0.9445 0.0505 0.077 0.083 0 0.713 0.052 0.07 0.072 0 0.8315 0.0945 0.087 0.081 0 0.4665 0.0575 0.057 0.051 0 0.5675 0.091 0.073 0.08 0 0.5265 0.198 0.075 0.088 0 0.621 0.2455 0.074 0.057 0 0.7545 0.2995 0.081 0.079 0 0.908 0.261 0.076 0.07 0 0.9225 0.3675 0.085 0.089 0 0.9645 0.434 0.071 0.074 0 0.947 0.5525 0.066 0.071 0 0.8445 0.481 0.081 0.07 0 0.7225 0.4345 0.087 0.087 0 0.6005 0.3855 0.079 0.075 0 0.501 0.344 0.072 0.068 0 0.399 0.245 0.08 0.08 0 0.349 0.3505 0.084 0.083 0 0.19 0.52 0.058 0.056 0 0.1585 0.5845 0.073 0.069 0 0.304 0.5285 0.078 0.067 0 0.537 0.526 0.082 0.074 0 0.5265 0.6125 0.079 0.077 0 0.642 0.6615 0.072 0.069 0 0.7955 0.6205 0.077 0.063 0 0.7705 0.7335 0.083 0.079 0 0.958 0.8345 0.084 0.085 0 0.2425 0.6905 0.085 0.085 0 0.226 0.8015 0.09 0.087 0 0.0855 0.849 0.089 0.09 0 0.3055 0.9265 0.085 0.091 0 0.334 0.8555 0.076 0.077 0 0.554 0.86 0.068 0.06 0 0.449 0.9595 0.08 0.069 0 0.4545 0.0705 0.085 0.083 0 0.8145 0.064 0.069 0.068 0 0.67 0.179 0.064 0.064 0 0.318 0.487 0.094 0.08 0 0.058 0.528 0.07 0.068 0 0.183 0.712 0.086 0.08 0 0.218 0.8755 0.092 0.083 0 0.38 0.873 0.092
22%|██▏ | 107/486 [00:07<00:19, 19.73it/s]
0.086 0 0.3415 0.9465 0.083 0.071 0 0.5495 0.971 0.073 0.058 0 0.5925 0.7555 0.057 0.069 0 0.515 0.1025 0.054 0.057 0 0.633 0.1335 0.076 0.075 0 0.778 0.043 0.082 0.076 0 0.891 0.094 0.076 0.076 0 0.96 0.8355 0.08 0.083 0 0.0305 0.3725 0.057 0.077 0 0.915 0.0475 0.078 0.073 0 0.885 0.1465 0.068 0.069 0 0.9175 0.913 0.087 0.084 0 0.706 0.9295 0.084 0.077 0 0.443 0.774 0.088 0.07 0 0.2915 0.7495 0.065 0.071 0 0.1695 0.758 0.077 0.07 0 0.0325 0.626 0.063 0.098 0 0.077 0.6505 0.058 0.053 0 0.1705 0.6655 0.085 0.073 0 0.2865 0.674 0.087 0.09 0 0.3965 0.688 0.077 0.078 0 0.0585 0.547 0.061 0.06 0 0.1855 0.5605 0.067 0.073 0 0.2475 0.5655 0.063 0.059 0 0.43 0.572 0.08 0.074 0 0.564 0.5635 0.066 0.071 0 0.598 0.5775 0.052 0.055 0 0.679 0.5775 0.072 0.077 0 0.7205 0.4445 0.065 0.069 0 0.3955 0.415 0.061 0.068 0 0.292 0.4535 0.08 0.081 0 0.1465 0.44 0.075 0.078 0 0.1225 0.334 0.083 0.086 0 0.2855 0.334 0.085 0.092 0 0.4165 0.3325 0.083 0.081 0 0.539 0.342 0.08 0.088 0 0.6125 0.3465 0.069 0.083 0 0.6645 0.313 0.067 0.078 0 0.7645 0.3175 0.063 0.067 0 0.722 0.1925 0.086 0.085 0 0.601 0.2075 0.072 0.079 0 0.4085 0.2575 0.053 0.051 0 0.146 0.197 0.078 0.082 0 0.1965 0.1875 0.059 0.061 0 0.266 0.202 0.068 0.068 0 0.366 0.191 0.06 0.062 0 0.528 0.1455 0.062 0.065 0 0.706 0.095 0.088 0.072 0 0.592 0.0855 0.094 0.087 0 0.4355 0.077 0.087 0.082 0 0.3485 0.086 0.097 0.078 0 0.327 0.136 0.07 0.054 0 0.2195 0.0875 0.057 0.051 0 0.154 0.1125 0.064 0.065 0 0.116 0.7865 0.074 0.081 0 0.673 0.046 0.07 0.078 0 0.6435 0.2515 0.081 0.081 0 0.6735 0.2945 0.055 0.069 0 0.3275 0.3585 0.057 0.053 0 0.8975 0.4285 0.079 0.081 0 0.895 0.5065 0.078 0.071 0 0.922 0.587 0.074 0.078 0 0.1225 0.114 0.077 0.068 0 0.2535 0.0605 0.071 0.075 0 0.332 0.0985 0.068 0.069 0 0.095 0.2065 0.074 0.085 0 0.0375 0.315 0.073 0.094 0 0.1155 0.282 0.069 0.064 0 0.1895 0.281 0.065 0.068 0 0.3745 0.0255 0.065 0.049 0 0.529 0.0935 0.084 0.085 0 0.4185 0.2275 0.079 0.083 0 0.546 0.186 0.076 0.072 0 0.6495 0.1265 0.061 0.059 0 0.673 0.0465 0.054 0.055 0 0.761 0.0435 0.082 0.085 0 0.9625 0.1695 0.075 0.073 0 0.7315 0.206 0.079 0.08 0 0.6485 0.2275 0.071 0.073 0 0.798 0.2715 0.062 0.055 0 0.9555 0.295 0.073 0.06 0 0.9045 0.474 0.083 0.088 0 0.795 0.4135 0.066 0.071 0 0.681 0.365 0.064 0.062 0 0.8555 0.5875 0.071 0.079 0 0.6875 0.5005 0.075 0.071 0 0.707 0.591 0.07 0.07 0 0.788 0.6865 0.07 0.069 0 0.8685 0.7405 0.071 0.065 0 0.868 0.817 0.064 0.074 0 0.841 0.901 0.078 0.076 0 0.7725 0.9375 0.061 0.073 0 0.7475 0.8915 0.069 0.073 0 0.696 0.8855 0.064 0.061 0 0.646 0.909 0.066 0.06 0 0.689 0.7545 0.074 0.071 0 0.581 0.7235 0.066 0.069 0 0.449 0.5115 0.07 0.075 0 0.291 0.508 0.076 0.072 0 0.172 0.438 0.072 0.068 0 0.2885 0.5965 0.069 0.073 0 0.306 0.7245 0.078 0.079 0 0.396 0.789 0.082 0.084 0 0.4665 0.943 0.059 0.056 0 0.3805 0.9705 0.069 0.059 0 0.349 0.9195 0.076 0.069 0 0.187 0.948 0.068 0.072 0 0.1145 0.894 0.097 0.088 0 0.057 0.7475
23%|██▎ | 110/486 [00:07<00:19, 19.44it/s]
0.092 0.087 0 0.102 0.332 0.07 0.07 0 0.0625 0.3785 0.065 0.063 0 0.3785 0.269 0.067 0.056 0 0.5865 0.1645 0.073 0.073 0 0.5455 0.2595 0.067 0.063 0 0.6485 0.337 0.049 0.052 0 0.95 0.028 0.042 0.048 0 0.9385 0.3665 0.053 0.055 0 0.933 0.632 0.082 0.094 0 0.608 0.4525 0.06 0.063 0 0.393 0.4405 0.056 0.057 0 0.2475 0.5115 0.065 0.063 0 0.085 0.568 0.07 0.066 0 0.1825 0.615 0.063 0.066 0 0.036 0.754 0.07 0.076 0 0.135 0.79 0.058 0.062 0 0.239 0.7495 0.066 0.065 0 0.2885 0.81 0.067 0.066 0 0.2195 0.8205 0.057 0.059 0 0.417 0.8755 0.07 0.073 0 0.489 0.957 0.068 0.066 0 0.231 0.086 0.07 0.062 0 0.3005 0.147 0.063 0.06 0 0.473 0.0415 0.082 0.069 0 0.5735 0.036 0.099 0.07 0 0.7645 0.0965 0.069 0.071 0 0.851 0.0385 0.09 0.075 0 0.929 0.055 0.078 0.072 0 0.88 0.1275 0.074 0.073 0 0.853 0.178 0.064 0.06 0 0.655 0.262 0.068 0.07 0 0.845 0.301 0.06 0.064 0 0.905 0.372 0.07 0.068 0 0.969 0.4 0.062 0.072 0 0.853 0.447 0.072 0.072 0 0.771 0.4825 0.074 0.073 0 0.795 0.58 0.084 0.082 0 0.969 0.688 0.062 0.072 0 0.926 0.8025 0.066 0.059 0 0.7015 0.7675 0.069 0.075 0 0.4085 0.526 0.053 0.056 0 0.159 0.6025 0.074 0.067 0 0.1165 0.507 0.049 0.052 0 0.0825 0.059 0.071 0.074 0 0.16 0.0375 0.072 0.073 0 0.0675 0.1365 0.073 0.065 0 0.1375 0.151 0.063 0.07 0 0.2205 0.102 0.067 0.068 0 0.0865 0.2205 0.071 0.077 0 0.0885 0.3035 0.071 0.073 0 0.1655 0.2505 0.061 0.069 0 0.352 0.0295 0.066 0.057 0 0.4295 0.0645 0.069 0.065 0 0.378 0.1305 0.07 0.067 0 0.2885 0.1465 0.075 0.071 0 0.2715 0.2135 0.059 0.061 0 0.2255 0.2935 0.065 0.075 0 0.498 0.1 0.06 0.076 0 0.4615 0.175 0.067 0.074 0 0.4985 0.256 0.071 0.068 0 0.4005 0.2845 0.057 0.059 0 0.3175 0.3155 0.073 0.073 0 0.387 0.336 0.05 0.058 0 0.4475 0.338 0.055 0.058 0 0.2905 0.394 0.089 0.094 0 0.6065 0.0905 0.071 0.067 0 0.6735 0.108 0.069 0.074 0 0.7725 0.0375 0.065 0.067 0 0.775 0.1155 0.06 0.065 0 0.815 0.1845 0.08 0.087 0 0.964 0.0475 0.072 0.077 0 0.939 0.206 0.12 0.092 0 0.698 0.2025 0.066 0.055 0 0.667 0.2615 0.06 0.063 0 0.577 0.2925 0.06 0.065 0 0.645 0.3255 0.076 0.079 0 0.611 0.384 0.072 0.078 0 0.762 0.351 0.078 0.078 0 0.705 0.4455 0.076 0.093 0 0.0525 0.453 0.071 0.072 0 0.034 0.525 0.062 0.072 0 0.158 0.553 0.076 0.076 0 0.3115 0.6925 0.081 0.081 0 0.2515 0.7755 0.089 0.095 0 0.1075 0.8525 0.093 0.091 0 0.251 0.918 0.09 0.082 0 0.414 0.91 0.08 0.07 0 0.435 0.847 0.08 0.068 0 0.4805 0.741 0.087 0.082 0 0.5315 0.5835 0.069 0.063 0 0.6575 0.593 0.055 0.06 0 0.7855 0.663 0.069 0.082 0 0.643 0.7365 0.062 0.065 0 0.6765 0.8545 0.085 0.091 0 0.5765 0.8445 0.045 0.047 0 0.758 0.8575 0.064 0.067 0 0.737 0.9345 0.072 0.069 0 0.6455 0.9565 0.093 0.077 0 0.836 0.9515 0.098 0.093 0 0.906 0.8345 0.078 0.089
23%|██▎ | 113/486 [00:07<00:23, 15.69it/s]
0 0.283 0.0365 0.07 0.069 0 0.217 0.085 0.066 0.072 0 0.1405 0.1485 0.087 0.087 0 0.071 0.242 0.082 0.094 0 0.2455 0.1495 0.069 0.083 0 0.4 0.0765 0.08 0.073 0 0.3525 0.199 0.073 0.07 0 0.0665 0.3555 0.077 0.081 0 0.042 0.426 0.082 0.086 0 0.1645 0.3885 0.079 0.081 0 0.3195 0.3225 0.077 0.079 0 0.4615 0.2775 0.061 0.059 0 0.551 0.031 0.07 0.06 0 0.651 0.083 0.068 0.07 0 0.7205 0.1015 0.073 0.079 0 0.806 0.032 0.068 0.06 0 0.905 0.084 0.08 0.076 0 0.6215 0.1835 0.073 0.069 0 0.7365 0.259 0.063 0.062 0 0.844 0.2815 0.078 0.079 0 0.943 0.3545 0.096 0.089 0 0.9085 0.4695 0.077 0.081 0 0.693 0.359 0.084 0.082 0 0.5785 0.3105 0.059 0.055 0 0.435 0.374 0.074 0.07 0 0.6495 0.472 0.069 0.064 0 0.7615 0.5265 0.073 0.071 0 0.859 0.591 0.068 0.072 0 0.934 0.739 0.058 0.056 0 0.804 0.7995 0.082 0.077 0 0.7255 0.6585 0.081 0.071 0 0.616 0.5935 0.07 0.071 0 0.514 0.545 0.086 0.08 0 0.403 0.495 0.088 0.08 0 0.2865 0.4205 0.065 0.071 0 0.1535 0.4915 0.077 0.075 0 0.253 0.58 0.076 0.072 0 0.255 0.5135 0.068 0.061 0 0.3665 0.61 0.071 0.06 0 0.4705 0.6685 0.051 0.053 0 0.6825 0.759 0.079 0.068 0 0.84 0.9515 0.054 0.057 0 0.7585 0.9125 0.085 0.083 0 0.547 0.82 0.084 0.074 0 0.415 0.852 0.082 0.078 0 0.3085 0.8135 0.073 0.075 0 0.1995 0.772 0.075 0.074 0 0.074 0.7285 0.076 0.081 0 0.1085 0.613 0.075 0.07 0 0.0625 0.21 0.091 0.096 0 0.314 0.0965 0.082 0.079 0 0.3245 0.0285 0.081 0.055 0 0.442 0.032 0.058 0.054 0 0.4165 0.129 0.063 0.072 0 0.5975 0.043 0.067 0.07 0 0.4975 0.309 0.085 0.082 0 0.7665 0.2425 0.081 0.075 0 0.6985 0.414 0.085 0.082 0 0.2405 0.352 0.077 0.068 0 0.2325 0.421 0.087 0.074 0 0.2135 0.477 0.077 0.068 0 0.185 0.532 0.09 0.074 0 0.1255 0.6035 0.075 0.081 0 0.1025 0.7595 0.075 0.077 0 0.033 0.93 0.062 0.078 0 0.337 0.8145 0.076 0.073 0 0.308 0.8785 0.074 0.071 0 0.4125 0.5865 0.073 0.079 0 0.622 0.6985 0.074 0.071 0 0.961 0.0325 0.074 0.063 0 0.0295 0.037 0.057 0.068 0 0.168 0.12 0.078 0.078 0 0.034 0.206 0.066 0.076 0 0.0985 0.2295 0.063 0.073 0 0.0325 0.3495 0.059 0.071 0 0.1255 0.376 0.077 0.07 0 0.1915 0.4275 0.067 0.079 0 0.039 0.463 0.066 0.062 0 0.2465 0.3315 0.065 0.073 0 0.34 0.2845 0.066 0.077 0 0.1845 0.6165 0.087 0.089 0 0.2925 0.503 0.079 0.078 0 0.1195 0.7975 0.069 0.071 0 0.1865 0.8445 0.067 0.071 0 0.239 0.921 0.078 0.066 0 0.261 0.871 0.074 0.078 0 0.295 0.789 0.062 0.068 0 0.232 0.743 0.066 0.068 0 0.3745 0.684 0.063 0.07 0 0.55 0.9345 0.07 0.065 0 0.612 0.8075 0.058 0.063 0 0.968 0.701 0.062 0.068 0 0.891 0.7385 0.076 0.079 0 0.812 0.7355 0.076 0.079 0 0.732 0.6815 0.054 0.061 0 0.622 0.5355 0.066 0.063 0 0.9385 0.5425 0.049 0.047 0 0.8525 0.5445 0.059 0.063 0 0.7805 0.4875 0.051 0.053 0 0.7215 0.4335 0.067 0.063 0 0.837 0.372 0.07 0.08 0 0.682 0.2185 0.052 0.061 0 0.4975 0.129 0.067 0.072 0 0.66 0.155 0.064 0.06 0 0.7755 0.2115 0.055 0.057 0 0.87 0.2045 0.07 0.073 0 0.971 0.1495 0.058 0.069 0 0.87 0.144 0.064 0.07 0 0.9285 0.0995 0.071 0.073 0 0.773 0.0585 0.07 0.087 0 0.6545 0.032 0.065 0.062 0 0.252 0.585 0.1 0.108 0 0.0355 0.6845 0.069 0.083 0 0.087 0.684 0.062 0.068 0 0.166 0.7285 0.076 0.087 0 0.197 0.7895 0.078 0.075 0 0.0955 0.8255 0.083 0.083 0 0.1655 0.8745 0.071 0.077 0 0.252 0.878 0.078 0.074 0 0.0325 0.9305 0.063 0.065 0 0.2525 0.974 0.069 0.052 0 0.901 0.89 0.072 0.076 0 0.9715 0.9195 0.057 0.071 0 0.475 0.549 0.064 0.062 0 0.9245 0.6505 0.051 0.063 0 0.956 0.531 0.054 0.064 0 0.911 0.533 0.046 0.05 0 0.87 0.493 0.07 0.068 0 0.943 0.2375 0.084 0.085 0 0.97 0.1105 0.06 0.079 0 0.92 0.1255 0.066 0.069 0 0.8195 0.1075 0.065 0.067 0 0.726 0.069 0.062 0.058 0 0.6105 0.0395 0.079
24%|██▍ | 116/486 [00:08<00:24, 15.20it/s]
0.077 0 0.0685 0.031 0.085 0.06 0 0.1405 0.04 0.071 0.072 0 0.215 0.038 0.088 0.074 0 0.075 0.1315 0.086 0.085 0 0.175 0.2005 0.088 0.091 0 0.2875 0.2255 0.089 0.093 0 0.3575 0.0895 0.071 0.071 0 0.4535 0.128 0.073 0.07 0 0.5695 0.142 0.079 0.08 0 0.4185 0.2355 0.079 0.077 0 0.69 0.195 0.082 0.074 0 0.748 0.2455 0.076 0.063 0 0.691 0.303 0.07 0.074 0 0.7185 0.4245 0.073 0.073 0 0.046 0.276 0.088 0.086 0 0.1465 0.3045 0.067 0.071 0 0.2535 0.3365 0.071 0.075 0 0.367 0.368 0.088 0.09 0 0.1095 0.4195 0.081 0.083 0 0.208 0.4485 0.084 0.087 0 0.3125 0.4965 0.079 0.075 0 0.3355 0.554 0.079 0.074 0 0.3925 0.586 0.053 0.06 0 0.512 0.412 0.084 0.086 0 0.578 0.443 0.074 0.078 0 0.6805 0.488 0.083 0.082 0 0.617 0.542 0.05 0.058 0 0.6235 0.6135 0.061 0.077 0 0.963 0.3095 0.06 0.063 0 0.884 0.3835 0.066 0.069 0 0.8555 0.6285 0.081 0.085 0 0.06 0.561 0.074 0.06 0 0.156 0.5935 0.078 0.079 0 0.032 0.6945 0.062 0.077 0 0.051 0.7315 0.054 0.061 0 0.123 0.735 0.066 0.08 0 0.1065 0.837 0.069 0.06 0 0.2525 0.7735 0.065 0.063 0 0.083 0.9565 0.074 0.077 0 0.199 0.9675 0.07 0.065 0 0.2315 0.8805 0.065 0.067 0 0.348 0.9265 0.074 0.075 0 0.382 0.804 0.08 0.08 0 0.485 0.9535 0.096 0.085 0 0.4935 0.8425 0.083 0.087 0 0.4225 0.6785 0.083 0.075 0 0.4445 0.6145 0.057 0.061 0 0.5365 0.685 0.065 0.068 0 0.509 0.7435 0.054 0.051 0 0.5755 0.7435 0.057 0.057 0 0.6125 0.8515 0.085 0.089 0 0.6665 0.905 0.073 0.076 0 0.7525 0.926 0.075 0.068 0 0.699 0.818 0.082 0.076 0 0.6625 0.738 0.089 0.088 0 0.6245 0.683 0.065 0.058 0 0.805 0.7875 0.076 0.071 0 0.817 0.8625 0.078 0.071 0 0.9 0.9205 0.07 0.059 0 0.9415 0.776 0.065 0.062 0 0.169 0.0415 0.086 0.075 0 0.227 0.097 0.078 0.078 0 0.306 0.122 0.086 0.086 0 0.3795 0.108 0.083 0.078 0 0.1665 0.1795 0.041 0.039 0 0.061 0.362 0.096 0.094 0 0.2485 0.3905 0.073 0.077 0 0.3095 0.491 0.079 0.072 0 0.3055 0.589 0.059 0.064 0 0.263 0.623 0.07 0.062 0 0.2825 0.8945 0.057 0.055 0 0.2795 0.9685 0.041 0.045 0 0.47 0.957 0.056 0.064 0 0.56 0.934 0.058 0.054 0 0.455 0.778 0.058 0.062 0 0.504 0.712 0.068 0.064 0 0.4015 0.572 0.055 0.068 0 0.4935 0.6095 0.085 0.083 0 0.6295 0.7385 0.053 0.057 0 0.6195 0.613 0.069 0.066 0 0.723 0.679 0.064 0.058 0 0.8125 0.8165 0.051 0.049 0 0.8435 0.6865 0.063 0.069 0 0.9175 0.6445 0.093 0.087 0 0.8995 0.5555 0.073 0.067 0 0.795 0.518 0.062 0.064 0 0.908 0.4375 0.086 0.085 0 0.806 0.272 0.06 0.06 0 0.762 0.201 0.058 0.054 0 0.8275 0.056 0.055 0.066 0 0.586 0.0345 0.064 0.065 0 0.6615 0.1425 0.073 0.065 0 0.6335 0.2075 0.061 0.055 0 0.625 0.322 0.068 0.064 0 0.5595 0.405 0.073 0.074 0 0.616 0.4795 0.074 0.069 0 0.5315 0.5085 0.063 0.065 0 0.438 0.4635 0.062 0.057 0 0.4645 0.4005 0.065 0.059 0 0.045 0.036 0.078 0.07 0 0.5405 0.054 0.111 0.092 0 0.754 0.0495 0.09 0.083 0 0.9615 0.1375 0.077 0.085 0 0.752 0.327 0.07 0.07 0 0.6205 0.394 0.075 0.078 0 0.45 0.3745 0.068 0.065 0 0.084 0.401 0.078 0.08
24%|██▍ | 119/486 [00:08<00:20, 17.59it/s]
0 0.0455 0.1085 0.077 0.085 0 0.132 0.1355 0.07 0.077 0 0.149 0.208 0.054 0.06 0 0.3625 0.1615 0.077 0.073 0 0.465 0.058 0.086 0.08 0 0.4965 0.248 0.075 0.072 0 0.932 0.2435 0.066 0.067 0 0.913 0.331 0.048 0.058 0 0.5835 0.4855 0.069 0.059 0 0.1525 0.345 0.073 0.078 0 0.0395 0.434 0.077 0.092 0 0.044 0.513 0.07 0.06 0 0.197 0.47 0.078 0.076 0 0.226 0.627 0.062 0.062 0 0.3205 0.743 0.067 0.068 0 0.27 0.9005 0.076 0.071 0 0.4915 0.8795 0.057 0.057 0 0.7785 0.642 0.061 0.066 0 0.9025 0.735 0.073 0.074 0 0.9575 0.7535 0.057 0.073 0 0.88 0.969 0.07 0.054 0 0.102 0.0285 0.048 0.045 0 0.117 0.2695 0.09 0.095 0 0.5075 0.063 0.075 0.064 0 0.592 0.146 0.066 0.064 0 0.7125 0.149 0.075 0.08 0 0.2975 0.3495 0.067 0.063 0 0.4935 0.3845 0.069 0.065 0 0.4605 0.4635 0.063 0.061 0 0.11 0.4555 0.064 0.061 0 0.39 0.517 0.102 0.096 0 0.4745 0.5655 0.079 0.089 0 0.5235 0.553 0.055 0.054 0 0.6205 0.494 0.093 0.078 0 0.968 0.1495 0.064 0.071 0 0.907 0.24 0.078 0.078 0 0.752 0.385 0.052 0.048 0 0.7325 0.5385 0.079 0.081 0 0.811 0.496 0.074 0.08 0 0.8835 0.443 0.075 0.074 0 0.909 0.6035 0.066 0.069 0 0.958 0.615 0.076 0.084 0 0.8885 0.6705 0.065 0.057 0 0.9135 0.737 0.085 0.078 0 0.856 0.7845 0.098 0.069 0 0.8735 0.8515 0.097 0.081 0 0.827 0.933 0.078 0.07 0 0.735 0.96 0.074 0.07 0 0.686 0.913 0.066 0.068 0 0.631 0.8835 0.08 0.075 0 0.702 0.8245 0.074 0.065 0 0.6585 0.7675 0.073 0.071 0 0.4345 0.7955 0.079 0.089 0 0.342 0.795 0.074 0.072 0 0.263 0.7605 0.066 0.069 0
25%|██▌ | 122/486 [00:08<00:26, 13.65it/s]
0.1875 0.846 0.075 0.074 0 0.175 0.745 0.072 0.068 0 0.0785 0.7025 0.073 0.081 0 0.06 0.7895 0.07 0.069 0 0.0645 0.2715 0.083 0.085 0 0.5775 0.0405 0.079 0.073 0 0.4965 0.074 0.077 0.084 0 0.514 0.171 0.082 0.07 0 0.446 0.2285 0.07 0.079 0 0.359 0.299 0.08 0.068 0 0.4005 0.363 0.077 0.074 0 0.074 0.692 0.084 0.098 0 0.1005 0.9425 0.077 0.075 0 0.1415 0.8765 0.089 0.081 0 0.295 0.909 0.072 0.064 0 0.2265 0.868 0.069 0.074 0 0.1675 0.7865 0.079 0.083 0 0.2115 0.6715 0.077 0.073 0 0.303 0.7125 0.084 0.075 0 0.3495 0.779 0.077 0.072 0 0.3305 0.635 0.081 0.08 0 0.439 0.692 0.094 0.094 0 0.5095 0.736 0.081 0.082 0 0.5815 0.795 0.069 0.074 0 0.6805 0.926 0.081 0.074 0 0.7 0.833 0.072 0.07 0 0.851 0.834 0.066 0.07 0 0.9535 0.891 0.075 0.074 0 0.896 0.728 0.078 0.07 0 0.7605 0.733 0.095 0.082 0 0.622 0.705 0.094 0.084 0 0.931 0.6485 0.088 0.097 0 0.7915 0.6295 0.081 0.079 0 0.487 0.581 0.084 0.076 0 0.342 0.5495 0.088 0.085 0 0.4025 0.478 0.073 0.074 0 0.5425 0.451 0.077 0.082 0 0.701 0.538 0.074 0.076 0 0.842 0.503 0.084 0.08 0 0.718 0.469 0.072 0.062 0 0.7365 0.394 0.079 0.08 0 0.9055 0.384 0.081 0.076 0 0.944 0.2845 0.08 0.079 0 0.8145 0.2515 0.079 0.081 0 0.7315 0.252 0.071 0.074 0 0.5885 0.3525 0.079 0.083 0 0.577 0.2615 0.078 0.075 0 0.6585 0.209 0.075 0.07 0 0.6185 0.163 0.071 0.068 0 0.6645 0.119 0.065 0.062 0 0.968 0.184 0.064 0.082 0 0.8935 0.1755 0.073 0.079 0 0.884 0.0585 0.064 0.059 0 0.2345 0.035 0.067 0.06 0 0.219 0.1005 0.064 0.057 0 0.204 0.1635 0.076 0.071 0 0.1275 0.3565 0.081 0.085 0 0.1085 0.4425 0.073 0.077 0 0.3845 0.379 0.073 0.066 0 0.537 0.3995 0.078 0.071 0 0.563 0.5365 0.07 0.069 0 0.681 0.454 0.052 0.05 0 0.724 0.3585 0.062 0.067 0 0.676 0.256 0.06 0.054 0 0.977 0.2175 0.046 0.053 0 0.9075 0.284 0.057 0.054 0 0.9665 0.371 0.049 0.06 0 0.8685 0.4685 0.045 0.059 0 0.7695 0.5765 0.071 0.069 0 0.9735 0.6365 0.053 0.063 0 0.1855 0.6405 0.087 0.081 0 0.0935 0.8015 0.081 0.079 0 0.1705 0.92 0.091 0.086 0 0.2495 0.729 0.067 0.064 0 0.309 0.9515 0.082 0.085 0 0.3605 0.843 0.083 0.076 0 0.4845 0.685 0.065 0.084 0 0.5615 0.709 0.091 0.086 0 0.689 0.694 0.066 0.066 0 0.7515 0.75 0.077 0.086 0 0.669 0.822 0.076 0.076 0 0.4845 0.885 0.067 0.074 0 0.6175 0.923 0.075 0.084 0 0.7645 0.963 0.081 0.072 0 0.815 0.8315 0.08 0.069 0 0.944 0.877 0.08 0.078 0 0.842 0.7405 0.068 0.063 0 0.965 0.7645 0.07 0.083 0 0.9615 0.047 0.075 0.086 0 0.959 0.176 0.074 0.096 0 0.8365 0.105 0.077 0.074 0 0.744 0.1 0.076 0.08 0 0.765 0.182 0.08 0.084 0 0.819 0.235 0.078 0.068 0 0.901 0.295 0.074 0.078 0 0.948 0.3595 0.082 0.095 0 0.9555 0.4735 0.087 0.087
26%|██▌ | 124/486 [00:08<00:27, 13.19it/s]
0 0.923 0.5915 0.066 0.067 0 0.847 0.5725 0.062 0.069 0 0.737 0.5245 0.07 0.069 0 0.5935 0.5015 0.063 0.067 0 0.6945 0.2685 0.073 0.075 0 0.652 0.324 0.072 0.07 0 0.608 0.384 0.074 0.078 0 0.687 0.1685 0.068 0.065 0 0.6135 0.2075 0.075 0.071 0 0.5785 0.281 0.101 0.086 0 0.635 0.097 0.066 0.07 0 0.512 0.371 0.056 0.074 0 0.4475 0.526 0.065 0.062 0 0.4885 0.5825 0.061 0.063 0 0.669 0.662 0.058 0.056 0 0.7725 0.657 0.065 0.052 0 0.7925 0.7215 0.077 0.071 0 0.896 0.774 0.078 0.076 0 0.7875 0.915 0.077 0.074 0 0.8835 0.954 0.081 0.076 0 0.9545 0.966 0.075 0.064 0 0.376 0.0725 0.08 0.069 0 0.3675 0.154 0.061 0.058 0 0.365 0.22 0.074 0.072 0 0.2245 0.1325 0.077 0.069 0 0.1305 0.217 0.065 0.066 0 0.191 0.278 0.08 0.074 0 0.2735 0.3115 0.075 0.079 0 0.1615 0.3565 0.073 0.065 0 0.1675 0.425 0.083 0.082 0 0.253 0.455 0.078 0.08 0 0.117 0.5395 0.064 0.063 0 0.241 0.5505 0.074 0.075 0 0.1815 0.583 0.059 0.068 0 0.044 0.654 0.064 0.078 0 0.102 0.648 0.066 0.062 0 0.182 0.6675 0.072 0.091 0 0.2265 0.662 0.063 0.07 0 0.3075 0.635 0.069 0.078 0 0.3735 0.6615 0.065 0.065 0 0.1335 0.8075 0.065 0.067 0 0.291 0.812 0.082 0.088 0 0.211 0.955 0.078 0.078 0 0.062 0.0675 0.076 0.083 0 0.161 0.0935 0.078 0.079 0 0.144 0.1785 0.082 0.071 0 0.323 0.0405 0.068 0.067 0 0.396 0.103 0.068 0.074 0 0.2805 0.161 0.075 0.068 0 0.3485 0.2105 0.079 0.071 0 0.2505 0.2965 0.071 0.083 0 0.3415 0.2825 0.045 0.047 0 0.496 0.1395 0.054 0.055 0 0.4505 0.2145 0.077 0.071 0 0.528 0.25 0.088 0.086 0 0.8325 0.0725 0.081 0.081 0 0.9645 0.1265 0.071 0.083 0 0.9275 0.22 0.091 0.082 0 0.7935 0.1855 0.095 0.087 0 0.0565 0.435 0.083 0.08 0 0.2155 0.433 0.071 0.072 0 0.32 0.464 0.082 0.08 0 0.047 0.5155 0.072 0.067 0 0.183 0.5495 0.074 0.073 0 0.302 0.594 0.082 0.088 0 0.448 0.506 0.08 0.07 0 0.5765 0.4975 0.055 0.061 0 0.682 0.4035 0.072 0.079 0 0.7495 0.3055 0.069 0.079 0 0.833 0.363 0.086 0.084 0 0.749 0.3965 0.058 0.065 0 0.6585 0.546 0.065 0.062 0 0.9025 0.503 0.087 0.072 0 0.817 0.5415 0.1 0.087 0 0.737 0.6045 0.07 0.075 0 0.783 0.61 0.058 0.064 0 0.837 0.625 0.062 0.072 0 0.903 0.6265 0.068 0.077 0 0.768 0.683 0.076 0.088 0 0.773 0.769 0.07 0.08 0 0.8415 0.798 0.079 0.08 0 0.951 0.7445 0.078 0.081 0 0.823 0.8685 0.078 0.071 0 0.7865 0.9455 0.067 0.069 0 0.5635 0.7965 0.087 0.079 0 0.5835 0.7365 0.065 0.059 0 0.615 0.6845 0.086 0.081 0 0.636 0.6285 0.072 0.055 0 0.407 0.896 0.082 0.074 0 0.491 0.947 0.084 0.076 0 0.3785 0.801 0.059 0.064 0 0.424 0.771 0.066 0.08 0 0.4605 0.7435 0.071 0.073 0 0.2785 0.8655 0.083 0.097 0 0.105 0.798 0.072 0.074 0 0.2695 0.7 0.083 0.082 0 0.334 0.733 0.056 0.068 0 0.114 0.6595 0.072 0.081 0 0.13 0.9135 0.068 0.061 0 0.2115 0.866 0.067 0.066 0 0.057 0.818 0.07 0.072 0 0.126 0.7705 0.066 0.073 0 0.3275 0.855 0.085 0.086 0 0.074 0.66 0.07 0.072 0 0.1705 0.649 0.081 0.086 0 0.3765 0.7795 0.075 0.075 0 0.0345 0.5465 0.067 0.085 0 0.0715 0.4505 0.087 0.085 0 0.1335 0.441 0.045 0.046 0 0.0455 0.3235 0.079 0.071 0 0.03 0.253 0.058 0.088 0 0.025 0.026 0.048 0.05 0 0.0915 0.1445 0.075 0.071 0 0.2075 0.1145 0.075 0.063 0 0.1855 0.245 0.087 0.088 0 0.3045 0.2835 0.085 0.091 0 0.2525 0.3955 0.081 0.091 0 0.212 0.4825 0.074 0.065 0 0.32 0.4585 0.078 0.083 0 0.218 0.548 0.06 0.08 0 0.278 0.553 0.08 0.094 0 0.3635 0.545 0.075 0.082 0 0.417 0.5135 0.074 0.073 0 0.436 0.447 0.07 0.072 0 0.446 0.3065 0.07 0.071 0 0.5435 0.288 0.065 0.06 0 0.511 0.355 0.074 0.076 0 0.5215 0.1345 0.071 0.069 0 0.5925 0.1425 0.075 0.083 0 0.868 0.038 0.05 0.056 0 0.9355 0.069 0.069 0.072 0 0.8215 0.088 0.073 0.078 0 0.7865 0.185 0.073 0.088 0 0.6995 0.257 0.085 0.08 0 0.649 0.3245 0.084 0.067 0 0.604 0.403 0.086 0.072 0 0.563 0.4705 0.078 0.087 0 0.526 0.5515 0.074 0.083 0 0.4145 0.677 0.081 0.076 0 0.4655 0.7445 0.045 0.043 0 0.5115 0.804 0.081 0.08 0 0.5515 0.6845 0.077 0.081 0 0.606 0.9175 0.082 0.085 0 0.646 0.827 0.092 0.1 0 0.712 0.7395 0.084 0.085 0 0.7365 0.931 0.089 0.092 0 0.873 0.9595 0.102 0.073 0 0.8955 0.882 0.079 0.1 0 0.9515 0.808 0.081 0.082 0 0.878 0.688 0.078 0.08 0 0.78 0.598 0.086 0.086 0 0.654 0.5715 0.068 0.065 0 0.704 0.484 0.082 0.084 0 0.8285 0.5115 0.083 0.091 0 0.965 0.5175 0.07 0.079 0 0.8715 0.43 0.071 0.064 0 0.9365 0.3505 0.079 0.081 0 0.8005 0.338 0.083 0.084 0 0.973 0.26 0.054 0.072 0 0.9035 0.1875 0.083 0.081 0 0.0335 0.965 0.065 0.06 0 0.091 0.8525 0.05 0.061 0 0.222 0.5415 0.064 0.061 0 0.0645 0.6955 0.061 0.055 0 0.1935 0.635 0.065 0.062 0 0.489 0.4695 0.078 0.073 0 0.3605 0.3735 0.059 0.051 0 0.4725 0.383 0.049 0.052 0 0.6805 0.5335 0.065 0.069 0 0.722 0.458 0.062 0.064 0 0.775 0.489 0.056 0.068 0 0.854 0.407 0.06 0.056 0 0.796 0.3535 0.066 0.049 0 0.846 0.3205 0.056 0.055 0 0.8865 0.252 0.067 0.068 0 0.8215 0.177 0.065 0.066 0 0.8655 0.0875 0.075 0.073 0 0.6485 0.0355 0.067 0.061 0 0.5245 0.0315 0.075 0.061 0 0.4385 0.13 0.071 0.066 0 0.3005 0.215 0.067 0.06 0 0.5305 0.198 0.069 0.062 0 0.6325 0.1825 0.083 0.083 0 0.529 0.307 0.068 0.066 0 0.596 0.313 0.084 0.09 0 0.053 0.126 0.074 0.076 0 0.2225 0.0625 0.071 0.067 0 0.3415 0.0685 0.069 0.065 0 0.4675 0.088 0.067 0.066 0 0.186 0.243 0.068 0.078 0 0.2595 0.2525 0.079 0.085 0 0.1715 0.324 0.057 0.06 0 0.22 0.3075 0.072 0.063 0 0.318 0.3085 0.072 0.073 0 0.36 0.353 0.056 0.05 0 0.2365 0.4095 0.079 0.081 0 0.3505 0.431 0.067 0.062 0 0.425 0.464 0.076 0.074 0 0.4725 0.197 0.083 0.076 0 0.729 0.0855 0.098 0.093 0 0.8055 0.121 0.081 0.076 0 0.6395 0.1535 0.067 0.061 0 0.6535 0.239 0.077 0.074 0 0.691 0.3285 0.066 0.059 0 0.8195 0.488 0.079 0.08 0 0.0355 0.6065 0.069 0.085 0 0.0775 0.661 0.077 0.074 0 0.157 0.701 0.076 0.086 0 0.275 0.759 0.08 0.082 0 0.304 0.709 0.064 0.054 0 0.3555 0.706 0.061 0.06 0 0.379 0.6735 0.056 0.055 0 0.494 0.76 0.052 0.048 0 0.089 0.8035 0.078 0.073 0 0.029 0.92 0.056 0.07 0 0.115 0.9725 0.062 0.049 0 0.13 0.9125 0.086 0.079 0 0.1705 0.873 0.081 0.09 0 0.2225 0.8225 0.071 0.081 0 0.277 0.906 0.07 0.076 0 0.3265 0.8705 0.085 0.079 0 0.375 0.9275 0.08 0.073 0 0.5565 0.86 0.063 0.07 0 0.627 0.8315 0.068 0.067 0 0.722 0.758 0.088 0.088 0 0.9575 0.852 0.085 0.086 0 0.652 0.948 0.076 0.07 0 0.557 0.9065 0.066 0.071 0 0.311 0.931 0.08 0.08 0 0.146 0.89 0.07 0.07 0 0.3365 0.825 0.069 0.064 0 0.228 0.79 0.07 0.064 0 0.1095 0.766 0.063 0.066 0 0.2645 0.6875 0.079 0.071 0 0.376 0.7325 0.08 0.079 0 0.4935 0.761 0.075 0.072 0 0.603 0.795 0.076 0.066 0 0.1995 0.538 0.077 0.078 0 0.2985 0.5825 0.075 0.077 0 0.362 0.6065 0.076 0.071 0 0.5475 0.6505 0.083 0.077 0 0.6355 0.687 0.079 0.078 0 0.796 0.627 0.056 0.056 0 0.6545 0.5895 0.081 0.069 0 0.5845 0.5485 0.077 0.071 0 0.454 0.5465 0.082 0.083 0 0.3285 0.486 0.081 0.08 0 0.1355 0.265 0.077 0.072 0 0.105 0.216 0.064 0.062 0 0.155 0.155 0.088 0.094 0 0.216 0.048 0.072 0.068 0 0.321 0.1535 0.06 0.051 0 0.3955 0.1635 0.083 0.081 0 0.369 0.2345 0.076 0.069 0 0.318 0.313 0.094 0.098 0 0.6285 0.458 0.053 0.056 0 0.7065 0.38 0.067 0.068 0 0.773 0.36 0.062 0.058 0 0.864 0.292 0.086 0.092 0 0.9455 0.2355 0.061 0.057 0 0.425 0.049 0.076 0.08
27%|██▋ | 130/486 [00:09<00:31, 11.37it/s]
0 0.7095 0.956 0.085 0.08 0 0.7485 0.8505 0.063 0.063 0 0.6485 0.829 0.073 0.08 0 0.3515 0.92 0.079 0.076 0 0.2445 0.9325 0.075 0.073 0 0.409 0.82 0.084 0.092 0 0.197 0.8285 0.078 0.087 0 0.237 0.749 0.072 0.08 0 0.1535 0.732 0.063 0.07 0 0.0925 0.6695 0.087 0.087 0 0.168 0.6365 0.072 0.073 0 0.1255 0.549 0.077 0.084 0 0.2505 0.49 0.071 0.064 0 0.8105 0.6705 0.087 0.085 0 0.718 0.666 0.07 0.08 0 0.6185 0.6035 0.071 0.083 0 0.453 0.5285 0.076 0.077 0 0.3935 0.555 0.073 0.074 0 0.889 0.577 0.066 0.064 0 0.7585 0.5455 0.075 0.075 0 0.645 0.4975 0.08 0.077 0 0.498 0.43 0.068 0.072 0 0.418 0.424 0.072 0.07 0 0.921 0.4735 0.056 0.055 0 0.798 0.432 0.072 0.064 0 0.6955 0.39 0.081 0.082 0 0.5155 0.3325 0.073 0.079 0 0.3035 0.299 0.083 0.082 0 0.2545 0.2315 0.065 0.067 0 0.0655 0.282 0.055 0.056 0 0.179 0.0985 0.084 0.075 0 0.3115 0.042 0.085 0.08 0 0.385 0.09 0.072 0.072 0 0.4905 0.1025 0.085 0.079 0 0.6175 0.061 0.071 0.064 0 0.599 0.1355 0.07 0.063 0 0.569 0.2315 0.07 0.067 0 0.845 0.333 0.074 0.07 0 0.884 0.2125 0.062 0.061 0 0.758 0.068 0.076 0.068 0 0.0755 0.0555 0.073 0.067 0 0.393 0.0385 0.064 0.059 0 0.339 0.1595 0.08 0.075 0 0.196 0.24 0.068 0.066 0 0.1535 0.352 0.069 0.062 0 0.513 0.053 0.074 0.076 0 0.4615 0.1715 0.077 0.073 0 0.6145 0.076 0.065 0.072 0 0.751 0.095 0.068 0.064 0 0.889 0.0345 0.084 0.067 0 0.964 0.1505 0.072 0.089 0 0.704 0.2065 0.076 0.071 0 0.659 0.3105 0.06 0.067 0 0.495 0.4065 0.068 0.071 0 0.6105 0.4185 0.073 0.065 0 0.465 0.498 0.064 0.064 0 0.3405 0.5275 0.083 0.079 0 0.286 0.6265 0.086 0.089 0 0.1615 0.6235 0.081 0.085 0 0.0435 0.6065 0.085 0.097 0 0.1195 0.766 0.071 0.066 0 0.2495 0.752 0.065 0.06 0 0.202 0.865 0.066 0.074 0 0.173 0.9615 0.068 0.071 0 0.4085 0.948 0.079 0.076 0 0.453 0.8415 0.072 0.083 0 0.5295 0.8605 0.051 0.051 0 0.4995 0.733 0.075 0.072 0 0.5175 0.6465 0.087 0.089 0 0.5915 0.863 0.067 0.084 0 0.58 0.531 0.066 0.06 0 0.919 0.882 0.088 0.084 0 0.963 0.775 0.074 0.088 0 0.8465 0.7525 0.085 0.079 0 0.8815 0.6495 0.085 0.083 0 0.6635 0.6195 0.063 0.057 0 0.78 0.586 0.076 0.078 0 0.845 0.467 0.082 0.076 0 0.936 0.536 0.096 0.086 0 0.181 0.22 0.07 0.076 0 0.031 0.314 0.054 0.076 0 0.0475 0.548 0.069 0.072 0 0.321 0.17 0.068 0.072 0 0.301 0.269 0.08 0.078 0 0.2495 0.377 0.087 0.09 0 0.2025 0.4885 0.077 0.079 0 0.1735 0.6005 0.083 0.081 0 0.112 0.699 0.09 0.086 0 0.041 0.9055 0.08 0.085 0 0.152 0.933 0.09 0.096 0 0.1965 0.821 0.087 0.088 0 0.247 0.7125 0.082 0.079 0 0.294 0.5855 0.084 0.083 0 0.3355 0.4935 0.063 0.065 0 0.37 0.3875 0.084 0.081 0 0.4045 0.286 0.073 0.074 0 0.4385 0.184 0.085 0.082 0 0.4845 0.067 0.073 0.068 0 0.5955 0.0955 0.085 0.073 0 0.51 0.305 0.082 0.076 0 0.469 0.419 0.096 0.094 0 0.352 0.748 0.074 0.068 0 0.2935 0.8475 0.075 0.071 0 0.3415 0.927 0.085 0.082 0 0.407 0.8225 0.064 0.069 0 0.5065 0.87 0.079 0.076 0 0.7655 0.945 0.093 0.078 0 0.9615 0.877 0.077 0.082 0 0.9355 0.971 0.071 0.058 0 0.515 0.625 0.08 0.078 0 0.5945 0.628 0.067 0.07 0 0.5585 0.5265 0.091 0.083 0 0.6445 0.495
27%|██▋ | 132/486 [00:09<00:31, 11.29it/s]
0.075 0.09 0 0.602 0.434 0.08 0.068 0 0.786 0.554 0.076 0.082 0 0.8305 0.426 0.099 0.094 0 0.9575 0.462 0.085 0.088 0 0.6715 0.2275 0.099 0.083 0 0.8155 0.207 0.083 0.084 0 0.91 0.199 0.07 0.068 0 0.717 0.1215 0.082 0.083 0 0.8375 0.1345 0.057 0.051 0 0.124 0.9045 0.08 0.077 0 0.03 0.7685 0.058 0.079 0 0.066 0.6035 0.074 0.085 0 0.136 0.684 0.086 0.086 0 0.2145 0.667 0.085 0.08 0 0.3225 0.9655 0.073 0.067 0 0.359 0.846 0.08 0.08 0 0.4445 0.8785 0.083 0.095 0 0.3445 0.7215 0.079 0.091 0 0.487 0.7705 0.084 0.087 0 0.7255 0.952 0.077 0.076 0 0.937 0.8585 0.068 0.069 0 0.8485 0.826 0.065 0.07 0 0.752 0.8005 0.064 0.067 0 0.1525 0.5875 0.075 0.079 0 0.1035 0.5015 0.085 0.087 0 0.231 0.528 0.072 0.076 0 0.3045 0.608 0.087 0.086 0 0.391 0.587 0.078 0.088 0 0.528 0.6275 0.082 0.079 0 0.654 0.6595 0.084 0.077 0 0.704 0.7 0.066 0.066 0 0.7795 0.718 0.069 0.076 0 0.846 0.7195 0.064 0.071 0 0.9535 0.7565 0.063 0.059 0 0.918 0.6315 0.094 0.093 0 0.866 0.662 0.064 0.078 0 0.7975 0.6335 0.063 0.063 0 0.8285 0.5805 0.101 0.097 0 0.957 0.4935 0.084 0.091 0 0.871 0.5045 0.08 0.077 0 0.8075 0.4755 0.081 0.085 0 0.7345 0.4515 0.079 0.089 0 0.574 0.5075 0.078 0.079 0 0.4835 0.517 0.081 0.084 0 0.436 0.4625 0.074 0.077 0 0.363 0.4895 0.092 0.087 0 0.2805 0.423 0.099 0.104 0 0.149 0.391 0.086 0.084 0 0.066 0.2365 0.09 0.077 0 0.33 0.319 0.078 0.086 0 0.3965 0.367 0.087 0.076 0 0.573 0.409 0.078 0.08 0 0.9705 0.3955 0.059 0.075 0 0.877 0.3565 0.094 0.087 0 0.7695 0.311 0.075 0.072 0 0.651 0.2845 0.074 0.073 0 0.681 0.188 0.076 0.076 0 0.3555 0.217 0.079 0.082 0 0.2145 0.1575 0.065 0.065 0 0.096 0.12 0.086 0.09 0 0.1225 0.041 0.097 0.08 0 0.27 0.0825 0.064 0.061 0 0.405 0.1205 0.088 0.089 0 0.587 0.0435 0.088 0.083 0 0.735 0.07 0.086 0.092 0 0.871 0.8915 0.082 0.079 0 0.7135 0.959 0.085 0.076 0 0.584 0.972 0.066 0.056 0 0.6 0.9215 0.086 0.071 0 0.7545 0.838 0.097 0.096 0 0.6265 0.8205 0.091 0.085 0 0.4795 0.9035 0.089 0.083 0 0.3795 0.888 0.089 0.086 0 0.3465 0.969 0.085 0.062 0 0.261 0.958 0.086 0.078 0 0.1135 0.924 0.095 0.09 0 0.0395 0.8095 0.077 0.089 0 0.138 0.8275 0.094 0.095 0 0.259 0.825 0.094 0.092 0 0.505 0.7835 0.074 0.075 0 0.3965 0.7795 0.091 0.095 0 0.2645 0.741 0.089 0.084 0 0.1635 0.725 0.075 0.088 0 0.1695 0.604 0.087 0.09 0 0.298 0.6295 0.096 0.095 0 0.38 0.6815 0.082 0.071 0 0.53 0.673 0.096 0.084 0 0.6705 0.721 0.059 0.058 0 0.76 0.7165 0.084 0.087 0 0.863 0.745 0.056 0.06 0 0.9615 0.6705 0.077 0.083 0 0.7905 0.614 0.089 0.094 0 0.6775 0.5765 0.085 0.083 0 0.541 0.5715 0.09 0.087 0 0.4225 0.535 0.087 0.078 0 0.322 0.515 0.088 0.096 0 0.195 0.5025 0.088 0.089 0 0.078 0.4855 0.096 0.107 0 0.131 0.431 0.086 0.068 0 0.1175 0.3545 0.091 0.081 0 0.0435 0.227 0.085 0.092 0 0.8 0.519 0.09 0.084 0 0.6905 0.4855 0.103 0.093 0 0.5625 0.458 0.083 0.078 0 0.458 0.432 0.078 0.082 0 0.3505 0.4125 0.097 0.097 0 0.3645 0.3485 0.081 0.067 0 0.2395 0.2535 0.097 0.103 0 0.377 0.2935 0.088 0.079 0 0.5995 0.374 0.085 0.082 0 0.6905 0.3705 0.091 0.093 0 0.7555 0.3855 0.075 0.083 0 0.916 0.4305 0.08 0.075 0 0.961 0.329 0.078 0.088 0 0.8575 0.312 0.089 0.088 0 0.813 0.269 0.054 0.056 0 0.712 0.283 0.086 0.082 0 0.5745 0.303 0.079 0.076 0 0.7835 0.1665 0.073 0.069 0 0.5985 0.2035
28%|██▊ | 134/486 [00:09<00:30, 11.71it/s]
0.071 0.061 0 0.4955 0.209 0.079 0.074 0 0.3855 0.184 0.103 0.098 0 0.2705 0.1585 0.099 0.095 0 0.16 0.139 0.094 0.1 0 0.178 0.0565 0.074 0.075 0 0.2575 0.0685 0.083 0.087 0 0.3035 0.033 0.073 0.062 0 0.401 0.074 0.08 0.076 0 0.476 0.0805 0.078 0.073 0 0.5225 0.1195 0.063 0.071 0 0.582 0.114 0.078 0.082 0 0.897 0.0865 0.08 0.077 0 0.8285 0.0315 0.085 0.061 0 0.101 0.129 0.064 0.064 0 0.032 0.4865 0.062 0.079 0 0.142 0.5205 0.078 0.085 0 0.2985 0.4885 0.087 0.081 0 0.274 0.614 0.07 0.072 0 0.042 0.6945 0.068 0.073 0 0.4005 0.561 0.089 0.092 0 0.501 0.637 0.088 0.092 0 0.4655 0.731 0.085 0.086 0 0.1435 0.7945 0.089 0.099 0 0.24 0.81 0.09 0.092 0 0.1245 0.89 0.089 0.092 0 0.1975 0.956 0.091 0.08 0 0.2035 0.899 0.075 0.062 0 0.327 0.901 0.096 0.088 0 0.4705 0.961 0.081 0.07 0 0.4355 0.849 0.057 0.072 0 0.495 0.888 0.076 0.092 0 0.6415 0.8795 0.103 0.093 0 0.602 0.936 0.058 0.056 0 0.679 0.71 0.09 0.092 0 0.799 0.82 0.076 0.096 0 0.749 0.9005 0.084 0.085 0 0.1175 0.683 0.079 0.078 0 0.246 0.6665 0.088 0.089 0 0.085 0.609 0.07 0.07 0 0.168 0.5525 0.074 0.071 0 0.2595 0.541 0.059 0.058 0 0.4345 0.593 0.063 0.07 0 0.5995 0.629 0.063 0.06 0 0.6905 0.6535 0.059 0.065 0 0.6725 0.5805 0.059 0.055 0 0.924 0.5715 0.068 0.069 0 0.856 0.5095 0.054 0.049 0 0.852 0.4635 0.044 0.045 0 0.773 0.451 0.07 0.074 0 0.5065 0.48 0.059 0.064 0 0.2125 0.4875 0.051 0.053 0 0.2335 0.4435 0.067 0.059 0 0.951 0.366 0.076 0.074 0 0.5375 0.398 0.065 0.064 0 0.432 0.3255 0.07 0.071 0 0.3075 0.367 0.071 0.07 0 0.1425 0.3095 0.059 0.065 0 0.0895 0.3245 0.047 0.049 0 0.0345 0.259 0.067 0.076 0 0.0445 0.186 0.065 0.06 0 0.1265 0.083 0.059 0.058 0 0.1855 0.047 0.061 0.068 0 0.4295 0.1955 0.065 0.059 0 0.502 0.246 0.078 0.076 0 0.578 0.2665 0.07 0.071 0 0.635 0.3105 0.068 0.075 0 0.924 0.248 0.06 0.068 0 0.672 0.2175 0.056 0.065 0 0.5725 0.171 0.069 0.078 0 0.8125 0.1755 0.047 0.061 0 0.742 0.1365 0.068 0.083 0 0.656 0.08 0.068 0.084 0 0.5835 0.035 0.065 0.066 0 0.4455 0.0265 0.055 0.051 0 0.125 0.1175 0.078 0.079 0 0.251 0.0515 0.096 0.087 0 0.3695 0.077 0.077 0.066 0 0.6325 0.056 0.079 0.074 0 0.4275 0.2155 0.075 0.071 0 0.358 0.2425 0.058 0.067 0 0.0355 0.344 0.069 0.078 0 0.0405 0.4785 0.071 0.087 0 0.1585 0.4175 0.079 0.079 0 0.1835 0.4965 0.105 0.097 0 0.262 0.437 0.086 0.08 0 0.402 0.405 0.076 0.078 0 0.502 0.4255 0.088 0.091 0 0.642 0.4175 0.09 0.097 0 0.0925 0.587 0.075 0.074 0 0.12 0.688 0.076 0.08 0 0.062 0.753 0.082 0.076 0 0.148 0.8525 0.098 0.087 0 0.24 0.917 0.076 0.08 0 0.2995 0.9435 0.075 0.077 0 0.229 0.8525 0.086 0.079 0 0.294 0.7725 0.108 0.097 0 0.378 0.97 0.064 0.06 0 0.4295 0.939 0.079 0.09 0 0.374 0.8535 0.086 0.083 0 0.3915 0.7775 0.069 0.065 0 0.3855 0.7125 0.081 0.063 0 0.401 0.6375 0.088 0.085 0 0.536 0.9525 0.102 0.091 0 0.4835 0.79 0.077 0.076 0 0.4925 0.713 0.081 0.07 0 0.4975
28%|██▊ | 138/486 [00:09<00:27, 12.82it/s]
0.643 0.073 0.074 0 0.5035 0.5625 0.085 0.083 0 0.6945 0.943 0.063 0.066 0 0.6155 0.8725 0.069 0.075 0 0.6215 0.7825 0.079 0.073 0 0.703 0.797 0.08 0.082 0 0.805 0.967 0.078 0.066 0 0.7935 0.87 0.065 0.07 0 0.806 0.7885 0.086 0.081 0 0.6105 0.5875 0.091 0.087 0 0.6475 0.509 0.085 0.07 0 0.704 0.6445 0.09 0.069 0 0.973 0.9055 0.054 0.065 0 0.9015 0.8105 0.077 0.075 0 0.912 0.724 0.098 0.088 0 0.8165 0.7215 0.083 0.073 0 0.806 0.6495 0.088 0.077 0 0.812 0.576 0.072 0.066 0 0.92 0.6435 0.092 0.079 0 0.927 0.585 0.062 0.068 0 0.918 0.5145 0.086 0.075 0 0.947 0.4555 0.066 0.065 0 0.82 0.503 0.088 0.084 0 0.747 0.436 0.082 0.082 0 0.333 0.049 0.084 0.072 0 0.6755 0.0425 0.081 0.077 0 0.7285 0.2135 0.093 0.091 0 0.6465 0.276 0.075 0.08 0 0.7085 0.299 0.069 0.068 0 0.7005 0.354 0.089 0.08 0 0.579 0.354 0.086 0.082 0 0.688 0.4295 0.084 0.069 0 0.693 0.4805 0.074 0.059 0 0.807 0.4645 0.078 0.081 0 0.8705 0.55 0.067 0.058 0 0.594 0.5575 0.074 0.069 0 0.605 0.612 0.074 0.074 0 0.697 0.654 0.07 0.07 0 0.6135 0.7005 0.071 0.063 0 0.845 0.6675 0.048 0.059 0 0.918 0.8605 0.054 0.055 0 0.8285 0.9165 0.051 0.045 0 0.688 0.927 0.074 0.072 0 0.6065 0.9555 0.065 0.061 0 0.599 0.8495 0.05 0.057 0 0.509 0.648 0.06 0.058 0 0.503 0.7105 0.06 0.049 0 0.4905 0.7795 0.085 0.087 0 0.496 0.87 0.066 0.062 0 0.4895 0.95 0.093 0.084 0 0.3865 0.9195 0.077 0.077 0 0.42 0.749 0.074 0.082 0 0.4055 0.675 0.081 0.08 0 0.408 0.5795 0.076 0.073 0 0.322 0.5765 0.062 0.059 0 0.315 0.689 0.088 0.084 0 0.172 0.9025 0.092 0.085 0 0.0945 0.808 0.089 0.096 0 0.19 0.713 0.08 0.074 0 0.1925 0.6295 0.081 0.083 0 0.2155 0.537 0.081 0.086 0 0.235 0.452 0.07 0.078 0 0.1215 0.543 0.085 0.092 0 0.036 0.649 0.07 0.094 0 0.1225 0.035 0.085 0.066 0 0.2085 0.041 0.067 0.068 0 0.0815 0.1405 0.081 0.079 0 0.0425 0.2355 0.073 0.081 0 0.112 0.242 0.078 0.074 0 0.237 0.226 0.076 0.076 0 0.3415 0.035 0.083 0.068 0 0.4085 0.1275 0.075 0.083 0 0.4545 0.29 0.093 0.08 0 0.443 0.4145 0.074 0.079 0 0.157 0.5005 0.072 0.075 0 0.7455 0.0435 0.073 0.071 0 0.8805 0.084 0.079 0.082 0 0.957 0.19 0.086 0.094 0 0.66 0.3045 0.074 0.079 0 0.964 0.3245 0.072 0.095 0 0.9385 0.4045 0.083 0.081 0 0.8215 0.455 0.095 0.1 0 0.727 0.4935 0.082 0.079 0 0.551 0.6005 0.088 0.081 0 0.897 0.5325 0.076 0.081 0 0.8575 0.6365 0.079 0.077 0 0.674 0.674 0.078 0.076 0 0.782 0.6995 0.086 0.079 0 0.9675 0.8265 0.065 0.095 0 0.787 0.821 0.06 0.054 0 0.69 0.7895 0.058 0.053 0 0.7905 0.934 0.051 0.046 0 0.6475 0.893 0.053 0.056 0 0.4245 0.8685 0.053 0.053 0 0.3495 0.7955 0.067 0.065 0 0.163 0.789 0.07 0.066 0 0.0545 0.97 0.051 0.056 0 0.239 0.8355 0.052 0.049 0 0.2865 0.9555 0.067 0.067 0 0.151 0.808 0.066 0.054 0 0.245 0.587 0.086 0.084 0 0.5325 0.5815 0.087 0.083 0 0.843 0.902 0.078 0.078 0 0.95 0.937 0.092 0.082 0 0.8605 0.7745 0.079 0.087 0 0.9655 0.782 0.069 0.076 0 0.889 0.6315 0.068 0.081 0 0.7585 0.606 0.087 0.082 0 0.789 0.4785 0.078 0.073 0 0.668 0.4465 0.092 0.091 0 0.5605 0.4245 0.075 0.079 0 0.452 0.437 0.062 0.062 0 0.931 0.403 0.084 0.086 0 0.7955 0.389 0.081 0.078 0 0.942 0.2695 0.08 0.085 0 0.8285 0.241 0.087 0.08 0 0.6535 0.1735 0.057 0.053 0 0.5805 0.2225 0.085 0.083 0 0.4635 0.254 0.055 0.056 0 0.969 0.1605 0.062 0.075 0 0.8335 0.14 0.083 0.09 0 0.7325 0.1035 0.081 0.075 0 0.8635 0.036 0.081 0.07 0 0.5765 0.096 0.077 0.08 0 0.3245 0.122 0.079 0.08 0 0.307 0.2115 0.094 0.101 0 0.232 0.1325 0.072 0.069 0 0.179 0.1065 0.072 0.065 0 0.1725 0.2655 0.081 0.077 0 0.1175 0.297 0.101 0.098 0 0.0745 0.126 0.093 0.092 0 0.158 0.168 0.084 0.084 0 0.222 0.21 0.084 0.092 0 0.0395 0.2515 0.077 0.085 0 0.0895 0.362 0.065 0.062 0 0.0595 0.462 0.081 0.086 0 0.3735 0.0435 0.097 0.083 0 0.4395 0.094 0.085 0.08 0 0.5755 0.084 0.095 0.088 0 0.7185 0.0815 0.061 0.051 0 0.3285 0.1775 0.091 0.089 0 0.3555 0.2275 0.059 0.059 0 0.5025 0.28 0.065 0.07 0 0.411 0.31 0.09 0.084 0 0.3145 0.3005 0.073 0.077 0 0.29 0.412 0.09 0.076 0 0.3815 0.433 0.093 0.09 0 0.245 0.508 0.088 0.086 0 0.3275 0.538 0.083 0.084 0 0.4935 0.4715 0.087 0.089 0 0.6215 0.3665 0.091 0.087 0 0.6245 0.4885 0.081 0.077 0 0.8515 0.4345 0.067 0.081 0 0.8125 0.5385 0.085 0.089 0 0.7315 0.403 0.065 0.064 0 0.7325 0.5115 0.079 0.085 0 0.706 0.615 0.1 0.092 0 0.5935 0.5835 0.077 0.075 0 0.6775 0.7395 0.091 0.089 0 0.712 0.8895 0.09 0.087 0 0.6375 0.8525 0.085 0.083 0 0.527 0.836 0.09 0.08 0 0.5615 0.681 0.093 0.09 0 0.442 0.601 0.084 0.09 0 0.4155 0.7985 0.079 0.087 0 0.3765 0.879 0.095 0.092 0 0.27 0.946 0.098 0.092 0 0.171 0.9335 0.082 0.087 0 0.073 0.9185 0.094 0.089 0 0.283 0.8325 0.082 0.085 0 0.192 0.8255 0.086 0.081 0 0.0805 0.8175 0.085 0.087 0 0.0445 0.69 0.083 0.092 0 0.131 0.713 0.064 0.066 0 0.201 0.706 0.068 0.07 0 0.129 0.5995 0.068 0.067 0 0.309 0.654 0.096 0.088 0 0.07 0.804 0.068 0.078 0 0.0765 0.716 0.079 0.068 0 0.1065 0.512 0.071 0.076 0 0.1395 0.4245 0.083 0.077 0 0.128 0.3235 0.07 0.077 0 0.177 0.249 0.072 0.07 0 0.123 0.065 0.068 0.074 0 0.0295 0.0765 0.053 0.061 0 0.097 0.204 0.056 0.06 0 0.0475 0.143 0.057 0.062 0 0.9555 0.043 0.075 0.074 0 0.9485 0.129 0.079 0.076 0 0.916 0.2445 0.074 0.077 0 0.8275 0.2305 0.077 0.077 0 0.9635 0.3895 0.063 0.069 0 0.8785 0.352 0.083 0.082 0 0.7635 0.3415 0.075 0.069 0 0.8535 0.4465 0.085 0.073 0 0.965 0.505 0.07 0.072 0 0.9025 0.5195 0.045 0.043 0 0.9145 0.6285 0.071 0.073 0 0.7935 0.5605 0.063 0.059 0 0.8065 0.6775 0.065 0.063 0 0.657 0.698 0.058 0.062 0 0.7865 0.784 0.059 0.06 0 0.8805 0.8445 0.081 0.079 0 0.85 0.934 0.082 0.088 0 0.9635 0.958 0.069 0.072 0 0.9455 0.824 0.087 0.084 0 0.733 0.968 0.072 0.06 0 0.5255 0.75 0.059 0.05 0 0.4605 0.8265 0.055 0.057 0 0.46 0.7035 0.054 0.061 0 0.3605 0.951 0.055 0.054 0 0.5085 0.525 0.067 0.072 0 0.8745 0.0325 0.077 0.063 0 0.638 0.086 0.064 0.064 0 0.524 0.225 0.054 0.062 0 0.3735 0.2905 0.077 0.085 0 0.3355 0.6335 0.069 0.065 0 0.177 0.881 0.062 0.068 0 0.083 0.872 0.08 0.072 0 0.057 0.961 0.056 0.054 0 0.0905 0.7915 0.091 0.087 0 0.1 0.691 0.094 0.09 0 0.2 0.6235 0.052 0.049 0 0.0535 0.5865 0.067 0.065 0 0.168 0.5705 0.062 0.051 0 0.0845 0.4975 0.069 0.067 0 0.145 0.4925 0.096 0.093 0 0.156 0.4135 0.102 0.089 0 0.178 0.368 0.08 0.08 0 0.2075 0.3085 0.099 0.095 0 0.2305 0.1845 0.075 0.069 0 0.2335
29%|██▉ | 142/486 [00:10<00:27, 12.64it/s]
0.1085 0.095 0.093 0 0.05 0.158 0.09 0.094 0 0.0405 0.2955 0.057 0.065 0 0.0515 0.0735 0.079 0.081 0 0.0995 0.0315 0.079 0.061 0 0.2565 0.0335 0.093 0.065 0 0.034 0.0585 0.064 0.081 0 0.114 0.0565 0.066 0.067 0 0.033 0.221 0.064 0.092 0 0.205 0.026 0.066 0.05 0 0.1535 0.175 0.083 0.07 0 0.3655 0.0555 0.073 0.077 0 0.4445 0.045 0.093 0.086 0 0.435 0.1085 0.086 0.071 0 0.4125 0.18 0.083 0.084 0 0.398 0.2895 0.082 0.081 0 0.3135 0.3795 0.057 0.065 0 0.4065 0.3875 0.091 0.091 0 0.3785 0.4875 0.087 0.085 0 0.3405 0.554 0.079 0.078 0 0.3825 0.599 0.081 0.078 0 0.112 0.58 0.066 0.064 0 0.0335 0.6585 0.065 0.059 0 0.106 0.794 0.088 0.088 0 0.349 0.8665 0.084 0.089 0 0.3255 0.9675 0.085 0.063 0 0.457 0.8115 0.092 0.097 0 0.4855 0.7035 0.075 0.073 0 0.3635 0.68 0.075 0.07 0 0.4935 0.6115 0.075 0.069 0 0.617 0.8205 0.082 0.081 0 0.6055 0.721 0.065 0.072 0 0.6385 0.6495 0.091 0.087 0 0.6485 0.557 0.093 0.096 0 0.516 0.393 0.084 0.076 0 0.6135 0.4465 0.089 0.093 0 0.7655 0.969 0.081 0.062 0 0.6055 0.966 0.087 0.068 0 0.79 0.8255 0.058 0.049 0 0.8825 0.8165 0.081 0.075 0 0.9625 0.8185 0.075 0.081 0 0.785 0.728 0.078 0.09 0 0.9165 0.6655 0.097 0.089 0 0.941 0.495 0.092 0.08 0 0.9385 0.379 0.081 0.08 0 0.7745 0.329 0.081 0.08 0 0.9615 0.301 0.077 0.076 0 0.8575 0.2705 0.091 0.091 0 0.9605 0.215 0.079 0.07 0 0.965 0.1125 0.068 0.083 0 0.86 0.182 0.08 0.082 0 0.6365 0.3705 0.073 0.073 0 0.6065 0.316 0.099 0.09 0 0.51 0.2875 0.09 0.087 0 0.5335 0.187 0.083 0.084 0 0.5885 0.25 0.079 0.072 0 0.667 0.255 0.076 0.08 0 0.652 0.1725 0.08 0.079 0 0.724 0.188 0.064 0.074 0 0.7835 0.2015 0.065 0.061 0 0.789 0.1255 0.078 0.081 0 0.7885 0.0535 0.061 0.071 0 0.6955 0.0915 0.085 0.083 0 0.6325 0.0955 0.063 0.075
30%|██▉ | 144/486 [00:10<00:28, 11.89it/s]
0 0.0765 0.1145 0.103 0.085 0 0.0655 0.168 0.067 0.068 0 0.1845 0.22 0.073 0.072 0 0.272 0.2525 0.094 0.079 0 0.4545 0.361 0.073 0.062 0 0.547 0.375 0.064 0.064 0 0.627 0.386 0.084 0.086 0 0.693 0.376 0.064 0.058 0 0.6205 0.4675 0.069 0.075 0 0.686 0.4575 0.06 0.077 0 0.76 0.47 0.072 0.078 0 0.896 0.452 0.084 0.084 0 0.858 0.5285 0.07 0.071 0 0.7505 0.5495 0.079 0.077 0 0.843 0.5825 0.078 0.081 0 0.8655 0.6935 0.061 0.057 0 0.8055 0.6725 0.067 0.083 0 0.6505 0.66 0.079 0.076 0 0.5745 0.674 0.089 0.084 0 0.565 0.546 0.074 0.07 0 0.485 0.5065 0.068 0.063 0 0.348 0.4445 0.07 0.073 0 0.2445 0.4305 0.081 0.075 0 0.219 0.515 0.062 0.064 0 0.335 0.5455 0.072 0.063 0 0.216 0.59 0.06 0.064 0 0.32 0.6875 0.07 0.067 0 0.492 0.714 0.084 0.08 0 0.1955 0.7815 0.059 0.063 0 0.2925 0.7895 0.077 0.079 0 0.1705 0.86 0.099 0.09 0 0.0745 0.9315 0.077 0.079 0 0.171 0.907 0.072 0.066 0 0.3005 0.9525 0.071 0.081 0 0.372 0.93 0.074 0.078 0 0.46 0.9655 0.076 0.065 0 0.4765 0.819 0.075 0.082 0 0.5645 0.7915 0.073 0.069 0 0.641 0.867 0.074 0.08 0 0.744 0.885 0.078 0.078 0 0.7995 0.865 0.069 0.068 0 0.79 0.7865 0.082 0.081 0 0.9345 0.937 0.061 0.072 0 0.5755 0.1835 0.061 0.059 0 0.7545 0.143 0.057 0.056 0 0.9315 0.201 0.065 0.064 0 0.484 0.949 0.066 0.072 0 0.921 0.9225 0.056 0.063 0 0.7465 0.485 0.059 0.058 0 0.881 0.4345 0.084 0.079 0 0.781 0.378 0.076 0.068 0 0.789 0.3115 0.086 0.067 0 0.6715 0.274 0.081 0.082 0 0.6905 0.144 0.075 0.076 0 0.607 0.155 0.07 0.084 0 0.537 0.1945 0.072 0.071 0 0.915 0.124 0.084 0.098 0 0.943 0.141 0.056 0.06 0 0.843 0.0635 0.086 0.083 0 0.319 0.0325 0.1 0.063 0 0.057 0.063 0.09 0.092 0 0.0345 0.1525 0.067 0.087 0 0.066 0.3015 0.092 0.081 0 0.238 0.0635 0.094 0.083 0 0.3465 0.0845 0.099 0.089 0 0.48 0.0805 0.09 0.093 0 0.573 0.121 0.094 0.08 0 0.669 0.072 0.078 0.08 0 0.6075 0.19 0.089 0.072 0 0.511 0.2445 0.078 0.075 0 0.412 0.2185 0.088 0.089 0 0.1955 0.3015 0.057 0.057 0 0.1665 0.416 0.101 0.114 0 0.2565 0.3755 0.097 0.091 0 0.2425 0.4955 0.107 0.113 0 0.139 0.523 0.1 0.102 0 0.1115 0.61 0.101 0.096 0 0.3115 0.5375 0.085 0.079 0 0.3935 0.3145 0.055 0.049 0 0.4785 0.392 0.071 0.08 0 0.6145 0.3395 0.079 0.087 0 0.4705 0.4965 0.093 0.097 0 0.552 0.54 0.078 0.088 0 0.429 0.6005 0.076 0.077 0 0.4045 0.646 0.073 0.056 0 0.319 0.7005 0.098 0.083 0 0.2945 0.7885 0.085 0.087 0 0.1695 0.8035 0.083 0.085 0 0.2575 0.885 0.079 0.088 0 0.047 0.0985 0.08 0.073 0 0.1795 0.0865 0.075 0.073 0 0.236 0.048 0.08 0.07 0 0.2705 0.1115 0.067 0.057 0 0.278 0.174 0.07 0.062 0 0.37 0.1025 0.078 0.075 0 0.328 0.1115 0.07 0.077 0 0.472 0.048 0.116 0.094 0 0.5635 0.161 0.059 0.056 0 0.6695 0.1925 0.075 0.061 0 0.7895 0.2275 0.069 0.069 0 0.09 0.238 0.082 0.084 0 0.1765 0.309 0.091 0.098 0 0.2245 0.303 0.059 0.054 0 0.283 0.304 0.08 0.09 0 0.3525 0.301 0.081 0.1 0 0.4165 0.351 0.091 0.094 0 0.2565 0.3915 0.085 0.101 0 0.1845 0.3935 0.063 0.073 0 0.033 0.485 0.064 0.06 0 0.3725 0.5375 0.085 0.095 0 0.29 0.578 0.056 0.064 0 0.272 0.658 0.06 0.066 0 0.3465 0.6205 0.093 0.085 0 0.5705 0.5995 0.099 0.095 0 0.1395 0.864 0.087 0.092 0 0.213 0.953 0.066 0.056 0 0.3915 0.972 0.081 0.056 0 0.5105 0.7425 0.077 0.073 0 0.6055 0.807 0.065 0.068 0 0.824 0.8505
31%|███ | 150/486 [00:10<00:21, 15.50it/s]
0.064 0.071 0 0.7075 0.904 0.087 0.086 0 0.698 0.952 0.082 0.078 0 0.805 0.9695 0.066 0.055 0 0.173 0.066 0.084 0.08 0 0.875 0.0405 0.08 0.071 0 0.806 0.0255 0.068 0.049 0 0.666 0.2225 0.084 0.083 0 0.8545 0.2525 0.067 0.077 0 0.092 0.3185 0.06 0.065 0 0.133 0.274 0.07 0.066 0 0.183 0.321 0.096 0.086 0 0.0675 0.39 0.073 0.068 0 0.062 0.482 0.078 0.086 0 0.1565 0.4285 0.073 0.085 0 0.3335 0.2395 0.051 0.045 0 0.275 0.269 0.072 0.074 0 0.265 0.337 0.064 0.058 0 0.2705 0.4335 0.075 0.079 0 0.378 0.4735 0.084 0.091 0 0.441 0.4575 0.07 0.077 0 0.456 0.5755 0.068 0.061 0 0.535 0.4515 0.07 0.069 0 0.5655 0.543 0.073 0.064 0 0.635 0.3505 0.092 0.093 0 0.624 0.431 0.076 0.072 0 0.796 0.328 0.068 0.064 0 0.7935 0.4005 0.081 0.079 0 0.7675 0.516 0.089 0.082 0 0.7435 0.626 0.065 0.072 0 0.961 0.532 0.078 0.082 0 0.9655 0.6105 0.069 0.077 0 0.9555 0.7295 0.083 0.087 0 0.8345 0.7395 0.083 0.077 0 0.7445 0.7895 0.051 0.063 0 0.309 0.826 0.076 0.09 0 0.1735 0.8175 0.071 0.069 0 0.1785 0.9035 0.087 0.083 0 0.1485 0.0385 0.083 0.075 0 0.043 0.118 0.07 0.076 0 0.1495 0.1985 0.077 0.071 0 0.243 0.1205 0.07 0.077 0 0.3425 0.158 0.077 0.088 0 0.1685 0.3025 0.071 0.081 0 0.2705 0.292 0.075 0.086 0 0.13 0.4665 0.07 0.077 0 0.2255 0.489 0.077 0.088 0 0.068 0.5785 0.078 0.087 0 0.157 0.5695 0.076 0.081 0 0.2115 0.5825 0.067 0.077 0 0.135 0.687 0.078 0.076 0 0.1225 0.803 0.081 0.078 0 0.093 0.862 0.09 0.08 0 0.069 0.9235 0.08 0.079 0 0.335 0.9675 0.084 0.065 0 0.3575 0.912 0.087 0.074 0 0.3645 0.85 0.089 0.086 0 0.361 0.783 0.084 0.082 0 0.3935 0.7375 0.075 0.067 0 0.374 0.6755 0.084 0.087 0 0.3925 0.614 0.087 0.07 0 0.3905 0.547 0.083 0.078 0 0.4425 0.5635 0.073 0.077 0 0.4115 0.4815 0.083 0.079 0 0.3505 0.365 0.075 0.082 0 0.47 0.37 0.078 0.07 0 0.398 0.3245 0.068 0.081 0 0.465 0.2745 0.088 0.087 0 0.4235 0.207 0.087 0.09 0 0.4985 0.201 0.093 0.084 0 0.4775 0.1375 0.073 0.075 0 0.524 0.114 0.078 0.076 0 0.55 0.0775 0.074 0.069 0 0.6085 0.142 0.077 0.082 0 0.6055 0.268 0.079 0.082 0 0.5125 0.51 0.075 0.072 0 0.5435 0.599 0.069 0.068 0 0.482 0.668 0.074 0.074 0 0.4795 0.7735 0.077 0.075 0 0.5795 0.9225 0.093 0.085 0 0.555 0.8105 0.092 0.083 0 0.621 0.7795 0.086 0.083 0 0.5875 0.707 0.093 0.082 0 0.6805 0.716 0.075 0.07 0 0.7015 0.6295 0.069 0.077 0 0.844 0.724 0.06 0.062 0 0.9315 0.746 0.079 0.074 0 0.8105 0.5985 0.067 0.067 0 0.911 0.582 0.056 0.062 0 0.6595 0.49 0.085 0.082 0 0.8315 0.47 0.077 0.08 0 0.7355 0.4045 0.079 0.081 0 0.793 0.3395 0.072 0.069 0 0.9555 0.3165 0.089 0.087 0 0.9345 0.2335 0.105 0.087 0 0.697 0.3045 0.09 0.089 0 0.725 0.2515 0.09 0.075 0 0.6805 0.1735 0.057 0.063 0 0.7985 0.1365 0.081 0.081 0 0.7185 0.108 0.075 0.07 0 0.812 0.0485 0.072 0.069 0 0.896 0.069 0.074 0.074 0 0.965 0.122 0.07 0.096 0 0.6785 0.8335 0.067 0.069 0 0.752 0.4905 0.082 0.081 0 0.555 0.4975 0.084 0.077 0 0.343 0.781 0.07 0.064 0 0.3115 0.7275 0.061 0.063 0 0.0605 0.8045 0.057 0.061 0 0.039 0.63 0.074 0.082 0 0.075 0.476 0.074 0.07 0 0.1865 0.375 0.083 0.086 0 0.398 0.339 0.084 0.086 0 0.436 0.2565 0.088 0.095 0 0.2005 0.1905 0.091 0.089 0 0.112 0.095 0.06 0.066 0 0.21 0.111 0.084 0.076 0 0.35 0.127 0.072 0.072 0 0.411 0.045 0.096 0.082 0 0.605 0.178 0.048 0.046 0 0.0945 0.7715 0.073 0.075 0 0.649 0.869 0.084 0.078 0 0.6605 0.7975 0.089 0.067 0 0.7905 0.8865 0.079 0.093 0 0.784 0.967 0.092 0.064 0 0.926 0.6275 0.084 0.071 0 0.9185 0.5525 0.081 0.079 0 0.7545 0.494 0.067 0.07 0 0.839 0.503 0.072 0.06 0 0.904 0.4255 0.09 0.079 0 0.568 0.504 0.094 0.092 0 0.593 0.4285 0.07 0.065 0 0.619 0.35 0.086 0.086 0 0.838 0.2745 0.086 0.085 0 0.67 0.1265 0.072 0.071 0 0.482 0.087 0.084 0.084 0 0.8985 0.0495 0.075 0.077 0 0.301 0.0335 0.078 0.065 0 0.1055 0.257 0.087 0.084 0 0.426 0.069 0.084 0.076 0 0.651 0.0315 0.066 0.061 0 0.771 0.073 0.09 0.084 0 0.918 0.1265 0.074 0.075 0 0.937 0.2075 0.078 0.079 0 0.8685 0.263 0.065 0.06 0 0.5695 0.292 0.075 0.07 0 0.67 0.314 0.09 0.082 0 0.736 0.3575 0.07 0.071 0 0.8 0.367 0.074 0.088 0 0.8855 0.4195 0.075 0.087 0 0.9575 0.445 0.081 0.09 0 0.038 0.688 0.074 0.084 0 0.151 0.6305 0.062 0.065 0 0.2115 0.6685 0.073 0.071 0 0.285 0.695 0.078 0.07 0 0.482 0.775 0.06 0.062 0 0.5415 0.808 0.073 0.074 0 0.688 0.8585 0.08 0.093 0 0.7725 0.926 0.069 0.076 0 0.8365 0.9335 0.059 0.059 0 0.254 0.917 0.076 0.086 0 0.0875 0.8585 0.065 0.067 0 0.345 0.051 0.078 0.07 0 0.4835 0.0605 0.071 0.069 0 0.6385 0.0525 0.063 0.061 0 0.893 0.153 0.05 0.05 0
31%|███▏ | 153/486 [00:10<00:21, 15.44it/s]
0.064 0.314 0.078 0.076 0 0.1345 0.267 0.063 0.064 0 0.135 0.3355 0.076 0.077 0 0.3995 0.3615 0.075 0.069 0 0.3865 0.43 0.077 0.068 0 0.4635 0.365 0.079 0.07 0 0.5495 0.7835 0.057 0.071 0 0.842 0.8075 0.066 0.063 0 0.0945 0.932 0.079 0.068 0 0.189 0.94 0.078 0.086 0 0.3075 0.9615 0.071 0.063 0 0.119 0.034 0.072 0.064 0 0.1085 0.0935 0.079 0.077 0 0.1845 0.134 0.071 0.076 0 0.427 0.1475 0.062 0.071 0 0.5305 0.213 0.089 0.09 0 0.652 0.0785 0.074 0.063 0 0.886 0.102 0.102 0.104 0 0.2485 0.3665 0.085 0.079 0 0.252 0.4375 0.094 0.079 0 0.2465 0.489 0.089 0.08 0 0.23 0.536 0.086 0.076 0 0.15 0.59 0.07 0.072 0 0.049 0.662 0.082 0.086 0 0.2245 0.6035 0.077 0.087 0 0.2565 0.584 0.049 0.05 0 0.1965 0.6615 0.079 0.071 0 0.1715 0.703 0.091 0.074 0 0.1605 0.771 0.081 0.08 0 0.1795 0.8555 0.085 0.081 0 0.0755 0.873 0.083 0.07 0 0.047 0.934 0.078 0.082 0 0.114 0.933 0.068 0.072 0 0.2115 0.9195 0.099 0.087 0 0.256 0.948 0.06 0.052 0 0.3315 0.9305 0.079 0.075 0 0.36 0.88 0.09 0.09 0 0.3925 0.821 0.091 0.082 0 0.4305 0.7625 0.065 0.057 0 0.4515 0.7025 0.091 0.081 0 0.443 0.6495 0.052 0.053 0 0.4025 0.6285 0.095 0.091 0 0.438 0.5765 0.072 0.061 0 0.4615 0.5345 0.093 0.087 0 0.461 0.4635 0.074 0.069 0 0.4255 0.3745 0.095 0.099 0 0.648 0.4715 0.072 0.075 0 0.7205 0.4515 0.089 0.083 0 0.7225 0.5295 0.069 0.065 0 0.66 0.587 0.092 0.092 0 0.7125 0.6355 0.061 0.059 0 0.644 0.6815 0.102 0.099 0 0.636 0.7605 0.08 0.071 0 0.4745 0.8955 0.089 0.103 0 0.529 0.9255 0.058 0.061 0 0.6035 0.864 0.103 0.1 0 0.58 0.938 0.082 0.084 0 0.7125 0.93 0.103 0.098 0 0.725 0.9625 0.054 0.053 0 0.7415 0.8545 0.057 0.055 0 0.896 0.5775 0.094 0.095 0 0.8435 0.6275 0.081 0.079 0 0.8755 0.6815 0.101 0.095 0 0.878 0.753 0.104 0.094 0 0.813 0.7695 0.074 0.071 0 0.887 0.855 0.052 0.052 0 0.8285 0.868 0.089 0.082 0 0.796 0.936 0.068 0.06 0 0.33 0.091 0.084 0.084 0 0.4845 0.083 0.067 0.064 0 0.611 0.0785 0.062 0.061 0 0.463 0.1875 0.07 0.071 0 0.302 0.2115 0.09 0.087 0 0.278 0.3185 0.052 0.061 0 0.3115 0.3975 0.067 0.075 0 0.4715 0.2945 0.079 0.073 0 0.563 0.364 0.076 0.07 0 0.6915 0.389 0.085 0.08 0 0.7105 0.302 0.065 0.066 0 0.695 0.232 0.074 0.07 0 0.8375 0.3295 0.077 0.077 0 0.493 0.4655 0.054 0.055 0 0.279 0.5585 0.066 0.067 0 0.158 0.5465 0.076 0.071 0 0.096 0.5545 0.076 0.087 0 0.124 0.632 0.096 0.086 0 0.0515 0.644 0.073 0.07 0 0.0695 0.7295 0.105 0.095 0 0.054 0.7975 0.076 0.067 0 0.0355 0.91 0.069 0.082 0 0.2235 0.862 0.075 0.076 0 0.2945 0.9665 0.077 0.063 0 0.2885 0.8705 0.073 0.071 0 0.389 0.883 0.078 0.08 0 0.461 0.9135 0.064 0.069 0 0.227 0.721 0.072 0.076 0 0.2665 0.75 0.061 0.07 0 0.313 0.777 0.078 0.078 0 0.5215 0.838 0.069 0.072 0 0.6075 0.947 0.069 0.066 0 0.6225 0.891 0.065 0.062 0 0.804 0.9595 0.064 0.057 0 0.803 0.884 0.066 0.068 0 0.358 0.679 0.078 0.074 0 0.432 0.6985 0.058 0.061 0 0.484 0.6545 0.078 0.071 0 0.5275 0.588 0.061 0.066 0 0.603 0.6375 0.062 0.059 0 0.6715 0.667 0.059 0.058 0 0.8035 0.7115 0.069 0.059 0 0.7865 0.649 0.069 0.062 0 0.737 0.5255 0.056 0.059 0 0.7985 0.532 0.065 0.07 0 0.057 0.038 0.088 0.074 0 0.1035 0.0975 0.063 0.061 0 0.249 0.12 0.086 0.086 0 0.302 0.0745 0.092 0.077 0 0.35 0.033 0.084 0.064 0 0.4465 0.088 0.075 0.074 0 0.5685 0.0585 0.099 0.095 0 0.5445 0.1175 0.081 0.073 0 0.527 0.172 0.086 0.08 0 0.6 0.1885 0.07 0.073 0 0.5285 0.248 0.091 0.08 0 0.4955 0.3085 0.075 0.069 0 0.4645 0.3625 0.067 0.069 0 0.551 0.364 0.074 0.082 0 0.233 0.3395 0.072 0.069 0 0.1265 0.4255 0.071 0.069 0 0.0485 0.4975 0.071 0.069 0 0.1345 0.495 0.079 0.074 0 0.2255 0.4195 0.075 0.069 0 0.2395 0.4915 0.073 0.073 0 0.553 0.4925 0.06 0.061 0 0.238 0.748 0.082 0.074 0 0.4605 0.6705 0.085 0.079 0 0.432 0.7825 0.078 0.073 0 0.404 0.877 0.086 0.078 0 0.371 0.9675 0.086 0.063 0 0.684 0.715 0.098 0.086 0 0.6395 0.824 0.095 0.094 0 0.621 0.935 0.084 0.08 0 0.7545 0.8465 0.083 0.083 0 0.744 0.942 0.074 0.068 0 0.8865 0.8715 0.071 0.073 0 0.9605 0.1195 0.053 0.055 0 0.0715 0.1145 0.065 0.065 0 0.2025 0.149 0.065 0.062 0 0.5225 0.148 0.061
32%|███▏ | 157/486 [00:11<00:20, 15.94it/s]
0.058 0 0.492 0.239 0.056 0.06 0 0.766 0.056 0.096 0.082 0 0.6945 0.1585 0.081 0.067 0 0.932 0.237 0.082 0.072 0 0.878 0.358 0.082 0.074 0 0.69 0.3595 0.07 0.065 0 0.62 0.3935 0.062 0.059 0 0.8255 0.474 0.073 0.072 0 0.4055 0.546 0.067 0.072 0 0.2805 0.5485 0.065 0.063 0 0.3945 0.644 0.073 0.068 0 0.506 0.719 0.084 0.09 0 0.6885 0.5375 0.073 0.073 0 0.7905 0.569 0.083 0.084 0 0.8885 0.609 0.085 0.066 0 0.644 0.64 0.082 0.084 0 0.7415 0.68 0.089 0.09 0 0.856 0.719 0.09 0.088 0 0.963 0.7545 0.074 0.083 0 0.9255 0.849 0.093 0.088 0 0.72 0.791 0.09 0.086 0 0.249 0.8665 0.076 0.075 0 0.346 0.908 0.088 0.084 0 0.113 0.936 0.086 0.074 0 0.4775 0.923 0.079 0.08 0 0.5605 0.927 0.081 0.074 0 0.2285 0.074 0.057 0.056 0 0.2105 0.1535 0.075 0.079 0 0.179 0.249 0.072 0.068 0 0.039 0.288 0.072 0.082 0 0.106 0.3325 0.078 0.087 0 0.1095 0.4305 0.081 0.083 0 0.248 0.477 0.086 0.082 0 0.461 0.415 0.072 0.07 0 0.452 0.5365 0.064 0.075 0 0.6675 0.344 0.063 0.058 0 0.744 0.162 0.074 0.068 0 0.758 0.0705 0.082 0.079 0 0.8755 0.0795 0.075 0.073 0 0.955 0.0555 0.074 0.091 0 0.08 0.786 0.086 0.08 0 0.042 0.887 0.082 0.084 0 0.214 0.9125 0.072 0.071 0 0.353 0.942 0.094 0.076 0 0.6795 0.7135 0.063 0.071 0 0.734 0.952 0.09 0.08 0 0.967 0.699 0.066 0.072 0 0.9665 0.966 0.067 0.064 0 0.0595 0.093 0.081 0.084 0 0.2755 0.084 0.079 0.076 0 0.7765 0.05 0.075 0.078 0 0.593 0.5435 0.05 0.059 0 0.2265 0.91 0.057 0.062 0 0.63 0.6365 0.08 0.079 0 0.6675 0.6855 0.057 0.055 0 0.8 0.713 0.066 0.056 0 0.8365 0.625 0.077 0.082 0 0.9625 0.624 0.075 0.078 0 0.035 0.133 0.068 0.086 0 0.584 0.0585 0.084 0.079 0 0.6585 0.09 0.065 0.066 0 0.7695 0.133 0.065 0.064 0 0.924 0.1885 0.074 0.075 0 0.8045 0.3955 0.071 0.071 0 0.3465 0.398 0.063 0.064 0 0.173 0.362 0.068 0.064 0 0.2745 0.3465 0.077 0.063 0 0.2005 0.5805 0.063 0.063 0 0.608 0.9205 0.064 0.059 0 0.035 0.7525 0.068 0.075 0 0.897 0.962 0.088 0.076 0 0.7395 0.869 0.089 0.094 0 0.8475 0.766 0.089 0.086 0 0.9405 0.7395 0.059 0.071 0 0.6655 0.805 0.049 0.06 0 0.512 0.7925 0.072 0.067 0 0.4425 0.671 0.053 0.05 0 0.2675 0.6145 0.065 0.063 0 0.5785 0.664 0.059 0.06 0 0.7445 0.7115 0.059 0.053 0 0.674 0.696 0.046 0.054 0 0.72 0.66 0.064 0.056 0 0.6695 0.6355 0.045 0.055 0 0.9205 0.5615 0.057 0.063 0 0.795 0.595 0.06 0.048 0 0.8045 0.547 0.073 0.06 0 0.868 0.4695 0.072 0.079 0 0.9425 0.3785 0.075 0.077 0 0.956 0.2765 0.062 0.065 0 0.967 0.091 0.066 0.062 0 0.5825 0.578 0.053 0.052 0 0.6485 0.5485 0.079 0.087 0 0.424 0.5255 0.064 0.071 0 0.4535 0.4345 0.057 0.053 0 0.5765 0.3355 0.055 0.061 0 0.8275 0.0465 0.053 0.051 0 0.7445 0.057 0.053 0.044 0 0.673 0.0385 0.066 0.053 0 0.474 0.1425 0.056 0.057 0 0.412 0.192 0.066 0.062 0 0.3175 0.476 0.075 0.09 0 0.1675 0.425 0.055 0.062 0 0.272 0.116 0.074 0.08 0 0.205 0.097 0.06 0.068
33%|███▎ | 161/486 [00:11<00:16, 19.69it/s]
0 0.4455 0.292 0.069 0.076 0 0.822 0.2245 0.07 0.083 0 0.8855 0.2405 0.075 0.081 0 0.9355 0.133 0.069 0.062 0 0.8005 0.4705 0.093 0.089 0 0.941 0.5395 0.052 0.053 0 0.085 0.539 0.088 0.092 0 0.092 0.63 0.102 0.092 0 0.2125 0.57 0.083 0.08 0 0.205 0.647 0.094 0.084 0 0.12 0.728 0.076 0.074 0 0.1915 0.717 0.079 0.088 0 0.1715 0.8155 0.085 0.083 0 0.066 0.8385 0.08 0.083 0 0.0435 0.925 0.085 0.088 0 0.15 0.941 0.076 0.078 0 0.296 0.795 0.086 0.08 0 0.327 0.669 0.086 0.104 0 0.346 0.574 0.082 0.08 0 0.4465 0.708 0.081 0.086 0 0.517 0.6795 0.072 0.071 0 0.603 0.6695 0.092 0.079 0 0.6435 0.724 0.077 0.076 0 0.605 0.797 0.084 0.082 0 0.7275 0.6985 0.093 0.093 0 0.696 0.791 0.09 0.088 0 0.9705 0.632 0.059 0.064 0 0.864 0.801 0.088 0.094 0 0.696 0.8815 0.074 0.073 0 0.683 0.966 0.082 0.068 0 0.918 0.89 0.094 0.092 0 0.8245 0.8895 0.093 0.087 0 0.7935 0.9655 0.095 0.065 0 0.085 0.206 0.076 0.068 0 0.2525 0.2615 0.065 0.061 0 0.2035 0.311 0.059 0.064 0 0.127 0.3915 0.056 0.053 0 0.074 0.4875 0.088 0.087 0 0.157 0.48 0.054 0.056 0 0.031 0.577 0.06 0.072 0 0.1115 0.5925 0.051 0.049 0 0.0595 0.7715 0.085 0.089 0 0.1015 0.713 0.071 0.07 0 0.156 0.6785 0.066 0.071 0 0.2005 0.576 0.073 0.07 0 0.266 0.4955 0.066 0.067 0 0.333 0.4115 0.09 0.081 0 0.302 0.3575 0.068 0.065 0 0.5725 0.0715 0.067 0.071 0 0.504 0.168 0.076 0.078 0 0.653 0.235 0.074 0.08 0 0.7305 0.112 0.069 0.076 0 0.8195 0.0575 0.067 0.057 0 0.803 0.199 0.058 0.048 0 0.7335 0.2875 0.075 0.071 0 0.7535 0.505 0.069 0.06 0 0.7005 0.5395 0.073 0.057 0 0.68 0.6215 0.064 0.053 0 0.957 0.6965 0.078 0.071 0 0.9705 0.872 0.059 0.064 0 0.769 0.712 0.074 0.07 0 0.7285 0.742 0.081 0.092 0 0.6895 0.791 0.089 0.09 0 0.7025 0.9065 0.047 0.055 0 0.6215 0.822 0.069 0.06 0 0.6295 0.896 0.079 0.072 0 0.579 0.919 0.068 0.072 0 0.393 0.9605 0.08 0.079 0 0.526 0.801 0.084 0.086 0 0.593 0.713 0.072 0.068 0 0.5135 0.7285 0.065 0.065 0 0.4405 0.7035 0.081 0.083 0 0.299 0.88 0.082 0.088 0 0.2 0.856 0.1 0.09 0 0.2185 0.7855 0.089 0.075 0 0.279 0.7435 0.074 0.077 0 0.223 0.6995 0.08 0.087 0 0.3295 0.6375 0.089 0.097 0 0.3975 0.548 0.089 0.086 0 0.445 0.464 0.086 0.086 0 0.475 0.395 0.078 0.066 0 0.546 0.4575 0.084 0.095 0 0.597 0.3805 0.068 0.065 0 0.126 0.025 0.07 0.048 0 0.1415 0.1925 0.085 0.087 0 0.198 0.1435 0.068 0.061 0 0.074 0.3975 0.07 0.065 0 0.125 0.528 0.074 0.064 0 0.09 0.628 0.056 0.056 0 0.096 0.7205 0.078 0.079 0 0.098 0.8 0.066 0.058 0 0.056 0.8815 0.072 0.069 0 0.0315 0.9605 0.061 0.067 0 0.3365 0.6545 0.059 0.053 0 0.475 0.878 0.072 0.072 0
34%|███▎ | 164/486 [00:11<00:20, 15.78it/s]
0.772 0.71 0.08 0.084 0 0.954 0.905 0.072 0.078 0 0.6525 0.516 0.077 0.068 0 0.664 0.4405 0.072 0.067 0 0.659 0.365 0.072 0.064 0 0.7935 0.4505 0.059 0.063 0 0.8305 0.336 0.057 0.054 0 0.11 0.154 0.09 0.09 0 0.083 0.2765 0.084 0.069 0 0.371 0.1145 0.084 0.083 0 0.326 0.2005 0.084 0.077 0 0.305 0.3015 0.096 0.085 0 0.2835 0.4115 0.081 0.079 0 0.033 0.502 0.056 0.062 0 0.114 0.558 0.086 0.082 0 0.2445 0.523 0.091 0.086 0 0.5985 0.046 0.087 0.078 0 0.561 0.1475 0.094 0.093 0 0.708 0.0685 0.078 0.075 0 0.7045 0.168 0.075 0.068 0 0.8355 0.0925 0.079 0.077 0 0.5395 0.352 0.087 0.086 0 0.507 0.467 0.09 0.086 0 0.629 0.5305 0.086 0.077 0 0.4755 0.578 0.083 0.088 0 0.436 0.7225 0.092 0.091 0 0.567 0.772 0.072 0.072 0 0.6605 0.806 0.089 0.082 0 0.763 0.8445 0.076 0.073 0 0.85 0.3225 0.076 0.069 0 0.892 0.826 0.098 0.086 0 0.189 0.816 0.078 0.086 0 0.1495 0.947 0.085 0.092 0 0.416 0.853 0.098 0.102 0 0.5385 0.907 0.075 0.076 0 0.656 0.919 0.068 0.066 0 0.751 0.9495 0.088 0.071 0 0.8695 0.9585 0.099 0.083 0 0.075 0.048 0.086 0.084 0 0.195 0.072 0.086 0.086 0 0.169 0.1895 0.078 0.071 0 0.301 0.127 0.076 0.072 0 0.441 0.046 0.08 0.084 0 0.1155 0.3015 0.067 0.061 0 0.1785 0.308 0.079 0.094 0 0.1205 0.42 0.091 0.078 0 0.2385 0.45 0.075 0.078 0 0.2645 0.338 0.073 0.076 0 0.3945 0.286 0.059 0.07 0 0.5595 0.0575 0.097 0.089 0 0.5425 0.1935 0.079 0.075 0 0.52 0.294 0.084 0.076 0 0.74 0.247 0.078 0.076 0 0.9185 0.1835 0.077 0.079 0 0.952 0.332 0.08 0.096 0 0.925 0.4745 0.076 0.081 0 0.714 0.4615 0.068 0.071 0 0.498 0.403 0.072 0.074 0 0.4215 0.634 0.085 0.088 0 0.2995 0.702 0.091 0.082 0 0.055 0.712 0.092 0.086 0 0.1655 0.803 0.081 0.072 0 0.1555 0.8605 0.059 0.051 0 0.2745 0.836 0.083 0.078 0 0.346 0.93 0.066 0.064 0 0.7225 0.9375 0.101 0.097 0 0.819 0.963 0.09 0.074 0 0.86 0.848 0.096 0.096 0 0.836 0.755 0.08 0.082 0 0.8925 0.6965 0.079 0.093 0 0.1295 0.143 0.085 0.094 0 0.251 0.043 0.092 0.082 0 0.3735 0.042 0.097 0.082 0 0.4555 0.0845 0.071 0.079 0 0.3565 0.1385 0.089 0.087 0 0.222 0.1335 0.066 0.067 0 0.0875 0.3595 0.073 0.085 0 0.222 0.24 0.082 0.08 0 0.322 0.2535 0.094 0.083 0 0.391 0.2245 0.088 0.081 0 0.3155 0.357 0.075 0.086 0 0.316 0.455 0.086 0.098 0 0.18 0.623 0.09 0.086 0 0.147 0.7405 0.09 0.089 0 0.0735 0.704 0.087 0.084 0 0.2875 0.6915 0.083 0.085 0 0.284 0.7865 0.088 0.095 0 0.2655 0.9505 0.091 0.093 0 0.385 0.8955 0.074 0.091 0 0.414 0.7175 0.08 0.083 0 0.284 0.5805 0.07 0.075 0 0.3425 0.572 0.077 0.084 0 0.3785 0.475 0.061 0.068 0 0.575 0.099 0.082 0.08 0 0.563 0.194 0.08 0.066 0 0.6885 0.0745 0.085 0.083 0 0.7755 0.0805 0.089 0.085 0 0.805 0.1325 0.076 0.071 0 0.9 0.095 0.086 0.072 0 0.865 0.181 0.074 0.082 0 0.9305 0.1885 0.067 0.077 0 0.7805 0.267 0.095 0.092 0 0.8815 0.282 0.081 0.074 0 0.8825 0.3715 0.099 0.079 0 0.7905 0.3525 0.079 0.081 0 0.7365 0.369 0.083 0.082 0 0.7765 0.432 0.075 0.086 0 0.7085 0.4545 0.081 0.083 0 0.817 0.723 0.066 0.062 0 0.087 0.038 0.084 0.074 0 0.1055 0.1315 0.083 0.083 0 0.254 0.1255 0.082 0.085 0 0.251 0.0505 0.078 0.075 0 0.1595 0.4025 0.059 0.059 0 0.1295 0.5 0.077 0.072 0 0.2485 0.5135 0.093 0.085 0 0.256 0.45 0.064 0.056 0 0.3 0.353 0.066 0.064 0 0.363 0.227 0.076 0.07 0 0.518 0.0585 0.07 0.071 0 0.4505 0.131 0.075 0.072 0 0.5145 0.158 0.087 0.092 0 0.448 0.21 0.072 0.078 0 0.4855 0.2845 0.089 0.079 0 0.495 0.398 0.08 0.076 0 0.4065 0.4675 0.097 0.091 0 0.371 0.594 0.07 0.074 0 0.3665 0.676 0.093 0.074 0 0.1955 0.704 0.079 0.078 0 0.255 0.7835 0.072 0.075 0 0.3375 0.725 0.071 0.08 0 0.188 0.9585 0.094 0.075 0 0.4255 0.8585 0.067 0.077 0 0.5115 0.967 0.073 0.066 0 0.5805 0.9645 0.075 0.071 0 0.528 0.7395 0.088 0.083 0 0.5745 0.694 0.091 0.1 0 0.7015 0.8565 0.071 0.069 0 0.781 0.96 0.06 0.048 0 0.862 0.86 0.072 0.076 0 0.794 0.7285 0.07 0.065 0 0.7875 0.648 0.069 0.076 0 0.968 0.6295 0.064 0.077 0 0.7065 0.6175 0.067 0.063 0 0.6335 0.5975 0.095 0.091 0 0.592 0.5145 0.086 0.073 0 0.623 0.4665 0.09 0.087 0 0.646 0.4005 0.086 0.085 0 0.6655 0.259 0.099 0.11 0 0.744 0.0695 0.098 0.083 0 0.83 0.123 0.082 0.086 0 0.9035 0.169 0.069 0.072 0 0.972 0.1955 0.054 0.053 0 0.9485 0.1535 0.051 0.049
35%|███▌ | 171/486 [00:11<00:16, 19.55it/s]
0 0.053 0.217 0.064 0.068 0 0.2 0.132 0.078 0.082 0 0.2705 0.2075 0.063 0.067 0 0.3695 0.1405 0.075 0.067 0 0.345 0.2095 0.062 0.067 0 0.415 0.2055 0.07 0.067 0 0.469 0.2485 0.078 0.079 0 0.522 0.2085 0.068 0.071 0 0.515 0.0995 0.072 0.071 0 0.583 0.072 0.068 0.066 0 0.6665 0.0875 0.075 0.075 0 0.7625 0.0745 0.069 0.067 0 0.6945 0.1975 0.095 0.085 0 0.7975 0.2425 0.073 0.063 0 0.6775 0.3145 0.081 0.085 0 0.9555 0.2695 0.081 0.081 0 0.7945 0.388 0.061 0.06 0 0.7285 0.445 0.075 0.076 0 0.8325 0.439 0.081 0.07 0 0.93 0.4395 0.078 0.069 0 0.867 0.4935 0.072 0.067 0 0.7965 0.556 0.079 0.08 0 0.164 0.3655 0.07 0.067 0 0.0355 0.4335 0.069 0.083 0 0.1145 0.5445 0.087 0.073 0 0.2005 0.546 0.067 0.076 0 0.075 0.6375 0.088 0.083 0 0.1265 0.714 0.075 0.074 0 0.0845 0.7915 0.079 0.069 0 0.0835 0.8815 0.073 0.069 0 0.31 0.4825 0.078 0.073 0 0.3575 0.41 0.067 0.062 0 0.291 0.6135 0.066 0.067 0 0.3345 0.6805 0.075 0.073 0 0.446 0.612 0.08 0.068 0 0.492 0.5765 0.066 0.069 0 0.5865 0.5775 0.077 0.071 0 0.358 0.8985 0.07 0.065 0 0.3835 0.822 0.073 0.078 0 0.403 0.97 0.066 0.06 0 0.4975 0.88 0.081 0.078 0 0.496 0.7685 0.07 0.079 0 0.521 0.691 0.072 0.068 0 0.7305 0.675 0.069 0.064 0 0.717 0.812 0.068 0.068 0 0.75 0.915 0.07 0.07 0 0.8035 0.9575 0.067 0.063 0 0.9585 0.9045 0.083 0.083 0 0.917 0.8035 0.09 0.083 0 0.7975 0.8005 0.077 0.079 0 0.8325 0.746 0.079 0.076 0 0.9555 0.675 0.071 0.07 0 0.9685 0.5965 0.063 0.073 0 0.7535 0.6335 0.075 0.067 0 0.402 0.951 0.072 0.068 0 0.236 0.9385 0.066 0.065 0 0.1065 0.9535 0.087 0.073 0 0.0505 0.746 0.099 0.096 0 0.1265 0.6925 0.081 0.085 0 0.2635 0.693 0.067 0.066 0 0.3055 0.735 0.061 0.066 0 0.4765 0.698 0.077 0.07 0 0.338 0.579 0.082 0.07 0 0.452 0.559 0.06 0.058 0 0.518 0.615 0.076 0.074 0 0.589 0.4525 0.074 0.071 0 0.4315 0.44 0.085 0.088 0 0.3275 0.4465 0.079 0.069 0 0.288 0.398 0.08 0.066 0 0.176 0.361 0.07 0.068 0 0.256 0.352 0.072 0.054 0 0.27 0.2885 0.084 0.069 0 0.478 0.3235 0.08 0.069 0 0.0635 0.258 0.077 0.07 0 0.1275 0.1245 0.077 0.077 0 0.165 0.0575 0.072 0.071 0 0.2225 0.097 0.067 0.068 0 0.265 0.128 0.066 0.068 0 0.267 0.0315 0.068 0.061 0 0.392 0.0875 0.082 0.071 0 0.6575 0.206 0.077 0.074 0 0.6485 0.2795 0.069 0.069 0 0.8845 0.201 0.065 0.054 0 0.927 0.0795 0.072 0.067 0 0.3915 0.0545 0.103 0.101 0 0.1375 0.065 0.077 0.066 0 0.1 0.1785 0.096 0.095 0 0.0765 0.3145 0.061 0.069 0 0.0625 0.4345 0.117 0.125 0 0.0355 0.5665 0.069 0.093 0 0.296 0.447 0.102 0.104 0 0.257 0.5855 0.104 0.089 0 0.206 0.7095 0.084 0.085 0 0.066 0.7575 0.066 0.067 0 0.0485 0.8375 0.067 0.073 0 0.1415 0.957 0.105 0.086 0 0.8955 0.6255 0.059 0.057 0 0.7935 0.746 0.073 0.068 0 0.7955 0.9595 0.093 0.075 0 0.193 0.9175 0.078 0.075 0 0.1795 0.675 0.085 0.082 0 0.321 0.6485 0.074 0.069 0 0.298 0.561 0.062 0.074 0 0.213 0.544 0.056 0.072 0 0.283 0.33 0.072 0.078 0 0.0965 0.331 0.057 0.058 0 0.1385 0.229 0.069 0.072 0 0.026 0.1455 0.05 0.055 0 0.061 0.085 0.07 0.076 0 0.127 0.0535 0.064 0.063 0 0.1855 0.0835 0.073 0.069 0 0.168 0.139 0.066 0.056 0 0.347 0.1075 0.084 0.081 0 0.365 0.0325 0.088 0.063 0 0.1765 0.3825 0.075 0.079 0 0.289 0.272 0.08 0.076 0 0.324 0.1515 0.066 0.057 0 0.4515 0.031 0.077 0.06 0 0.425 0.1695 0.058 0.059 0 0.391 0.2645 0.05 0.049 0 0.3425 0.515 0.083 0.086 0 0.2985 0.616 0.069 0.072 0 0.6975 0.8565 0.083 0.087 0 0.8745 0.882 0.099 0.102 0 0.959 0.7635 0.082 0.091 0 0.892 0.7375 0.058 0.057 0 0.947 0.325 0.072 0.074 0 0.119 0.0465 0.07 0.065 0 0.0715 0.162 0.061 0.066 0 0.1785 0.116 0.067 0.066 0 0.242 0.1155 0.068 0.067 0 0.203 0.169 0.064 0.058 0 0.153 0.2235 0.07 0.063 0 0.039 0.2615 0.074 0.071 0 0.2615 0.3025 0.077 0.073 0 0.2095 0.3755 0.063 0.069 0 0.1285 0.4185 0.073 0.067 0 0.1315 0.486 0.083 0.074 0 0.0565 0.5425 0.069 0.065 0 0.0685 0.6275 0.077 0.075 0 0.044 0.7045 0.064 0.063 0 0.385 0.3385 0.066 0.067 0 0.3255 0.3995 0.061 0.063 0 0.3025 0.49 0.069 0.076 0 0.216
36%|███▌ | 174/486 [00:12<00:22, 14.12it/s]
0.683 0.08 0.078 0 0.202 0.7695 0.076 0.073 0 0.072 0.896 0.064 0.064 0 0.1485 0.9085 0.067 0.065 0 0.2295 0.892 0.075 0.074 0 0.242 0.9505 0.068 0.057 0 0.34 0.9075 0.068 0.069 0 0.417 0.95 0.068 0.064 0 0.4225 0.868 0.071 0.074 0 0.4355 0.789 0.067 0.068 0 0.5975 0.9685 0.065 0.059 0 0.5265 0.8225 0.079 0.077 0 0.6915 0.8605 0.077 0.073 0 0.6265 0.7915 0.081 0.085 0 0.6635 0.717 0.079 0.076 0 0.9505 0.7285 0.063 0.067 0 0.947 0.632 0.076 0.068 0 0.3755 0.6295 0.075 0.071 0 0.3435 0.5925 0.077 0.071 0 0.441 0.6205 0.076 0.085 0 0.441 0.542 0.064 0.062 0 0.434 0.4505 0.074 0.071 0 0.546 0.3345 0.078 0.075 0 0.532 0.4225 0.078 0.069 0 0.563 0.5 0.08 0.076 0 0.5285 0.5875 0.075 0.079 0 0.6065 0.569 0.067 0.072 0 0.6615 0.3225 0.071 0.067 0 0.762 0.355 0.076 0.072 0 0.752 0.4245 0.058 0.061 0 0.657 0.4695 0.07 0.083 0 0.704 0.4865 0.06 0.065 0 0.6845 0.554 0.069 0.078 0 0.8105 0.468 0.071 0.074 0 0.781 0.5455 0.086 0.087 0 0.721 0.614 0.076 0.082 0 0.7565 0.72 0.065 0.064 0 0.966 0.116 0.068 0.084 0 0.854 0.239 0.076 0.08 0 0.853 0.064 0.064 0.058 0 0.93 0.2295 0.05 0.045 0 0.919 0.714 0.068 0.07 0 0.7885 0.818 0.081 0.074 0 0.695 0.956 0.106 0.088 0 0.6595 0.794 0.083 0.084 0 0.787 0.629 0.09 0.092 0 0.8275 0.4775 0.089 0.083 0 0.6685 0.6635 0.063 0.061 0 0.5265 0.752 0.103 0.104 0 0.5685 0.5845 0.103 0.099 0 0.5975 0.4505 0.091 0.087 0 0.6685 0.291 0.093 0.08 0 0.6805 0.162 0.113 0.1 0 0.716 0.0495 0.104 0.095 0 0.301 0.839 0.112 0.112 0 0.341 0.691 0.104 0.098 0 0.1825 0.8725 0.085 0.097 0 0.1635 0.6345 0.095 0.091 0 0.082 0.294 0.08 0.072 0 0.0745 0.239 0.069 0.064 0 0.1885 0.2405 0.051 0.047 0 0.2085 0.1215 0.065 0.065 0 0.1225 0.848 0.055 0.054 0 0.1475 0.598 0.057 0.058 0 0.1655 0.5415 0.063 0.055 0 0.241 0.6475 0.056 0.053 0 0.421 0.596 0.07 0.07 0 0.277 0.069 0.052 0.048 0 0.288 0.225 0.058 0.064 0 0.363 0.325 0.058 0.06 0 0.403 0.445 0.066 0.068 0 0.474 0.491 0.078 0.072 0 0.6385 0.261 0.059 0.056 0 0.737 0.2755 0.07 0.063 0 0.9565 0.2515 0.063 0.067 0 0.607 0.5635 0.072 0.077 0 0.576 0.604 0.082 0.076 0 0.5665 0.708 0.073 0.074 0 0.6115 0.749 0.085 0.086 0 0.5785 0.8585 0.085 0.085 0 0.583 0.9445 0.084 0.087 0 0.7305 0.86 0.085 0.084 0 0.7125 0.7235 0.073 0.081 0 0.7355 0.7745 0.075 0.069 0 0.7805 0.724 0.085 0.086 0 0.891 0.6065 0.084 0.081 0 0.8715 0.719 0.081 0.082 0 0.8745 0.87 0.085 0.092
36%|███▋ | 177/486 [00:12<00:20, 15.03it/s]
0 0.185 0.097 0.076 0.07 0 0.08 0.1905 0.078 0.077 0 0.185 0.252 0.074 0.084 0 0.3035 0.331 0.075 0.082 0 0.329 0.26 0.046 0.044 0 0.337 0.216 0.068 0.044 0 0.361 0.046 0.096 0.078 0 0.7785 0.08 0.065 0.076 0 0.961 0.08 0.074 0.09 0 0.859 0.204 0.06 0.056 0 0.804 0.2715 0.066 0.071 0 0.7265 0.226 0.069 0.068 0 0.664 0.2635 0.064 0.065 0 0.5285 0.361 0.061 0.064 0 0.926 0.5375 0.066 0.079 0 0.93 0.678 0.084 0.07 0 0.931 0.7555 0.084 0.081 0 0.8555 0.9595 0.075 0.069 0 0.6395 0.8495 0.067 0.063 0 0.6855 0.7105 0.079 0.079 0 0.521 0.649 0.068 0.07 0 0.434 0.59 0.066 0.072 0 0.486 0.762 0.062 0.068 0 0.317 0.9465 0.056 0.055 0 0.234 0.962 0.064 0.066 0 0.2995 0.795 0.057 0.062 0 0.0755 0.652 0.061 0.056 0 0.038 0.7215 0.068 0.073 0 0.073 0.7835 0.072 0.059 0 0.063 0.1215 0.066 0.071 0 0.1325 0.1225 0.081 0.081 0 0.341 0.0385 0.08 0.075 0 0.0535 0.2375 0.079 0.071 0 0.0345 0.294 0.067 0.082 0 0.1615 0.312 0.085 0.072 0 0.1765 0.2445 0.079 0.075 0 0.2955 0.3125 0.069 0.071 0 0.385 0.3175 0.074 0.069 0 0.4065 0.2395 0.073 0.075 0 0.4985 0.2625 0.071 0.079 0 0.573 0.1535 0.086 0.083 0 0.5385 0.077 0.091 0.094 0 0.607 0.088 0.084 0.086 0 0.646 0.1075 0.06 0.071 0 0.938 0.3755 0.1 0.101 0 0.455 0.397 0.094 0.082 0 0.4655 0.4785 0.099 0.091 0 0.4655 0.5545 0.087 0.077 0 0.2545 0.49 0.093 0.096 0 0.2315 0.7865 0.083 0.077 0 0.52 0.9025 0.064 0.067 0 0.5715 0.9205 0.073 0.085 0 0.1875 0.179 0.071 0.068 0 0.2535 0.343 0.083 0.078 0 0.142 0.404 0.062 0.06 0 0.153 0.3525 0.062 0.063 0 0.7235 0.0385 0.071 0.069 0 0.7925 0.095 0.063 0.076 0 0.822 0.1255 0.052 0.057 0 0.591 0.1455 0.068 0.075 0 0.6865 0.1905 0.075 0.071 0 0.792 0.2285 0.066 0.063 0 0.434 0.232 0.094 0.102 0 0.501 0.26 0.07 0.074 0 0.581 0.28 0.08 0.078 0 0.6785 0.268 0.077 0.084 0 0.7585 0.3155 0.083 0.079 0 0.913 0.3365 0.06 0.063 0 0.914 0.4135 0.062 0.063 0 0.7515 0.4085 0.077 0.081 0 0.6575 0.372 0.081 0.078 0 0.344 0.451 0.07 0.078 0 0.4295 0.45 0.077 0.088 0 0.5395 0.4865 0.087 0.081 0 0.6045 0.5565 0.093 0.083 0 0.7655 0.5895 0.073 0.077 0 0.889 0.6035 0.078 0.085 0 0.9175 0.6865 0.073 0.085 0 0.8465 0.75 0.075 0.076 0 0.959 0.8265 0.076 0.073 0 0.8775 0.914 0.079 0.074 0 0.773 0.8325 0.088 0.089 0 0.743 0.965 0.088 0.068 0 0.663 0.846 0.086 0.078 0 0.6695 0.7465 0.069 0.065 0 0.5525 0.948 0.081 0.074 0 0.462 0.6565 0.082 0.081 0 0.4305 0.7565 0.081 0.077 0 0.324 0.643 0.09 0.084 0 0.218 0.658 0.09 0.086 0 0.2495 0.82 0.101 0.094 0 0.2995 0.7925 0.069 0.069 0 0.3905 0.8265 0.053 0.065
38%|███▊ | 184/486 [00:12<00:16, 17.86it/s]
0 0.0835 0.0385 0.075 0.075 0 0.0685 0.1105 0.045 0.055 0 0.0475 0.2745 0.069 0.067 0 0.0315 0.3765 0.059 0.065 0 0.1745 0.368 0.075 0.076 0 0.359 0.0685 0.08 0.065 0 0.3205 0.2925 0.089 0.085 0 0.6395 0.15 0.067 0.064 0 0.925 0.043 0.1 0.084 0 0.9465 0.1685 0.081 0.087 0 0.8585 0.3415 0.091 0.093 0 0.7815 0.365 0.077 0.074 0 0.4975 0.3365 0.069 0.069 0 0.405 0.376 0.072 0.064 0 0.609 0.4685 0.076 0.075 0 0.7945 0.517 0.093 0.096 0 0.4855 0.527 0.073 0.078 0 0.4125 0.4745 0.083 0.083 0 0.3075 0.4845 0.063 0.067 0 0.375 0.553 0.088 0.078 0 0.282 0.575 0.072 0.072 0 0.192 0.6225 0.058 0.065 0 0.2005 0.5155 0.073 0.077 0 0.067 0.568 0.078 0.082 0 0.1225 0.835 0.069 0.066 0 0.1775 0.8325 0.069 0.073 0 0.158 0.9325 0.088 0.083 0 0.274 0.828 0.082 0.088 0 0.3975 0.88 0.079 0.074 0 0.5085 0.8335 0.065 0.063 0 0.436 0.67 0.09 0.09 0 0.6155 0.7535 0.059 0.061 0 0.037 0.2105 0.068 0.077 0 0.1985 0.1995 0.075 0.077 0 0.189 0.391 0.08 0.078 0 0.3055 0.377 0.095 0.092 0 0.492 0.188 0.06 0.066 0 0.5895 0.1475 0.069 0.073 0 0.6675 0.1065 0.075 0.085 0 0.7175 0.1375 0.079 0.085 0 0.8595 0.1235 0.063 0.069 0 0.8775 0.2535 0.073 0.077 0 0.7865 0.3075 0.097 0.087 0 0.3855 0.621 0.095 0.096 0 0.48 0.6095 0.07 0.067 0 0.7555 0.5915 0.079 0.081 0 0.6785 0.521 0.081 0.082 0 0.844 0.6735 0.104 0.101 0 0.782 0.7095 0.074 0.091 0 0.699 0.713 0.084 0.076 0 0.7385 0.761 0.095 0.088 0 0.7595 0.2785 0.063 0.059 0 0.4855 0.629 0.057 0.064 0 0.418 0.0875 0.078 0.077 0 0.267 0.195 0.07 0.082 0 0.1175 0.1405 0.083 0.081 0 0.0645 0.2615 0.053 0.061 0 0.2275 0.33 0.079 0.074 0 0.0955 0.3805 0.067 0.063 0 0.0375 0.412 0.069 0.092 0 0.241 0.391 0.066 0.06 0 0.179 0.4555 0.08 0.083 0 0.3365 0.4915 0.075 0.075 0 0.139 0.575 0.066 0.07 0 0.0555 0.5615 0.075 0.075 0 0.0985 0.695 0.089 0.086 0 0.035 0.741 0.062 0.06 0 0.034 0.812 0.066 0.066 0 0.086 0.9325 0.064 0.065 0 0.1465 0.97 0.077 0.06 0 0.1735 0.9105 0.075 0.063 0 0.1825 0.8625 0.061 0.059 0 0.24 0.753 0.072 0.07 0 0.941 0.541 0.048 0.048 0 0.8395 0.9485 0.089 0.089 0 0.7165 0.7995 0.075 0.077 0 0.7625 0.6985 0.077 0.089 0 0.8625 0.604 0.065 0.076 0 0.839 0.5095 0.068 0.063 0 0.8 0.388 0.062 0.066 0 0.8955 0.16 0.065 0.07 0 0.7265 0.039 0.079 0.066 0 0.1855 0.7955 0.059 0.061 0 0.2345 0.762 0.063 0.064 0 0.191 0.719 0.068 0.062 0 0.488 0.6435 0.06 0.061 0 0.6475 0.6305 0.065 0.067 0 0.255 0.494 0.062 0.064 0 0.198 0.4285 0.072 0.069 0 0.2325 0.3285 0.061 0.059 0 0.307 0.373 0.054 0.054 0 0.304 0.296 0.066 0.058 0 0.3705 0.3645 0.069 0.067 0 0.4075 0.4455 0.077 0.077 0 0.6945 0.512 0.067 0.08 0 0.615 0.512 0.074 0.068 0 0.541 0.468 0.06 0.068 0 0.6125 0.423 0.073 0.066 0 0.6435 0.3455 0.071 0.075 0 0.966 0.382 0.066 0.066 0 0.457 0.3325 0.072 0.071 0 0.391 0.232 0.074 0.068 0 0.498 0.257 0.068 0.066 0 0.372 0.147 0.058 0.056 0 0.468 0.185 0.06 0.058 0 0.5615 0.2035 0.073 0.079 0 0.4565 0.0335 0.069 0.065 0 0.137 0.117 0.082 0.084 0 0.2955 0.0325 0.087 0.063 0 0.285 0.13 0.076 0.066 0 0.4655 0.07 0.093 0.074 0 0.474 0.1515 0.08 0.073 0 0.6 0.1345 0.096 0.081 0 0.754 0.1535 0.096 0.079 0 0.7585 0.0395 0.061 0.051 0 0.9085 0.04 0.081 0.076 0 0.873 0.155 0.086 0.088 0 0.2405 0.3115 0.045 0.045 0 0.064 0.5665 0.066 0.071 0 0.3125 0.5125 0.051 0.053 0 0.544 0.4475 0.06 0.067 0 0.649 0.554 0.066 0.056 0 0.106 0.7765 0.056 0.055 0 0.0315 0.863 0.061 0.064 0 0.22 0.7405 0.066 0.065 0 0.3455 0.7635 0.065 0.065 0 0.3395 0.8415 0.061 0.059 0 0.3135 0.9395 0.055 0.055 0 0.5195 0.721 0.087 0.082 0 0.597 0.7435 0.092 0.091 0 0.6805 0.729 0.091 0.092 0 0.7635 0.7755 0.081 0.087 0 0.847 0.7565 0.092 0.097
38%|███▊ | 187/486 [00:12<00:14, 19.95it/s]
0 0.841 0.8855 0.07 0.081 0 0.557 0.6755 0.078 0.081 0 0.31 0.6775 0.08 0.083 0 0.2305 0.6 0.085 0.068 0 0.0945 0.5225 0.083 0.069 0 0.0605 0.3645 0.057 0.065 0 0.173 0.4195 0.066 0.075 0 0.2945 0.4605 0.075 0.073 0 0.385 0.5565 0.088 0.087 0 0.7875 0.5335 0.081 0.077 0 0.6825 0.4585 0.071 0.071 0 0.5185 0.3545 0.085 0.081 0 0.224 0.334 0.09 0.078 0 0.0605 0.1325 0.069 0.065 0 0.1585 0.2125 0.083 0.083 0 0.291 0.221 0.088 0.086 0 0.4105 0.2775 0.069 0.081 0 0.928 0.5205 0.052 0.051 0 0.8495 0.4505 0.075 0.081 0 0.743 0.3795 0.072 0.079 0 0.655 0.3375 0.064 0.063 0 0.5715 0.266 0.083 0.082 0 0.4875 0.1685 0.101 0.083 0 0.168 0.1295 0.078 0.073 0 0.0995 0.036 0.087 0.07 0 0.4365 0.0275 0.075 0.053 0 0.553 0.055 0.076 0.082 0 0.6405 0.143 0.077 0.076 0 0.7395 0.229 0.079 0.062 0 0.966 0.223 0.068 0.08 0 0.8585 0.16 0.069 0.076 0 0.811 0.1235 0.086 0.075 0 0.9495 0.0815 0.083 0.075 0 0.8645 0.037 0.089 0.07 0 0.13 0.034 0.076 0.066 0 0.049 0.12 0.096 0.088 0 0.2005 0.0965 0.089 0.093 0 0.0645 0.2705 0.099 0.085 0 0.035 0.3975 0.066 0.075 0 0.089 0.466 0.052 0.056 0 0.1555 0.4665 0.055 0.055 0 0.198 0.298 0.064 0.066 0 0.2905 0.185 0.057 0.056 0 0.695 0.035 0.074 0.066 0 0.8325 0.085 0.071 0.08 0 0.786 0.1175 0.046 0.049 0 0.8955 0.0355 0.047 0.043 0 0.9705 0.037 0.059 0.072 0 0.4885 0.28 0.067 0.078 0 0.616 0.3305 0.072 0.073 0 0.3935 0.427 0.063 0.072 0 0.442 0.536 0.074 0.084 0 0.532 0.5915 0.074 0.069 0 0.578 0.5065 0.074 0.075 0 0.8035 0.3435 0.079 0.073 0 0.8175 0.41 0.065 0.068 0 0.879 0.4955 0.066 0.071 0 0.836 0.645 0.074 0.08 0 0.8855 0.7525 0.073 0.075 0 0.8515 0.871 0.063 0.06 0 0.7975 0.8185 0.067 0.057 0 0.1615 0.5775 0.059 0.061 0 0.15 0.6745 0.076 0.081 0 0.0355 0.8195 0.067 0.089 0 0.3175 0.788 0.043 0.058 0 0.073 0.23 0.072 0.076 0 0.3175 0.053 0.077 0.08 0 0.2525 0.09 0.065 0.066 0 0.24 0.1675 0.072 0.079 0 0.632 0.042 0.082 0.068 0 0.558 0.126 0.064 0.064 0 0.487 0.1515 0.064 0.065 0 0.5545 0.204 0.095 0.076 0 0.6845 0.1155 0.073 0.051 0 0.8315 0.221 0.065 0.062 0 0.9525 0.3265 0.069 0.065 0 0.2465 0.3895 0.089 0.087 0 0.2245 0.46 0.065 0.058 0 0.152 0.45 0.08 0.064 0 0.1025 0.49 0.061 0.058 0 0.193 0.5615 0.088 0.097 0 0.116 0.6475 0.066 0.069 0 0.4205 0.5985 0.095 0.089 0 0.3845 0.7845 0.097 0.087 0 0.1535 0.949 0.067 0.07 0 0.545 0.703 0.072 0.07 0 0.59 0.7715 0.076 0.073 0 0.709 0.7405 0.078 0.081 0 0.871 0.5495 0.07 0.069 0 0.9185 0.5815 0.069 0.079 0 0.958 0.6525 0.074 0.071 0 0.094 0.185 0.09 0.092 0 0.1565 0.145 0.065 0.074 0 0.082 0.291 0.054 0.052 0 0.148 0.2965 0.054 0.065 0 0.1865 0.229 0.063 0.064 0 0.2255 0.285 0.065 0.076 0 0.249 0.2525 0.046 0.045 0 0.3175 0.22 0.063 0.07 0 0.621 0.159 0.084 0.094 0 0.8385 0.0965 0.081 0.073 0 0.738 0.2455 0.08 0.089 0 0.452 0.2655 0.046 0.041 0 0.3875 0.368 0.067 0.06 0 0.57 0.3505 0.074 0.071 0 0.6705 0.3415 0.073 0.073 0 0.729 0.357 0.074 0.068 0 0.921 0.388 0.06 0.068 0 0.8215 0.544 0.071 0.078 0 0.6745 0.479 0.075 0.068 0 0.5975 0.484 0.079 0.082 0 0.5395 0.4445 0.083 0.079 0 0.6255 0.5675 0.071 0.073 0 0.2625 0.4455 0.087 0.075 0 0.2235 0.5285 0.089 0.081 0 0.1315 0.498 0.081 0.086 0 0.0325 0.5455 0.063 0.071 0 0.041 0.664 0.056 0.056 0 0.1095 0.6605 0.079 0.079 0 0.1855 0.6545 0.075 0.077 0 0.2835 0.632 0.085 0.078 0 0.2745 0.8535 0.081 0.081 0 0.24 0.966 0.078 0.066 0 0.3965 0.823 0.079 0.08 0 0.387 0.874 0.068 0.054 0 0.43 0.7625 0.076 0.057 0 0.5085 0.8735 0.077 0.077 0 0.538 0.7965 0.058 0.063 0 0.637 0.9505 0.09 0.083 0 0.682 0.8325 0.088 0.099 0 0.799 0.91 0.088 0.092 0 0.736 0.733 0.09 0.088 0 0.5765 0.694 0.075 0.074 0 0.638 0.65 0.076 0.086 0 0.8785 0.8065 0.091 0.087 0 0.9085 0.7125 0.087 0.091 0 0.9525 0.642 0.087 0.086 0 0.2255 0.041 0.071 0.07 0 0.283 0.0415 0.06 0.067 0 0.3995 0.114 0.071 0.072 0 0.519 0.032 0.058 0.06 0 0.5685 0.152 0.085 0.068 0 0.6635 0.131 0.069 0.07 0 0.73 0.0605 0.068 0.065 0 0.866 0.0765 0.064 0.065 0 0.9365 0.1375 0.067 0.053 0 0.728 0.153 0.058 0.062 0 0.798 0.17 0.08 0.088 0 0.85 0.258 0.062 0.068 0 0.9425 0.3175 0.075 0.079 0 0.9285 0.414 0.079 0.076 0 0.8445 0.359 0.075 0.086 0 0.705 0.301 0.074 0.078 0 0.651 0.2005 0.062 0.055 0 0.129 0.3365 0.068 0.069 0 0.0975 0.383 0.067 0.066 0 0.163 0.415 0.074 0.074 0 0.2375 0.4055 0.077 0.073 0 0.3325 0.4115 0.083 0.087 0 0.316 0.4925 0.08 0.087 0 0.3975 0.555 0.061 0.052 0 0.5335 0.4065 0.067 0.069 0 0.494 0.4915 0.078 0.075 0 0.613 0.4635 0.076 0.065 0 0.7105 0.508 0.081 0.072 0 0.816 0.5685 0.076 0.073 0 0.6695 0.6025 0.079 0.079 0 0.6105 0.7015 0.075 0.075 0 0.573 0.7935 0.064 0.065 0 0.4715 0.7225 0.071 0.073 0 0.1885 0.6165 0.085 0.089 0 0.102 0.537 0.072 0.08 0 0.133 0.662 0.094 0.094 0 0.4005 0.8525 0.079 0.085 0 0.08 0.8605 0.068 0.077 0 0.039 0.8295 0.068 0.089 0 0.239 0.914 0.066 0.07 0 0.8685 0.8435 0.061 0.069 0 0.931 0.882 0.078 0.088 0 0.779 0.972 0.074 0.056 0 0.089 0.0975 0.072 0.067 0 0.214 0.073 0.064 0.062 0 0.043 0.214 0.074 0.09 0 0.29 0.169 0.064 0.066
39%|███▉ | 190/486 [00:13<00:18, 15.83it/s]
0 0.1765 0.239 0.063 0.076 0 0.158 0.292 0.07 0.064 0 0.039 0.414 0.064 0.072 0 0.119 0.416 0.056 0.056 0 0.1705 0.3595 0.069 0.067 0 0.2245 0.4045 0.055 0.051 0 0.233 0.4695 0.07 0.069 0 0.1045 0.5215 0.065 0.071 0 0.1915 0.543 0.079 0.076 0 0.1425 0.6145 0.059 0.053 0 0.411 0.1875 0.082 0.081 0 0.52 0.1875 0.076 0.079 0 0.6995 0.066 0.085 0.08 0 0.661 0.135 0.08 0.076 0 0.82 0.1465 0.074 0.077 0 0.888 0.1845 0.07 0.073 0 0.9575 0.296 0.079 0.076 0 0.8665 0.361 0.073 0.064 0 0.7605 0.212 0.071 0.068 0 0.7505 0.447 0.061 0.056 0 0.628 0.246 0.084 0.076 0 0.573 0.326 0.078 0.07 0 0.537 0.411 0.076 0.072 0 0.426 0.454 0.076 0.074 0 0.4655 0.28 0.071 0.066 0 0.3095 0.4885 0.077 0.065 0 0.48 0.5715 0.074 0.071 0 0.513 0.6295 0.056 0.057 0 0.5935 0.6525 0.061 0.061 0 0.4765 0.683 0.071 0.072 0 0.23 0.764 0.076 0.08 0 0.643 0.798 0.054 0.054 0 0.9095 0.756 0.047 0.054 0 0.85 0.8065 0.062 0.069 0 0.584 0.9715 0.076 0.053 0 0.5125 0.904 0.073 0.076 0 0.3865 0.8435 0.065 0.063 0 0.2975 0.8795 0.063 0.061 0 0.295 0.928 0.066 0.056 0 0.1365 0.951 0.071 0.076 0 0.076 0.942 0.08 0.082 0 0.2485 0.916 0.073 0.076 0 0.364 0.959 0.062 0.054 0 0.0935 0.8565 0.055 0.053 0 0.3375 0.853 0.075 0.078 0 0.1255 0.7445 0.071 0.071 0 0.2595 0.736 0.065 0.066 0 0.6315 0.924 0.063 0.056 0 0.87 0.9205 0.07 0.063 0 0.772 0.8685 0.068 0.079 0 0.8925 0.7515 0.071 0.063 0 0.782 0.74 0.06 0.064 0 0.7855 0.7935 0.061 0.055 0 0.8365 0.676 0.067 0.066 0 0.7645 0.6485 0.073 0.073 0 0.5565 0.7405 0.053 0.055 0 0.5045 0.6825 0.055 0.061 0 0.34 0.62 0.064 0.078 0 0.6625 0.6505 0.061 0.065 0 0.558 0.5875 0.062 0.065 0 0.4575 0.561 0.069 0.07 0 0.404 0.502 0.066 0.074 0 0.2635 0.5075 0.063 0.073 0 0.08 0.45 0.062 0.056 0 0.1175 0.3715 0.057 0.061 0 0.7445 0.528 0.053 0.056 0 0.923 0.4075 0.072 0.071 0 0.9665 0.3445 0.061 0.061 0 0.97 0.2665 0.058 0.079 0 0.918 0.304 0.066 0.08 0 0.886 0.23 0.064 0.066 0 0.8215 0.1855 0.073 0.077 0 0.7585 0.2 0.065 0.066 0 0.7065 0.24 0.057 0.066 0 0.6315 0.4115 0.051 0.059 0 0.5525 0.309 0.059 0.06 0 0.6445 0.1835 0.061 0.065 0 0.704 0.0855 0.056 0.067 0 0.654 0.0755 0.072 0.073 0 0.5035 0.102 0.075 0.076 0 0.381 0.041 0.06 0.066 0 0.2695 0.0815 0.049 0.065 0 0.086 0.1335 0.06 0.061 0 0.0485 0.246 0.069 0.066 0 0.025 0.1845 0.048 0.065 0 0.9685 0.5015 0.063 0.073 0 0.8865 0.715 0.077 0.082 0 0.6635 0.853 0.075 0.07 0 0.389 0.779 0.086 0.072 0 0.4425 0.6365 0.067 0.065 0 0.186 0.855 0.064 0.068 0 0.233 0.7845 0.072 0.077 0 0.3055 0.736 0.085 0.08 0 0.152 0.7275 0.074 0.079 0 0.23 0.6945 0.062 0.063 0 0.035 0.6825 0.064 0.073 0 0.0365 0.5825 0.071 0.073 0 0.127 0.6265 0.074 0.077 0 0.0875 0.53 0.071 0.07 0 0.1965 0.5465 0.071 0.069 0 0.079 0.4405 0.072 0.069 0 0.028 0.3425 0.054 0.063 0 0.069 0.0555 0.07 0.075 0 0.2145 0.1395 0.055 0.053 0 0.205 0.2155 0.074 0.069 0 0.2685 0.203 0.061 0.062 0 0.1655 0.2895 0.075 0.071 0 0.243 0.3285 0.074 0.067 0 0.215 0.4135 0.056 0.065 0 0.4035 0.126 0.065 0.066 0 0.6015 0.186 0.081 0.074 0 0.559 0.2585 0.072 0.081 0 0.685 0.2945 0.088 0.099 0 0.8275 0.3275 0.069 0.067 0 0.778 0.348 0.062 0.066 0 0.5185 0.3395 0.063 0.059 0 0.5095 0.3865 0.063 0.061 0 0.3715 0.3905 0.065 0.055 0 0.4845 0.522 0.069 0.066 0 0.388 0.551 0.076 0.078 0 0.352 0.654 0.08 0.082 0 0.664 0.68 0.072 0.072 0 0.273 0.958 0.076 0.068 0 0.1335 0.807 0.065 0.076 0 0.0845 0.608 0.075 0.066 0 0.614 0.907 0.048 0.054 0 0.964 0.8555 0.072 0.083 0 0.935 0.887 0.068 0.074 0 0.833 0.799 0.098 0.088 0 0.707 0.727 0.066 0.064 0 0.687 0.7665 0.066 0.055 0 0.609 0.704 0.096 0.084 0 0.481 0.637 0.086 0.078 0 0.349 0.5805 0.068 0.067 0 0.2455 0.536 0.099 0.094 0 0.0725 0.4355 0.073 0.079 0 0.0755 0.2915 0.071 0.075 0 0.3525 0.4095 0.059 0.065 0 0.4775 0.525 0.081 0.082 0 0.694 0.5155 0.082 0.085 0 0.766 0.5835 0.094 0.089 0 0.8135 0.4875 0.075 0.075 0 0.855 0.2825 0.076 0.073 0 0.7585 0.2735 0.055 0.063 0 0.865 0.165 0.078 0.078 0 0.463 0.304 0.056 0.056 0 0.2725 0.103 0.065 0.074 0 0.38 0.029 0.07 0.056 0 0.1555 0.0565 0.071 0.067 0 0.0735 0.159 0.067 0.086 0 0.1745 0.1115 0.065 0.067 0 0.29 0.086 0.098 0.104 0 0.055 0.255 0.074 0.078 0 0.1255 0.2735 0.077 0.091 0 0.198 0.2805 0.078 0.085 0 0.0405 0.3585 0.075 0.085 0 0.1325 0.3805 0.085 0.095 0 0.204 0.396 0.052 0.076 0 0.2615 0.41 0.077 0.082 0 0.2935 0.3165 0.063 0.071 0 0.36 0.3535 0.086 0.083 0 0.3695 0.442 0.079 0.08 0 0.4035 0.5085 0.059 0.059 0 0.4965 0.4545 0.085 0.079 0 0.576 0.4815 0.082 0.091 0 0.663 0.506 0.086 0.082 0 0.6875 0.429 0.067 0.062 0 0.7725 0.3765 0.069 0.077 0 0.807 0.296 0.062 0.078 0 0.809 0.206 0.082 0.088 0 0.6275 0.028 0.055 0.052 0 0.79 0.457 0.07 0.07 0 0.767 0.529 0.082 0.072 0 0.75 0.612 0.078 0.076 0 0.2015 0.517 0.075 0.078 0 0.281 0.5445 0.08 0.065 0 0.2775 0.6125 0.079 0.071 0 0.484 0.5565 0.092 0.079 0 0.4475 0.6095 0.071 0.061 0 0.091 0.605 0.07 0.078 0 0.169 0.6215 0.072 0.075 0 0.45 0.674 0.068 0.056 0 0.527 0.6895 0.072 0.067 0 0.6075 0.7025 0.071 0.073 0 0.6655 0.717 0.073 0.084 0 0.746 0.741 0.068 0.078 0 0.0245 0.7115 0.041 0.047 0 0.1505 0.7185 0.075 0.085 0 0.2205 0.7655 0.067 0.065 0 0.2845 0.796 0.067 0.07 0 0.203 0.8335 0.066 0.057 0 0.1045 0.86 0.069 0.064 0 0.2445 0.8935 0.073 0.063 0 0.3835 0.9185 0.063 0.065 0 0.4555 0.887 0.071 0.072 0 0.49 0.956 0.068 0.06 0 0.526 0.892 0.062 0.062 0 0.605 0.925 0.066 0.072 0 0.531 0.801 0.084 0.088 0 0.5765 0.8325 0.081 0.067 0 0.664 0.8285 0.058 0.059 0 0.7175 0.852 0.063 0.08
41%|████ | 197/486 [00:13<00:16, 17.04it/s]
0 0.8665 0.8515 0.069 0.065 0 0.6735 0.841 0.069 0.07 0 0.531 0.794 0.084 0.078 0 0.4425 0.8945 0.079 0.073 0 0.3335 0.804 0.063 0.064 0 0.3835 0.717 0.055 0.05 0 0.254 0.7585 0.052 0.067 0 0.577 0.6865 0.066 0.067 0 0.81 0.804 0.052 0.052 0 0.7985 0.743 0.067 0.064 0 0.8725 0.724 0.075 0.08 0 0.965 0.7745 0.068 0.093 0 0.902 0.64 0.076 0.074 0 0.7615 0.6495 0.079 0.077 0 0.913 0.57 0.076 0.078 0 0.784 0.5695 0.072 0.079 0 0.968 0.404 0.062 0.074 0 0.8475 0.436 0.085 0.078 0 0.921 0.2825 0.072 0.069 0 0.478 0.5525 0.074 0.079 0 0.378 0.5725 0.068 0.071 0 0.2555 0.6095 0.075 0.075 0 0.1515 0.6485 0.079 0.079 0 0.0675 0.628 0.083 0.082 0 0.1765 0.5705 0.063 0.063 0 0.2845 0.534 0.079 0.078 0 0.1775 0.4875 0.059 0.057 0 0.0555 0.4695 0.087 0.089 0 0.2965 0.4555 0.053 0.053 0 0.5065 0.458 0.079 0.074 0 0.23 0.329 0.076 0.074 0 0.387 0.361 0.052 0.062 0 0.4465 0.349 0.075 0.07 0 0.23 0.232 0.072 0.08 0 0.3675 0.2495 0.059 0.061 0 0.3025 0.193 0.063 0.068 0 0.4535 0.212 0.069 0.076 0 0.0605 0.124 0.065 0.062 0 0.0865 0.0515 0.077 0.069 0 0.314 0.126 0.076 0.066 0 0.3695 0.0325 0.061 0.059 0 0.521 0.1455 0.064 0.069 0 0.5535 0.183 0.043 0.044 0 0.5915 0.111 0.059 0.064 0 0.562 0.038 0.078 0.07 0 0.682 0.1075 0.06 0.071 0 0.707 0.175 0.062 0.058 0 0.97 0.1065 0.056 0.063 0 0.172 0.0895 0.078 0.071 0 0.6235 0.2165 0.085 0.085 0 0.679 0.299 0.074 0.084 0 0.968 0.14 0.058 0.062 0 0.9085 0.2895 0.069 0.071 0 0.6235 0.3075 0.071 0.063 0 0.496 0.3515 0.084 0.075 0 0.5975 0.4145 0.087 0.085 0 0.497 0.462 0.076 0.07 0 0.309 0.5805 0.068 0.067 0 0.4655 0.589 0.067 0.068 0 0.603 0.5165 0.076 0.079 0 0.8035 0.4905 0.071 0.067 0 0.775 0.551 0.076 0.08 0 0.8445 0.6315 0.079 0.073 0 0.687 0.5745 0.07 0.061 0 0.367 0.9745 0.07 0.051 0 0.6505 0.908 0.069 0.064 0 0.0905 0.064 0.077 0.084 0 0.1615 0.047 0.071 0.082 0 0.3265 0.056 0.075 0.074 0 0.399 0.1145 0.072 0.075 0 0.336 0.144 0.068 0.076 0 0.0915 0.4225 0.059 0.055 0 0.1985 0.3995 0.079 0.083 0 0.0615 0.551 0.071 0.07 0 0.2415 0.506 0.053 0.056 0 0.5985 0.2885 0.061 0.067 0 0.6285 0.3735 0.073 0.065 0 0.3945 0.36 0.061 0.062 0 0.8915 0.4245 0.073 0.065 0 0.7235 0.5435 0.063 0.069 0 0.586 0.602 0.078 0.072 0 0.44 0.637 0.064 0.06 0 0.4165 0.6925 0.071 0.063 0 0.321 0.8165 0.072 0.067 0 0.5535 0.912 0.067 0.064 0 0.8515 0.968 0.073 0.064 0 0.88 0.8705 0.074 0.071 0 0.829 0.7535 0.082 0.083 0 0.9105 0.779 0.069 0.072 0 0.959 0.6975 0.082 0.081 0 0.8895 0.6335 0.063 0.065 0 0.8845 0.9565 0.069 0.065 0 0.714 0.9565 0.064 0.057 0 0.74 0.8735 0.058 0.055 0 0.7205 0.7685 0.069 0.073 0 0.589 0.8985 0.066 0.065 0 0.6395 0.839 0.071 0.078 0 0.652 0.71 0.07 0.072 0 0.582 0.74 0.08 0.082 0 0.5215 0.852 0.075 0.072 0 0.383 0.922 0.072 0.084 0 0.326 0.873 0.072 0.076 0 0.4555 0.8055 0.071 0.075 0 0.4955 0.73 0.065 0.064 0 0.6035 0.636 0.067 0.074 0 0.471 0.5665 0.072 0.079 0 0.4295 0.6575 0.077 0.073 0 0.3675 0.764 0.067 0.07 0 0.3105 0.7795 0.069 0.069 0 0.258 0.8245 0.056 0.061 0 0.1 0.865 0.082 0.092 0 0.2685 0.724 0.047 0.06 0 0.322 0.646 0.06 0.06 0 0.3385 0.5805 0.081 0.065 0 0.0655 0.756 0.079 0.074 0 0.069 0.6825 0.06 0.051 0 0.1895 0.702 0.093 0.082 0 0.0625 0.617 0.085 0.066 0 0.0325 0.4685 0.063 0.079 0 0.221 0.575 0.076 0.074 0 0.225 0.4395 0.072 0.085 0 0.236 0.3385 0.066 0.061 0 0.3505 0.413 0.073 0.076 0 0.294 0.2635 0.064 0.067 0 0.412 0.355 0.058 0.074 0 0.7005 0.3865 0.077 0.081 0 0.7985 0.226 0.071 0.07 0 0.7445 0.118 0.051 0.048 0 0.9305 0.067 0.069 0.064 0 0.4305 0.0775 0.069 0.067 0 0.1445 0.0555 0.063 0.061 0 0.055 0.0425 0.05 0.049 0 0.072 0.066 0.084 0.082 0 0.1685 0.1035 0.075 0.075 0 0.1075 0.1725 0.067 0.059 0 0.223 0.169 0.072 0.074 0 0.1505 0.304 0.071 0.06 0 0.7065 0.0665 0.101 0.099 0 0.5735 0.1675 0.077 0.073 0 0.511 0.2265 0.072 0.071 0 0.6695 0.1805 0.091 0.091 0 0.6225 0.2785 0.097 0.097 0 0.5595 0.386 0.073 0.074 0 0.527 0.495 0.098 0.094 0 0.3125 0.5345 0.047 0.049 0 0.175 0.597 0.06 0.056 0 0.286 0.7045 0.058 0.057 0 0.447 0.6915 0.078 0.069 0 0.4125 0.801 0.083 0.078 0 0.3505 0.9135 0.079 0.081 0 0.133 0.958 0.098 0.084 0 0.035 0.9155 0.068 0.081 0 0.4255 0.9525 0.081 0.085 0 0.47 0.8655 0.076 0.089 0 0.5925 0.94 0.079 0.08 0 0.7345 0.953 0.089 0.088 0 0.526 0.761 0.074 0.076 0 0.645 0.802 0.074 0.074 0 0.784 0.8445 0.076 0.081 0 0.6635 0.701 0.065 0.068 0 0.8345 0.714 0.083 0.09 0 0.9715 0.7785 0.057 0.079 0 0.895 0.6015 0.068 0.065 0 0.6475 0.562 0.063 0.066 0 0.9385 0.499 0.073 0.078 0 0.7015 0.4415 0.061 0.069 0 0.747 0.3305 0.058 0.059 0 0.795 0.224 0.06 0.068 0 0.8365 0.1125 0.071 0.063
42%|████▏ | 202/486 [00:13<00:20, 14.11it/s]
0 0.0555 0.1035 0.065 0.067 0 0.0935 0.225 0.075 0.078 0 0.2805 0.1275 0.083 0.085 0 0.34 0.048 0.06 0.06 0 0.453 0.0885 0.07 0.075 0 0.615 0.0545 0.084 0.073 0 0.754 0.0385 0.08 0.069 0 0.835 0.0965 0.09 0.083 0 0.9535 0.1075 0.079 0.073 0 0.9175 0.187 0.065 0.068 0 0.8515 0.2065 0.079 0.075 0 0.767 0.2075 0.058 0.063 0 0.421 0.1665 0.082 0.073 0 0.2535 0.1965 0.057 0.061 0 0.385 0.2385 0.07 0.073 0 0.3545 0.2885 0.093 0.095 0 0.1615 0.4085 0.079 0.079 0 0.2615 0.436 0.069 0.074 0 0.3345 0.4045 0.081 0.079 0 0.483 0.3745 0.06 0.055 0 0.1415 0.481 0.063 0.066 0 0.097 0.537 0.074 0.082 0 0.059 0.6075 0.07 0.075 0 0.189 0.59 0.06 0.056 0 0.2015 0.6675 0.079 0.083 0 0.1805 0.737 0.051 0.056 0 0.954 0.279 0.066 0.07 0 0.799 0.3125 0.07 0.081 0 0.867 0.3295 0.07 0.069 0 0.9285 0.366 0.077 0.082 0 0.8205 0.397 0.085 0.084 0 0.744 0.401 0.058 0.078 0 0.7235 0.4795 0.071 0.079 0 0.784 0.4775 0.07 0.083 0 0.8605 0.5 0.073 0.068 0 0.96 0.6295 0.066 0.083 0 0.849 0.589 0.094 0.1 0 0.7055 0.5585 0.061 0.069 0 0.7445 0.604 0.059 0.07 0 0.6075 0.556 0.077 0.084 0 0.5115 0.585 0.073 0.074 0 0.42 0.744 0.108 0.108 0 0.2515 0.8375 0.057 0.065 0 0.3455 0.8975 0.065 0.057 0 0.5155 0.8385 0.087 0.081 0 0.569 0.893 0.054 0.078 0 0.5565 0.7405 0.099 0.097 0 0.6455 0.7815 0.063 0.059 0 0.6595 0.71 0.067 0.072 0 0.684 0.6395 0.074 0.075 0 0.785 0.678 0.082 0.084 0 0.746 0.832 0.076 0.076 0 0.831 0.91 0.068 0.06 0 0.865 0.838 0.09 0.082 0 0.8915 0.759 0.079 0.072 0 0.966 0.901 0.066 0.074 0 0.7845 0.957 0.065 0.046 0 0.0665 0.0915 0.077 0.075 0 0.2225 0.0305 0.069 0.059 0 0.0855 0.287 0.063 0.054 0 0.03 0.393 0.058 0.074 0 0.191 0.1 0.078 0.068 0 0.2 0.184 0.074 0.08 0 0.2595 0.134 0.079 0.07 0 0.28 0.202 0.082 0.082 0 0.341 0.128 0.084 0.08 0 0.393 0.2075 0.074 0.073 0 0.4695 0.0895 0.073 0.075 0 0.53 0.206 0.07 0.082 0 0.227 0.3165 0.058 0.061 0 0.1335 0.441 0.063 0.074 0 0.1945 0.432 0.057 0.062 0 0.2075 0.525 0.067 0.074 0 0.295 0.496 0.076 0.076 0 0.376 0.5225 0.054 0.051 0 0.3905 0.38 0.067 0.072 0 0.698 0.1575 0.066 0.067 0 0.641 0.2595 0.07 0.067 0 0.584 0.3695 0.078 0.071 0 0.5225 0.5465 0.061 0.063 0 0.4375 0.669 0.067 0.078 0 0.569 0.644 0.064 0.062 0 0.704 0.44 0.05 0.048 0 0.883 0.2335 0.066 0.067 0 0.966 0.267 0.064 0.074 0 0.9405 0.369 0.071 0.086 0 0.7445 0.717 0.049 0.052 0 0.7405 0.9615 0.063 0.065 0 0.9405 0.966 0.073 0.068 0 0.841 0.9295 0.076 0.079 0 0.93 0.8355 0.074 0.075 0 0.8655 0.7855 0.081 0.089 0 0.957 0.6825 0.084 0.097 0 0.6605 0.9655 0.081 0.069 0 0.7635 0.8835 0.071 0.081 0 0.689 0.8645 0.064 0.069 0 0.751 0.767 0.08 0.082 0 0.623 0.824 0.076 0.076 0 0.5305 0.9345 0.079 0.081 0 0.464 0.89 0.064 0.064 0 0.608 0.6905 0.088 0.095 0 0.504 0.7615 0.066 0.071 0 0.441 0.7755 0.088 0.101 0 0.5235 0.674 0.083 0.084 0 0.256 0.7735 0.08 0.083 0 0.1605 0.7325 0.083 0.079 0 0.1915 0.6235 0.083 0.083 0 0.058 0.5365 0.078 0.077 0 0.097 0.42 0.068 0.072 0 0.23 0.533 0.066 0.076 0 0.377 0.578 0.068 0.08 0 0.6505 0.588 0.069 0.062 0 0.5965 0.53 0.085 0.07 0 0.511 0.487 0.08 0.084 0 0.1005 0.2645 0.045 0.065 0 0.146 0.035 0.054 0.054 0 0.631 0.3775 0.078 0.097 0 0.7125 0.378 0.083 0.088 0 0.807 0.3925 0.072 0.085 0 0.884 0.4165 0.076 0.081 0 0.968 0.4195 0.064 0.083 0 0.9685 0.2535 0.055 0.065 0 0.8885 0.258 0.075 0.074 0 0.82 0.223 0.066 0.07 0 0.7575 0.182 0.077 0.08 0 0.6775 0.202 0.081 0.078 0 0.599 0.1645 0.072 0.081 0 0.65 0.061 0.084 0.09 0 0.902 0.0425 0.09 0.081 0 0.9725 0.0335 0.055 0.065 0 0.952 0.0475 0.076 0.085 0 0.8595 0.0325 0.071 0.063 0 0.658 0.0265 0.074 0.051 0 0.72 0.083 0.066 0.066 0 0.839 0.1735 0.078 0.083 0 0.7685 0.195 0.079 0.078 0 0.897 0.265 0.064 0.074 0 0.925 0.326 0.074 0.074 0 0.9145 0.4085 0.073 0.073 0 0.8175 0.2715 0.075 0.075 0 0.838 0.3545 0.076 0.075 0 0.8845 0.5 0.065 0.076 0 0.7795 0.426 0.069 0.068 0 0.8875 0.677 0.077 0.082 0 0.623 0.2265 0.07 0.071 0 0.7015 0.2515 0.063 0.057 0 0.4645 0.2275 0.067 0.075 0 0.591 0.317 0.074 0.074 0 0.625 0.411 0.068 0.078 0 0.519 0.3345 0.066 0.073 0 0.276 0.0955 0.07 0.067 0 0.346 0.1645 0.058 0.057 0 0.3865 0.2555 0.071 0.073 0 0.253 0.171 0.066 0.07 0 0.4135 0.367 0.075 0.078 0 0.495 0.4205 0.082 0.073 0 0.5755 0.49 0.065 0.068 0 0.4985 0.4985 0.073 0.075 0 0.5645 0.572 0.079 0.078 0 0.664 0.5355 0.072 0.077 0 0.7315 0.611 0.081 0.08 0 0.158 0.185 0.078 0.082 0 0.1025 0.2585 0.095 0.091 0 0.1025 0.3835 0.071 0.071 0 0.178 0.392 0.074 0.088 0 0.2735 0.3065 0.081 0.075 0 0.307 0.4315 0.062 0.073 0 0.244 0.4645 0.078 0.085 0 0.3275 0.514 0.083 0.086 0 0.182 0.5205 0.074 0.077 0 0.091 0.525 0.082 0.092 0 0.035 0.621 0.068 0.084 0 0.138 0.7075 0.074 0.073 0 0.2395 0.673 0.069 0.078 0 0.2425 0.752 0.063 0.056 0 0.297 0.7255 0.066 0.093 0 0.3505 0.787 0.089 0.086 0 0.1375 0.836 0.077 0.07 0 0.159 0.876 0.066 0.062 0 0.12 0.949 0.07 0.074 0 0.3865 0.678 0.077 0.086 0 0.4515 0.7275 0.081 0.079 0 0.506 0.7965 0.086 0.083 0 0.435 0.853 0.086 0.088 0 0.4845 0.6765 0.089 0.093 0 0.4265 0.9345 0.083 0.083 0 0.5065 0.9115 0.073 0.093 0 0.569 0.938 0.074 0.076 0 0.6555 0.9665 0.081 0.067 0 0.612 0.8435 0.08 0.083 0 0.6105 0.741 0.085 0.084 0 0.6325 0.6845 0.061 0.057 0 0.8115 0.791 0.079 0.078 0 0.7225 0.894 0.073 0.064 0 0.7915 0.952 0.089 0.092 0 0.8865 0.933 0.055 0.046 0 0.7335 0.7925 0.065 0.051 0 0.034 0.0305 0.06 0.057 0 0.084 0.099 0.058 0.052 0 0.2 0.1035 0.072 0.079 0 0.266 0.028 0.078 0.054 0 0.4045 0.046 0.061 0.064 0 0.515 0.0335 0.07 0.061 0 0.597 0.042 0.056 0.06 0 0.6495 0.0395 0.073 0.073 0 0.7615 0.046 0.067 0.066 0 0.557 0.1195 0.074 0.073 0 0.728 0.125 0.072 0.074 0 0.8185 0.1615 0.065 0.065 0 0.948 0.1525 0.074 0.079 0 0.936 0.2245 0.074 0.079 0 0.596 0.211 0.066 0.068 0 0.301 0.1765 0.062 0.061 0 0.1005 0.2595 0.077 0.083 0 0.0825 0.3375 0.083 0.091 0 0.0485 0.423 0.095 0.09 0 0.1875 0.4225 0.079 0.093 0 0.2515 0.4785 0.085 0.079 0 0.2805 0.398 0.079 0.086 0 0.2665 0.2955 0.071 0.073 0 0.325 0.2605 0.074 0.081 0 0.404 0.274 0.066 0.076 0 0.505 0.297 0.07 0.084 0 0.6015 0.36 0.093 0.098 0 0.9665 0.395 0.063 0.074 0 0.9215 0.461 0.071 0.078 0 0.8375 0.493 0.089 0.092 0 0.7395 0.5255 0.083 0.071 0 0.633 0.514 0.088 0.078 0 0.486 0.4405 0.078 0.077 0 0.509 0.525 0.088 0.086 0 0.369 0.562 0.08 0.08 0 0.267 0.5825 0.08 0.079 0 0.107 0.613 0.068 0.062 0 0.105 0.6785 0.076 0.065 0 0.1115 0.7365 0.071 0.063 0 0.0705 0.7725 0.085 0.077 0 0.051 0.85 0.076 0.074 0 0.273 0.6815 0.074 0.075 0 0.2135 0.787 0.075 0.072 0 0.1855 0.8645 0.065 0.065 0 0.1395 0.9095 0.067 0.073 0 0.2865 0.8365 0.061 0.067 0 0.347 0.839 0.06 0.064 0 0.3245 0.9345 0.053 0.057 0 0.367 0.902 0.076 0.07 0 0.434 0.8575 0.076 0.081 0 0.4305 0.772 0.079 0.08 0 0.4815 0.939 0.065 0.066 0 0.4165 0.688 0.067 0.062 0 0.4555 0.614 0.087 0.08 0 0.5645 0.645 0.081 0.084 0 0.5475 0.7435 0.075 0.071 0 0.527 0.8425 0.084 0.089 0 0.645 0.904 0.082 0.076 0 0.6925 0.83 0.081 0.082 0 0.668 0.721 0.078 0.074 0 0.644 0.5975 0.08 0.077 0 0.705 0.946 0.076 0.054 0 0.791 0.943 0.074 0.064 0 0.8255 0.8595 0.083 0.083 0 0.957 0.849 0.082 0.088 0 0.7635 0.7665 0.067 0.071 0 0.8225 0.7825 0.067 0.079 0 0.898 0.7595 0.09 0.087 0 0.9545 0.653 0.079 0.074 0 0.8765 0.657 0.071 0.066 0 0.797 0.6155 0.068 0.071 0 0.8825 0.583 0.063 0.06 0 0.9525 0.535 0.079 0.076
42%|████▏ | 204/486 [00:14<00:25, 11.20it/s]
0 0.9665 0.124 0.067 0.072 0 0.8115 0.06 0.067 0.07 0 0.869 0.187 0.068 0.074 0 0.6865 0.0735 0.061 0.055 0 0.7795 0.1665 0.079 0.077 0 0.7355 0.223 0.067 0.068 0 0.8625 0.394 0.087 0.076 0 0.9705 0.39 0.059 0.058 0 0.5895 0.031 0.081 0.06 0 0.412 0.1295 0.06 0.067 0 0.5245 0.157 0.073 0.07 0 0.613 0.2325 0.07 0.069 0 0.535 0.2525 0.074 0.073 0 0.5285 0.3505 0.067 0.067 0 0.4515 0.4285 0.075 0.077 0 0.2185 0.1965 0.061 0.059 0 0.24 0.2875 0.078 0.089 0 0.3275 0.351 0.079 0.078 0 0.2295 0.4705 0.077 0.077 0 0.073 0.5035 0.07 0.081 0 0.1825 0.5585 0.085 0.081 0 0.0335 0.5905 0.065 0.069 0 0.1175 0.6515 0.071 0.061 0 0.065 0.753 0.074 0.08 0 0.1225 0.9325 0.081 0.083 0 0.2105 0.9695 0.089 0.061 0 0.2755 0.883 0.079 0.082 0 0.588 0.952 0.096 0.086 0 0.649 0.8665 0.07 0.071 0 0.707 0.767 0.082 0.078 0 0.8055 0.8335 0.073 0.059 0 0.893 0.9055 0.074 0.079 0 0.8205 0.507 0.067 0.066 0 0.9065 0.9645 0.065 0.071 0 0.729 0.9665 0.086 0.067 0 0.8055 0.864 0.083 0.092 0 0.6455 0.837 0.083 0.084 0 0.969 0.773 0.062 0.08 0 0.947 0.693 0.08 0.072 0 0.8345 0.7205 0.079 0.087 0 0.846 0.644 0.08 0.078 0 0.886 0.6045 0.054 0.057 0 0.663 0.741 0.054 0.056 0 0.7385 0.695 0.075 0.066 0 0.7445 0.6135 0.081 0.075 0 0.787 0.523 0.088 0.08 0 0.827 0.438 0.084 0.09 0 0.888 0.3475 0.096 0.091 0 0.936 0.18 0.054 0.06 0 0.875 0.102 0.076 0.074 0 0.879 0.03 0.08 0.058 0 0.779 0.048 0.08 0.092 0 0.659 0.255 0.078 0.088 0 0.781 0.279 0.094 0.096 0 0.7375 0.3695 0.077 0.083 0 0.6965 0.4675 0.075 0.079 0 0.5705 0.2895 0.061 0.059 0 0.49 0.034 0.07 0.066 0 0.5365 0.1305 0.067 0.071 0 0.472 0.2295 0.086 0.087 0 0.3205 0.0555 0.075 0.075 0 0.271 0.1535 0.07 0.065 0 0.031 0.06 0.06 0.064 0 0.1805 0.2825 0.079 0.079 0 0.147 0.3845 0.066 0.069 0 0.03 0.5275 0.058 0.073 0 0.256 0.4465 0.082 0.089 0 0.441 0.408 0.076 0.08
42%|████▏ | 206/486 [00:14<00:29, 9.58it/s]
0 0.375 0.477 0.076 0.062 0 0.469 0.535 0.078 0.076 0 0.5675 0.581 0.091 0.082 0 0.6485 0.564 0.081 0.082 0 0.5655 0.6565 0.067 0.065 0 0.5875 0.779 0.059 0.068 0 0.5145 0.761 0.073 0.078 0 0.44 0.6435 0.08 0.085 0 0.4165 0.713 0.081 0.082 0 0.3965 0.806 0.069 0.066 0 0.358 0.9615 0.08 0.071 0 0.2535 0.876 0.079 0.074 0 0.275 0.7535 0.064 0.065 0 0.3015 0.657 0.067 0.068 0 0.341 0.5665 0.088 0.083 0 0.254 0.6 0.062 0.052 0 0.195 0.5575 0.086 0.071 0 0.159 0.5945 0.072 0.065 0 0.147 0.682 0.076 0.07 0 0.113 0.7815 0.068 0.069 0 0.773 0.9525 0.076 0.081 0 0.8665 0.9225 0.081 0.069 0 0.8325 0.831 0.073 0.076 0 0.815 0.746 0.08 0.076 0 0.8545 0.7 0.067 0.062 0 0.9745 0.544 0.051 0.058 0 0.573 0.958 0.08 0.078 0 0.4945 0.915 0.079 0.074 0 0.5175 0.837 0.073 0.07 0 0.691 0.784 0.068 0.064 0 0.5485 0.6895 0.069 0.063 0 0.435 0.708 0.088 0.084 0 0.6205 0.67 0.083 0.08 0 0.7515 0.68 0.077 0.078 0 0.828 0.6315 0.088 0.085 0 0.8075 0.5755 0.079 0.069 0 0.542 0.5635 0.08 0.085 0 0.6495 0.5515 0.065 0.067 0 0.828 0.408 0.078 0.07 0 0.941 0.3655 0.078 0.069 0 0.8405 0.308 0.085 0.078 0 0.738 0.3615 0.074 0.071 0 0.64 0.361 0.076 0.066 0 0.722 0.227 0.068 0.07 0 0.7975 0.1815 0.079 0.075 0 0.9645 0.15 0.071 0.076 0 0.885 0.1185 0.074 0.071 0 0.6975 0.1155 0.079 0.081 0 0.5995 0.1055 0.069 0.059 0 0.402 0.074 0.082 0.09 0 0.4085 0.163 0.087 0.078 0 0.492 0.222 0.098 0.09 0 0.5605 0.283 0.055 0.058 0 0.241 0.037 0.08 0.072 0 0.152 0.0515 0.088 0.089 0 0.049 0.1115 0.08 0.073 0 0.106 0.2015 0.082 0.079 0 0.309 0.117 0.08 0.078 0 0.248 0.1655 0.078 0.071 0 0.21 0.234 0.082 0.082 0 0.2055 0.301 0.079 0.07 0 0.3345 0.2895 0.097 0.087 0 0.434 0.3405 0.084 0.081 0 0.3185 0.374 0.087 0.084 0 0.255 0.4155 0.072 0.093 0 0.137 0.3575 0.088 0.079 0 0.1705 0.4225 0.067 0.059 0 0.1525 0.523 0.081 0.082 0 0.039 0.575 0.074 0.088 0 0.0975 0.6115 0.053 0.053 0 0.157 0.634 0.066 0.07 0 0.0295 0.7125 0.057 0.075 0 0.0955 0.7625 0.081 0.075 0 0.031 0.866 0.06 0.078 0 0.1045 0.8965 0.075 0.075 0 0.168 0.7855 0.062 0.073 0 0.2295 0.774 0.073 0.08 0 0.241 0.686 0.088 0.076 0 0.301 0.5905 0.088 0.077 0 0.3555 0.4735 0.065 0.061 0 0.292 0.929 0.086 0.076 0 0.4055 0.9655 0.071 0.063 0 0.086 0.057 0.088 0.084 0 0.2 0.035 0.066 0.066 0 0.2615 0.0605 0.067 0.071 0 0.0875 0.152 0.061 0.058 0 0.046 0.1705 0.068 0.077 0 0.1765 0.1215 0.071 0.067 0 0.205 0.177 0.074 0.074 0 0.3225 0.1365 0.071 0.077 0 0.3825 0.1065 0.067 0.067 0 0.158 0.2865 0.09 0.081 0 0.0775 0.32 0.081 0.08 0 0.147 0.403 0.058 0.064 0 0.0315 0.5045 0.061 0.081 0 0.091 0.57 0.07 0.072 0 0.029 0.6755 0.056 0.059 0 0.1835 0.605 0.069 0.066 0 0.304 0.6415 0.084 0.081 0 0.236 0.5 0.076 0.072 0 0.26 0.4385 0.078 0.073 0 0.3155 0.5315 0.075 0.081 0 0.3175 0.305 0.075 0.076 0 0.429 0.263 0.072 0.076 0 0.4995 0.313 0.093 0.092 0 0.4285 0.424 0.079 0.082 0 0.52 0.1555 0.072 0.077 0 0.584 0.2 0.082 0.082 0 0.5575 0.043 0.097 0.084 0 0.701 0.073 0.084 0.09 0 0.878 0.0265 0.084 0.051 0 0.968 0.09 0.064 0.072 0
43%|████▎ | 210/486 [00:14<00:24, 11.44it/s]
0.9435 0.172 0.091 0.078 0 0.8325 0.3665 0.075 0.077 0 0.627 0.3825 0.048 0.047 0 0.68 0.4475 0.074 0.067 0 0.7685 0.466 0.073 0.086 0 0.9605 0.5295 0.079 0.081 0 0.8635 0.651 0.091 0.088 0 0.892 0.7885 0.084 0.087 0 0.568 0.4725 0.086 0.087 0 0.6425 0.5255 0.081 0.073 0 0.4355 0.5825 0.095 0.089 0 0.5725 0.6975 0.069 0.075 0 0.709 0.7145 0.076 0.085 0 0.765 0.7525 0.078 0.085 0 0.5315 0.787 0.077 0.082 0 0.705 0.8685 0.076 0.081 0 0.4375 0.95 0.083 0.082 0 0.5505 0.9235 0.085 0.083 0 0.7345 0.9655 0.085 0.069 0 0.7835 0.8925 0.075 0.077 0 0.5345 0.889 0.091 0.082 0 0.4595 0.9415 0.075 0.079 0 0.2585 0.9445 0.059 0.061 0 0.175 0.939 0.06 0.074 0 0.0775 0.956 0.081 0.08 0 0.0435 0.873 0.075 0.078 0 0.2895 0.8665 0.071 0.077 0 0.176 0.8305 0.062 0.061 0 0.418 0.819 0.056 0.06 0 0.0665 0.5985 0.085 0.093 0 0.181 0.677 0.054 0.058 0 0.2755 0.7605 0.067 0.059 0 0.2815 0.688 0.077 0.076 0 0.5555 0.766 0.071 0.07 0 0.486 0.736 0.064 0.064 0 0.422 0.6605 0.092 0.079 0 0.533 0.6855 0.074 0.073 0 0.8375 0.756 0.059 0.058 0 0.762 0.726 0.06 0.056 0 0.6765 0.686 0.083 0.072 0 0.5605 0.61 0.059 0.06 0 0.473 0.5865 0.068 0.063 0 0.0675 0.4725 0.089 0.087 0 0.9215 0.6685 0.069 0.061 0 0.7135 0.618 0.065 0.054 0 0.5975 0.5765 0.067 0.063 0 0.514 0.5175 0.062 0.063 0 0.465 0.4925 0.056 0.071 0 0.3305 0.456 0.071 0.076 0 0.2485 0.4355 0.071 0.077 0 0.1635 0.352 0.059 0.072 0 0.2285 0.2905 0.073 0.069 0 0.325 0.2915 0.064 0.065 0 0.4275 0.319 0.083 0.086 0 0.5395 0.3205 0.055 0.057 0 0.578 0.4625 0.078 0.075 0 0.6035 0.3985 0.063 0.053 0 0.671 0.44 0.066 0.07 0 0.7835 0.4805 0.071 0.067 0 0.8385 0.408 0.083 0.074 0 0.918 0.4535 0.068 0.081 0 0.871 0.33 0.07 0.076 0 0.892 0.059 0.072 0.076 0 0.764 0.0405 0.08 0.079 0 0.4805 0.1955 0.067 0.071 0 0.461 0.089 0.062 0.064 0 0.3725 0.101 0.079 0.082 0 0.2235 0.202 0.075 0.068 0 0.1055 0.061 0.079 0.072 0 0.0245 0.078 0.045 0.064 0 0.1285 0.17 0.053 0.062 0 0.912 0.9695 0.072 0.057 0 0.9325 0.698 0.067 0.062 0 0.9715 0.519 0.057 0.074 0 0.8695 0.651 0.063 0.074 0 0.803 0.656 0.064 0.064 0 0.734 0.6135 0.076 0.075 0 0.707 0.8815 0.062 0.063 0 0.472 0.908 0.064 0.066 0 0.5945 0.809 0.063 0.07 0 0.5255 0.774 0.059 0.066 0 0.6645 0.694 0.069 0.068 0 0.807 0.4455 0.076 0.077 0 0.682 0.2495 0.086 0.083 0 0.559 0.277 0.078 0.078 0 0.484 0.265 0.064 0.072 0 0.1805 0.0915 0.067 0.071 0 0.1065 0.1785 0.071 0.067 0 0.029 0.238 0.054 0.084 0 0.179 0.2255 0.076 0.075 0 0.15 0.296 0.092 0.088 0 0.165 0.4075 0.066 0.071 0 0.4145 0.3815 0.061 0.063 0 0.3005 0.482 0.067 0.064 0 0.4365 0.5455 0.063 0.069 0 0.5685 0.5015 0.065 0.065 0 0.648 0.5345 0.062 0.065 0 0.2085 0.956 0.057 0.054 0 0.2755 0.974 0.067 0.052 0 0.0975 0.9105 0.081 0.083 0 0.246 0.7915 0.064 0.065 0 0.209 0.658 0.076 0.07 0 0.754 0.0765 0.072 0.081 0 0.6305 0.1965 0.099 0.107 0 0.488 0.1155 0.108 0.103 0 0.4245 0.069 0.083 0.076 0 0.326 0.0615 0.11 0.101 0 0.196 0.0955 0.082 0.077 0 0.043 0.1375 0.082 0.087 0 0.1215 0.2145 0.109 0.095 0 0.232 0.1625 0.126 0.105 0 0.2715 0.299 0.101 0.102 0 0.2725 0.4075 0.075 0.069 0 0.2615 0.5065 0.079 0.077 0 0.2825 0.579 0.097 0.074 0 0.1435 0.6035 0.093 0.087 0 0.1325 0.7105 0.071 0.075 0 0.2525 0.7005 0.085 0.083 0 0.133 0.8055 0.086 0.083 0 0.088 0.8645 0.112 0.091 0 0.8415 0.944 0.099 0.094 0 0.8685 0.8655 0.105 0.085 0 0.887 0.7865 0.092 0.087 0 0.963 0.861 0.074 0.096 0 0.8005 0.73 0.081 0.088 0 0.9085 0.6475 0.091 0.093 0 0.11 0.103 0.096 0.094 0 0.12 0.2395 0.088 0.081 0 0.218 0.2085 0.098 0.105 0 0.334 0.1255 0.088 0.081 0 0.4595 0.038 0.107 0.074 0 0.4745 0.148 0.099 0.098 0 0.8735 0.1455 0.071 0.071 0 0.955 0.2455 0.08 0.087 0 0.7725 0.276 0.091 0.084 0 0.58 0.291 0.064 0.068 0 0.462 0.346 0.092 0.09 0 0.289 0.3635 0.104 0.103 0 0.271 0.7465 0.09
44%|████▍ | 214/486 [00:14<00:17, 15.92it/s]
0.093 0 0.2835 0.963 0.087 0.062 0 0.4385 0.88 0.095 0.092 0 0.498 0.5925 0.09 0.087 0 0.7775 0.482 0.085 0.07 0 0.316 0.169 0.082 0.086 0 0.4305 0.0695 0.101 0.085 0 0.228 0.3425 0.108 0.109 0 0.138 0.5095 0.094 0.109 0 0.1895 0.625 0.105 0.104 0 0.302 0.471 0.098 0.096 0 0.147 0.8195 0.072 0.073 0 0.414 0.5665 0.086 0.083 0 0.5075 0.542 0.091 0.104 0 0.553 0.306 0.088 0.09 0 0.7525 0.178 0.089 0.104 0 0.87 0.2275 0.074 0.083 0 0.694 0.4405 0.102 0.099 0 0.6475 0.487 0.095 0.09 0 0.7395 0.5605 0.089 0.089 0 0.591 0.963 0.106 0.072 0 0.4345 0.856 0.093 0.086 0 0.0655 0.9305 0.099 0.097 0 0.1205 0.7385 0.085 0.087 0 0.212 0.839 0.072 0.078 0 0.419 0.8265 0.082 0.081 0 0.538 0.906 0.106 0.112 0 0.661 0.964 0.096 0.072 0 0.9565 0.918 0.087 0.1 0 0.8405 0.8595 0.089 0.081 0 0.7055 0.74 0.097 0.086 0 0.576 0.65 0.102 0.088 0 0.783 0.672 0.106 0.112 0 0.9055 0.7545 0.095 0.085 0 0.9275 0.6565 0.087 0.087 0 0.929 0.506 0.108 0.108 0 0.7775 0.46 0.099 0.106 0 0.6255 0.5165 0.091 0.081 0 0.2405 0.443 0.095 0.094 0 0.882 0.107 0.09 0.08 0 0.841 0.1745 0.092 0.081 0 0.7485 0.2625 0.097 0.089 0 0.6375 0.038 0.095 0.074 0 0.5055 0.0365 0.099 0.071 0 0.11 0.128 0.082 0.078 0 0.0735 0.961 0.093 0.074 0 0.034 0.8615 0.066 0.099 0 0.0955 0.829 0.089 0.094 0 0.1615 0.913 0.109 0.094 0 0.2415 0.8715 0.101 0.101 0 0.256 0.97 0.084 0.06 0 0.3495 0.9705 0.101 0.059 0 0.3355 0.8865 0.091 0.097 0 0.442 0.9385 0.116 0.099 0 0.4105 0.836 0.099 0.094 0 0.3125 0.75 0.081 0.072 0 0.196 0.759 0.088 0.08 0 0.111 0.704 0.094 0.094 0 0.183 0.627 0.084 0.082 0 0.1035 0.574 0.065 0.066 0 0.1685 0.5155 0.083 0.073 0 0.1395 0.441 0.085 0.072 0 0.1855 0.3785 0.061 0.059 0 0.1165 0.3225 0.099 0.089 0 0.1935 0.264 0.069 0.062 0 0.1915 0.1735 0.059 0.057 0 0.269 0.097 0.058 0.064 0 0.342 0.0775 0.074 0.063 0 0.461 0.1215 0.084 0.079 0 0.809 0.156 0.062 0.052 0 0.856 0.22 0.07 0.068 0 0.7805 0.493 0.069 0.066 0 0.9385 0.7005 0.063 0.069 0 0.967 0.793 0.066 0.082 0 0.884 0.8075 0.082 0.079 0 0.839 0.8545 0.084 0.083 0 0.8055 0.7435 0.073 0.063 0 0.7245 0.808 0.069 0.074 0 0.673 0.8665 0.09 0.085 0 0.759 0.937 0.1 0.094 0 0.867 0.939 0.09 0.08 0 0.9725 0.9125 0.055 0.077 0 0.039 0.08 0.072 0.088 0 0.291 0.0795 0.094 0.089 0 0.078 0.2755 0.076 0.073 0 0.1735 0.192 0.095 0.074 0 0.2655 0.174 0.087 0.08 0 0.338 0.1625 0.072 0.075 0 0.453 0.068 0.08 0.082 0 0.1415 0.3665 0.061 0.069 0 0.236 0.27 0.076 0.076 0 0.3445 0.3005 0.087 0.083 0 0.4155 0.2615 0.077 0.065 0 0.534 0.224 0.086 0.08 0 0.6025 0.054 0.071 0.072 0 0.733 0.0695 0.084 0.087 0 0.817 0.0395 0.074 0.077 0 0.8965 0.039 0.087 0.066 0 0.852 0.138 0.084 0.084 0 0.921 0.2305 0.076 0.075 0 0.704 0.166 0.088 0.07 0 0.731 0.243 0.108 0.09 0 0.784 0.3085 0.094 0.073 0 0.7795 0.3845 0.083 0.075 0 0.9655 0.343 0.069 0.09 0 0.9655 0.472 0.067 0.076 0 0.6205 0.2945 0.097 0.093 0 0.686 0.3865 0.092 0.093 0 0.527 0.3245 0.094 0.083 0 0.5885 0.386 0.083 0.08 0 0.6105 0.46 0.099 0.096 0 0.685 0.536 0.082 0.078 0 0.8195 0.5965 0.095 0.095 0 0.9135 0.65 0.099 0.098 0 0.9165 0.749 0.103 0.094 0 0.825 0.777 0.09 0.084 0 0.765 0.7005 0.094 0.099 0 0.649 0.691 0.074 0.07 0 0.601 0.5635 0.084 0.091 0 0.435 0.3495 0.096 0.087 0 0.501 0.427 0.084 0.088 0 0.4945 0.511 0.083 0.078 0 0.5205 0.605 0.107 0.092 0 0.5495 0.7035 0.105 0.097 0 0.711 0.851 0.06 0.058 0 0.58 0.859 0.064 0.076 0 0.5845 0.957 0.073 0.07 0 0.453 0.8695 0.092 0.079 0 0.434 0.787 0.096 0.084 0 0.3875 0.6595 0.091 0.091 0
44%|████▍ | 216/486 [00:15<00:18, 14.78it/s]
0.3835 0.742 0.101 0.074 0 0.436 0.575 0.08 0.078 0 0.3575 0.5585 0.083 0.085 0 0.42 0.4495 0.092 0.085 0 0.3315 0.453 0.077 0.082 0 0.2485 0.5775 0.079 0.075 0 0.29 0.661 0.094 0.094 0 0.07 0.4835 0.09 0.081 0 0.1135 0.5375 0.107 0.087 0 0.0345 0.605 0.067 0.09 0 0.0945 0.607 0.083 0.07 0 0.1725 0.592 0.081 0.08 0 0.196 0.6845 0.098 0.099 0 0.204 0.7835 0.084 0.085 0 0.0325 0.8085 0.063 0.071 0 0.108 0.821 0.088 0.084 0 0.242 0.87 0.096 0.094 0 0.193 0.9335 0.082 0.071 0 0.348 0.9155 0.086 0.077 0 0.3885 0.089 0.093 0.092 0 0.519 0.046 0.114 0.09 0 0.59 0.104 0.094 0.092 0 0.7905 0.0985 0.095 0.099 0 0.8855 0.1525 0.101 0.105 0 0.049 0.2585 0.096 0.097 0 0.1045 0.3285 0.077 0.073 0 0.146 0.2615 0.104 0.097 0 0.2685 0.2385 0.093 0.095 0 0.355 0.203 0.094 0.096 0 0.4295 0.191 0.101 0.094 0 0.3625 0.305 0.095 0.094 0 0.446 0.282 0.1 0.096 0 0.4885 0.345 0.079 0.066 0 0.5385 0.288 0.089 0.088 0 0.596 0.2125 0.094 0.087 0 0.63 0.287 0.11 0.092 0 0.6425 0.3625 0.075 0.069 0 0.7725 0.1865 0.079 0.079 0 0.739 0.27 0.09 0.086 0 0.8095 0.38 0.095 0.082 0 0.8665 0.287 0.105 0.112 0 0.9405 0.2445 0.079 0.065 0 0.313 0.5385 0.07 0.061 0 0.915 0.8145 0.1 0.103 0 0.87 0.7055 0.098 0.093 0 0.479 0.8365 0.114 0.115 0 0.0425 0.7735 0.083 0.113 0 0.24 0.749 0.064 0.068 0 0.2655 0.5305 0.075 0.081 0 0.581 0.5585 0.082 0.075 0 0.7335 0.5835 0.101 0.095 0 0.701 0.4975 0.08 0.071 0 0.5275 0.4435 0.087 0.091 0 0.908 0.3865 0.1 0.091 0 0.743 0.41 0.086 0.09 0 0.799 0.306 0.096 0.096 0 0.656 0.331 0.086 0.074 0 0.9125 0.1365 0.081 0.081 0 0.647 0.138 0.076 0.076 0 0.621 0.0575 0.108 0.101 0 0.4345 0.072 0.111 0.112 0 0.391 0.1855 0.074 0.079 0 0.405 0.2845 0.058 0.057 0 0.154 0.0685 0.06 0.061 0 0.193 0.9185 0.078 0.067 0 0.067 0.7985 0.104 0.087 0 0.0505 0.6845 0.075 0.065 0 0.152 0.6315 0.1 0.081 0 0.168 0.723 0.104 0.1 0 0.273 0.835 0.086 0.082 0 0.317 0.6295 0.094 0.075 0 0.261 0.531 0.1 0.096 0 0.3705 0.5595 0.081 0.075 0 0.373 0.4885 0.092 0.081 0 0.459 0.5125 0.104 0.101 0 0.432 0.6785 0.1 0.099 0 0.467 0.5915 0.076 0.067 0 0.539 0.468 0.096 0.086 0 0.54 0.674 0.094 0.088 0 0.57 0.751 0.108 0.09 0 0.6295 0.5055 0.095 0.089 0 0.6895 0.706 0.103 0.098 0 0.7895 0.79 0.075 0.072 0 0.7765 0.904 0.087 0.092 0 0.906 0.966 0.106 0.068 0 0.9115 0.5895 0.091 0.087 0 0.962 0.536 0.076 0.094 0 0.899 0.4645 0.108 0.093 0 0.7345 0.4925 0.095 0.081 0 0.7925 0.378 0.103 0.1 0 0.9575 0.346 0.085 0.102 0 0.8785 0.328 0.095 0.098 0 0.2315 0.1045 0.079 0.089 0 0.297 0.1165 0.078 0.077 0 0.363 0.2245 0.1 0.101 0 0.4245 0.317 0.091 0.096 0 0.376 0.0345 0.104 0.067 0 0.4245 0.1125 0.091 0.097 0 0.47 0.0435 0.08 0.085 0 0.493 0.1945 0.088 0.097 0 0.511 0.3195 0.086 0.103 0 0.668 0.036 0.086 0.07 0 0.6495 0.118 0.101 0.092 0 0.6275 0.194 0.089 0.084 0 0.594 0.262 0.102 0.098 0 0.767 0.057 0.084 0.084 0 0.7425 0.1325 0.087 0.095 0 0.681
45%|████▌ | 221/486 [00:15<00:17, 15.35it/s]
0.25 0.08 0.084 0 0.785 0.252 0.072 0.078 0 0.098 0.158 0.092 0.082 0 0.275 0.1645 0.082 0.083 0 0.953 0.1845 0.084 0.083 0 0.9575 0.272 0.075 0.064 0 0.8615 0.084 0.073 0.066 0 0.796 0.428 0.094 0.086 0 0.692 0.3325 0.096 0.093 0 0.9365 0.697 0.083 0.084 0 0.826 0.6265 0.084 0.085 0 0.6795 0.768 0.073 0.068 0 0.8205 0.8765 0.099 0.097 0 0.9575 0.9365 0.085 0.083 0 0.6855 0.9635 0.091 0.067 0 0.501 0.86 0.072 0.07 0 0.401 0.857 0.102 0.096 0 0.287 0.891 0.106 0.086 0 0.2185 0.815 0.093 0.092 0 0.049 0.8685 0.088 0.073 0 0.298 0.664 0.096 0.102 0 0.4035 0.729 0.089 0.088 0 0.399 0.6015 0.094 0.085 0 0.549 0.641 0.102 0.086 0 0.554 0.484 0.084 0.09 0 0.0815 0.0545 0.095 0.089 0 0.038 0.1365 0.074 0.115 0 0.129 0.2145 0.098 0.097 0 0.187 0.038 0.092 0.074 0 0.22 0.119 0.088 0.088 0 0.317 0.113 0.084 0.092 0 0.382 0.0445 0.102 0.075 0 0.4175 0.1185 0.107 0.087 0 0.331 0.2115 0.106 0.099 0 0.0435 0.311 0.077 0.09 0 0.0435 0.4 0.083 0.098 0 0.14 0.414 0.094 0.09 0 0.1615 0.3195 0.097 0.091 0 0.238 0.376 0.104 0.1 0 0.2355 0.48 0.099 0.102 0 0.3085 0.344 0.089 0.096 0 0.3565 0.4185 0.097 0.083 0 0.409 0.318 0.088 0.08 0 0.468 0.2055 0.082 0.089 0 0.521 0.12 0.08 0.08 0 0.591 0.077 0.092 0.092 0 0.6545 0.039 0.115 0.076 0 0.8525 0.039 0.085 0.076 0 0.9435 0.096 0.073 0.076 0 0.768 0.119 0.098 0.1 0 0.8715 0.161 0.099 0.096 0 0.885 0.2425 0.08 0.071 0 0.7465 0.2205 0.069 0.063 0 0.7995 0.285 0.091 0.1 0 0.7655 0.366 0.093 0.098 0 0.56 0.2315 0.086 0.085 0 0.6625 0.2995 0.093 0.087 0 0.7005 0.4195 0.083 0.087 0 0.4645 0.4365 0.097 0.103 0 0.5725 0.4565 0.089 0.081 0 0.649 0.4965 0.092 0.099 0 0.398 0.5175 0.094 0.087 0 0.2935 0.632 0.107 0.1 0 0.443 0.603 0.068 0.07 0 0.0375 0.759 0.073 0.09 0 0.1895 0.652 0.063 0.072 0 0.335 0.7145 0.09 0.091 0 0.5475 0.674 0.079 0.078 0 0.63 0.8475 0.088 0.075 0 0.3995 0.872 0.069 0.074 0 0.245 0.094 0.082 0.076 0 0.0935 0.1565 0.093 0.087 0 0.0815 0.3545 0.081 0.085 0 0.0385 0.498 0.075 0.092 0 0.111 0.4515 0.08 0.083 0 0.2425 0.407 0.097 0.08 0 0.2885 0.4735 0.091 0.085 0 0.3385 0.558 0.079 0.074 0 0.2665 0.648 0.093 0.08 0 0.3565 0.6945 0.081 0.079 0 0.16 0.799 0.09 0.08 0 0.28 0.8275 0.09 0.073 0 0.432 0.8815 0.1 0.091 0 0.4945 0.7565 0.093 0.089 0 0.691 0.0595 0.106 0.103 0 0.577 0.228 0.084 0.08 0 0.6845 0.2275 0.099 0.091 0 0.715 0.32 0.102 0.094 0 0.8645 0.1875 0.085 0.079 0 0.9615 0.3105 0.075 0.077 0 0.9145 0.439 0.099 0.09 0 0.6915 0.5365 0.085 0.093 0 0.708 0.634 0.094 0.092 0 0.849 0.592 0.094 0.088 0 0.805 0.7255 0.084 0.083 0 0.9305 0.7575 0.099 0.095 0 0.635 0.753 0.084 0.084 0 0.586 0.85 0.088 0.09
47%|████▋ | 226/486 [00:15<00:14, 18.23it/s]
0 0.854 0.898 0.102 0.094 0 0.7585 0.88 0.087 0.092 0 0.693 0.758 0.09 0.082 0 0.2925 0.8885 0.133 0.119 0 0.0505 0.921 0.095 0.108 0 0.0445 0.7065 0.087 0.097 0 0.13 0.7035 0.096 0.085 0 0.1705 0.8025 0.145 0.131 0 0.3075 0.7745 0.129 0.117 0 0.393 0.7285 0.112 0.123 0 0.3145 0.652 0.119 0.112 0 0.173 0.6195 0.13 0.115 0 0.042 0.609 0.08 0.086 0 0.11 0.5715 0.1 0.107 0 0.049 0.049 0.096 0.094 0 0.0815 0.1625 0.103 0.097 0 0.117 0.225 0.11 0.106 0 0.0745 0.3415 0.119 0.111 0 0.2345 0.276 0.105 0.106 0 0.18 0.3595 0.104 0.111 0 0.1975 0.4535 0.109 0.107 0 0.2655 0.3905 0.113 0.115 0 0.435 0.273 0.114 0.104 0 0.3765 0.36 0.131 0.128 0 0.3435 0.4545 0.123 0.105 0 0.479 0.383 0.1 0.118 0 0.423 0.5325 0.106 0.107 0 0.29 0.5615 0.112 0.105 0 0.555 0.301 0.078 0.074 0 0.638 0.1545 0.1 0.091 0 0.7975 0.0525 0.099 0.095 0 0.658 0.3235 0.108 0.111 0 0.6455 0.548 0.123 0.112 0 0.7465 0.5325 0.107 0.105 0 0.6195 0.681 0.105 0.102 0 0.5705 0.755 0.077 0.072 0 0.104 0.042 0.102 0.076 0 0.1975 0.096 0.103 0.106 0 0.1 0.251 0.098 0.1 0 0.0435 0.346 0.081 0.078 0 0.027 0.449 0.052 0.086 0 0.1065 0.438 0.077 0.084 0 0.2295 0.3475 0.103 0.097 0 0.2605 0.234 0.115 0.114 0 0.0595 0.5805 0.081 0.071 0 0.0885 0.775 0.093 0.092 0 0.1035 0.925 0.069 0.074 0 0.1195 0.666 0.063 0.06 0 0.1915 0.5545 0.051 0.051 0 0.2585 0.633 0.077 0.066 0 0.206 0.856 0.06 0.058 0 0.267 0.9645 0.076 0.063 0 0.336 0.488 0.084 0.076 0 0.348 0.37 0.094 0.09 0 0.368 0.703 0.098 0.084 0 0.2745 0.7705 0.077 0.079 0 0.431 0.9545 0.086 0.079 0 0.3895 0.848 0.049 0.052 0 0.586 0.8585 0.072 0.069 0 0.4775 0.6845 0.089 0.083 0 0.445 0.578 0.092 0.086 0 0.9105 0.029 0.077 0.056 0 0.833 0.034 0.082 0.066 0 0.835 0.1485 0.086 0.079 0 0.722 0.2625 0.078 0.075 0 0.8545 0.0255 0.077 0.049 0 0.8315 0.0475 0.073 0.059 0 0.8675 0.271 0.079 0.07 0 0.945 0.6275 0.11 0.113 0 0.9265 0.783 0.079 0.088 0 0.7605 0.8205 0.061 0.055 0 0.709 0.9545 0.124 0.091 0 0.7505 0.703 0.081 0.062 0 0.766 0.6105 0.14 0.127 0 0.63 0.5015 0.124 0.107 0 0.5995 0.592 0.131 0.1 0 0.5925 0.6845 0.135 0.109 0 0.427 0.5595 0.1 0.107 0 0.414 0.659 0.1 0.092 0 0.132 0.5995 0.102 0.097 0 0.1295 0.7405 0.101 0.109 0 0.214 0.8265 0.114 0.103 0 0.191 0.923 0.106 0.102 0 0.3835 0.762 0.125 0.114 0 0.5295 0.957 0.099 0.082 0 0.4065 0.842 0.103 0.082 0 0.4 0.0535 0.11 0.103 0 0.5615 0.0695 0.135 0.121 0 0.715 0.09 0.106 0.108 0 0.404 0.186 0.124 0.106 0 0.537 0.168 0.118 0.112 0 0.426 0.288 0.128 0.11 0 0.422 0.3885 0.1 0.083 0 0.5925 0.357 0.119 0.122 0 0.4285 0.473 0.107 0.092 0 0.439 0.5525 0.13 0.093 0 0.4255 0.6465 0.129 0.115 0 0.635 0.665 0.106 0.106 0 0.72 0.6805 0.09 0.109 0 0.802 0.6685 0.128 0.127 0 0.735 0.4625 0.104 0.099 0 0.882 0.4895 0.104 0.093 0 0.872 0.577 0.116 0.1 0 0.8905 0.6525 0.075 0.067 0 0.9355 0.6975 0.087 0.097 0 0.237 0.1905 0.12 0.119 0 0.3605 0.206 0.089 0.088 0 0.468 0.122 0.094 0.084 0 0.5855 0.153 0.097 0.094 0 0.5235 0.2075 0.127 0.107 0 0.5555 0.2975 0.113 0.093 0 0.63 0.381 0.112 0.104 0 0.402 0.3725 0.112 0.121 0 0.2635 0.437 0.109 0.106 0 0.1725 0.5025 0.105 0.097 0 0.214 0.562 0.106 0.096 0 0.04 0.692 0.078 0.106 0 0.1245 0.6845 0.119 0.115 0 0.216 0.665 0.112 0.128 0 0.2985 0.6375 0.073 0.079 0 0.42 0.645 0.102 0.114 0 0.5135 0.6355 0.101 0.095 0 0.6075 0.629 0.113 0.112 0 0.308 0.9505 0.11 0.091 0 0.685 0.9065 0.088 0.081 0 0.6185 0.9705 0.073 0.057 0 0.8375 0.594 0.091 0.098 0 0.949 0.3345 0.102 0.097 0 0.731 0.0565 0.11 0.111
47%|████▋ | 228/486 [00:15<00:14, 18.01it/s]
0 0.893 0.9175 0.1 0.099 0 0.05 0.7405 0.098 0.111 0 0.047 0.935 0.086 0.078 0 0.338 0.8105 0.094 0.109 0 0.259 0.7835 0.09 0.133 0 0.267 0.9115 0.106 0.095 0 0.2725 0.972 0.121 0.056 0 0.3875 0.6185 0.093 0.091 0 0.343 0.658 0.084 0.094 0 0.285 0.652 0.086 0.11 0 0.6065 0.708 0.095 0.1 0 0.5665 0.617 0.109 0.098 0 0.555 0.513 0.108 0.104 0 0.714 0.715 0.108 0.104 0 0.7915 0.6885 0.097 0.105 0 0.933 0.676 0.098 0.092 0 0.704 0.598 0.106 0.106 0 0.831 0.5845 0.114 0.097 0 0.959 0.545 0.082 0.096 0 0.902 0.489 0.094 0.1 0 0.8015 0.481 0.127 0.13 0 0.6775 0.4795 0.115 0.111 0 0.6725 0.3725 0.115 0.107 0 0.7885 0.366 0.115 0.098 0 0.6905 0.266 0.099 0.094 0 0.2955 0.1005 0.119 0.115 0 0.347 0.239 0.1 0.11 0 0.4405 0.228 0.093 0.096 0 0.582 0.24 0.088 0.1 0 0.7675 0.1695 0.103 0.095 0 0.907 0.0475 0.11 0.087 0 0.8785 0.137 0.107 0.102 0 0.095 0.1115 0.084 0.079 0 0.2005 0.1195 0.063 0.047 0 0.1225 0.477 0.083 0.078 0 0.0895 0.5425 0.113 0.105 0 0.068 0.674 0.108 0.11 0 0.141 0.6855 0.08 0.093 0 0.2455 0.5435 0.091 0.097 0 0.282 0.38 0.076 0.066 0 0.4035 0.243 0.069 0.064 0 0.3815 0.4525 0.073 0.073 0 0.436 0.551 0.084 0.08 0 0.3535 0.64 0.093 0.086 0 0.4865 0.673 0.091 0.084 0 0.357 0.8065 0.088 0.087 0 0.4085 0.747 0.103 0.102 0 0.512 0.8675 0.074 0.073 0 0.608 0.791 0.082 0.076 0 0.561 0.736 0.112 0.1 0 0.6025 0.458 0.087 0.084 0 0.6905 0.421 0.081 0.078 0 0.7525 0.426 0.065 0.064 0 0.815 0.393 0.086 0.084 0 0.9115 0.424 0.087 0.078 0 0.857 0.203 0.094 0.076 0 0.7845 0.731 0.059 0.06 0 0.693 0.9175 0.122 0.121 0 0.595 0.9205 0.058 0.059 0 0.3795 0.854 0.117 0.096 0 0.1265 0.85 0.095 0.09 0 0.4385 0.7255 0.127 0.101 0 0.4445 0.645 0.083 0.072 0 0.2055 0.407 0.125 0.122 0 0.0525 0.2315 0.103 0.079 0 0.2175 0.224 0.127 0.122 0 0.1025 0.0455 0.149 0.089 0 0.2255 0.0975 0.125 0.113 0 0.364 0.1175 0.106 0.109 0 0.4905 0.2705 0.119 0.127 0 0.563 0.1735 0.104 0.105 0 0.661 0.115 0.136 0.134 0 0.691 0.2825 0.108 0.101 0 0.745 0.1795 0.126 0.125 0 0.8595 0.1445 0.119 0.123 0 0.9175 0.2915 0.107 0.117 0 0.9345 0.5075 0.115 0.123 0 0.567 0.06 0.116 0.104 0 0.0435 0.1045 0.083 0.095 0 0.5525 0.258 0.105 0.104 0 0.2675 0.696 0.125 0.104 0 0.275 0.7705 0.108 0.085 0 0.245 0.8555 0.1 0.097 0 0.395 0.8 0.114 0.102 0 0.3975 0.6225 0.123 0.119 0 0.511 0.6855 0.114 0.125 0 0.499 0.5565 0.102 0.097 0 0.57 0.6135 0.114 0.109 0 0.2095 0.0585 0.091 0.093 0 0.129 0.14 0.078 0.072 0 0.345 0.0425 0.1 0.081 0 0.245 0.1595 0.098 0.097 0 0.361 0.1315 0.108 0.101 0 0.459 0.0635 0.104 0.099 0 0.282 0.2385 0.084 0.071 0 0.31 0.3245 0.102 0.085 0 0.405 0.2385 0.1 0.087 0 0.492 0.154 0.102 0.088 0 0.5915 0.1515
48%|████▊ | 232/486 [00:15<00:11, 22.80it/s]
0.093 0.083 0 0.7605 0.1075 0.095 0.089 0 0.513 0.2375 0.09 0.075 0 0.438 0.3285 0.1 0.095 0 0.548 0.3035 0.088 0.087 0 0.68 0.2465 0.088 0.095 0 0.348 0.419 0.1 0.1 0 0.2975 0.5105 0.095 0.097 0 0.291 0.6035 0.088 0.085 0 0.3745 0.577 0.101 0.096 0 0.396 0.493 0.076 0.086 0 0.491 0.4105 0.088 0.091 0 0.484 0.498 0.092 0.094 0 0.458 0.579 0.082 0.096 0 0.5815 0.4025 0.099 0.097 0 0.746 0.3945 0.1 0.095 0 0.7125 0.4645 0.101 0.085 0 0.402 0.678 0.094 0.086 0 0.224 0.7645 0.106 0.095 0 0.449 0.7265 0.092 0.077 0 0.5725 0.807 0.093 0.086 0 0.5845 0.693 0.093 0.082 0 0.8945 0.887 0.069 0.072 0 0.5295 0.957 0.089 0.078 0 0.0655 0.106 0.083 0.086 0 0.1275 0.154 0.075 0.084 0 0.1195 0.2535 0.085 0.087 0 0.17 0.2075 0.078 0.101 0 0.235 0.1895 0.074 0.071 0 0.318 0.167 0.08 0.076 0 0.197 0.337 0.09 0.082 0 0.189 0.4155 0.09 0.067 0 0.291 0.38 0.082 0.07 0 0.3695 0.266 0.075 0.076 0 0.4745 0.1535 0.087 0.089 0 0.558 0.116 0.084 0.078 0 0.5625 0.041 0.101 0.074 0 0.538 0.232 0.088 0.084 0 0.4815 0.331 0.107 0.092 0 0.59 0.334 0.096 0.098 0 0.652 0.2515 0.114 0.119 0 0.6905 0.134 0.095 0.08 0 0.725 0.0405 0.092 0.079 0 0.813 0.096 0.084 0.084 0 0.755 0.228 0.092 0.092 0 0.8155 0.1705 0.083 0.077 0 0.8145 0.32 0.101 0.086 0 0.7165 0.3345 0.095 0.103 0 0.6305 0.383 0.101 0.1 0 0.9655 0.2305 0.069 0.073 0 0.8305 0.4255 0.105 0.101 0 0.7405 0.4935 0.089 0.079 0 0.58 0.498 0.09 0.088 0 0.434 0.499 0.1 0.102 0 0.1485 0.699 0.067 0.074 0 0.181 0.603 0.054 0.062 0 0.1 0.845 0.07 0.072 0 0.3205 0.6835 0.101 0.101 0 0.441 0.676 0.098 0.086 0 0.6025 0.6815 0.089 0.071 0 0.563 0.763 0.082 0.082 0 0.7155 0.6855 0.099 0.093 0 0.6945 0.765 0.093 0.084 0 0.8375 0.652 0.095 0.096 0 0.8245 0.549 0.083 0.096 0 0.842 0.744 0.104 0.098 0 0.9155 0.6955 0.073 0.081 0 0.8665 0.8695 0.097 0.097 0 0.802 0.953 0.096 0.088 0 0.7755 0.83 0.087 0.096 0 0.9635 0.6155 0.073 0.105 0 0.157 0.0675 0.092 0.085 0 0.0445 0.122 0.069 0.076 0 0.038 0.2045 0.074 0.085 0 0.155 0.15 0.096 0.086 0 0.145 0.2335 0.09 0.085 0 0.2685 0.1285 0.087 0.087 0 0.041 0.4095 0.076 0.097 0 0.14 0.398 0.094 0.1 0 0.235 0.3095 0.082 0.085 0 0.351 0.166 0.094 0.112 0 0.336 0.3035 0.082 0.091 0 0.4195 0.095 0.089 0.088 0 0.4375 0.206 0.081 0.078 0 0.55 0.043 0.098 0.082 0 0.6205 0.109 0.085 0.08 0 0.718 0.141 0.084 0.082 0 0.8575 0.056 0.095 0.088 0 0.943 0.1295 0.098 0.093 0 0.9655 0.045 0.069 0.088 0 0.8705 0.1895 0.103 0.101 0 0.955 0.2675 0.082 0.103 0 0.7825 0.2485 0.099 0.095 0 0.94 0.433 0.092 0.086 0 0.872 0.385 0.072 0.068 0 0.799 0.3395 0.068 0.057 0 0.641 0.2495 0.108 0.105 0 0.602 0.343 0.098 0.098 0 0.517 0.344 0.076 0.066 0 0.444 0.385 0.098 0.09 0 0.5525 0.44 0.095 0.104 0 0.6385 0.423 0.071 0.07 0 0.726 0.4165 0.098 0.099 0 0.808 0.4315 0.072 0.081 0 0.6445 0.5185 0.103 0.087 0 0.74 0.514 0.09 0.086 0 0.838 0.5195 0.092 0.095 0 0.924 0.586 0.09 0.08 0 0.9165 0.668 0.093 0.082 0 0.738 0.5865 0.088 0.079 0 0.627 0.5975 0.072 0.063 0 0.1285 0.499 0.097 0.086 0 0.2315 0.503 0.087 0.088 0 0.3185 0.5 0.085 0.078 0 0.1655 0.585 0.091 0.088 0 0.292 0.59 0.088 0.092 0 0.2505 0.655 0.091 0.088 0 0.0815 0.677 0.075 0.074 0 0.189 0.736 0.092 0.084 0 0.33 0.738 0.088 0.1 0 0.4385 0.6735 0.087 0.085 0 0.524 0.6355 0.09 0.095 0 0.417 0.777 0.094 0.1 0 0.336 0.843 0.086 0.076 0 0.1135 0.9255 0.087 0.079 0 0.199 0.9365 0.088 0.085 0 0.382 0.896 0.09 0.088 0 0.3065 0.969 0.077 0.062 0 0.426 0.962 0.094 0.076 0 0.4725 0.841 0.093 0.098 0 0.5385 0.895 0.077 0.082 0 0.6115 0.877 0.097 0.088 0 0.7 0.8415 0.082 0.069 0 0.792 0.786 0.09 0.092 0 0.8795 0.7815 0.077 0.079 0
48%|████▊ | 235/486 [00:16<00:15, 16.30it/s]
0.958 0.8105 0.084 0.083 0 0.9475 0.1265 0.077 0.085 0 0.8565 0.062 0.083 0.086 0 0.758 0.1375 0.094 0.093 0 0.633 0.08 0.082 0.076 0 0.4915 0.123 0.085 0.074 0 0.2395 0.1665 0.081 0.081 0 0.1695 0.041 0.103 0.08 0 0.074 0.0925 0.1 0.099 0 0.044 0.2175 0.086 0.117 0 0.1735 0.2985 0.093 0.093 0 0.125 0.4205 0.082 0.083 0 0.036 0.413 0.062 0.062 0 0.066 0.5195 0.09 0.089 0 0.358 0.2925 0.092 0.085 0 0.409 0.377 0.102 0.098 0 0.2465 0.435 0.107 0.098 0 0.355 0.4905 0.104 0.101 0 0.4515 0.499 0.087 0.084 0 0.568 0.3575 0.068 0.061 0 0.56 0.509 0.072 0.07 0 0.6865 0.4825 0.065 0.063 0 0.6705 0.191 0.077 0.066 0 0.7735 0.2355 0.087 0.079 0 0.8085 0.177 0.075 0.066 0 0.7365 0.307 0.099 0.1 0 0.871 0.2695 0.09 0.081 0 0.8405 0.3575 0.083 0.081 0 0.9575 0.4265 0.081 0.099 0 0.8105 0.5085 0.087 0.073 0 0.951 0.5445 0.086 0.069 0 0.848 0.5965 0.09 0.089 0 0.9545 0.6275 0.079 0.095 0 0.153 0.5945 0.098 0.095 0 0.2595 0.5985 0.095 0.095 0 0.3575 0.6035 0.083 0.079 0 0.1415 0.6775 0.075 0.065 0 0.0635 0.8085 0.117 0.113 0 0.129 0.7635 0.108 0.103 0 0.2525 0.7225 0.071 0.059 0 0.1775 0.8455 0.081 0.079 0 0.5125 0.7185 0.069 0.071 0 0.596 0.7675 0.07 0.057 0 0.524 0.901 0.124 0.124 0 0.0795 0.9625 0.077 0.071 0 0.912 0.8295 0.1 0.099 0 0.085 0.198 0.1 0.098 0 0.1705 0.2605 0.099 0.095 0 0.049 0.393 0.092 0.102 0 0.1325 0.3445 0.109 0.107 0 0.1795 0.419 0.101 0.106 0 0.11 0.5355 0.102 0.091 0 0.163 0.6085 0.096 0.083 0 0.272 0.363 0.112 0.104 0 0.2805 0.189 0.079 0.08 0 0.3385 0.232 0.095 0.102 0 0.3435 0.042 0.119 0.082 0 0.4245 0.2025 0.095 0.097 0 0.4945 0.1895 0.079 0.087 0 0.562 0.036 0.108 0.07 0 0.614 0.094 0.122 0.1 0 0.5795 0.2055 0.093 0.099 0 0.6585 0.2115 0.081 0.093 0 0.723 0.22 0.08 0.098 0 0.7525 0.068 0.095 0.09 0 0.7905 0.2045 0.087 0.099 0 0.966 0.0655 0.068 0.097 0 0.8705 0.164 0.083 0.062 0 0.9465 0.1695 0.091 0.089 0 0.885 0.225 0.09 0.08 0 0.9645 0.2555 0.071 0.087 0 0.532 0.2795 0.09 0.077 0 0.516 0.352 0.096 0.09 0 0.293 0.5625 0.066 0.061 0 0.373 0.553 0.08 0.07 0 0.463 0.548 0.092 0.086 0 0.519 0.4885 0.088 0.091 0 0.544 0.566 0.072 0.066 0 0.6365 0.5605 0.085 0.093 0 0.7115 0.504 0.095 0.094 0 0.7835 0.383 0.097 0.086 0 0.8735 0.415 0.083 0.094 0 0.7395 0.5885 0.079 0.079 0 0.816 0.5875 0.078 0.087 0 0.8985 0.5525 0.083 0.081 0 0.061 0.091 0.102 0.096 0 0.178 0.1195 0.116 0.109 0 0.255 0.04 0.108 0.078 0 0.3035 0.1045 0.093 0.085 0 0.0525 0.232 0.091 0.116 0 0.117 0.2215 0.07 0.095 0 0.1765 0.2535 0.109 0.111 0 0.312 0.201 0.106 0.1 0 0.3675 0.261 0.071 0.074 0 0.454 0.1845 0.106 0.089 0 0.571 0.2165 0.11 0.105 0 0.671 0.189 0.092 0.088 0 0.7425 0.15 0.101 0.096 0 0.8095 0.242 0.101 0.106 0 0.8855 0.2475 0.087 0.095 0 0.9425 0.249 0.097 0.106 0 0.8835 0.339 0.113 0.102 0 0.894 0.435 0.098 0.092 0 0.9495 0.516 0.101 0.108 0 0.0545 0.3905 0.107 0.109 0 0.1575 0.3765 0.093 0.095 0 0.2815 0.4095 0.091 0.097 0 0.3725 0.371 0.079 0.088 0 0.4805 0.3665 0.109 0.109 0 0.662 0.3085 0.092 0.097 0 0.614 0.3845 0.104 0.097 0 0.7325 0.425 0.101 0.104 0 0.758 0.34 0.088 0.088 0 0.4375 0.451 0.121 0.112 0 0.038 0.575 0.074 0.098 0 0.114
50%|████▉ | 241/486 [00:16<00:12, 19.91it/s]
0.522 0.104 0.1 0 0.139 0.6345 0.102 0.099 0 0.194 0.5775 0.092 0.091 0 0.2815 0.5355 0.097 0.085 0 0.341 0.6075 0.086 0.073 0 0.391 0.5425 0.082 0.073 0 0.4255 0.5955 0.093 0.095 0 0.4835 0.53 0.097 0.11 0 0.5605 0.529 0.079 0.08 0 0.8515 0.612 0.087 0.088 0 0.7835 0.523 0.083 0.08 0 0.7815 0.583 0.105 0.094 0 0.6545 0.9225 0.109 0.097 0 0.5525 0.9575 0.081 0.079 0 0.411 0.908 0.086 0.086 0 0.31 0.951 0.09 0.076 0 0.0425 0.2205 0.081 0.083 0 0.234 0.1565 0.096 0.087 0 0.491 0.2115 0.116 0.105 0 0.576 0.1855 0.068 0.073 0 0.8125 0.043 0.115 0.076 0 0.687 0.1475 0.1 0.091 0 0.663 0.2395 0.092 0.081 0 0.718 0.3215 0.06 0.073 0 0.323 0.5305 0.102 0.095 0 0.5045 0.5655 0.075 0.069 0 0.1845 0.7195 0.125 0.113 0 0.292 0.763 0.098 0.094 0 0.4085 0.724 0.103 0.096 0 0.309 0.857 0.098 0.09 0 0.324 0.9595 0.094 0.075 0 0.3765 0.9225 0.083 0.081 0 0.485 0.926 0.09 0.084 0 0.703 0.965 0.108 0.066 0 0.741 0.814 0.086 0.092 0 0.8625 0.626 0.123 0.118 0 0.1435 0.2575 0.129 0.135 0 0.0605 0.3455 0.113 0.125 0 0.068 0.6 0.116 0.114 0 0.1265 0.528 0.071 0.058 0 0.226 0.4595 0.08 0.081 0 0.28 0.3195 0.068 0.063 0 0.495 0.205 0.09 0.086 0 0.753 0.0465 0.122 0.089 0 0.545 0.4625 0.124 0.113 0 0.246 0.7075 0.122 0.127 0 0.459 0.681 0.12 0.118 0 0.1565 0.8825 0.121 0.131 0 0.385 0.897 0.134 0.124 0 0.515 0.9245 0.126 0.123 0 0.6395 0.765 0.093 0.088 0 0.863 0.5565 0.104 0.103 0 0.9525 0.481 0.085 0.074 0 0.6375 0.0445 0.111 0.087 0 0.539 0.078 0.084 0.092 0 0.723 0.173 0.106 0.102 0 0.5055 0.181 0.063 0.072 0 0.3555 0.037 0.095 0.072 0 0.2175 0.0755 0.117 0.107 0 0.073 0.2045 0.082 0.081 0 0.221 0.211 0.062 0.056 0 0.368 0.193 0.102 0.082 0 0.477 0.313 0.084 0.078 0 0.5495 0.3035 0.073 0.079 0 0.5435 0.4245 0.107 0.101 0 0.661 0.4165 0.104 0.099 0 0.6565 0.492 0.071 0.062 0 0.7475 0.499 0.103 0.1 0 0.6265 0.589 0.111 0.112 0 0.556 0.694 0.106 0.096 0 0.328 0.524 0.088 0.082 0 0.1975 0.606 0.097 0.1 0 0.163 0.7175 0.102 0.091 0 0.1105 0.2345 0.083 0.075 0 0.2455 0.232 0.101 0.092 0 0.258 0.3225 0.102 0.089 0 0.221 0.5 0.092 0.086 0 0.3345 0.5055 0.075 0.073 0 0.413 0.382 0.068 0.066 0 0.5175 0.4565 0.095 0.099 0 0.348 0.8975 0.092 0.093 0 0.7335 0.859 0.081 0.084 0 0.9525 0.9365 0.075 0.079 0 0.528 0.0535 0.13 0.105 0 0.4975 0.1615 0.101 0.123 0 0.665 0.0495 0.104 0.097 0 0.7565 0.0785 0.105 0.105 0 0.7055 0.1555 0.131 0.113 0 0.84 0.1405 0.106 0.115 0 0.9055 0.2105 0.095 0.131 0 0.0275 0.0355 0.053 0.065 0 0.0435 0.1515 0.085 0.107 0 0.1825 0.1475 0.077 0.073 0 0.195 0.2195 0.106 0.095 0 0.087 0.246 0.092 0.104 0 0.077 0.3685 0.1 0.109 0 0.1325 0.287 0.097 0.096 0 0.157 0.426 0.094 0.084 0 0.6055 0.355 0.119 0.11 0 0.4865 0.4835 0.091 0.085 0 0.5225 0.5665 0.093 0.095 0 0.6325 0.59 0.097 0.098 0 0.856 0.507 0.106 0.09 0 0.959 0.701 0.082 0.11 0 0.8605 0.741 0.103 0.094 0 0.0505 0.8695 0.095 0.105 0 0.17 0.957 0.108 0.086
50%|█████ | 244/486 [00:16<00:12, 19.49it/s]
0 0.884 0.073 0.068 0.062 0 0.9245 0.169 0.077 0.074 0 0.886 0.3235 0.078 0.079 0 0.7575 0.138 0.109 0.104 0 0.5695 0.095 0.089 0.074 0 0.4685 0.1095 0.081 0.085 0 0.3505 0.1535 0.091 0.079 0 0.6755 0.1795 0.075 0.069 0 0.377 0.333 0.088 0.094 0 0.548 0.314 0.074 0.08 0 0.765 0.2755 0.068 0.065 0 0.2475 0.354 0.065 0.07 0 0.304 0.3005 0.058 0.063 0 0.2285 0.2545 0.081 0.077 0 0.4095 0.4305 0.077 0.067 0 0.2895 0.5225 0.075 0.065 0 0.439 0.4955 0.102 0.091 0 0.3695 0.567 0.087 0.09 0 0.523 0.5385 0.09 0.091 0 0.4555 0.6035 0.087 0.083 0 0.346 0.6875 0.072 0.073 0 0.438 0.683 0.088 0.086 0 0.5345 0.6425 0.081 0.085 0 0.597 0.608 0.09 0.104 0 0.644 0.3935 0.092 0.089 0 0.6195 0.496 0.097 0.096 0 0.7325 0.399 0.095 0.098 0 0.7105 0.56 0.093 0.104 0 0.7915 0.564 0.085 0.096 0 0.8575 0.6305 0.095 0.101 0 0.9095 0.4575 0.079 0.071 0 0.947 0.583 0.068 0.072 0 0.46 0.761 0.082 0.078 0 0.653 0.6595 0.084 0.081 0 0.638 0.738 0.068 0.072 0 0.858 0.7955 0.088 0.087 0 0.7735 0.8145 0.091 0.085 0 0.6705 0.8235 0.087 0.085 0 0.521 0.8625 0.086 0.077 0 0.559 0.9455 0.092 0.087 0 0.6615 0.9105 0.093 0.089 0 0.7585 0.911 0.097 0.092 0 0.896 0.879 0.084 0.078 0 0.1675 0.253 0.095 0.088 0 0.269 0.251 0.098 0.094 0 0.224 0.3395 0.086 0.089 0 0.2905 0.3805 0.095 0.085 0 0.0845 0.579 0.087 0.102 0 0.265 0.5495 0.102 0.103 0 0.081 0.7015 0.09 0.079 0 0.2075 0.731 0.095 0.086 0 0.3815 0.622 0.087 0.09 0 0.3975 0.506 0.081 0.068 0 0.528 0.562 0.092 0.088 0 0.6745 0.4785 0.107 0.099 0 0.732 0.3935 0.108 0.101 0 0.9515 0.605 0.097 0.11 0 0.12 0.036 0.082 0.07 0 0.277 0.073 0.098 0.088 0 0.163 0.1075 0.098 0.087 0 0.351 0.293 0.1 0.1 0 0.334 0.3675 0.092 0.079 0 0.255 0.415 0.084 0.078 0 0.424 0.361 0.088 0.086 0 0.0825 0.359 0.079 0.082 0 0.536 0.315 0.1 0.1 0 0.623 0.275 0.086 0.086 0 0.6615 0.3235 0.073 0.061 0 0.722 0.2965 0.088 0.079 0 0.699 0.189 0.096 0.08 0 0.808 0.231 0.106 0.1 0 0.7655 0.0745 0.095 0.083 0 0.8715 0.102 0.091 0.094 0 0.4535 0.476 0.093 0.09 0 0.3345 0.5895 0.083 0.085 0 0.303 0.697 0.108 0.108 0 0.233 0.8565 0.1 0.089 0 0.359 0.839 0.1 0.094 0 0.4855 0.845 0.099 0.104 0 0.493 0.57 0.08 0.076 0 0.549 0.651 0.09 0.082 0 0.676 0.8515 0.068 0.083 0 0.825 0.7085 0.1 0.097 0 0.731 0.4935 0.068 0.067 0 0.599 0.0595 0.09 0.081 0 0.471 0.039 0.094 0.076 0 0.442 0.155 0.092 0.086 0 0.2205 0.1915 0.085 0.089 0 0.0455 0.2875 0.089 0.121 0 0.5745 0.173 0.115 0.114 0 0.4635 0.3095 0.121 0.125 0 0.375 0.428 0.124 0.114 0 0.3795 0.3295 0.117 0.105 0 0.546 0.505 0.11 0.106 0 0.613 0.38 0.078 0.082 0 0.857 0.5075 0.096 0.101 0 0.107 0.707 0.118 0.12 0 0.584 0.711 0.106 0.102 0 0.6795 0.706 0.109 0.108 0 0.531 0.847 0.1 0.094 0 0.6105 0.883 0.117 0.118 0 0.7205 0.8905 0.101 0.111 0 0.952 0.9275 0.096 0.099 0 0.0495 0.957 0.095 0.086 0 0.124 0.8815 0.114 0.109 0 0.0525 0.7445 0.103 0.113 0 0.086 0.511 0.122 0.104 0 0.206 0.568 0.116 0.094 0 0.321 0.5345 0.12 0.113 0 0.2425 0.926 0.113 0.108 0 0.4675 0.94 0.101 0.102 0 0.3255 0.8025 0.089 0.081
52%|█████▏ | 251/486 [00:16<00:10, 21.71it/s]
0 0.6115 0.957 0.131 0.084 0 0.834 0.935 0.124 0.116 0 0.6695 0.809 0.125 0.12 0 0.1335 0.298 0.095 0.094 0 0.297 0.2625 0.07 0.061 0 0.8905 0.6135 0.107 0.109 0 0.894 0.0785 0.094 0.099 0 0.786 0.1515 0.084 0.083 0 0.8575 0.27 0.099 0.084 0 0.49 0.0775 0.114 0.103 0 0.3715 0.063 0.095 0.09 0 0.642 0.1965 0.058 0.059 0 0.324 0.269 0.118 0.118 0 0.4035 0.4175 0.083 0.083 0 0.0815 0.5515 0.065 0.079 0 0.5585 0.3055 0.087 0.079 0 0.542 0.419 0.056 0.058 0 0.632 0.4455 0.1 0.091 0 0.7185 0.3575 0.085 0.089 0 0.535 0.577 0.102 0.102 0 0.715 0.5815 0.092 0.085 0 0.8035 0.5695 0.081 0.083 0 0.637 0.702 0.1 0.09 0 0.956 0.1115 0.088 0.109 0 0.8825 0.082 0.077 0.086 0 0.804 0.0895 0.094 0.093 0 0.85 0.196 0.104 0.106 0 0.657 0.0855 0.082 0.093 0 0.7365 0.154 0.071 0.074 0 0.9635 0.2875 0.065 0.081 0 0.945 0.3885 0.068 0.075 0 0.355 0.0735 0.094 0.095 0 0.5595 0.2115 0.071 0.065 0 0.6415 0.248 0.079 0.074 0 0.75 0.244 0.072 0.084 0 0.8425 0.297 0.081 0.078 0 0.764 0.365 0.078 0.082 0 0.576 0.3935 0.1 0.099 0 0.3685 0.47 0.079 0.078 0 0.457 0.4765 0.092 0.091 0 0.4145 0.563 0.073 0.07 0 0.47 0.6245 0.084 0.081 0 0.7185 0.5905 0.067 0.067 0 0.8355 0.588 0.097 0.092 0 0.85 0.682 0.08 0.084 0 0.85 0.764 0.098 0.098 0 0.836 0.839 0.07 0.066 0 0.95 0.831 0.1 0.1 0 0.923 0.914 0.106 0.096 0 0.833 0.932 0.098 0.098 0 0.667 0.9305 0.092 0.089 0 0.7075 0.8585 0.087 0.075 0 0.7075 0.782 0.091 0.082 0 0.587 0.7215 0.084 0.085 0 0.573 0.82 0.092 0.096 0 0.572 0.9555 0.086 0.089 0 0.4665 0.87 0.077 0.082 0 0.481 0.7125 0.076 0.071 0 0.357 0.737 0.106 0.106 0 0.206 0.7525 0.09 0.095 0 0.2905 0.81 0.087 0.084 0 0.236 0.885 0.082 0.076 0 0.0865 0.332 0.093 0.092 0 0.175 0.1645 0.098 0.095 0 0.157 0.4585 0.082 0.085 0 0.2355 0.5155 0.099 0.095 0 0.1185 0.618 0.097 0.094 0 0.422 0.4095 0.08 0.073 0 0.477 0.415 0.07 0.068 0 0.5415 0.523 0.087 0.088 0 0.453 0.6445 0.084 0.077 0 0.3125 0.669 0.097 0.084 0 0.117 0.783 0.1 0.09 0 0.2625 0.886 0.091 0.092 0 0.4285 0.8185 0.087 0.085 0 0.428 0.9435 0.092 0.095 0 0.5565 0.7195 0.085 0.079 0 0.628 0.783 0.076 0.068 0 0.6805 0.941 0.101 0.1 0 0.7505 0.7665 0.071 0.061 0 0.6555 0.6535 0.087 0.085 0 0.737 0.5795 0.084 0.073 0 0.838 0.5985 0.1 0.089 0 0.899 0.679 0.07 0.066 0 0.747 0.401 0.094 0.088 0 0.6205 0.1485 0.093 0.099 0 0.9305 0.093 0.109 0.104 0 0.5915 0.093 0.115 0.1 0 0.9055 0.038 0.081 0.074 0 0.9395 0.2485 0.087 0.089 0 0.1475 0.331 0.113 0.098 0 0.284 0.426 0.1 0.094 0 0.3495 0.325 0.107 0.098 0 0.178 0.6825 0.12 0.113 0 0.123 0.811 0.114 0.102 0 0.429 0.765 0.104 0.094 0 0.487 0.956 0.11 0.088 0 0.6675 0.7625 0.117 0.121 0 0.7475 0.9135 0.113 0.109 0 0.9515 0.781 0.097 0.12 0 0.883 0.492 0.102 0.118 0 0.5855 0.6205 0.111 0.103 0 0.6155 0.5605 0.111 0.103 0 0.093 0.0665 0.12 0.111 0 0.2035 0.0445 0.117 0.087
52%|█████▏ | 254/486 [00:16<00:10, 22.77it/s]
0 0.159 0.1385 0.124 0.113 0 0.0385 0.175 0.075 0.086 0 0.2615 0.1945 0.105 0.105 0 0.0745 0.318 0.125 0.118 0 0.143 0.4045 0.116 0.113 0 0.2325 0.38 0.109 0.11 0 0.3905 0.346 0.125 0.128 0 0.493 0.32 0.106 0.114 0 0.5505 0.1635 0.127 0.127 0 0.648 0.19 0.088 0.086 0 0.1505 0.606 0.091 0.088 0 0.245 0.529 0.104 0.102 0 0.3375 0.4965 0.107 0.105 0 0.4225 0.4965 0.077 0.079 0 0.507 0.495 0.1 0.1 0 0.583 0.5615 0.118 0.109 0 0.5785 0.659 0.107 0.098 0 0.4905 0.691 0.105 0.102 0 0.4305 0.654 0.095 0.1 0 0.3505 0.6605 0.099 0.095 0 0.375 0.7785 0.134 0.119 0 0.1465 0.823 0.121 0.116 0 0.5095 0.8065 0.119 0.123 0 0.6125 0.807 0.107 0.11 0 0.871 0.9445 0.098 0.095 0 0.046 0.179 0.082 0.094 0 0.1505 0.189 0.073 0.076 0 0.1095 0.392 0.089 0.094 0 0.0545 0.5055 0.101 0.117 0 0.042 0.823 0.076 0.096 0 0.098 0.662 0.104 0.11 0 0.173 0.6055 0.086 0.087 0 0.19 0.4375 0.06 0.063 0 0.2645 0.532 0.089 0.092 0 0.3465 0.4385 0.089 0.077 0 0.3625 0.513 0.099 0.084 0 0.4505 0.4435 0.093 0.093 0 0.5415 0.45 0.091 0.088 0 0.312 0.112 0.064 0.068 0 0.3835 0.0335 0.071 0.059 0 0.7115 0.1235 0.117 0.117 0 0.863 0.087 0.112 0.116 0 0.8285 0.3135 0.099 0.105 0 0.727 0.447 0.084 0.086 0 0.9475 0.4295 0.105 0.113 0 0.9365 0.528 0.119 0.126 0 0.4955 0.8085 0.101 0.093 0 0.632 0.8775 0.094 0.101 0 0.595 0.756 0.084 0.08 0 0.2565 0.823 0.073 0.068 0 0.3015 0.068 0.081 0.086 0 0.3935 0.0905 0.105 0.103 0 0.4065 0.2595 0.093 0.105 0 0.5265 0.2155 0.085 0.085 0 0.3635 0.348 0.095 0.094 0 0.4925 0.3925 0.091 0.099 0 0.3905 0.45 0.111 0.096 0 0.2945 0.477 0.075 0.078 0 0.2775 0.5585 0.093 0.091 0 0.2305 0.863 0.095 0.092 0 0.4165 0.8375 0.093 0.085 0 0.437 0.6405 0.088 0.079 0 0.506 0.5695 0.09 0.077 0 0.7255 0.5185 0.091 0.087 0 0.767 0.4075 0.096 0.085 0 0.664 0.9035 0.074 0.065 0 0.768 0.871 0.084 0.072 0 0.0575 0.081 0.067 0.07 0 0.223 0.1735 0.106 0.101 0 0.0965 0.488 0.093 0.088 0 0.4465 0.4285 0.123 0.131 0 0.5385 0.5025 0.081 0.083 0 0.164 0.624 0.102 0.1 0 0.2485 0.627 0.077 0.078 0 0.3145 0.607 0.099 0.106 0 0.141 0.8255 0.08 0.085 0 0.1615 0.7535 0.095 0.087 0 0.491 0.929 0.088 0.096 0 0.4615 0.857 0.091 0.082 0 0.5135 0.777 0.097 0.106 0 0.592 0.8015 0.06 0.069 0 0.9535 0.3235 0.093 0.105 0 0.954 0.7045 0.088 0.093 0 0.855 0.692 0.092 0.096 0 0.4285 0.0415 0.085 0.075 0 0.522 0.1085 0.104 0.103 0 0.627 0.0625 0.086 0.077 0 0.7275 0.0435 0.075 0.069 0 0.2995 0.0955 0.089 0.089 0 0.4155 0.17 0.097 0.098 0 0.329 0.209 0.09 0.082 0 0.2295 0.2755 0.079 0.087 0 0.115 0.269 0.09 0.084 0 0.117 0.378 0.076 0.068 0 0.453 0.2545 0.136 0.117 0 0.491 0.2995 0.088 0.083 0 0.6515 0.2465 0.097 0.095 0 0.7545 0.2475 0.099 0.099 0 0.4205 0.373 0.079 0.084 0 0.586 0.3305 0.082 0.081 0 0.5155 0.4385 0.097 0.101 0 0.4415 0.5195 0.099 0.087 0 0.3615 0.607 0.095 0.1 0 0.5095 0.613 0.095 0.09 0 0.57 0.5395 0.096 0.093 0 0.7845 0.501 0.069 0.082 0 0.054 0.742 0.098 0.096 0 0.098 0.8725 0.102 0.103 0 0.184 0.8935 0.08 0.085 0 0.2545 0.7605
53%|█████▎ | 257/486 [00:17<00:09, 24.30it/s]
0.095 0.089 0 0.274 0.856 0.096 0.082 0 0.281 0.952 0.13 0.096 0 0.4165 0.97 0.097 0.06 0 0.4045 0.8685 0.105 0.095 0 0.382 0.7745 0.088 0.077 0 0.54 0.7255 0.124 0.129 0 0.577 0.8675 0.082 0.069 0 0.5425 0.9655 0.101 0.069 0 0.675 0.9245 0.1 0.101 0 0.6695 0.791 0.089 0.078 0 0.6815 0.688 0.079 0.084 0 0.7765 0.801 0.083 0.09 0 0.8045 0.9275 0.095 0.089 0 0.043 0.0345 0.084 0.067 0 0.045 0.283 0.076 0.082 0 0.129 0.335 0.092 0.088 0 0.171 0.2175 0.084 0.079 0 0.1555 0.4585 0.089 0.093 0 0.243 0.4365 0.088 0.077 0 0.3375 0.358 0.083 0.088 0 0.501 0.0705 0.084 0.083 0 0.5835 0.048 0.075 0.07 0 0.649 0.095 0.094 0.09 0 0.5595 0.173 0.087 0.086 0 0.679 0.1785 0.094 0.077 0 0.5095 0.2635 0.089 0.097 0 0.4585 0.3215 0.093 0.093 0 0.6155 0.273 0.091 0.09 0 0.5615 0.365 0.085 0.096 0 0.7855 0.19 0.095 0.09 0 0.6955 0.3595 0.093 0.095 0 0.791 0.312 0.092 0.1 0 0.895 0.239 0.064 0.074 0 0.9315 0.15 0.089 0.086 0 0.883 0.049 0.086 0.084 0 0.41 0.4285 0.094 0.095 0 0.5025 0.477 0.113 0.102 0 0.6215 0.4745 0.089 0.083 0 0.703 0.4535 0.096 0.089 0 0.7855 0.4995 0.089 0.087 0 0.8905 0.53 0.093 0.088 0 0.953 0.607 0.088 0.09 0 0.828 0.618 0.1 0.098 0 0.906 0.7595 0.074 0.067 0 0.8075 0.8205 0.083 0.087 0 0.751 0.8735 0.078 0.081 0 0.808 0.9275 0.086 0.071 0 0.6405 0.8545 0.113 0.101 0 0.6315 0.7675 0.087 0.077 0 0.5445 0.65 0.103 0.098 0 0.6435 0.6395 0.077 0.083 0 0.5645 0.731 0.091 0.082 0 0.5445 0.8115 0.085 0.093 0 0.3905 0.5295 0.083 0.071 0 0.4635 0.589 0.107 0.106 0 0.3375 0.619 0.087 0.084 0 0.4175 0.6365 0.091 0.097 0 0.453 0.7365 0.096 0.089 0 0.3725 0.732 0.083 0.092 0 0.449 0.827 0.098 0.092 0 0.472 0.917 0.094 0.084 0 0.354 0.825 0.098 0.104 0 0.286 0.786 0.088 0.096 0 0.144 0.5675 0.096 0.091 0 0.0625 0.6305 0.067 0.077 0 0.163 0.719 0.082 0.074 0 0.0865 0.8295 0.089 0.097 0 0.2445 0.843 0.117 0.104 0 0.3045 0.9265 0.091 0.089 0 0.176 0.9145 0.104 0.105 0 0.081 0.9335 0.076 0.069 0 0.1345 0.049 0.117 0.096 0 0.1285 0.1705 0.087 0.095 0 0.203 0.124 0.082 0.096 0 0.1845 0.2575 0.081 0.085 0 0.468 0.0515 0.132 0.101 0 0.6735 0.0985 0.073 0.067 0 0.778 0.2885 0.124 0.123 0 0.881 0.3785 0.102 0.095 0 0.8745 0.5125 0.107 0.101 0 0.9525 0.635 0.091 0.116 0 0.8285 0.658 0.101 0.096 0 0.6465 0.467 0.105 0.12 0 0.549 0.589 0.1 0.094 0 0.687 0.6155 0.11 0.119 0 0.6755 0.75 0.115 0.108 0 0.3145 0.865 0.105 0.108 0 0.2135 0.8505 0.101 0.121 0 0.253 0.9665 0.084 0.067 0 0.152 0.7275 0.068 0.067 0 0.9005 0.15 0.105 0.096 0 0.89 0.2505 0.116 0.109 0 0.833 0.323 0.122 0.12 0 0.7435 0.3285 0.099 0.119 0 0.646 0.365 0.118 0.108 0 0.6395 0.2615 0.115 0.097 0 0.5305 0.2455 0.099 0.095 0 0.4855 0.3575 0.091 0.101 0 0.3385 0.1695 0.095 0.111 0 0.631 0.6385 0.102 0.101 0 0.827 0.546 0.11 0.106 0 0.9525 0.539 0.095 0.118 0 0.8955 0.7885 0.077 0.077 0 0.111 0.661 0.078 0.08 0 0.255 0.044 0.092 0.078 0 0.034 0.211 0.066 0.08 0 0.155 0.215 0.084 0.084 0 0.116 0.2815 0.102 0.097 0 0.2645 0.2855 0.109 0.105 0 0.508 0.1225 0.106 0.103 0 0.748 0.064 0.106 0.092 0 0.4785 0.2445 0.091 0.093 0 0.378 0.299 0.108 0.1 0 0.349 0.39 0.122 0.1 0 0.5765 0.288 0.105 0.108 0 0.6565 0.3755 0.073 0.087 0 0.484 0.357 0.112
54%|█████▍ | 263/486 [00:17<00:11, 20.13it/s]
0.1 0 0.3565 0.566 0.079 0.076 0 0.1025 0.6135 0.081 0.081 0 0.0505 0.747 0.093 0.108 0 0.164 0.7245 0.09 0.081 0 0.234 0.86 0.102 0.094 0 0.369 0.837 0.098 0.092 0 0.465 0.849 0.102 0.096 0 0.541 0.781 0.106 0.092 0 0.1675 0.124 0.093 0.082 0 0.2675 0.1675 0.109 0.093 0 0.3965 0.2415 0.095 0.083 0 0.0535 0.303 0.101 0.096 0 0.18 0.3035 0.094 0.085 0 0.557 0.315 0.106 0.102 0 0.0735 0.614 0.097 0.09 0 0.081 0.704 0.1 0.092 0 0.264 0.6325 0.094 0.093 0 0.488 0.665 0.104 0.106 0 0.623 0.6605 0.102 0.097 0 0.7545 0.6285 0.119 0.109 0 0.9505 0.597 0.099 0.098 0 0.207 0.834 0.124 0.122 0 0.126 0.9525 0.08 0.067 0 0.2565 0.9295 0.125 0.111 0 0.5185 0.869 0.113 0.11 0 0.6765 0.949 0.123 0.098 0 0.187 0.056 0.108 0.096 0 0.294 0.07 0.104 0.096 0 0.4125 0.0585 0.101 0.099 0 0.5145 0.094 0.075 0.076 0 0.1315 0.1545 0.089 0.077 0 0.1755 0.2515 0.089 0.105 0 0.2595 0.2 0.075 0.08 0 0.429 0.1765 0.084 0.083 0 0.332 0.2215 0.084 0.081 0 0.7155 0.0405 0.073 0.065 0 0.546 0.2385 0.072 0.065 0 0.0615 0.4195 0.053 0.059 0 0.132 0.433 0.09 0.1 0 0.1315 0.36 0.065 0.056 0 0.23 0.4045 0.106 0.101 0 0.2035 0.505 0.083 0.09 0 0.2835 0.462 0.105 0.102 0 0.3355 0.3545 0.079 0.077 0 0.4345 0.353 0.101 0.102 0 0.359 0.4315 0.1 0.091 0 0.391 0.529 0.1 0.088 0 0.2 0.5905 0.074 0.073 0 0.279 0.6455 0.098 0.095 0 0.405 0.6475 0.094 0.081 0 0.4945 0.559 0.097 0.096 0 0.0315 0.6615 0.055 0.061 0 0.1165 0.7565 0.051 0.049 0 0.562 0.349 0.086 0.08 0 0.783 0.4115 0.076 0.077 0 0.8145 0.489 0.085 0.076 0 0.664 0.7305 0.104 0.099 0 0.718 0.867 0.086 0.078 0 0.85 0.749 0.116 0.116 0 0.113 0.215 0.094 0.092 0 0.111 0.3705 0.082 0.079 0 0.2135 0.368 0.093 0.094 0 0.1905 0.0435 0.093 0.085 0 0.284 0.044 0.094 0.08 0 0.3765 0.0945 0.111 0.103 0 0.3495 0.1915 0.095 0.089 0 0.6075 0.263 0.075 0.072 0 0.476 0.3335 0.078 0.085 0 0.5385 0.384 0.075 0.078 0 0.585 0.443 0.086 0.084 0 0.1965 0.517 0.091 0.08 0 0.2855 0.587 0.071 0.072 0 0.431 0.486 0.096 0.092 0 0.533 0.532 0.102 0.096 0 0.4265 0.598 0.091 0.096 0 0.541 0.665 0.082 0.086 0 0.527 0.766 0.096 0.096 0 0.43 0.8035 0.088 0.085 0 0.1175 0.7735 0.085 0.089 0 0.2065 0.756 0.081 0.088 0 0.2375 0.892 0.091 0.088 0 0.321 0.879 0.106 0.106 0 0.418 0.91 0.1 0.082 0 0.5045 0.889 0.083 0.084 0 0.2565 0.0645 0.107 0.099 0 0.354 0.115 0.09 0.086 0 0.447 0.1515 0.096 0.109 0 0.579 0.1445 0.106 0.103 0 0.6695 0.133 0.095 0.098 0 0.7775 0.113 0.105 0.096 0 0.8475 0.06 0.101 0.096 0 0.9415 0.0405 0.101 0.079 0 0.8665 0.1595 0.093 0.097 0 0.949 0.152 0.096 0.1 0 0.956 0.2575 0.086 0.093 0 0.678 0.227 0.106 0.1 0 0.743 0.2845 0.098 0.089 0 0.6385 0.307 0.097 0.106 0 0.518 0.303 0.098 0.09 0 0.226 0.194 0.09 0.08 0 0.2065 0.258 0.087 0.082 0 0.269 0.305 0.102 0.09 0 0.0575 0.3355 0.079 0.079 0 0.0585 0.4105 0.107 0.083 0 0.3295 0.3845 0.099 0.097 0 0.0405 0.572 0.077 0.094 0 0.4255 0.3955 0.075 0.087 0 0.1805 0.7645 0.093 0.103 0 0.278 0.762 0.112 0.11 0 0.1705 0.9095 0.097 0.093 0 0.3685 0.8505 0.105 0.097 0 0.436 0.8015 0.112 0.109 0 0.665 0.7565 0.058 0.065 0 0.7545 0.781 0.125 0.12 0 0.8105 0.5945 0.105 0.097 0 0.9115 0.681 0.083 0.076
55%|█████▍ | 266/486 [00:17<00:09, 22.01it/s]
0 0.715 0.0565 0.1 0.111 0 0.5935 0.048 0.111 0.094 0 0.647 0.1445 0.1 0.107 0 0.1205 0.087 0.117 0.108 0 0.042 0.0425 0.082 0.083 0 0.0975 0.2625 0.093 0.097 0 0.3545 0.2385 0.091 0.093 0 0.085 0.7075 0.118 0.117 0 0.621 0.8045 0.082 0.075 0 0.0905 0.0375 0.103 0.073 0 0.042 0.1065 0.08 0.081 0 0.1585 0.0895 0.113 0.115 0 0.2435 0.188 0.095 0.096 0 0.183 0.271 0.092 0.096 0 0.3565 0.212 0.097 0.096 0 0.3105 0.301 0.113 0.094 0 0.248 0.376 0.096 0.104 0 0.4105 0.3675 0.103 0.091 0 0.1685 0.5035 0.095 0.093 0 0.823 0.2655 0.074 0.085 0 0.9335 0.258 0.095 0.092 0 0.918 0.404 0.098 0.086 0 0.919 0.495 0.1 0.098 0 0.7265 0.119 0.065 0.062 0 0.6735 0.1885 0.071 0.067 0 0.6635 0.7065 0.073 0.065 0 0.893 0.611 0.078 0.076 0 0.8895 0.839 0.071 0.074 0 0.1615 0.063 0.083 0.082 0 0.143 0.16 0.076 0.078 0 0.256 0.091 0.082 0.084 0 0.3245 0.076 0.075 0.09 0 0.121 0.279 0.088 0.086 0 0.0415 0.3525 0.081 0.089 0 0.1965 0.305 0.075 0.08 0 0.16 0.3795 0.072 0.069 0 0.2425 0.2285 0.095 0.091 0 0.2795 0.351 0.091 0.086 0 0.439 0.09 0.092 0.086 0 0.485 0.1785 0.09 0.085 0 0.532 0.0935 0.068 0.063 0 0.618 0.095 0.096 0.09 0 0.7 0.055 0.094 0.088 0 0.5965 0.1875 0.087 0.083 0 0.7285 0.153 0.081 0.084 0 0.8095 0.21 0.087 0.076 0 0.9035 0.2615 0.081 0.081 0 0.8165 0.2845 0.091 0.085 0 0.701 0.2975 0.102 0.083 0 0.5935 0.279 0.087 0.086 0 0.433 0.2725 0.082 0.077 0 0.44 0.3705 0.086 0.085 0 0.375 0.4005 0.082 0.079 0 0.302 0.496 0.084 0.072 0 0.4175 0.4605 0.079 0.071 0 0.0845 0.6295 0.065 0.067 0 0.344 0.5735 0.088 0.077 0 0.5275 0.344 0.089 0.076 0 0.6315 0.378 0.097 0.086 0 0.5545 0.427 0.091 0.088 0 0.607 0.5125 0.078 0.077 0 0.6805 0.501 0.093 0.094 0 0.745 0.418 0.106 0.086 0 0.785 0.5055 0.1 0.093 0 0.926 0.4055 0.09 0.081 0 0.9095 0.501 0.091 0.094 0 0.966 0.4845 0.068 0.083 0 0.851 0.562 0.102 0.092 0 0.9585 0.6055 0.079 0.085 0 0.876 0.6465 0.082 0.075 0 0.774 0.6005 0.072 0.075 0 0.4725 0.643 0.077 0.068 0 0.382 0.6705 0.09 0.079 0 0.1515 0.736 0.081 0.078 0 0.0955 0.8 0.085 0.076 0 0.3375 0.8255 0.075 0.069 0 0.2225 0.9295 0.075 0.067 0 0.317 0.9495 0.084 0.077 0 0.511 0.834 0.08 0.074 0 0.4875 0.9165 0.079 0.083 0 0.622 0.813 0.08 0.078 0 0.777 0.8675 0.094 0.097 0 0.673 0.9565 0.096 0.077 0 0.8935 0.772 0.093 0.088 0 0.089 0.108 0.064 0.066 0 0.068 0.258 0.086 0.092 0 0.13 0.3655 0.078 0.089 0 0.279 0.2065 0.068 0.067 0 0.3395 0.2635 0.057 0.063 0 0.159 0.593 0.08 0.084 0 0.3095 0.8135 0.081 0.071 0 0.318 0.959 0.096 0.076 0 0.4185 0.9165 0.073 0.075 0 0.4515 0.8305 0.085 0.089 0 0.3745 0.7305 0.085 0.093 0 0.393 0.6395 0.08 0.079 0 0.4015 0.4945 0.065 0.057 0 0.444 0.364 0.06 0.06 0 0.786 0.042 0.088 0.08 0 0.8275 0.192 0.089 0.088 0 0.683 0.2465 0.076 0.077 0 0.658 0.357 0.088 0.082 0 0.6095 0.443 0.091 0.094 0 0.774 0.334 0.086 0.09 0 0.89 0.3485 0.088 0.083 0 0.607 0.5305 0.106 0.101 0 0.741 0.5065 0.084 0.097 0 0.8695 0.511 0.085 0.086 0 0.6725 0.767 0.073 0.078 0 0.7935 0.738 0.085 0.078 0 0.89 0.7385 0.08 0.085 0 0.8175 0.844 0.073 0.074 0 0.962 0.801 0.076 0.11 0 0.882 0.9325 0.076 0.067 0 0.9445 0.928 0.101 0.12 0 0.9215 0.0995 0.083 0.081 0 0.9005 0.1815 0.091 0.075 0 0.864 0.2485 0.074 0.071 0 0.931 0.29 0.09 0.084 0 0.935 0.384 0.082 0.092 0 0.7985 0.0875 0.099 0.105 0 0.664 0.102 0.072 0.068 0 0.605 0.0415 0.1 0.081 0 0.548 0.1445 0.092 0.095 0 0.672 0.1725 0.054 0.051 0 0.737 0.2515 0.088 0.093 0 0.793 0.306 0.07 0.076 0 0.89 0.5135 0.064 0.061 0 0.7905 0.5175 0.067 0.069 0 0.727 0.42 0.078 0.08 0 0.6365 0.352 0.079 0.08
55%|█████▌ | 269/486 [00:17<00:11, 19.24it/s]
0 0.544 0.3225 0.084 0.079 0 0.4095 0.2585 0.087 0.087 0 0.4035 0.159 0.083 0.074 0 0.289 0.1835 0.088 0.089 0 0.177 0.07 0.074 0.07 0 0.1655 0.1645 0.073 0.069 0 0.1365 0.274 0.075 0.066 0 0.3505 0.363 0.057 0.062 0 0.189 0.367 0.058 0.07 0 0.411 0.409 0.096 0.094 0 0.5205 0.4405 0.097 0.097 0 0.3445 0.499 0.083 0.08 0 0.619 0.447 0.058 0.056 0 0.6685 0.5585 0.067 0.065 0 0.111 0.697 0.114 0.102 0 0.082 0.798 0.106 0.1 0 0.074 0.894 0.108 0.088 0 0.172 0.9265 0.104 0.107 0 0.317 0.9445 0.086 0.091 0 0.3215 0.8195 0.071 0.069 0 0.3735 0.702 0.089 0.086 0 0.267 0.6735 0.09 0.083 0 0.212 0.756 0.102 0.098 0 0.1565 0.4565 0.051 0.051 0 0.567 0.6615 0.072 0.071 0 0.6635 0.6965 0.067 0.063 0 0.959 0.721 0.082 0.08 0 0.973 0.8035 0.054 0.071 0 0.858 0.0535 0.074 0.069 0 0.943 0.1585 0.068 0.073 0 0.841 0.2315 0.1 0.091 0 0.701 0.3015 0.074 0.083 0 0.824 0.359 0.068 0.068 0 0.6055 0.057 0.057 0.062 0 0.3935 0.076 0.111 0.09 0 0.2925 0.1035 0.083 0.077 0 0.3715 0.1625 0.123 0.109 0 0.5185 0.1645 0.095 0.093 0 0.5145 0.264 0.097 0.098 0 0.3825 0.246 0.069 0.056 0 0.423 0.3105 0.098 0.093 0 0.0365 0.2365 0.071 0.087 0 0.0475 0.346 0.079 0.092 0 0.1655 0.277 0.073 0.064 0 0.2845 0.3265 0.083 0.083 0 0.3675 0.3885 0.083 0.079 0 0.4475 0.431 0.085 0.082 0 0.4795 0.5255 0.083 0.093 0 0.638 0.469 0.084 0.076 0 0.601 0.533 0.088 0.088 0 0.116 0.4965 0.09 0.093 0 0.228 0.5765 0.082 0.083 0 0.2635 0.5385 0.075 0.091 0 0.1435 0.6735 0.065 0.061 0 0.1385 0.75 0.097 0.086 0 0.208 0.719 0.072 0.078 0 0.1235 0.8225 0.089 0.081 0 0.191 0.805 0.074 0.072 0 0.165 0.9285 0.096 0.091 0 0.2795 0.7805 0.101 0.107 0 0.3165 0.692 0.085 0.086 0 0.452 0.6925 0.084 0.077 0 0.418 0.774 0.094 0.094 0 0.402 0.862 0.068 0.072 0 0.511 0.87 0.094 0.098 0 0.6115 0.874 0.093 0.104 0 0.5915 0.7275 0.103 0.105 0 0.606 0.6295 0.072 0.071 0 0.6855 0.707 0.077 0.078 0 0.734 0.6045 0.074 0.067 0 0.8355 0.5365 0.055 0.057 0 0.808 0.7215 0.088 0.091 0 0.9005 0.693 0.085 0.092 0 0.942 0.596 0.07 0.084 0 0.723 0.87 0.088 0.09 0 0.863 0.873 0.09 0.074 0 0.8105 0.944 0.083 0.076 0 0.959 0.821 0.078 0.08 0 0.955 0.896 0.09 0.104 0 0.078 0.0415 0.096 0.079 0 0.1815 0.0455 0.105 0.089 0 0.0985 0.126 0.097 0.082 0 0.064 0.223 0.096 0.086 0 0.1775 0.157 0.103 0.098 0 0.337 0.072 0.088 0.076 0 0.3875 0.1885 0.069 0.065 0 0.5075 0.1415 0.075 0.079 0 0.3645 0.276 0.089 0.08 0 0.4325 0.3945 0.083 0.083 0 0.579 0.415 0.09 0.086 0 0.4705 0.4825 0.081 0.083 0 0.2915 0.487 0.079 0.08 0 0.3725 0.5255 0.077 0.083 0 0.481 0.5705 0.078 0.079 0 0.2605 0.648 0.083 0.072 0 0.0725 0.6755 0.109 0.097 0 0.042 0.8095 0.08 0.105 0 0.0945 0.7565 0.091 0.069 0 0.248 0.7775 0.088 0.077 0 0.3715 0.769 0.109 0.104 0 0.1685 0.936 0.101 0.09 0 0.3835 0.8905 0.085 0.085 0 0.7405 0.571 0.085 0.088 0 0.7895 0.514 0.079 0.072 0 0.8185 0.5995 0.077 0.071 0 0.8775 0.556 0.105 0.104 0 0.874 0.3475 0.076 0.073 0 0.9675 0.5815 0.065 0.073 0 0.9605 0.6895 0.079 0.079 0 0.8695 0.73 0.059 0.066
56%|█████▌ | 272/486 [00:18<00:12, 16.55it/s]
0 0.0475 0.0435 0.089 0.085 0 0.1505 0.121 0.085 0.09 0 0.0415 0.207 0.077 0.08 0 0.161 0.2125 0.084 0.077 0 0.2955 0.057 0.095 0.096 0 0.291 0.1945 0.088 0.081 0 0.265 0.1235 0.068 0.069 0 0.4555 0.078 0.107 0.086 0 0.4165 0.165 0.101 0.084 0 0.393 0.2765 0.104 0.095 0 0.492 0.2405 0.086 0.085 0 0.538 0.1545 0.094 0.093 0 0.692 0.1315 0.102 0.099 0 0.7785 0.0725 0.073 0.077 0 0.789 0.154 0.088 0.086 0 0.7835 0.2395 0.095 0.087 0 0.6925 0.253 0.079 0.086 0 0.6135 0.263 0.079 0.062 0 0.9115 0.1705 0.069 0.075 0 0.8735 0.355 0.091 0.084 0 0.7875 0.339 0.091 0.092 0 0.0915 0.4045 0.089 0.091 0 0.165 0.4765 0.094 0.095 0 0.6115 0.4355 0.095 0.087 0 0.796 0.481 0.096 0.1 0 0.5855 0.56 0.067 0.07 0 0.463 0.682 0.112 0.116 0 0.072 0.714 0.082 0.074 0 0.6655 0.652 0.117 0.14 0 0.795 0.591 0.11 0.098 0 0.8015 0.7175 0.113 0.117 0 0.8605 0.82 0.107 0.108 0 0.746 0.837 0.1 0.112 0 0.8025 0.8995 0.069 0.065 0 0.9675 0.7915 0.065 0.069 0 0.92 0.951 0.118 0.098 0 0.377 0.7565 0.096 0.099 0 0.327 0.9575 0.098 0.083 0 0.2935 0.146 0.079 0.08 0 0.368 0.144 0.078 0.07 0 0.4225 0.087 0.083 0.078 0 0.0375 0.242 0.065 0.068 0 0.081 0.541 0.108 0.1 0 0.1435 0.6635 0.099 0.081 0 0.185 0.7545 0.088 0.071 0 0.0745 0.7945 0.069 0.057 0 0.139 0.851 0.084 0.078 0 0.256 0.5985 0.084 0.063 0 0.3045 0.4925 0.061 0.065 0 0.4885 0.685 0.081 0.074 0 0.603 0.2285 0.092 0.091 0 0.6885 0.378 0.083 0.078 0 0.8305 0.178 0.069 0.066 0 0.9475 0.6975 0.085 0.077 0 0.04 0.2025 0.074 0.085 0 0.099 0.375 0.06 0.062 0 0.251 0.322 0.078 0.084 0 0.388 0.343 0.076 0.076 0 0.6155 0.2555 0.087 0.087 0 0.6885 0.0895 0.059 0.069 0 0.817 0.064 0.084 0.082 0 0.727 0.1815 0.1 0.079 0 0.73 0.25 0.106 0.08 0 0.9385 0.4255 0.077 0.085 0 0.122 0.5435 0.074 0.069 0 0.264 0.517 0.086 0.066 0 0.262 0.6245 0.082 0.081 0 0.1925 0.666 0.079 0.07 0 0.273 0.794 0.082 0.076 0 0.267 0.9355 0.108 0.105 0 0.4985 0.652 0.097 0.084 0 0.423 0.5855 0.064 0.061 0 0.516 0.449 0.056 0.064 0 0.6135 0.6025 0.061 0.059 0 0.7455 0.973 0.077 0.054 0 0.1095 0.496 0.099 0.096 0 0.122 0.3655 0.092 0.097 0 0.2385 0.322 0.103 0.102 0 0.218 0.422 0.066 0.064 0 0.255 0.4985 0.094 0.089 0 0.1015 0.6055 0.101 0.089 0 0.053 0.7155 0.096 0.113 0 0.1945 0.666 0.099 0.102 0 0.146 0.781 0.11 0.1 0 0.2825 0.714 0.099 0.1 0 0.303 0.8335 0.09 0.095 0 0.083 0.2465 0.082 0.071 0 0.209 0.209 0.086 0.086 0 0.327 0.093 0.106 0.094 0 0.3315 0.578 0.089 0.078 0 0.53 0.7645 0.088 0.095 0 0.501 0.8745 0.07 0.069 0 0.59 0.613 0.074 0.078 0 0.4085 0.3625 0.089 0.077 0 0.3185 0.3965 0.099 0.095 0 0.55 0.326 0.098 0.084 0 0.592 0.217 0.108 0.108 0 0.687 0.1945 0.09 0.079 0 0.711 0.2785 0.1 0.091 0 0.799 0.3475 0.078 0.085 0 0.917 0.8255 0.074 0.073
57%|█████▋ | 275/486 [00:18<00:11, 17.95it/s]
0 0.0875 0.0625 0.081 0.083 0 0.211 0.116 0.072 0.068 0 0.1205 0.226 0.115 0.114 0 0.2045 0.2735 0.075 0.081 0 0.2615 0.1755 0.085 0.093 0 0.3475 0.093 0.077 0.068 0 0.263 0.055 0.078 0.072 0 0.415 0.179 0.066 0.072 0 0.47 0.1525 0.074 0.077 0 0.493 0.07 0.096 0.082 0 0.524 0.1345 0.062 0.087 0 0.5745 0.098 0.067 0.066 0 0.5675 0.1845 0.087 0.079 0 0.7535 0.0865 0.083 0.097 0 0.7005 0.111 0.065 0.062 0 0.668 0.1755 0.086 0.087 0 0.707 0.228 0.088 0.08 0 0.801 0.2045 0.094 0.093 0 0.8845 0.141 0.099 0.088 0 0.9525 0.253 0.067 0.08 0 0.89 0.2705 0.082 0.083 0 0.9575 0.37 0.085 0.09 0 0.8445 0.454 0.091 0.086 0 0.9625 0.482 0.075 0.092 0 0.6985 0.3115 0.073 0.067 0 0.7475 0.3915 0.085 0.085 0 0.629 0.3515 0.09 0.089 0 0.591 0.2955 0.08 0.073 0 0.4635 0.2545 0.097 0.083 0 0.507 0.3585 0.094 0.093 0 0.557 0.427 0.074 0.066 0 0.273 0.37 0.102 0.096 0 0.3875 0.403 0.087 0.078 0 0.062 0.423 0.102 0.118 0 0.1715 0.5005 0.071 0.069 0 0.243 0.534 0.1 0.1 0 0.311 0.47 0.084 0.084 0 0.406 0.548 0.076 0.086 0 0.483 0.4975 0.082 0.083 0 0.5665 0.562 0.077 0.078 0 0.659 0.583 0.096 0.084 0 0.757 0.5315 0.096 0.093 0 0.88 0.5895 0.094 0.097 0 0.8075 0.603 0.087 0.09 0 0.72 0.651 0.096 0.094 0 0.823 0.7135 0.09 0.089 0 0.911 0.779 0.104 0.098 0 0.9715 0.743 0.057 0.064 0 0.616 0.6735 0.084 0.077 0 0.518 0.655 0.08 0.08 0 0.1805 0.611 0.105 0.094 0 0.1145 0.647 0.095 0.098 0 0.082 0.8055 0.078 0.073 0 0.104 0.883 0.106 0.096 0 0.0925 0.9505 0.081 0.077 0 0.232 0.803 0.09 0.086 0 0.2385 0.8955 0.097 0.089 0 0.2835 0.9625 0.085 0.075 0 0.354 0.8655 0.088 0.083 0 0.352 0.757 0.09 0.098 0 0.342 0.659 0.088 0.084 0 0.465 0.734 0.094 0.074 0 0.486 0.8135 0.108 0.093 0 0.461 0.905 0.072 0.074 0 0.574 0.851 0.088 0.086 0 0.5865 0.735 0.091 0.084 0 0.6675 0.7915 0.091 0.087 0 0.821 0.911 0.098 0.086 0 0.87 0.8605 0.096 0.079 0 0.766 0.0555 0.094 0.087 0 0.1715 0.095 0.085 0.076 0 0.0405 0.2105 0.079 0.093 0 0.0685 0.301 0.067 0.064 0 0.285 0.07 0.08 0.07 0 0.2255 0.1905 0.071 0.073 0 0.503 0.126 0.096 0.084 0 0.3945 0.427 0.099 0.094 0 0.3925 0.3365 0.095 0.089 0 0.5055 0.3825 0.113 0.093 0 0.58 0.2205 0.096 0.085 0 0.638 0.282 0.092 0.078 0 0.727 0.2005 0.11 0.101 0 0.735 0.2945 0.088 0.077 0 0.665 0.3775 0.112 0.101 0 0.734 0.422 0.094 0.094 0 0.8095 0.424 0.087 0.086 0 0.815 0.3325 0.076 0.085 0 0.887 0.2115 0.124 0.103 0 0.948 0.294 0.096 0.092 0 0.924 0.376 0.116 0.1 0 0.9155 0.455 0.099 0.086 0 0.913 0.5555 0.104 0.093 0 0.614 0.5075 0.102 0.103 0 0.703 0.527 0.102 0.1 0 0.7715 0.591 0.091 0.086 0 0.8385 0.63 0.083 0.1 0 0.9065 0.645 0.083 0.074 0 0.4565 0.652 0.091 0.096 0 0.55 0.641 0.102 0.086 0 0.6665 0.607 0.099 0.07 0 0.6785 0.676 0.083 0.08 0 0.578 0.7225 0.102 0.085 0 0.556 0.817 0.098 0.09 0 0.65 0.8075 0.094 0.097 0 0.7375 0.7775 0.101 0.101 0 0.856 0.746 0.092 0.096 0 0.952 0.7185 0.078 0.075 0
58%|█████▊ | 280/486 [00:18<00:12, 16.79it/s]
0.9655 0.768 0.069 0.09 0 0.923 0.8185 0.104 0.085 0 0.8885 0.869 0.091 0.086 0 0.535 0.9205 0.11 0.107 0 0.757 0.9695 0.074 0.061 0 0.442 0.9545 0.084 0.079 0 0.089 0.843 0.108 0.106 0 0.0765 0.9635 0.085 0.073 0 0.1565 0.9655 0.087 0.063 0 0.1185 0.0375 0.103 0.073 0 0.1165 0.121 0.105 0.092 0 0.052 0.171 0.098 0.104 0 0.046 0.263 0.088 0.098 0 0.257 0.1695 0.09 0.093 0 0.1845 0.249 0.087 0.082 0 0.1555 0.302 0.087 0.084 0 0.0495 0.4965 0.095 0.103 0 0.0915 0.5245 0.087 0.077 0 0.106 0.59 0.09 0.078 0 0.1755 0.454 0.103 0.09 0 0.0335 0.388 0.065 0.11 0 0.202 0.572 0.088 0.082 0 0.3085 0.4795 0.083 0.083 0 0.351 0.391 0.088 0.086 0 0.376 0.536 0.082 0.074 0 0.445 0.62 0.096 0.082 0 0.0925 0.776 0.101 0.118 0 0.0665 0.8855 0.107 0.109 0 0.1705 0.825 0.097 0.104 0 0.1815 0.953 0.093 0.09 0 0.262 0.9145 0.092 0.095 0 0.278 0.7755 0.1 0.093 0 0.535 0.9645 0.09 0.071 0 0.7055 0.9585 0.087 0.083 0 0.6675 0.8675 0.093 0.103 0 0.67 0.7935 0.078 0.063 0 0.681 0.5995 0.1 0.083 0 0.731 0.722 0.094 0.082 0 0.753 0.8345 0.08 0.085 0 0.8095 0.8195 0.065 0.075 0 0.886 0.932 0.12 0.112 0 0.888 0.6655 0.068 0.055 0 0.9275 0.5575 0.095 0.077 0 0.928 0.475 0.094 0.08 0 0.817 0.353 0.09 0.07 0 0.533 0.317 0.076 0.074 0 0.043 0.114 0.072 0.086 0 0.094 0.117 0.052 0.058 0 0.487 0.126 0.094 0.092 0 0.735 0.12 0.118 0.114 0 0.9275 0.258 0.093 0.086 0 0.946 0.3655 0.096 0.099 0 0.624 0.3725 0.094 0.089 0 0.146 0.768 0.11 0.106 0 0.0605 0.9625 0.113 0.075 0 0.163 0.94 0.094 0.096 0 0.251 0.876 0.096 0.098 0 0.2525 0.9605 0.115 0.079 0 0.308 0.7555 0.076 0.075 0 0.399 0.903 0.108 0.102 0 0.458 0.8525 0.082 0.079 0 0.6355 0.9605 0.099 0.079 0 0.66 0.854 0.102 0.09 0 0.757 0.894 0.094 0.078 0 0.8975 0.931 0.107 0.1 0 0.602 0.594 0.096 0.096 0 0.7465 0.6415 0.091 0.081 0 0.8635 0.708 0.095 0.092 0 0.961 0.8225 0.078 0.095 0 0.0475 0.122 0.091 0.092 0 0.164 0.1045 0.12 0.119 0 0.296 0.0975 0.106 0.117 0 0.566 0.7555 0.078 0.081 0 0.7315 0.7425 0.107 0.105 0 0.9465 0.337 0.101 0.096 0 0.957 0.1665 0.086 0.095 0 0.8695 0.18 0.095 0.108 0 0.7845 0.187 0.085 0.104 0 0.711 0.161 0.106 0.114 0 0.676 0.256 0.108 0.09 0 0.587 0.312 0.1 0.088 0 0.908 0.0535 0.114 0.105 0 0.815 0.046 0.1 0.09 0 0.6385 0.08 0.107 0.098 0 0.5 0.2285 0.102 0.093 0 0.6975 0.116 0.075 0.086 0 0.0535 0.7245 0.089 0.101 0 0.1245 0.707 0.091 0.086 0 0.2235 0.711 0.107 0.098 0 0.1065 0.8685 0.089 0.085 0 0.287 0.835 0.108 0.11 0 0.369 0.9085 0.088 0.081 0 0.498 0.849 0.102 0.094 0 0.4955 0.7215 0.089 0.091 0 0.5905 0.622 0.089 0.084 0 0.5735 0.6955 0.093 0.087 0 0.6525 0.8535 0.097 0.095 0 0.7265 0.6585 0.101 0.097 0 0.844 0.643 0.106 0.1 0 0.9555 0.6005 0.087 0.099 0 0.938 0.776 0.094 0.094 0 0.7375 0.7805 0.093 0.089 0 0.801 0.8815 0.094 0.087 0 0.9285 0.0765 0.087 0.089 0 0.827 0.1375 0.066 0.063 0 0.6035 0.1535 0.091 0.091 0 0.5095 0.0715 0.087 0.093 0 0.205 0.125 0.092 0.094 0 0.048 0.1975 0.09 0.097 0 0.0555 0.338 0.103 0.114 0 0.191 0.2765 0.108 0.095 0 0.3035 0.2 0.087 0.09 0 0.445 0.1725 0.082 0.077 0 0.211 0.412 0.088 0.078 0 0.3675 0.412 0.107 0.1 0 0.6255 0.2915 0.087 0.083 0 0.736 0.3875 0.084 0.095 0 0.4925 0.489 0.097 0.094 0 0.4105 0.5645 0.087 0.093 0 0.756 0.5045 0.082 0.085 0 0.932 0.4425 0.066 0.063 0 0.777 0.6265 0.094 0.093 0 0.623 0.643 0.094 0.094 0 0.9435 0.7665 0.099 0.099
60%|█████▉ | 290/486 [00:18<00:06, 29.03it/s]
0 0.0405 0.5155 0.079 0.099 0 0.1525 0.513 0.087 0.088 0 0.2405 0.5185 0.091 0.105 0 0.3295 0.508 0.093 0.098 0 0.449 0.491 0.092 0.098 0 0.587 0.5035 0.11 0.103 0 0.7115 0.519 0.101 0.094 0 0.8975 0.503 0.091 0.09 0 0.3715 0.3815 0.087 0.087 0 0.5615 0.367 0.097 0.092 0 0.717 0.3855 0.098 0.109 0 0.592 0.2705 0.084 0.083 0 0.6905 0.255 0.093 0.094 0 0.8725 0.033 0.065 0.058 0 0.8715 0.225 0.093 0.088 0 0.886 0.3535 0.1 0.115 0 0.9245 0.511 0.113 0.122 0 0.9345 0.723 0.095 0.11 0 0.714 0.9585 0.108 0.079 0 0.5085 0.2935 0.075 0.069 0 0.337 0.365 0.116 0.122 0 0.17 0.428 0.064 0.062 0 0.6295 0.381 0.091 0.094 0 0.723 0.3725 0.096 0.099 0 0.546 0.583 0.092 0.094 0 0.5855 0.7005 0.105 0.097 0 0.3945 0.6375 0.117 0.111 0 0.203 0.6535 0.108 0.113 0 0.858 0.043 0.1 0.084 0 0.9045 0.1365 0.107 0.109 0 0.924 0.3745 0.106 0.123 0 0.762 0.275 0.104 0.1 0 0.556 0.199 0.116 0.114 0 0.444 0.0875 0.082 0.079 0 0.1635 0.0655 0.087 0.087 0 0.8915 0.8515 0.073 0.067 0 0.6805 0.7785 0.069 0.065 0 0.5495 0.772 0.097 0.098 0 0.4075 0.7845 0.067 0.059 0 0.108 0.9425 0.098 0.091 0 0.131 0.803 0.1 0.108 0 0.198 0.6 0.108 0.104 0 0.057 0.556 0.11 0.116 0 0.93 0.6315 0.08 0.071 0 0.8795 0.569 0.107 0.094 0 0.373 0.233 0.096 0.09 0 0.103 0.2115 0.096 0.097 0 0.072 0.132 0.122 0.128 0 0.38 0.0645 0.108 0.109 0 0.2605 0.132 0.093 0.098 0 0.2225 0.0305 0.073 0.059 0 0.4485 0.195 0.069 0.068 0 0.3505 0.295 0.093 0.08 0 0.7375 0.1805 0.087 0.089 0 0.9115 0.0395 0.103 0.077 0 0.059 0.0445 0.116 0.087 0 0.942 0.158 0.102 0.102 0 0.76 0.1095 0.118 0.099 0 0.6265 0.5245 0.099 0.097 0 0.502 0.565 0.104 0.108 0 0.254 0.766 0.086 0.088 0 0.4375 0.7355 0.099 0.091 0 0.6465 0.7235 0.097 0.083 0 0.6495 0.8125 0.097 0.089 0 0.388 0.2065 0.068 0.065 0 0.723 0.2865 0.08 0.079 0 0.51 0.377 0.09 0.084 0 0.72 0.5005 0.066 0.065 0 0.741 0.615 0.082 0.072 0 0.558 0.5915 0.08 0.073 0 0.2015 0.472 0.077 0.06 0 0.246 0.5495 0.078 0.071 0 0.0745 0.6215 0.087 0.083 0 0.032 0.724 0.062 0.088 0 0.171 0.913 0.092 0.074 0 0.272 0.8105 0.07 0.069 0 0.4105 0.6385 0.083 0.077 0 0.5425 0.745 0.077 0.074 0 0.755 0.8495 0.06 0.061 0 0.125 0.106 0.074 0.068 0 0.8835 0.169 0.081 0.078 0 0.196 0.3945 0.072 0.077 0 0.253 0.5605 0.082 0.077 0 0.071 0.667 0.084 0.082 0 0.027 0.763 0.052 0.062 0 0.394 0.667 0.07 0.064 0 0.4955 0.8075 0.081 0.073 0 0.431 0.898 0.074 0.08 0 0.837 0.7735 0.12 0.111 0 0.9575 0.822 0.085 0.108 0 0.1555 0.867 0.095 0.096 0 0.154 0.208 0.086 0.08 0 0.157 0.282 0.096 0.088 0 0.121 0.394 0.094 0.09 0 0.165 0.4695 0.092 0.095 0 0.0325 0.831 0.063 0.09 0 0.0395 0.463 0.077 0.1 0 0.2745 0.17 0.081 0.078 0 0.3095 0.0315 0.079 0.061 0 0.4065 0.1625 0.085 0.083 0 0.286 0.347 0.088 0.086 0 0.8335 0.217 0.099 0.098 0 0.7595 0.921 0.105 0.106 0 0.13 0.937 0.124 0.114 0 0.189 0.8185 0.098 0.105 0 0.296 0.8045 0.112 0.115 0 0.171 0.7045 0.114 0.107 0 0.2695 0.712 0.099 0.09 0 0.208 0.6285 0.06 0.069 0 0.104 0.1845 0.082 0.079 0 0.147 0.342 0.1 0.106 0 0.271 0.2905 0.092 0.091 0 0.4715 0.828 0.111 0.104 0 0.383 0.9625 0.116 0.075 0 0.5285 0.945 0.141 0.11 0 0.658 0.9405 0.128 0.111 0 0.6875 0.6785 0.113 0.119 0 0.7105 0.7965 0.123 0.125 0 0.422 0.559 0.112 0.11 0 0.474 0.4165 0.108 0.103 0 0.5985 0.362 0.095 0.1 0 0.742 0.3515 0.102 0.101 0 0.8765 0.2555 0.099 0.093 0 0.659 0.246 0.078 0.074 0 0.733 0.9435 0.12 0.105 0 0.9225 0.6705 0.093 0.087 0 0.9205 0.596 0.075 0.07 0 0.844 0.576 0.094 0.086 0 0.81 0.662 0.104 0.102 0 0.7405 0.5345 0.093 0.087 0 0.6355 0.5585 0.101 0.095 0 0.623 0.42 0.086 0.076 0 0.5535 0.364 0.087 0.084 0 0.163 0.3715 0.088 0.091 0 0.052 0.3295 0.098 0.099 0 0.111 0.2125 0.114 0.109 0 0.2815 0.232 0.079 0.084 0 0.491 0.25 0.09 0.084 0 0.609 0.182 0.084 0.08 0 0.3515 0.141 0.065 0.062 0 0.4515 0.054
61%|██████▏ | 298/486 [00:18<00:05, 31.77it/s]
0.101 0.088 0 0.5135 0.125 0.089 0.072 0 0.5755 0.061 0.099 0.094 0 0.9095 0.1645 0.085 0.081 0 0.9035 0.25 0.085 0.084 0 0.248 0.045 0.102 0.086 0 0.349 0.138 0.084 0.088 0 0.4485 0.191 0.117 0.122 0 0.5495 0.224 0.115 0.122 0 0.702 0.1415 0.106 0.097 0 0.7295 0.226 0.095 0.084 0 0.681 0.2915 0.094 0.093 0 0.8325 0.1085 0.085 0.081 0 0.8845 0.196 0.083 0.078 0 0.965 0.156 0.064 0.088 0 0.112 0.3175 0.074 0.081 0 0.2945 0.3095 0.097 0.099 0 0.3645 0.349 0.081 0.078 0 0.4685 0.4135 0.087 0.083 0 0.5975 0.394 0.081 0.076 0 0.1485 0.593 0.083 0.084 0 0.0695 0.737 0.105 0.106 0 0.186 0.743 0.108 0.104 0 0.287 0.702 0.09 0.084 0 0.3775 0.6565 0.087 0.083 0 0.4455 0.6295 0.069 0.071 0 0.9585 0.6375 0.083 0.087 0 0.048 0.179 0.092 0.1 0 0.213 0.152 0.104 0.096 0 0.15 0.2435 0.084 0.079 0 0.887 0.421 0.082 0.076 0 0.809 0.4625 0.096 0.093 0 0.5885 0.452 0.091 0.088 0 0.4915 0.5225 0.091 0.089 0 0.4635 0.6295 0.089 0.083 0 0.577 0.624 0.09 0.088 0 0.699 0.5275 0.09 0.101 0 0.844 0.55 0.08 0.088 0 0.911 0.74 0.086 0.092 0 0.0525 0.8755 0.089 0.079 0 0.104 0.81 0.08 0.068 0 0.12 0.6845 0.096 0.091 0 0.132 0.551 0.11 0.108 0 0.2865 0.518 0.107 0.102 0 0.3275 0.7865 0.117 0.111 0 0.4535 0.689 0.111 0.112 0 0.478 0.8485 0.092 0.085 0 0.5465 0.7885 0.089 0.101 0 0.628 0.8485 0.1 0.103 0 0.6665 0.954 0.093 0.09 0 0.7775 0.7965 0.107 0.111 0 0.874 0.7085 0.084 0.085 0 0.6505 0.6805 0.083 0.083 0 0.6485 0.5935 0.073 0.071 0 0.5535 0.542 0.099 0.094 0 0.555 0.4055 0.1 0.093 0 0.829 0.5265 0.098 0.099 0 0.7845 0.4325 0.099 0.099 0 0.9435 0.4315 0.093 0.091 0 0.806 0.283 0.09 0.086 0 0.833 0.137 0.096 0.098 0 0.7695 0.045 0.099 0.088 0 0.636 0.1765 0.104 0.109 0 0.531 0.127 0.108 0.096 0 0.055 0.3635 0.106 0.109 0 0.1495 0.5765 0.115 0.111 0 0.0915 0.7 0.087 0.084 0 0.0455 0.849 0.089 0.106 0 0.198 0.911 0.102 0.102 0 0.268 0.7765 0.104 0.105 0 0.383 0.6095 0.106 0.091 0 0.336 0.522 0.108 0.094 0 0.2225 0.3475 0.059 0.071 0 0.314 0.401 0.08 0.078 0 0.392 0.4185 0.074 0.073 0 0.5945 0.6265 0.095 0.093 0 0.7465 0.4135 0.095 0.091 0 0.6555 0.4855 0.089 0.083 0 0.2875 0.043 0.127 0.084 0 0.4955 0.0655 0.103 0.099 0 0.6825 0.2665 0.107 0.101 0 0.761 0.4155 0.116 0.099 0 0.943 0.4005 0.104 0.103 0 0.959 0.206 0.082 0.118 0 0.8045 0.905 0.095 0.094 0 0.888 0.6475 0.1 0.097 0 0.7785 0.64 0.099 0.09 0 0.717 0.7655 0.11 0.121 0 0.557 0.945 0.114 0.096 0 0.6305 0.8625 0.077 0.075 0 0.573 0.752 0.096 0.096 0 0.549 0.58 0.084 0.078 0 0.187 0.215 0.122 0.116 0 0.1125 0.408 0.093 0.088 0 0.0455 0.087 0.089 0.112 0 0.048 0.6275 0.094 0.097 0 0.1745 0.7015 0.091 0.083 0 0.129 0.916 0.108 0.118 0 0.284 0.8225 0.106 0.103 0 0.3815 0.7335 0.101 0.105 0 0.41 0.8515 0.112 0.101 0 0.515 0.7665 0.098 0.101 0 0.92 0.4705 0.092 0.097 0 0.777 0.476 0.09 0.092 0 0.69 0.4635 0.074 0.073 0 0.0735 0.222 0.105 0.112 0 0.1255 0.442 0.099 0.088 0 0.116 0.578 0.09 0.08 0 0.117 0.7515 0.092 0.079 0 0.431 0.9265 0.104 0.091 0 0.3205 0.971 0.073 0.056 0 0.6805 0.9665 0.077 0.063 0 0.7175 0.7925 0.083 0.085 0 0.794 0.7775 0.086 0.089 0 0.514 0.593 0.1 0.106 0 0.6215 0.581 0.101 0.104 0 0.814 0.5885 0.102 0.095 0 0.347 0.4685 0.1 0.093 0 0.3295 0.139 0.095 0.098 0 0.426 0.2925 0.118 0.119 0 0.6 0.426 0.086 0.086 0 0.7525 0.049 0.115 0.096
62%|██████▏ | 302/486 [00:19<00:06, 30.58it/s]
0 0.938 0.0595 0.124 0.117 0 0.95 0.1895 0.098 0.137 0 0.8375 0.2255 0.113 0.093 0 0.8295 0.075 0.093 0.098 0 0.584 0.1725 0.116 0.113 0 0.6245 0.304 0.123 0.138 0 0.8265 0.419 0.085 0.08 0 0.966 0.4015 0.068 0.071 0 0.14 0.096 0.104 0.1 0 0.0785 0.1875 0.107 0.097 0 0.2175 0.7355 0.099 0.093 0 0.4155 0.81 0.105 0.116 0 0.5925 0.865 0.101 0.098 0 0.7275 0.901 0.105 0.088 0 0.6865 0.7895 0.093 0.101 0 0.688 0.693 0.076 0.084 0 0.77 0.706 0.082 0.066 0 0.9205 0.768 0.081 0.08 0 0.9385 0.579 0.119 0.114 0 0.0465 0.037 0.087 0.072 0 0.213 0.1005 0.1 0.093 0 0.4185 0.066 0.093 0.094 0 0.62 0.053 0.096 0.092 0 0.2545 0.2395 0.113 0.117 0 0.0595 0.47 0.113 0.124 0 0.083 0.591 0.108 0.104 0 0.128 0.7045 0.104 0.107 0 0.1265 0.8335 0.101 0.089 0 0.299 0.364 0.118 0.11 0 0.662 0.161 0.106 0.122 0 0.533 0.1025 0.068 0.053 0 0.893 0.2675 0.1 0.107 0 0.933 0.3895 0.1 0.109 0 0.7375 0.444 0.113 0.102 0 0.632 0.879 0.102 0.11 0 0.5785 0.625 0.105 0.104 0 0.498 0.7995 0.066 0.073 0 0.4805 0.3405 0.101 0.103 0 0.8445 0.066 0.075 0.078 0 0.673 0.084 0.09 0.096 0 0.8195 0.1645 0.083 0.091 0 0.9295 0.2715 0.083 0.085 0 0.871 0.36 0.094 0.102 0 0.9635 0.4775 0.073 0.089 0 0.849 0.488 0.098 0.098 0 0.894 0.587 0.104 0.092 0 0.955 0.6715 0.086 0.099 0 0.862 0.6705 0.086 0.089 0 0.677 0.153 0.096 0.072 0 0.347 0.096 0.104 0.096 0 0.2745 0.1845 0.075 0.079 0 0.2145 0.1985 0.087 0.081 0 0.454 0.179 0.066 0.07 0 0.5155 0.1745 0.065 0.073 0 0.3125 0.2785 0.099 0.093 0 0.452 0.272 0.098 0.088 0 0.5995 0.2375 0.083 0.075 0 0.6255 0.304 0.099 0.088 0 0.5505 0.37 0.087 0.094 0 0.5025 0.311 0.087 0.086 0 0.4315 0.375 0.097 0.084 0 0.332 0.3745 0.1 0.097 0 0.162 0.418 0.082 0.082 0 0.1745 0.515 0.081 0.088 0 0.305 0.4755 0.104 0.103 0 0.252 0.5795 0.102 0.103 0 0.0505 0.596 0.099 0.11 0 0.313 0.6455 0.092 0.087 0 0.2595 0.694 0.083 0.074 0 0.415 0.6605 0.098 0.095 0 0.3985 0.546 0.087 0.084 0 0.481 0.575 0.094 0.112 0 0.5235 0.4705 0.095 0.097 0 0.068 0.81 0.078 0.088 0 0.1585 0.801 0.091 0.094 0 0.2755 0.9655 0.101 0.069 0 0.4895 0.9395 0.087 0.077 0 0.611 0.902 0.082 0.072 0 0.745 0.9065 0.1 0.091 0 0.926 0.508 0.09 0.084 0 0.8415 0.3915 0.113 0.107 0 0.7265 0.4685 0.071 0.081 0 0.4255 0.434 0.097 0.102 0 0.4755 0.29 0.111 0.11 0 0.398 0.319 0.108 0.108 0 0.303 0.284 0.082 0.086 0 0.27 0.1655 0.104 0.105 0 0.214 0.2105 0.074 0.075 0 0.0515 0.202 0.087 0.078 0 0.175 0.335 0.07 0.068 0 0.0565 0.405 0.105 0.102 0 0.0525 0.528 0.081 0.074 0 0.041 0.763 0.08 0.092 0 0.0425 0.649 0.083 0.12 0 0.2605 0.3485 0.083 0.095 0 0.3445 0.548 0.069 0.066 0 0.358 0.6245 0.102 0.089 0 0.5 0.85 0.104 0.098 0 0.53 0.7675 0.104 0.087 0 0.556 0.961 0.092 0.078 0 0.6465 0.9345 0.097 0.085 0 0.597 0.8485 0.094 0.087 0 0.662 0.7675 0.096 0.099 0 0.7905 0.895 0.083 0.088 0 0.907 0.8855 0.07 0.061 0 0.26 0.1725 0.114 0.109 0 0.047 0.303 0.092 0.118 0 0.6835 0.058 0.139 0.114 0 0.3735 0.3255 0.073 0.075 0 0.2415 0.433 0.093 0.07 0 0.3085 0.547 0.093 0.076 0 0.4345 0.3955 0.071 0.071 0 0.5225 0.4175 0.103 0.087 0 0.523 0.5335 0.096 0.095 0 0.0375 0.6955 0.073 0.095 0 0.132 0.7195 0.112 0.105 0 0.225 0.6775 0.11 0.103 0 0.326 0.6965 0.1 0.089 0 0.455 0.666 0.1 0.09 0 0.2025 0.9265 0.085 0.095 0 0.463 0.899 0.088 0.08 0 0.509 0.835 0.092 0.088 0 0.5515 0.9615 0.067 0.057 0 0.614 0.846 0.068 0.072 0 0.691 0.88 0.092 0.092 0 0.075 0.9285 0.1 0.111 0 0.115 0.718 0.108 0.108 0 0.2245 0.772 0.123 0.13 0 0.782 0.91 0.116 0.104 0 0.4875 0.566 0.119 0.11 0 0.956 0.7 0.088 0.106 0 0.8745 0.6665 0.089 0.083 0 0.794 0.6095 0.08 0.073 0 0.805 0.5515 0.076 0.065 0 0.8595 0.558 0.079 0.08 0 0.942 0.576 0.096 0.1 0 0.9325 0.474 0.113 0.102 0 0.806 0.4745 0.116 0.105 0 0.6805 0.474 0.105 0.09 0
63%|██████▎ | 306/486 [00:19<00:06, 29.91it/s]
0.565 0.4915 0.12 0.105 0 0.9645 0.328 0.071 0.088 0 0.856 0.372 0.098 0.1 0 0.904 0.2555 0.068 0.057 0 0.607 0.3535 0.092 0.089 0 0.485 0.384 0.098 0.09 0 0.1625 0.3285 0.139 0.125 0 0.219 0.1995 0.138 0.119 0 0.282 0.283 0.11 0.104 0 0.2135 0.0685 0.089 0.079 0 0.299 0.0635 0.094 0.095 0 0.393 0.0995 0.08 0.073 0 0.4145 0.0525 0.097 0.079 0 0.381 0.1995 0.09 0.079 0 0.539 0.078 0.104 0.098 0 0.679 0.109 0.098 0.09 0 0.5035 0.269 0.103 0.1 0 0.5975 0.211 0.095 0.094 0 0.6735 0.1775 0.067 0.057 0 0.6655 0.25 0.089 0.092 0 0.744 0.2405 0.094 0.099 0 0.762 0.1545 0.08 0.079 0 0.836 0.1985 0.072 0.069 0 0.8115 0.256 0.075 0.078 0 0.331 0.947 0.11 0.096 0 0.3435 0.8255 0.103 0.099 0 0.1085 0.804 0.115 0.116 0 0.201 0.7495 0.116 0.119 0 0.109 0.91 0.12 0.096 0 0.551 0.857 0.108 0.1 0 0.568 0.9425 0.12 0.101 0 0.633 0.966 0.074 0.068 0 0.7045 0.895 0.087 0.094 0 0.5035 0.7505 0.113 0.117 0 0.387 0.6615 0.106 0.101 0 0.9135 0.7995 0.093 0.101 0 0.712 0.7225 0.092 0.089 0 0.8505 0.7135 0.103 0.101 0 0.251 0.627 0.072 0.072 0 0.3245 0.55 0.111 0.104 0 0.2525 0.449 0.079 0.08 0 0.3265 0.4405 0.091 0.081 0 0.438 0.5685 0.086 0.085 0 0.124 0.348 0.094 0.094 0 0.309 0.359 0.098 0.094 0 0.263 0.1435 0.092 0.085 0 0.3725 0.2915 0.083 0.089 0 0.482 0.3355 0.112 0.109 0 0.6305 0.319 0.095 0.084 0 0.6585 0.4805 0.107 0.105 0 0.7735 0.493 0.093 0.09 0 0.835 0.5665 0.102 0.101 0 0.9045 0.63 0.105 0.108 0 0.9565 0.529 0.087 0.106 0 0.8725 0.479 0.097 0.09 0 0.7795 0.3875 0.109 0.095 0 0.933 0.5105 0.1 0.107 0 0.9 0.7675 0.102 0.099 0 0.7815 0.481 0.099 0.108 0 0.756 0.6165 0.098 0.105 0 0.714 0.709 0.1 0.084 0 0.689 0.8065 0.098 0.091 0 0.8555 0.2465 0.093 0.091 0 0.6745 0.156 0.099 0.1 0 0.5775 0.198 0.093 0.088 0 0.5685 0.3275 0.089 0.087 0 0.4965 0.0435 0.101 0.085 0 0.4305 0.3335 0.101 0.099 0 0.377 0.4325 0.082 0.083 0 0.492 0.47 0.096 0.106 0 0.1925 0.056 0.083 0.074 0 0.163 0.1755 0.1 0.095 0 0.2655 0.1935 0.089 0.091 0 0.189 0.382 0.092 0.1 0 0.2085 0.537 0.109 0.096 0 0.3455 0.5545 0.091 0.091 0 0.352 0.703 0.096 0.104 0 0.4965 0.6705 0.095 0.103 0 0.451 0.818 0.098 0.1 0 0.17 0.106 0.092 0.092 0 0.329 0.049 0.104 0.094 0 0.5075 0.0475 0.099 0.085 0 0.6 0.056 0.096 0.096 0 0.695 0.04 0.108 0.078 0 0.958 0.1225 0.084 0.095 0 0.8465 0.139 0.093 0.084 0 0.893 0.2265 0.076 0.077 0 0.9555 0.3165 0.089 0.095 0 0.9135 0.367 0.079 0.074 0 0.8275 0.495 0.107 0.102 0 0.881 0.59 0.088 0.084 0 0.949 0.8215 0.1 0.113 0 0.9545 0.9365 0.091 0.105 0 0.7535 0.9445 0.085 0.079 0 0.723 0.8505 0.074 0.069 0 0.559 0.946 0.066 0.07 0 0.4355 0.901 0.069 0.08 0 0.35 0.84 0.08 0.076 0 0.2505 0.805 0.067 0.058 0 0.061 0.863 0.082 0.082 0 0.1655 0.7585 0.091 0.099 0 0.152 0.6045 0.098 0.093 0 0.408 0.743 0.074 0.062 0 0.574 0.6675 0.08 0.073 0 0.4985 0.564 0.087 0.072 0 0.2175 0.469 0.093 0.092 0 0.287 0.4925 0.074 0.073 0 0.422 0.429 0.076 0.08 0 0.5075 0.3795 0.065 0.063 0 0.5655 0.329 0.117 0.104 0 0.331 0.348 0.106 0.104 0 0.177 0.3275 0.074 0.067 0 0.197 0.2675 0.07 0.059 0 0.2835 0.2065 0.105 0.101 0 0.3895 0.232 0.077 0.078 0 0.623 0.164 0.104 0.084 0 0.703 0.131 0.096 0.094 0 0.693 0.2695 0.106 0.107 0 0.7905 0.2515 0.077 0.079
64%|██████▍ | 313/486 [00:19<00:06, 27.61it/s]
0 0.776 0.0495 0.108 0.095 0 0.6335 0.107 0.095 0.1 0 0.5945 0.3055 0.095 0.093 0 0.799 0.316 0.066 0.064 0 0.916 0.4505 0.092 0.101 0 0.8305 0.5 0.089 0.09 0 0.7625 0.4225 0.095 0.101 0 0.512 0.415 0.094 0.092 0 0.635 0.5205 0.062 0.061 0 0.497 0.5395 0.06 0.063 0 0.433 0.5585 0.076 0.081 0 0.1 0.104 0.108 0.11 0 0.0665 0.278 0.097 0.098 0 0.141 0.2865 0.066 0.075 0 0.728 0.8385 0.08 0.079 0 0.917 0.876 0.1 0.098 0 0.4795 0.9625 0.089 0.071 0 0.908 0.577 0.072 0.068 0 0.8075 0.8185 0.109 0.105 0 0.6245 0.9685 0.085 0.059 0 0.652 0.805 0.104 0.102 0 0.6265 0.632 0.095 0.096 0 0.7525 0.5435 0.089 0.091 0 0.8735 0.4705 0.087 0.073 0 0.6505 0.5215 0.073 0.073 0 0.3475 0.559 0.087 0.086 0 0.577 0.336 0.078 0.082 0 0.711 0.359 0.078 0.082 0 0.104 0.0615 0.078 0.079 0 0.0715 0.3235 0.057 0.055 0 0.0375 0.516 0.067 0.066 0 0.1955 0.5645 0.081 0.073 0 0.498 0.089 0.09 0.08 0 0.673 0.068 0.078 0.066 0 0.945 0.067 0.066 0.062 0 0.809 0.205 0.078 0.076 0 0.7725 0.3015 0.091 0.099 0 0.4665 0.239 0.081 0.074 0 0.356 0.239 0.078 0.076 0 0.4915 0.5255 0.087 0.085 0 0.514 0.369 0.078 0.08 0 0.6185 0.47 0.087 0.094 0 0.707 0.403 0.074 0.076 0 0.7725 0.465 0.079 0.072 0 0.943 0.407 0.082 0.082 0 0.904 0.5435 0.08 0.077 0 0.386 0.6645 0.08 0.071 0 0.3645 0.765 0.085 0.074 0 0.2315 0.893 0.067 0.062 0 0.3265 0.9485 0.079 0.083 0 0.5355 0.729 0.065 0.06 0 0.531 0.8815 0.07 0.079 0 0.5605 0.9675 0.065 0.063 0 0.697 0.8985 0.096 0.081 0 0.6765 0.7125 0.065 0.067 0 0.745 0.7265 0.086 0.085 0 0.875 0.911 0.07 0.062 0 0.9575 0.7575 0.085 0.101 0 0.8755 0.109 0.081 0.076 0 0.89 0.262 0.096 0.094 0 0.789 0.2635 0.094 0.093 0 0.917 0.569 0.094 0.104 0 0.94 0.9415 0.104 0.101 0 0.724 0.955 0.108 0.09 0 0.5655 0.9185 0.091 0.093 0 0.4535 0.917 0.089 0.088 0 0.4505 0.71 0.091 0.096 0 0.538 0.572 0.106 0.1 0 0.4585 0.579 0.083 0.104 0 0.356 0.6075 0.112 0.107 0 0.383 0.5285 0.116 0.105 0 0.68 0.389 0.096 0.082 0 0.7585 0.157 0.077 0.078 0 0.6705 0.0885 0.083 0.081 0 0.534 0.224 0.092 0.1 0 0.459 0.113 0.082 0.084 0 0.467 0.0405 0.09 0.079 0 0.3895 0.1595 0.095 0.101 0 0.293 0.133 0.088 0.086 0 0.1425 0.3505 0.095 0.101 0 0.2465 0.322 0.091 0.092 0 0.372 0.351 0.094 0.082 0 0.368 0.445 0.102 0.082 0 0.273 0.5435 0.094 0.083 0 0.196 0.493 0.09 0.09 0 0.1305 0.8175 0.095 0.091 0 0.922 0.202 0.094 0.106 0 0.814 0.1505 0.096 0.101 0 0.6955 0.1255 0.073 0.067 0 0.3645 0.1635 0.089 0.085 0 0.5815 0.226 0.069 0.07 0 0.353 0.3045 0.082 0.077 0 0.506 0.3655 0.082 0.077 0 0.3685 0.481 0.071 0.07 0 0.359 0.6185 0.082 0.081 0 0.573 0.536 0.074 0.076 0 0.7055 0.621 0.057 0.062 0 0.963 0.7605 0.074 0.095 0 0.4 0.965 0.074 0.07 0 0.1295 0.129 0.097 0.096 0 0.135 0.2125 0.07 0.069 0 0.071 0.3475 0.078 0.085 0 0.213 0.4235 0.082 0.081 0 0.573 0.0885 0.07 0.069 0 0.496 0.171 0.088 0.082 0 0.459 0.2765 0.102 0.103 0 0.4225 0.3915 0.097 0.097 0 0.417 0.503 0.104 0.106 0 0.5815 0.4305 0.099 0.103 0 0.724 0.2325 0.062 0.063 0 0.207 0.694 0.072 0.078 0 0.314 0.6605 0.104 0.097 0 0.453 0.626 0.108 0.094 0 0.2115 0.8395 0.063 0.065 0 0.7975 0.746 0.085 0.074 0 0.6755 0.773 0.097 0.092 0 0.907 0.4595 0.088 0.085 0 0.779 0.6455 0.1 0.097 0 0.8775 0.1575 0.079 0.077 0 0.198 0.399 0.092 0.086 0 0.4475 0.482 0.083 0.086 0 0.543 0.5055 0.058 0.053 0 0.217 0.6025 0.062 0.053 0 0.218 0.7285 0.092 0.093 0 0.1605 0.8785 0.061 0.065 0 0.4175 0.947 0.069 0.064 0 0.4715 0.854 0.091 0.084 0 0.5535 0.9455 0.093 0.087 0 0.5225 0.6325 0.089 0.087 0 0.717 0.71 0.082 0.074 0 0.8055 0.7775 0.083 0.083 0 0.8975 0.821 0.119 0.112 0 0.7355 0.5405 0.069 0.067 0 0.217 0.088 0.072 0.074 0 0.316 0.2655 0.068 0.063 0 0.41 0.0845 0.082 0.077 0 0.5085 0.2 0.081 0.078 0 0.6305 0.208 0.087 0.08 0 0.8655 0.201
66%|██████▋ | 322/486 [00:19<00:05, 32.30it/s]
0.077 0.07 0 0.967 0.1975 0.066 0.071 0 0.9465 0.3085 0.077 0.073 0 0.847 0.34 0.08 0.08 0 0.765 0.3585 0.074 0.073 0 0.706 0.345 0.068 0.068 0 0.6955 0.451 0.075 0.078 0 0.7745 0.45 0.089 0.088 0 0.8645 0.4235 0.087 0.075 0 0.97 0.409 0.06 0.074 0 0.911 0.54 0.08 0.084 0 0.7515 0.5285 0.069 0.065 0 0.647 0.6035 0.074 0.075 0 0.7425 0.629 0.071 0.066 0 0.3865 0.799 0.075 0.07 0 0.5275 0.827 0.069 0.072 0 0.6235 0.8605 0.071 0.063 0 0.4685 0.0455 0.091 0.089 0 0.589 0.0475 0.106 0.093 0 0.6165 0.1595 0.107 0.097 0 0.67 0.21 0.074 0.064 0 0.772 0.1905 0.07 0.065 0 0.8165 0.4005 0.091 0.077 0 0.7225 0.456 0.083 0.076 0 0.788 0.5 0.084 0.08 0 0.859 0.531 0.09 0.086 0 0.922 0.3945 0.088 0.079 0 0.9665 0.2985 0.067 0.085 0 0.9645 0.509 0.063 0.086 0 0.8295 0.693 0.091 0.084 0 0.6785 0.7475 0.063 0.063 0 0.808 0.8295 0.094 0.091 0 0.9385 0.817 0.085 0.09 0 0.9065 0.8755 0.083 0.079 0 0.921 0.949 0.088 0.08 0 0.8065 0.9395 0.091 0.083 0 0.208 0.963 0.11 0.074 0 0.048 0.083 0.09 0.096 0 0.04 0.2265 0.074 0.089 0 0.0945 0.179 0.083 0.08 0 0.169 0.0435 0.1 0.083 0 0.1975 0.1275 0.087 0.083 0 0.234 0.23 0.12 0.092 0 0.2945 0.1445 0.113 0.097 0 0.279 0.04 0.114 0.078 0 0.3815 0.049 0.093 0.094 0 0.4095 0.187 0.109 0.104 0 0.484 0.094 0.118 0.1 0 0.617 0.0435 0.106 0.085 0 0.6165 0.2055 0.105 0.107 0 0.6175 0.315 0.109 0.106 0 0.672 0.52 0.128 0.124 0 0.941 0.356 0.098 0.098 0 0.9195 0.61 0.097 0.112 0 0.9085 0.712 0.097 0.09 0 0.9045 0.7795 0.073 0.061 0 0.7915 0.7765 0.097 0.089 0 0.68 0.752 0.116 0.106 0 0.5825 0.7625 0.079 0.083 0 0.1085 0.77 0.099 0.098 0 0.0445 0.711 0.087 0.092 0 0.137 0.68 0.098 0.092 0 0.248 0.771 0.11 0.1 0 0.3355 0.8075 0.067 0.069 0 0.348 0.715 0.106 0.108 0 0.0475 0.5975 0.093 0.123 0 0.1335 0.5505 0.105 0.103 0 0.256 0.578 0.112 0.11 0 0.3595 0.5295 0.101 0.097 0 0.138 0.44 0.116 0.104 0 0.3615 0.422 0.107 0.102 0 0.066 0.3305 0.122 0.109 0 0.1515 0.2835 0.115 0.111 0 0.2875 0.344 0.119 0.116 0 0.3935 0.3105 0.105 0.105 0 0.3735 0.0935 0.085 0.079 0 0.4585 0.049 0.089 0.086 0 0.512 0.167 0.104 0.096 0 0.66 0.243 0.104 0.098 0 0.6545 0.427 0.095 0.082 0 0.2495 0.24 0.089 0.092 0 0.1375 0.2695 0.073 0.071 0 0.054 0.3705 0.09 0.095 0 0.054 0.276 0.074 0.076 0 0.099 0.472 0.076 0.08 0 0.1 0.562 0.074 0.072 0 0.2275 0.5165 0.093 0.091 0 0.316 0.474 0.084 0.084 0 0.067 0.681 0.094 0.084 0 0.4285 0.616 0.091 0.09 0 0.358 0.685 0.098 0.098 0 0.516 0.5765 0.092 0.095 0 0.7605 0.543 0.081 0.086 0 0.526 0.683 0.084 0.082 0 0.463 0.727 0.076 0.07 0 0.1905 0.856 0.087 0.09 0 0.263 0.841 0.066 0.072 0 0.414 0.894 0.072 0.076 0 0.794 0.129 0.1 0.096 0 0.578 0.145 0.088 0.09 0 0.4745 0.039 0.085 0.076 0 0.47 0.124 0.088 0.084 0 0.3365 0.182 0.085 0.092 0 0.397 0.29 0.07 0.068 0 0.5145 0.257 0.067 0.066 0 0.516 0.356 0.082 0.078 0 0.7615 0.373 0.087 0.09 0 0.416 0.415 0.088 0.084 0 0.3495 0.481 0.077 0.084 0 0.6925 0.619 0.087 0.078 0 0.8555 0.527 0.081 0.078 0 0.9045 0.613 0.095 0.102 0 0.84 0.687 0.106 0.108 0 0.9295 0.696 0.067 0.068 0 0.927 0.7965 0.102 0.095 0 0.855 0.922 0.096 0.094 0 0.496 0.568 0.104 0.1 0 0.4685 0.655 0.111 0.106 0 0.3795 0.7125 0.101 0.097 0 0.3635 0.5905 0.111 0.103 0 0.383 0.5 0.104 0.086 0 0.2975 0.4835 0.103 0.103 0 0.2325 0.42 0.105 0.108 0 0.103 0.39 0.098 0.1 0 0.24 0.5755 0.096 0.099 0 0.291 0.648 0.094 0.106 0 0.231 0.729 0.13 0.13 0 0.1735 0.954 0.077 0.078 0 0.131 0.829 0.092 0.074 0 0.049 0.938 0.096 0.108 0 0.059 0.7045 0.114 0.105 0 0.04 0.7905 0.078 0.101 0 0.697 0.1545 0.102 0.091 0 0.252 0.336 0.13 0.118 0 0.4875 0.362 0.109 0.102 0 0.687
67%|██████▋ | 326/486 [00:19<00:05, 30.29it/s]
0.409 0.098 0.086 0 0.3935 0.448 0.101 0.098 0 0.1985 0.551 0.105 0.114 0 0.16 0.6655 0.096 0.095 0 0.1375 0.7535 0.121 0.107 0 0.1135 0.847 0.111 0.094 0 0.5795 0.7185 0.079 0.073 0 0.728 0.7235 0.098 0.091 0 0.7455 0.9245 0.097 0.089 0 0.846 0.9605 0.09 0.077 0 0.889 0.693 0.076 0.074 0 0.0475 0.083 0.091 0.106 0 0.145 0.0745 0.104 0.099 0 0.297 0.0435 0.098 0.083 0 0.4045 0.036 0.083 0.07 0 0.1845 0.1735 0.095 0.095 0 0.0325 0.2175 0.061 0.091 0 0.047 0.312 0.09 0.098 0 0.0375 0.402 0.073 0.088 0 0.11 0.401 0.088 0.09 0 0.1775 0.321 0.097 0.104 0 0.2305 0.245 0.089 0.09 0 0.308 0.136 0.098 0.092 0 0.404 0.1595 0.1 0.099 0 0.332 0.2265 0.088 0.097 0 0.3485 0.318 0.105 0.1 0 0.097 0.5075 0.1 0.099 0 0.1675 0.447 0.079 0.084 0 0.3505 0.447 0.087 0.094 0 0.4205 0.8325 0.093 0.095 0 0.326 0.9665 0.084 0.061 0 0.35 0.5355 0.086 0.077 0 0.4765 0.531 0.089 0.086 0 0.4375 0.334 0.081 0.082 0 0.529 0.0655 0.066 0.073 0 0.564 0.1065 0.074 0.069 0 0.573 0.179 0.098 0.086 0 0.615 0.235 0.086 0.082 0 0.565 0.2925 0.102 0.073 0 0.591 0.362 0.102 0.098 0 0.5685 0.5035 0.079 0.085 0 0.635 0.5035 0.102 0.115 0 0.7345 0.5025 0.099 0.111 0 0.724 0.633 0.106 0.11 0 0.5775 0.6785 0.083 0.081 0 0.6355 0.718 0.087 0.08 0 0.8225 0.6655 0.103 0.101 0 0.9145 0.641 0.081 0.1 0 0.895 0.4975 0.11 0.107 0 0.9595 0.471 0.081 0.11 0 0.941 0.359 0.084 0.092 0 0.921 0.203 0.108 0.108 0 0.9455 0.0905 0.091 0.085 0 0.8625 0.051 0.091 0.088 0 0.819 0.114 0.104 0.102 0 0.727 0.124 0.094 0.102 0 0.653 0.0815 0.102 0.107 0 0.389 0.966 0.102 0.068 0 0.597 0.9585 0.094 0.083 0 0.503 0.7055 0.108 0.113 0 0.6065 0.736 0.089 0.092 0 0.728 0.7195 0.096 0.085 0 0.746 0.83 0.1 0.088 0 0.7955 0.92 0.083 0.084 0 0.8975 0.9095 0.071 0.069 0 0.9615 0.6845 0.069 0.079 0 0.565 0.6215 0.122 0.089 0 0.597 0.4955 0.078 0.075 0 0.765 0.4335 0.074 0.075 0 0.9065 0.5335 0.089 0.085 0 0.7295 0.2855 0.089 0.095 0 0.608 0.282 0.072 0.08 0 0.622 0.077 0.09 0.092 0 0.3755 0.12 0.075 0.082 0 0.3175 0.3525 0.075 0.067 0 0.415 0.0345 0.076 0.067 0 0.806 0.0655 0.092 0.087 0 0.6865 0.114 0.111 0.104 0 0.594 0.1155 0.078 0.095 0 0.6155 0.2165 0.099 0.091 0 0.675 0.281 0.1 0.098 0 0.479 0.1615 0.082 0.079 0 0.5175 0.2535 0.095 0.091 0 0.531 0.366 0.096 0.094 0 0.7685 0.458 0.095 0.096 0 0.685 0.474 0.07 0.07 0 0.5965 0.484 0.075 0.076 0 0.894 0.612 0.096 0.09 0 0.8605 0.691 0.099 0.096 0 0.788 0.5985 0.088 0.087 0 0.8015 0.7645 0.077 0.069 0 0.7355 0.892 0.083 0.072 0 0.695 0.7665 0.094 0.095 0 0.654 0.8435 0.1 0.089 0 0.572 0.708 0.092 0.096 0 0.493 0.7255 0.084 0.105 0 0.553 0.8175 0.114 0.101 0 0.5275 0.9085 0.105 0.095 0 0.423 0.8775 0.108 0.105 0 0.3175 0.966 0.097 0.066 0 0.22 0.934 0.104 0.096 0 0.2255 0.813 0.079 0.082 0 0.274 0.6895 0.112 0.113 0 0.3355 0.5975 0.091 0.081 0 0.45 0.56 0.108 0.102 0 0.168 0.6755 0.094 0.091 0 0.0605 0.684 0.103 0.104 0 0.1345 0.5715 0.079 0.077 0 0.2895 0.5125 0.089 0.077 0 0.2185 0.4365 0.081 0.087 0 0.302 0.418 0.096 0.098 0 0.3565 0.394 0.093 0.104 0 0.2275 0.3475 0.095 0.095 0 0.147 0.2745 0.094 0.093 0 0.3235 0.221 0.109 0.104 0 0.2 0.1875 0.09 0.079 0 0.271 0.053 0.098 0.086 0 0.2785 0.1135 0.087 0.075 0 0.072 0.059 0.108 0.094 0 0.121 0.1565 0.102 0.097 0 0.042 0.213 0.082 0.09 0 0.059 0.286 0.096 0.084 0 0.1675 0.282 0.107 0.108 0 0.102 0.37 0.094 0.102 0 0.067 0.4645 0.09 0.091 0 0.194 0.5765 0.084 0.077 0 0.2475 0.333 0.081 0.08 0 0.22 0.0555 0.096 0.101 0 0.3135 0.082 0.101 0.1 0 0.404 0.1075 0.1 0.099 0 0.415 0.033 0.108 0.064 0 0.5215 0.1085 0.101 0.097 0 0.472 0.189 0.104 0.09 0 0.4275 0.2795 0.105 0.105 0 0.3555 0.324 0.089 0.094 0 0.639 0.0385 0.106 0.075 0 0.7515 0.0535 0.107
69%|██████▊ | 333/486 [00:20<00:05, 27.78it/s]
0.081 0 0.8765 0.127 0.101 0.102 0 0.778 0.2315 0.118 0.103 0 0.7565 0.352 0.103 0.106 0 0.6365 0.416 0.097 0.07 0 0.3755 0.519 0.097 0.088 0 0.3675 0.4205 0.101 0.077 0 0.291 0.6585 0.118 0.105 0 0.172 0.749 0.1 0.08 0 0.1785 0.846 0.099 0.096 0 0.23 0.956 0.12 0.084 0 0.317 0.9445 0.076 0.073 0 0.3215 0.86 0.079 0.076 0 0.5405 0.8605 0.089 0.089 0 0.4705 0.687 0.077 0.07 0 0.73 0.935 0.096 0.086 0 0.693 0.811 0.082 0.074 0 0.608 0.806 0.086 0.088 0 0.141 0.072 0.094 0.084 0 0.041 0.1665 0.08 0.089 0 0.1465 0.299 0.089 0.086 0 0.1895 0.3925 0.087 0.083 0 0.254 0.2185 0.09 0.083 0 0.365 0.2025 0.108 0.089 0 0.4215 0.042 0.095 0.076 0 0.479 0.207 0.098 0.096 0 0.3085 0.4065 0.081 0.083 0 0.162 0.5255 0.086 0.083 0 0.32 0.5535 0.104 0.091 0 0.4795 0.551 0.089 0.076 0 0.6595 0.0295 0.097 0.057 0 0.694 0.1145 0.094 0.085 0 0.785 0.1765 0.086 0.083 0 0.694 0.2475 0.094 0.085 0 0.818 0.2625 0.096 0.091 0 0.879 0.402 0.1 0.1 0 0.7235 0.4725 0.097 0.097 0 0.92 0.185 0.096 0.106 0 0.89 0.344 0.104 0.112 0 0.7805 0.3025 0.095 0.095 0 0.6635 0.3375 0.065 0.063 0 0.711 0.2215 0.088 0.083 0 0.6765 0.1145 0.089 0.093 0 0.629 0.2475 0.082 0.083 0 0.5055 0.2455 0.083 0.075 0 0.4555 0.1175 0.083 0.085 0 0.163 0.2575 0.082 0.083 0 0.261 0.3865 0.08 0.081 0 0.4195 0.4315 0.091 0.079 0 0.0435 0.544 0.085 0.092 0 0.27 0.588 0.074 0.068 0 0.205 0.726 0.082 0.08 0 0.5245 0.6335 0.091 0.083 0 0.6265 0.6755 0.087 0.079 0 0.71 0.6025 0.09 0.079 0 0.606 0.1225 0.054 0.053 0 0.4315 0.175 0.063 0.066 0 0.3115 0.215 0.057 0.058 0 0.0345 0.544 0.065 0.08 0 0.096 0.5015 0.062 0.075 0 0.1955 0.4825 0.067 0.063 0 0.32 0.4825 0.08 0.079 0 0.371 0.564 0.086 0.092 0 0.3685 0.6785 0.095 0.097 0 0.095 0.6905 0.082 0.077 0 0.1885 0.7685 0.083 0.079 0 0.303 0.7785 0.09 0.087 0 0.4675 0.7425 0.091 0.097 0 0.226 0.8745 0.092 0.081 0 0.328 0.94 0.086 0.072 0 0.4015 0.862 0.087 0.08 0 0.4935 0.8905 0.079 0.079 0 0.5675 0.818 0.113 0.108 0 0.579 0.909 0.094 0.076 0 0.6675 0.9195 0.079 0.081 0 0.908 0.916 0.078 0.08 0 0.7885 0.6855 0.067 0.063 0 0.064 0.096 0.086 0.076 0 0.042 0.1775 0.082 0.093 0 0.09 0.2385 0.082 0.083 0 0.1855 0.275 0.071 0.07 0 0.2485 0.1575 0.079 0.081 0 0.1865 0.3625 0.085 0.083 0 0.207 0.452 0.072 0.08 0 0.2855 0.431 0.077 0.08 0 0.1225 0.529 0.065 0.062 0 0.3305 0.2085 0.073 0.059 0 0.73 0.195 0.09 0.09 0 0.849 0.1965 0.064 0.061 0 0.0515 0.8165 0.073 0.079 0 0.1005 0.9445 0.097 0.089 0 0.1365 0.8395 0.069 0.069 0 0.184 0.9625 0.07 0.075 0 0.2205 0.898 0.087 0.088 0 0.1885 0.8075 0.081 0.085 0 0.273 0.7885 0.09 0.091 0 0.1885 0.6825 0.085 0.095 0 0.326 0.667 0.068 0.07 0 0.4135 0.944 0.059 0.07 0 0.4575 0.733 0.071 0.08 0 0.5275 0.807 0.087 0.086 0 0.4635 0.646 0.075 0.076 0 0.539 0.5795 0.062 0.059 0 0.5725 0.5135 0.073 0.065 0 0.6505 0.442 0.079 0.076 0 0.6615 0.288 0.065 0.06 0 0.719 0.365 0.07 0.066 0 0.7295 0.465 0.069 0.072 0 0.648 0.575 0.074 0.068 0 0.7325 0.6065 0.085 0.081 0 0.6805 0.6785 0.079 0.071 0 0.66 0.795 0.086 0.078 0 0.705 0.878 0.06 0.06 0 0.748 0.757 0.094 0.094 0 0.8465 0.8135 0.075 0.071 0 0.824 0.9075 0.072 0.069 0 0.2895 0.318 0.111 0.11 0 0.332 0.465 0.11 0.104 0 0.063 0.1425 0.084 0.083 0 0.193 0.4555 0.09 0.103 0 0.2035 0.76 0.087 0.096 0 0.466 0.7265 0.082 0.085 0 0.5625 0.802 0.091 0.088 0 0.823 0.9155 0.088 0.087 0 0.812 0.802 0.09 0.08 0 0.734 0.611 0.1 0.096 0 0.8415 0.505 0.107 0.1 0 0.32 0.061 0.06 0.062 0 0.3005 0.134 0.065 0.06 0 0.172 0.1765 0.064 0.065 0 0.153 0.269 0.078 0.092 0
69%|██████▉ | 336/486 [00:20<00:06, 24.77it/s]
0.0715 0.257 0.095 0.104 0 0.2065 0.4775 0.089 0.089 0 0.091 0.6465 0.08 0.079 0 0.305 0.584 0.082 0.076 0 0.55 0.2585 0.072 0.073 0 0.694 0.402 0.104 0.096 0 0.608 0.5205 0.088 0.093 0 0.673 0.4865 0.086 0.089 0 0.7805 0.5285 0.081 0.093 0 0.71 0.8085 0.082 0.085 0 0.2795 0.0965 0.093 0.085 0 0.0385 0.149 0.067 0.066 0 0.122 0.295 0.076 0.068 0 0.269 0.268 0.084 0.076 0 0.1285 0.4375 0.093 0.089 0 0.1815 0.4255 0.077 0.081 0 0.5245 0.0385 0.075 0.075 0 0.535 0.119 0.068 0.066 0 0.539 0.1915 0.08 0.079 0 0.4335 0.1115 0.075 0.087 0 0.898 0.1055 0.094 0.089 0 0.7315 0.1645 0.073 0.081 0 0.4855 0.438 0.079 0.088 0 0.5555 0.3565 0.085 0.079 0 0.641 0.3935 0.074 0.073 0 0.9435 0.8155 0.083 0.085 0 0.878 0.7335 0.086 0.091 0 0.7365 0.784 0.067 0.084 0 0.497 0.8825 0.086 0.089 0 0.6135 0.812 0.089 0.088 0 0.6585 0.8885 0.081 0.073 0 0.6915 0.9695 0.085 0.061 0 0.9185 0.9025 0.077 0.073 0 0.9385 0.972 0.077 0.056 0 0.781 0.051 0.074 0.08 0 0.8865 0.066 0.089 0.082 0 0.9135 0.204 0.099 0.1 0 0.803 0.1755 0.1 0.091 0 0.703 0.178 0.11 0.104 0 0.5795 0.177 0.077 0.07 0 0.1055 0.1255 0.069 0.065 0 0.366 0.182 0.066 0.064 0 0.2455 0.2725 0.065 0.073 0 0.324 0.3205 0.076 0.075 0 0.4495 0.3245 0.069 0.073 0 0.556 0.2945 0.088 0.089 0 0.6655 0.311 0.099 0.098 0 0.8105 0.338 0.083 0.078 0 0.903 0.3275 0.08 0.087 0 0.9595 0.4495 0.075 0.105 0 0.858 0.4575 0.1 0.095 0 0.924 0.51 0.088 0.082 0 0.9055 0.591 0.087 0.094 0 0.7535 0.4195 0.091 0.083 0 0.5985 0.4555 0.077 0.073 0 0.2155 0.4005 0.091 0.089 0 0.219 0.5215 0.084 0.081 0 0.317 0.519 0.084 0.074 0 0.412 0.4565 0.072 0.067 0 0.681 0.514 0.09 0.086 0 0.789 0.566 0.094 0.096 0 0.621 0.609 0.088 0.084 0 0.739 0.6835 0.086 0.075 0 0.604 0.7 0.082 0.078 0 0.65 0.7945 0.076 0.069 0 0.8325 0.7695 0.085 0.087 0 0.874 0.695 0.088 0.088 0 0.9035 0.802 0.077 0.084 0 0.834 0.8865 0.084 0.075 0 0.5425 0.8065 0.081 0.079 0 0.4565 0.5665 0.085 0.083 0 0.379 0.6235 0.094 0.089 0 0.286 0.6105 0.088 0.087 0 0.303 0.7455 0.096 0.099 0 0.407 0.814 0.09 0.09 0 0.0975 0.781 0.077 0.08 0 0.1705 0.8655 0.097 0.073 0 0.201 0.9495 0.07 0.073 0 0.278 0.835 0.088 0.078 0 0.372 0.9085 0.084 0.085 0 0.6135 0.33 0.089 0.094 0 0.4535 0.345 0.083 0.078 0 0.4635 0.457 0.099 0.096 0 0.599 0.4595 0.102 0.091 0 0.7265 0.4895 0.083 0.093 0 0.3485 0.399 0.089 0.094 0 0.222 0.38 0.084 0.084 0 0.105 0.945 0.078 0.076 0 0.2565 0.802 0.087 0.084 0 0.379 0.8195 0.082 0.083 0 0.4465 0.782 0.061 0.062 0 0.4275 0.642 0.085 0.082 0 0.3535 0.5705 0.059 0.055 0 0.4385 0.9615 0.079 0.071 0 0.5455 0.8245 0.085 0.087 0 0.582 0.744 0.074 0.066 0 0.5595 0.6705 0.089 0.093 0 0.603 0.576 0.092 0.092 0 0.686 0.647 0.084 0.086 0 0.873 0.5585 0.092 0.093 0 0.8595 0.66 0.095 0.084 0 0.9315 0.6295 0.097 0.099 0 0.894 0.7515 0.094 0.085 0 0.9555 0.4685 0.079 0.079 0 0.0535 0.1015 0.063 0.057 0 0.1045 0.254 0.067 0.064 0 0.2565 0.5105 0.091 0.091 0 0.3915 0.476 0.093 0.09 0 0.5615 0.433 0.083 0.086 0 0.052 0.6465 0.088 0.085 0 0.0825 0.7345 0.097 0.091 0 0.0655 0.886 0.089 0.088 0 0.1145 0.8355 0.085 0.089 0 0.23 0.734 0.084 0.084 0 0.2375 0.865 0.109 0.1 0 0.2315 0.9645 0.079 0.069 0 0.347 0.607 0.08 0.078 0 0.357 0.7275 0.078 0.073 0 0.3945 0.837 0.075 0.082 0 0.434 0.952 0.108 0.088 0 0.529 0.8455
71%|███████ | 345/486 [00:20<00:04, 31.11it/s]
0.09 0.089 0 0.52 0.722 0.092 0.09 0 0.5635 0.9655 0.091 0.069 0 0.679 0.9585 0.102 0.073 0 0.7785 0.958 0.095 0.082 0 0.9305 0.0555 0.097 0.091 0 0.9375 0.171 0.085 0.08 0 0.331 0.1165 0.078 0.077 0 0.371 0.207 0.1 0.088 0 0.277 0.254 0.098 0.078 0 0.192 0.311 0.102 0.094 0 0.095 0.362 0.104 0.1 0 0.2115 0.6235 0.113 0.113 0 0.327 0.444 0.082 0.078 0 0.405 0.324 0.09 0.076 0 0.4945 0.3525 0.073 0.075 0 0.2685 0.738 0.083 0.08 0 0.7455 0.684 0.117 0.108 0 0.77 0.5885 0.088 0.073 0 0.9435 0.631 0.085 0.086 0 0.049 0.647 0.088 0.092 0 0.1115 0.783 0.091 0.076 0 0.1485 0.8605 0.107 0.095 0 0.2265 0.916 0.113 0.116 0 0.3535 0.9235 0.111 0.085 0 0.252 0.799 0.094 0.086 0 0.165 0.6925 0.094 0.085 0 0.3755 0.706 0.089 0.076 0 0.2775 0.7365 0.083 0.081 0 0.352 0.777 0.088 0.082 0 0.4175 0.8085 0.099 0.107 0 0.5895 0.9295 0.089 0.067 0 0.4005 0.3725 0.073 0.069 0 0.208 0.07 0.074 0.074 0 0.3075 0.1455 0.083 0.087 0 0.7835 0.0395 0.081 0.069 0 0.9195 0.2005 0.077 0.067 0 0.555 0.108 0.092 0.086 0 0.732 0.14 0.08 0.07 0 0.1405 0.0995 0.081 0.081 0 0.253 0.038 0.086 0.074 0 0.402 0.112 0.128 0.124 0 0.407 0.3295 0.104 0.093 0 0.672 0.1665 0.09 0.091 0 0.703 0.2725 0.104 0.103 0 0.617 0.2875 0.084 0.085 0 0.5465 0.313 0.089 0.098 0 0.7105 0.39 0.101 0.102 0 0.848 0.3755 0.112 0.119 0 0.9555 0.355 0.081 0.092 0 0.9585 0.52 0.083 0.084 0 0.836 0.5065 0.078 0.083 0 0.638 0.8175 0.088 0.083 0 0.544 0.6815 0.08 0.083 0 0.069 0.2715 0.104 0.109 0 0.0445 0.171 0.081 0.088 0 0.044 0.0635 0.078 0.083 0 0.2505 0.0955 0.081 0.095 0 0.333 0.149 0.076 0.064 0 0.533 0.17 0.11 0.114 0 0.635 0.0385 0.088 0.069 0 0.6175 0.1265 0.109 0.083 0 0.646 0.1995 0.096 0.081 0 0.612 0.2755 0.104 0.095 0 0.8585 0.0865 0.093 0.093 0 0.8255 0.144 0.097 0.084 0 0.8025 0.2245 0.097 0.095 0 0.041 0.844 0.074 0.088 0 0.157 0.809 0.092 0.086 0 0.243 0.7395 0.096 0.089 0 0.496 0.739 0.084 0.086 0 0.96 0.2955 0.08 0.083 0 0.442 0.306 0.086 0.09 0 0.83 0.3215 0.09 0.091 0 0.554 0.4865 0.092 0.085 0 0.0405 0.4205 0.075 0.085 0 0.043 0.601 0.084 0.11 0 0.1935 0.645 0.099 0.092 0 0.1785 0.8425 0.101 0.087 0 0.2645 0.8015 0.079 0.083 0 0.486 0.8885 0.086 0.081 0 0.596 0.791 0.066 0.064 0 0.288 0.064 0.072 0.068 0 0.7355 0.04 0.085 0.07 0 0.466 0.2405 0.092 0.095 0 0.506 0.3375 0.082 0.087 0 0.419 0.3345 0.09 0.093 0 0.377 0.2385 0.086 0.089 0 0.2145 0.5755 0.085 0.085 0 0.1445 0.615 0.097 0.106 0 0.6315 0.654 0.081 0.086 0 0.6325 0.797 0.075 0.072 0 0.875 0.862 0.114 0.112 0 0.067 0.1195 0.094 0.091 0 0.044 0.1915 0.084 0.085 0 0.0775 0.3745 0.093 0.099 0 0.1255 0.3115 0.077 0.073 0 0.407 0.0465 0.086 0.075 0 0.4055 0.152 0.083 0.082 0 0.597 0.1085 0.114 0.103 0 0.4955 0.195 0.093 0.096 0 0.633 0.233 0.082 0.084 0 0.29 0.349 0.09 0.086 0 0.1785 0.4785 0.097 0.107 0 0.121 0.543 0.088 0.072 0 0.041 0.5945 0.076 0.091 0 0.044 0.7145 0.08 0.093 0 0.206 0.6005 0.092 0.091 0 0.242 0.6925 0.08 0.077 0 0.2715 0.5375 0.089 0.085 0 0.313 0.458 0.082 0.084 0 0.3785 0.34 0.083 0.092 0 0.4625 0.4275 0.083 0.079 0 0.5325 0.3365 0.103 0.113 0 0.6225 0.356 0.085 0.1 0 0.711 0.337 0.1 0.096 0 0.896 0.361 0.104 0.106 0 0.877 0.654 0.094 0.086 0 0.9595 0.675 0.075 0.094 0 0.071 0.042 0.076 0.082 0 0.2345 0.4505 0.093 0.087 0 0.327 0.455 0.102 0.1 0 0.0405 0.668 0.077 0.088 0 0.151 0.7085 0.088 0.075 0 0.235 0.624 0.09 0.094 0 0.242 0.761 0.112 0.108 0 0.168 0.802 0.088 0.082 0 0.261 0.8955 0.104 0.101 0 0.3495 0.6875 0.099 0.093 0 0.4375 0.781 0.107 0.098 0 0.6465 0.726 0.107 0.108 0 0.702 0.962 0.094 0.076 0 0.7625 0.843 0.101 0.09 0 0.7155 0.6595 0.105 0.105 0 0.727 0.545 0.106 0.098 0 0.833 0.462 0.098 0.09 0 0.904 0.807 0.11 0.132 0 0.907 0.3895 0.096 0.097
72%|███████▏ | 349/486 [00:20<00:05, 25.49it/s]
0 0.702 0.0605 0.104 0.097 0 0.718 0.134 0.104 0.07 0 0.7345 0.2075 0.095 0.093 0 0.8595 0.2255 0.081 0.083 0 0.804 0.3105 0.094 0.093 0 0.8955 0.369 0.069 0.066 0 0.5265 0.0385 0.091 0.075 0 0.608 0.1415 0.092 0.093 0 0.627 0.256 0.094 0.092 0 0.688 0.34 0.084 0.076 0 0.679 0.442 0.086 0.092 0 0.6415 0.5055 0.075 0.075 0 0.757 0.588 0.084 0.074 0 0.8645 0.62 0.091 0.094 0 0.8665 0.8045 0.083 0.089 0 0.945 0.9135 0.086 0.081 0 0.789 0.8555 0.076 0.075 0 0.956 0.8125 0.078 0.077 0 0.45 0.0685 0.1 0.087 0 0.4735 0.153 0.097 0.088 0 0.5635 0.2895 0.075 0.071 0 0.5435 0.37 0.089 0.09 0 0.602 0.3755 0.078 0.107 0 0.338 0.0475 0.114 0.093 0 0.328 0.146 0.102 0.098 0 0.4105 0.2985 0.107 0.103 0 0.3955 0.4355 0.071 0.067 0 0.47 0.4875 0.08 0.071 0 0.505 0.601 0.078 0.086 0 0.5545 0.7045 0.085 0.093 0 0.2315 0.0995 0.091 0.095 0 0.242 0.172 0.086 0.074 0 0.126 0.109 0.096 0.08 0 0.138 0.198 0.1 0.102 0 0.224 0.248 0.118 0.1 0 0.2375 0.3515 0.101 0.101 0 0.2715 0.456 0.101 0.104 0 0.2975 0.5435 0.095 0.091 0 0.3865 0.6065 0.101 0.101 0 0.4295 0.716 0.097 0.084 0 0.321 0.7385 0.102 0.105 0 0.2545 0.6805 0.093 0.085 0 0.2925 0.624 0.087 0.076 0 0.2135 0.5965 0.097 0.097 0 0.1985 0.507 0.071 0.084 0 0.1485 0.4255 0.089 0.097 0 0.134 0.312 0.1 0.108 0 0.036 0.1235 0.07 0.091 0 0.0335 0.226 0.065 0.09 0 0.052 0.2995 0.082 0.089 0 0.0715 0.3695 0.089 0.093 0 0.1 0.51 0.1 0.09 0 0.1125 0.6085 0.101 0.103 0 0.126 0.6855 0.112 0.095 0 0.0715 0.7775 0.079 0.095 0 0.1415 0.778 0.079 0.09 0 0.1045 0.923 0.089 0.09 0 0.2405 0.87 0.093 0.082 0 0.333 0.897 0.072 0.074 0 0.407 0.909 0.086 0.086 0 0.6185 0.1325 0.085 0.087 0 0.5415 0.304 0.091 0.096 0 0.3785 0.3585 0.125 0.119 0 0.7265 0.2255 0.117 0.117 0 0.701 0.3255 0.126 0.103 0 0.9585 0.1585 0.083 0.101 0 0.8775 0.1565 0.113 0.121 0 0.959 0.5235 0.082 0.119 0 0.9115 0.6235 0.103 0.091 0 0.555 0.4765 0.1 0.091 0 0.2365 0.5075 0.093 0.095 0 0.322 0.5765 0.112 0.109 0 0.4235 0.5775 0.113 0.125 0 0.1635 0.6095 0.105 0.089 0 0.354 0.951 0.116 0.098 0 0.1235 0.636 0.073 0.07 0 0.232 0.651 0.07 0.06 0 0.3535 0.644 0.069 0.068 0 0.4455 0.6425 0.083 0.081 0 0.5295 0.6275 0.067 0.061 0 0.672 0.6355 0.062 0.057 0 0.6785 0.8035 0.085 0.075 0 0.791 0.842 0.09 0.086 0 0.4195 0.9705 0.071 0.059 0 0.936 0.9 0.066 0.068 0 0.872 0.674 0.094 0.084 0 0.631 0.494 0.072 0.068 0 0.8905 0.4545 0.083 0.079 0 0.8905 0.3245 0.109 0.103 0 0.6125 0.3285 0.069 0.071 0 0.7135 0.264 0.077 0.072 0 0.125 0.4495 0.08 0.081 0 0.04 0.3725 0.078 0.089 0 0.374 0.3065 0.096 0.091 0 0.4355 0.255 0.085 0.086 0 0.645 0.1505 0.08 0.075 0 0.7375 0.169 0.087 0.092 0 0.796 0.1405 0.07 0.069 0 0.8765 0.1975 0.083 0.077 0 0.187 0.076 0.108 0.116 0 0.2805 0.121 0.103 0.106 0 0.268 0.205 0.086 0.074 0 0.131 0.31 0.098 0.09 0 0.2315 0.3335 0.109 0.095 0 0.347 0.35 0.11 0.108 0 0.369 0.4245 0.082 0.069 0 0.3625 0.2465 0.107 0.103 0 0.444 0.2665 0.074 0.075 0 0.212 0.437 0.082 0.078 0 0.0855 0.6205 0.111 0.097 0 0.077 0.7325 0.12 0.121 0 0.1605 0.8125 0.119 0.117 0 0.3545 0.8745 0.105 0.101 0 0.491 0.6665 0.098 0.101 0 0.534 0.8105 0.096 0.105 0 0.6295 0.796 0.097 0.088 0 0.6495 0.9055 0.089 0.093 0 0.7295 0.9445 0.097 0.089 0 0.6995 0.727 0.093 0.076 0 0.6585 0.5255 0.099 0.093 0 0.8685 0.81 0.077 0.072 0 0.96 0.848 0.08 0.088 0 0.935 0.735 0.1 0.102 0 0.8405 0.738 0.105 0.082 0 0.7955 0.662 0.099 0.086 0 0.879 0.6315 0.09 0.075 0 0.7675 0.5465 0.083 0.077 0 0.8725 0.529 0.097 0.094 0 0.958 0.5495 0.076 0.081 0 0.7525 0.4655 0.079 0.079
72%|███████▏ | 352/486 [00:20<00:05, 26.00it/s]
0 0.8565 0.1995 0.095 0.087 0 0.9575 0.4355 0.079 0.075 0 0.8085 0.4645 0.091 0.097 0 0.7295 0.5415 0.071 0.071 0 0.8025 0.622 0.079 0.076 0 0.7635 0.7435 0.105 0.097 0 0.661 0.8965 0.098 0.093 0 0.5605 0.721 0.089 0.084 0 0.5355 0.871 0.091 0.074 0 0.526 0.9295 0.096 0.071 0 0.421 0.6145 0.086 0.081 0 0.382 0.4365 0.088 0.079 0 0.314 0.4855 0.064 0.063 0 0.146 0.5145 0.084 0.083 0 0.143 0.724 0.086 0.08 0 0.136 0.3695 0.082 0.077 0 0.729 0.2695 0.096 0.095 0 0.6625 0.1655 0.099 0.097 0 0.895 0.077 0.102 0.096 0 0.855 0.161 0.074 0.064 0 0.844 0.283 0.084 0.08 0 0.7505 0.2525 0.085 0.081 0 0.7205 0.1015 0.083 0.081 0 0.379 0.0505 0.114 0.097 0 0.1995 0.0685 0.073 0.065 0 0.052 0.126 0.094 0.106 0 0.093 0.24 0.094 0.092 0 0.41 0.3025 0.094 0.085 0 0.2065 0.4325 0.087 0.083 0 0.1055 0.556 0.113 0.11 0 0.06 0.676 0.1 0.108 0 0.033 0.7755 0.064 0.077 0 0.0985 0.9155 0.099 0.101 0 0.147 0.7575 0.098 0.093 0 0.228 0.6025 0.098 0.095 0 0.2335 0.6995 0.093 0.087 0 0.228 0.8965 0.094 0.089 0 0.343 0.743 0.096 0.094 0 0.373 0.877 0.116 0.1 0 0.503 0.8515 0.1 0.099 0 0.518 0.965 0.108 0.062 0 0.922 0.754 0.096 0.096 0 0.5975 0.3405 0.099 0.095 0 0.7205 0.3745 0.087 0.085 0 0.905 0.5035 0.088 0.083 0 0.921 0.6155 0.082 0.083 0 0.624 0.642 0.106 0.102 0 0.7705 0.0525 0.127 0.103 0 0.8745 0.15 0.087 0.088 0 0.754 0.162 0.108 0.108 0 0.791 0.2535 0.066 0.063 0 0.8385 0.8965 0.097 0.099 0 0.8745 0.7965 0.083 0.075 0 0.738 0.9325 0.072 0.065 0 0.726 0.6935 0.086 0.089 0 0.608 0.9535 0.092 0.079 0 0.5505 0.86 0.093 0.09 0 0.4485 0.8475 0.093 0.097 0 0.334 0.8155 0.084 0.081 0 0.4705 0.72 0.077 0.078 0 0.498 0.6185 0.106 0.109 0 0.607 0.671 0.084 0.074 0 0.6305 0.573 0.089 0.09 0 0.746 0.5615 0.118 0.107 0 0.1085 0.917 0.077 0.068 0 0.064 0.7265 0.08 0.073 0 0.059 0.788 0.062 0.052 0 0.206 0.6575 0.06 0.061 0 0.2295 0.466 0.103 0.094 0 0.341 0.396 0.106 0.102 0 0.16 0.039 0.11 0.076 0 0.0505 0.0505 0.097 0.099 0 0.1625 0.12 0.105 0.098 0 0.1125 0.162 0.101 0.102 0 0.2625 0.151 0.101 0.106 0 0.237 0.252 0.09 0.094 0 0.145 0.249 0.094 0.096 0 0.1005 0.318 0.107 0.106 0 0.0875 0.4125 0.119 0.103 0 0.1165 0.507 0.095 0.098 0 0.054 0.539 0.09 0.09 0 0.154 0.8085 0.11 0.101 0 0.334 0.8665 0.096 0.087 0 0.326 0.6935 0.104 0.105 0 0.325 0.494 0.112 0.106 0 0.4875 0.5155 0.111 0.117 0 0.4745 0.9225 0.107 0.103 0 0.607 0.7255 0.082 0.079 0 0.666 0.6695 0.096 0.089 0 0.687 0.9295 0.076 0.075 0 0.7685 0.8565 0.083 0.087 0 0.842 0.816 0.088 0.096 0 0.9325 0.92 0.095 0.092 0 0.574 0.0335 0.076 0.065 0 0.1785 0.044 0.093 0.078 0 0.1005 0.284 0.087 0.098 0 0.1975 0.2495 0.073 0.063 0 0.0645 0.374 0.089 0.084 0 0.1295 0.4305 0.095 0.099 0 0.227 0.4045 0.09 0.083 0 0.249 0.3085 0.088 0.081 0 0.3855 0.289 0.089 0.078 0 0.5555 0.326 0.077 0.074 0 0.6515 0.3265 0.089 0.085 0 0.7905 0.349 0.093 0.086 0 0.3385 0.4695 0.079 0.079 0 0.4305 0.5335 0.073 0.075 0 0.0885 0.624 0.075 0.072 0 0.232 0.6265 0.068 0.065 0 0.337 0.626 0.064 0.064 0 0.0725 0.7305 0.103 0.095 0 0.1965 0.7265 0.089 0.085 0 0.3215 0.748 0.095 0.1 0 0.435 0.7635 0.084 0.089 0 0.763 0.583 0.084 0.082 0 0.749 0.669 0.09 0.09 0 0.682 0.7455 0.058 0.059 0 0.103 0.941 0.114 0.102 0 0.069 0.88 0.106 0.09 0 0.1535 0.869 0.089 0.088 0 0.24 0.855 0.094 0.088 0 0.2235 0.9365 0.109 0.107 0 0.3105 0.9445 0.079 0.077 0 0.3595 0.883 0.113 0.104 0 0.523 0.872 0.118 0.108 0 0.4655 0.9635 0.113 0.073 0 0.596 0.9465 0.112 0.103 0 0.699 0.969 0.084 0.062 0 0.709 0.878 0.088 0.09 0 0.7985 0.898 0.083 0.088 0 0.811 0.7955 0.084 0.081 0 0.5815 0.8265 0.089 0.081 0 0.638 0.8115 0.068 0.071 0 0.8475 0.733 0.059 0.052 0 0.8925 0.675 0.077 0.068
74%|███████▍ | 359/486 [00:21<00:05, 23.78it/s]
0 0.822 0.924 0.12 0.116 0 0.549 0.9375 0.11 0.095 0 0.6795 0.829 0.103 0.102 0 0.7625 0.6865 0.091 0.091 0 0.7595 0.561 0.087 0.09 0 0.825 0.48 0.066 0.07 0 0.4895 0.512 0.085 0.086 0 0.576 0.5295 0.09 0.087 0 0.4765 0.662 0.095 0.096 0 0.5205 0.7635 0.093 0.093 0 0.596 0.782 0.088 0.118 0 0.424 0.8185 0.092 0.093 0 0.266 0.784 0.078 0.086 0 0.0895 0.89 0.095 0.092 0 0.1795 0.731 0.077 0.07 0 0.251 0.525 0.074 0.072 0 0.197 0.5395 0.076 0.077 0 0.1945 0.6595 0.091 0.085 0 0.3525 0.3695 0.075 0.073 0 0.249 0.3975 0.076 0.073 0 0.1145 0.191 0.075 0.074 0 0.0335 0.209 0.065 0.08 0 0.255 0.5675 0.1 0.087 0 0.299 0.6575 0.11 0.107 0 0.4575 0.632 0.119 0.112 0 0.3685 0.821 0.097 0.086 0 0.3425 0.942 0.081 0.07 0 0.492 0.931 0.102 0.1 0 0.7645 0.9185 0.071 0.057 0 0.771 0.825 0.1 0.094 0 0.8765 0.9545 0.097 0.085 0 0.9215 0.811 0.099 0.098 0 0.812 0.7105 0.098 0.093 0 0.966 0.6775 0.068 0.065 0 0.6295 0.478 0.115 0.102 0 0.7415 0.367 0.111 0.096 0 0.815 0.457 0.106 0.1 0 0.0655 0.1425 0.089 0.085 0 0.1515 0.208 0.081 0.088 0 0.0415 0.3295 0.079 0.099 0 0.102 0.41 0.086 0.09 0 0.1505 0.313 0.101 0.102 0 0.2485 0.374 0.091 0.098 0 0.369 0.264 0.078 0.08 0 0.451 0.3165 0.08 0.083 0 0.3875 0.401 0.101 0.09 0 0.5835 0.393 0.091 0.09 0 0.553 0.5005 0.104 0.107 0 0.0475 0.62 0.087 0.096 0 0.161 0.7025 0.092 0.091 0 0.2465 0.492 0.069 0.084 0 0.321 0.5815 0.084 0.087 0 0.4125 0.5945 0.089 0.075 0 0.678 0.511 0.086 0.088 0 0.7055 0.29 0.105 0.088 0 0.833 0.209 0.094 0.086 0 0.861 0.358 0.098 0.08 0 0.941 0.1075 0.09 0.081 0 0.7855 0.582 0.103 0.094 0 0.939 0.607 0.086 0.078 0 0.0595 0.907 0.091 0.08 0 0.1735 0.035 0.089 0.068 0 0.153 0.2315 0.074 0.067 0 0.2365 0.311 0.071 0.068 0 0.1535 0.351 0.087 0.078 0 0.0785 0.4365 0.067 0.071 0 0.1725 0.478 0.063 0.07 0 0.245 0.427 0.066 0.076 0 0.2955 0.369 0.063 0.062 0 0.416 0.0835 0.062 0.057 0 0.5025 0.0515 0.091 0.083 0 0.456 0.2075 0.076 0.077 0 0.522 0.1315 0.08 0.073 0 0.608 0.1165 0.09 0.079 0 0.5515 0.201 0.079 0.074 0 0.5175 0.25 0.081 0.076 0 0.6225 0.2045 0.089 0.093 0 0.72 0.155 0.082 0.072 0 0.705 0.239 0.096 0.098 0 0.877 0.0755 0.122 0.127 0 0.961 0.1165 0.078 0.105 0 0.956 0.0385 0.088 0.075 0 0.849 0.1955 0.112 0.109 0 0.9175 0.2985 0.099 0.097 0 0.9505 0.4235 0.099 0.105 0 0.826 0.3975 0.104 0.097 0 0.679 0.331 0.096 0.086 0 0.6115 0.3655 0.095 0.099 0 0.72 0.4375 0.12 0.105 0 0.874 0.488 0.074 0.076 0 0.931 0.55 0.088 0.086 0 0.621 0.456 0.088 0.092 0 0.572 0.491 0.078 0.08 0 0.4945 0.508 0.099 0.1 0 0.4445 0.4575 0.085 0.073 0 0.403 0.3805 0.092 0.085 0 0.2575 0.544 0.081 0.09 0 0.1805 0.5745 0.079 0.073 0 0.2965 0.615 0.089 0.086 0 0.2345 0.6745 0.085 0.077 0 0.1365 0.679 0.083 0.076 0 0.07 0.734 0.09 0.092 0 0.101 0.832 0.08 0.08 0 0.148 0.918 0.088 0.08 0 0.219 0.901 0.1 0.086 0 0.2445 0.7965 0.107 0.095 0 0.3335 0.8535 0.087 0.089 0 0.3875 0.9275 0.093 0.079 0 0.473 0.95 0.088 0.086 0 0.3945 0.768 0.093 0.08 0 0.392 0.669 0.098 0.094 0 0.4595 0.7435 0.083 0.103 0 0.5145 0.873 0.093 0.088 0 0.6115 0.9125 0.105 0.099 0 0.878 0.9645 0.098 0.071 0 0.793 0.9185 0.094 0.099 0 0.7695 0.841 0.091 0.082 0 0.6625 0.833 0.073 0.082 0 0.5685 0.78 0.093 0.094 0 0.5265 0.6495 0.103 0.103 0 0.6225 0.6665 0.095 0.087 0 0.6395 0.7375 0.079 0.083 0 0.7395 0.6855 0.111 0.107 0 0.839 0.7645 0.098 0.101 0 0.9165 0.8745 0.097 0.107 0 0.034 0.94 0.064 0.092 0 0.1365 0.952 0.111 0.088 0 0.1695 0.8305 0.085 0.091 0 0.142 0.68 0.09 0.092 0 0.1475 0.5685 0.069 0.073 0 0.132 0.459 0.1 0.092 0 0.249 0.5895 0.082 0.075 0 0.2475 0.364 0.091 0.092 0 0.3335 0.448 0.103 0.102 0 0.394 0.929 0.092 0.076 0 0.4135 0.813 0.077 0.068 0 0.6635 0.9525 0.083 0.073 0 0.5505 0.7565 0.091 0.083 0 0.5425 0.6085 0.081 0.079 0 0.629 0.646 0.086 0.088 0 0.776 0.621 0.084 0.078 0 0.9605 0.4365 0.079 0.091 0 0.8335 0.034 0.099 0.066 0 0.72 0.055 0.096 0.088 0 0.816 0.125 0.102 0.1 0 0.959 0.338
74%|███████▍ | 362/486 [00:21<00:05, 23.19it/s]
0.082 0.078 0 0.7665 0.2695 0.095 0.103 0 0.6955 0.1445 0.091 0.089 0 0.5985 0.0865 0.065 0.055 0 0.557 0.1225 0.078 0.081 0 0.567 0.2045 0.074 0.075 0 0.6195 0.233 0.081 0.1 0 0.6775 0.214 0.067 0.074 0 0.6795 0.377 0.093 0.092 0 0.784 0.439 0.098 0.092 0 0.7725 0.5245 0.113 0.101 0 0.69 0.463 0.086 0.082 0 0.613 0.4685 0.09 0.099 0 0.567 0.5545 0.098 0.091 0 0.498 0.3625 0.096 0.097 0 0.4625 0.255 0.075 0.082 0 0.471 0.1405 0.102 0.105 0 0.4145 0.039 0.095 0.076 0 0.326 0.083 0.096 0.1 0 0.227 0.1625 0.074 0.071 0 0.215 0.2545 0.102 0.085 0 0.2 0.328 0.108 0.098 0 0.125 0.361 0.088 0.096 0 0.225 0.4165 0.088 0.097 0 0.1585 0.4785 0.099 0.099 0 0.255 0.517 0.084 0.084 0 0.24 0.6035 0.094 0.087 0 0.356 0.575 0.124 0.122 0 0.498 0.6935 0.124 0.115 0 0.5725 0.7755 0.107 0.103 0 0.4125 0.8265 0.103 0.097 0 0.2865 0.738 0.109 0.104 0 0.19 0.7315 0.094 0.107 0 0.1075 0.6905 0.089 0.097 0 0.067 0.75 0.084 0.098 0 0.0455 0.873 0.089 0.092 0 0.176 0.926 0.102 0.082 0 0.22 0.8675 0.1 0.107 0 0.292 0.851 0.09 0.084 0 0.041 0.042 0.078 0.08 0 0.101 0.0995 0.08 0.089 0 0.178 0.0465 0.088 0.083 0 0.2515 0.0485 0.079 0.089 0 0.3295 0.0545 0.089 0.089 0 0.079 0.1945 0.092 0.093 0 0.165 0.196 0.108 0.104 0 0.262 0.142 0.09 0.086 0 0.4035 0.1665 0.077 0.079 0 0.3335 0.1895 0.083 0.093 0 0.2705 0.223 0.099 0.086 0 0.258 0.3065 0.106 0.101 0 0.069 0.375 0.084 0.084 0 0.389 0.317 0.084 0.078 0 0.65 0.5175 0.096 0.091 0 0.417 0.8115 0.07 0.063 0 0.6675 0.846 0.093 0.088 0 0.8285 0.8385 0.103 0.101 0 0.9135 0.788 0.103 0.106 0 0.9515 0.691 0.083 0.096 0 0.8835 0.508 0.125 0.118 0 0.085 0.536 0.11 0.114 0 0.1545 0.4845 0.093 0.093 0 0.0895 0.665 0.103 0.112 0 0.1575 0.6265 0.073 0.077 0 0.249 0.558 0.088 0.088 0 0.3475 0.594 0.095 0.096 0 0.242 0.689 0.116 0.12 0 0.199 0.793 0.084 0.084 0 0.2545 0.8725 0.085 0.085 0 0.319 0.803 0.122 0.116 0 0.3425 0.6935 0.111 0.107 0 0.427 0.7225 0.11 0.111 0 0.5305 0.661 0.103 0.094 0 0.6255 0.689 0.085 0.082 0 0.696 0.7175 0.1 0.099 0 0.8025 0.734 0.115 0.11 0 0.912 0.7585 0.104 0.105 0 0.7525 0.8495 0.121 0.113 0 0.6305 0.869 0.121 0.112 0 0.4265 0.9545 0.119 0.091 0 0.541 0.937 0.108 0.092 0 0.7085 0.9655 0.109 0.069 0 0.223 0.0405 0.094 0.071 0 0.3455 0.0505 0.097 0.089 0 0.6345 0.0685 0.097 0.089 0 0.803 0.057 0.084 0.076 0 0.461 0.1845 0.08 0.077 0 0.756 0.1965 0.07 0.073 0 0.8545 0.251 0.081 0.076 0 0.75 0.3595 0.072 0.075 0 0.2655 0.253 0.091 0.09 0 0.122 0.3855 0.08 0.071 0 0.4655 0.7675 0.075 0.077 0 0.4215 0.9305 0.093 0.091 0 0.0605 0.9095 0.069 0.073 0 0.601 0.864 0.066 0.068 0 0.714 0.773 0.092 0.098 0 0.3545 0.8955 0.095 0.095 0 0.4825 0.8415 0.107 0.099 0 0.401 0.751 0.084 0.074 0 0.5515 0.6515 0.087 0.091 0 0.631 0.7545 0.112 0.099 0 0.879 0.802 0.09 0.092 0 0.807 0.7095 0.096 0.089 0 0.9465 0.7115 0.095 0.099 0 0.684 0.571 0.088 0.08 0 0.729 0.494 0.11 0.106 0 0.5795 0.487 0.089 0.084 0 0.3715 0.4595 0.099 0.097 0 0.2345 0.439 0.101 0.1 0 0.085 0.4035 0.094 0.089 0 0.2075 0.2595 0.101 0.095 0 0.4865 0.333 0.097 0.09 0 0.5935 0.356 0.095 0.088 0 0.6975 0.3605 0.109 0.093 0 0.841 0.3475 0.108 0.107 0 0.112 0.1645 0.096 0.095 0 0.8505 0.118 0.095 0.1 0 0.943 0.129 0.064 0.078
76%|███████▌ | 368/486 [00:21<00:04, 25.05it/s]
0 0.1115 0.1265 0.083 0.081 0 0.1625 0.075 0.093 0.1 0 0.211 0.036 0.094 0.062 0 0.043 0.3755 0.082 0.083 0 0.065 0.5705 0.092 0.091 0 0.3915 0.0955 0.093 0.091 0 0.3295 0.2375 0.095 0.085 0 0.251 0.391 0.106 0.096 0 0.2015 0.556 0.099 0.088 0 0.5225 0.121 0.095 0.092 0 0.4665 0.265 0.111 0.108 0 0.3785 0.447 0.097 0.092 0 0.417 0.559 0.09 0.098 0 0.645 0.0405 0.092 0.079 0 0.5255 0.394 0.091 0.088 0 0.752 0.948 0.106 0.094 0 0.905 0.919 0.108 0.092 0 0.766 0.755 0.088 0.092 0 0.8545 0.733 0.079 0.068 0 0.8475 0.514 0.093 0.076 0 0.6915 0.516 0.079 0.076 0 0.7525 0.4245 0.085 0.089 0 0.8895 0.147 0.087 0.078 0 0.7705 0.946 0.085 0.074 0 0.7905 0.777 0.091 0.09 0 0.491 0.7665 0.092 0.079 0 0.371 0.7605 0.088 0.089 0 0.9475 0.7665 0.095 0.097 0 0.9545 0.642 0.087 0.098 0 0.6965 0.649 0.111 0.116 0 0.2465 0.668 0.097 0.086 0 0.226 0.5325 0.104 0.111 0 0.332 0.5955 0.098 0.093 0 0.335 0.497 0.096 0.092 0 0.427 0.56 0.098 0.1 0 0.5155 0.5685 0.107 0.101 0 0.6425 0.5035 0.115 0.121 0 0.9575 0.5075 0.085 0.081 0 0.84 0.4085 0.086 0.075 0 0.6355 0.348 0.085 0.092 0 0.5155 0.367 0.107 0.092 0 0.97 0.361 0.06 0.072 0 0.2145 0.301 0.099 0.09 0 0.8355 0.173 0.095 0.102 0 0.951 0.1255 0.088 0.093 0 0.0655 0.1945 0.093 0.089 0 0.113 0.3215 0.094 0.093 0 0.221 0.241 0.098 0.088 0 0.362 0.3015 0.082 0.081 0 0.107 0.5675 0.108 0.117 0 0.136 0.7155 0.112 0.113 0 0.29 0.47 0.106 0.106 0 0.442 0.471 0.1 0.092 0 0.4305 0.61 0.097 0.1 0 0.093 0.8815 0.094 0.093 0 0.7195 0.4935 0.077 0.083 0 0.683 0.659 0.076 0.076 0 0.0835 0.042 0.091 0.082 0 0.1475 0.1065 0.099 0.091 0 0.0475 0.154 0.085 0.092 0 0.0885 0.282 0.093 0.1 0 0.1855 0.3105 0.097 0.095 0 0.227 0.0345 0.106 0.067 0 0.2745 0.0875 0.101 0.103 0 0.358 0.0335 0.104 0.065 0 0.3625 0.1215 0.091 0.093 0 0.3295 0.222 0.083 0.118 0 0.65 0.3645 0.108 0.103 0 0.5815 0.428 0.103 0.092 0 0.698 0.455 0.088 0.082 0 0.871 0.387 0.078 0.078 0 0.942 0.4275 0.09 0.095 0 0.894 0.532 0.098 0.098 0 0.959 0.681 0.082 0.098 0 0.875 0.7025 0.074 0.077 0 0.9385 0.799 0.103 0.088 0 0.7905 0.781 0.107 0.098 0 0.8545 0.864 0.077 0.082 0 0.82 0.9495 0.098 0.099 0 0.7675 0.874 0.075 0.084 0 0.6255 0.8165 0.065 0.069 0 0.4775 0.947 0.103 0.106 0 0.387 0.909 0.094 0.092 0 0.4525 0.818 0.095 0.088 0 0.551 0.832 0.078 0.084 0 0.915 0.08 0.086 0.094 0 0.861 0.3095 0.088 0.091 0 0.7715 0.296 0.095 0.104 0 0.299 0.2605 0.088 0.087 0 0.384 0.275 0.096 0.088 0 0.254 0.426 0.09 0.082 0 0.335 0.3825 0.082 0.085 0 0.4155 0.4045 0.113 0.111 0 0.4305 0.5085 0.101 0.087 0 0.5215 0.4565 0.085 0.077 0 0.1175 0.5955 0.125 0.121 0 0.2285 0.552 0.103 0.106 0 0.108 0.6975 0.092 0.087 0 0.0825 0.7765 0.097 0.085 0 0.173 0.7855 0.114 0.107 0 0.246 0.799 0.074 0.082 0 0.3165 0.85 0.095 0.102 0 0.352 0.5965 0.082 0.083 0 0.415 0.84 0.074 0.08 0 0.449 0.9125 0.076 0.077 0 0.5265 0.873 0.087 0.068 0 0.6365 0.8225 0.111 0.107 0 0.665 0.904 0.092 0.076 0 0.78 0.8875 0.096 0.093 0 0.7265 0.957 0.103 0.086 0 0.866 0.918 0.09 0.086 0 0.9515 0.7445 0.097 0.105 0 0.833 0.7245 0.092 0.087 0 0.7725 0.597 0.105 0.096 0 0.7025 0.521 0.101 0.11 0 0.0875 0.913 0.101 0.104 0 0.0615 0.724 0.103 0.1 0 0.139 0.761 0.102 0.11 0 0.2175 0.956 0.083 0.08 0 0.2325 0.875 0.125 0.106 0 0.259 0.766 0.096 0.102 0 0.2955 0.668 0.083 0.088 0 0.3535 0.8265 0.097 0.091 0 0.36 0.9315 0.08 0.083 0 0.452 0.9165 0.098 0.101 0
77%|███████▋ | 375/486 [00:21<00:04, 26.49it/s]
0.641 0.9295 0.12 0.111 0 0.6135 0.799 0.135 0.128 0 0.5825 0.6975 0.095 0.085 0 0.539 0.6255 0.104 0.101 0 0.572 0.5295 0.122 0.095 0 0.561 0.444 0.086 0.084 0 0.52 0.4005 0.098 0.085 0 0.2425 0.351 0.105 0.086 0 0.302 0.2755 0.088 0.079 0 0.438 0.2915 0.088 0.089 0 0.3625 0.2475 0.081 0.073 0 0.338 0.1785 0.09 0.079 0 0.4995 0.1005 0.105 0.101 0 0.6645 0.083 0.077 0.084 0 0.769 0.069 0.07 0.07 0 0.807 0.2615 0.116 0.111 0 0.8885 0.317 0.089 0.098 0 0.7245 0.4 0.101 0.098 0 0.8195 0.377 0.097 0.09 0 0.962 0.303 0.072 0.084 0 0.942 0.421 0.1 0.09 0 0.892 0.4815 0.112 0.093 0 0.7665 0.5065 0.105 0.103 0 0.828 0.5505 0.084 0.103 0 0.912 0.576 0.1 0.094 0 0.9115 0.667 0.099 0.104 0 0.963 0.6915 0.074 0.103 0 0.757 0.7185 0.112 0.107 0 0.8935 0.781 0.113 0.096 0 0.8285 0.9035 0.083 0.083 0 0.9525 0.8545 0.095 0.101 0 0.143 0.314 0.088 0.08 0 0.182 0.9245 0.122 0.115 0 0.5615 0.7575 0.107 0.119 0 0.3475 0.496 0.107 0.108 0 0.183 0.4105 0.094 0.089 0 0.273 0.394 0.102 0.098 0 0.333 0.3305 0.098 0.091 0 0.335 0.2145 0.102 0.091 0 0.4155 0.06 0.113 0.102 0 0.871 0.121 0.102 0.112 0 0.959 0.2545 0.074 0.095 0 0.3005 0.0635 0.093 0.093 0 0.4305 0.0575 0.119 0.103 0 0.565 0.0385 0.096 0.075 0 0.5245 0.1095 0.095 0.093 0 0.255 0.1985 0.106 0.099 0 0.4265 0.206 0.083 0.08 0 0.5 0.252 0.076 0.08 0 0.674 0.1785 0.094 0.081 0 0.6545 0.267 0.105 0.092 0 0.9545 0.201 0.087 0.084 0 0.3535 0.407 0.107 0.098 0 0.2015 0.4755 0.097 0.095 0 0.0795 0.477 0.077 0.082 0 0.143 0.5485 0.09 0.093 0 0.077 0.6245 0.11 0.115 0 0.2675 0.56 0.099 0.098 0 0.246 0.642 0.088 0.086 0 0.042 0.7515 0.08 0.107 0 0.1165 0.765 0.095 0.108 0 0.2115 0.74 0.109 0.118 0 0.332 0.704 0.1 0.112 0 0.395 0.5545 0.092 0.093 0 0.242 0.8415 0.08 0.075 0 0.279 0.955 0.104 0.09 0 0.4155 0.9575 0.095 0.081 0 0.4505 0.7405 0.103 0.095 0 0.5155 0.5605 0.111 0.105 0 0.555 0.475 0.116 0.1 0 0.568 0.3725 0.092 0.099 0 0.629 0.3995 0.066 0.079 0 0.7405 0.432 0.091 0.088 0 0.0445 0.2155 0.083 0.097 0 0.0965 0.3605 0.093 0.089 0 0.173 0.538 0.106 0.096 0 0.0585 0.89 0.099 0.09 0 0.2715 0.892 0.085 0.092 0 0.2895 0.6285 0.093 0.093 0 0.3565 0.5295 0.093 0.089 0 0.2925 0.381 0.095 0.094 0 0.7475 0.9345 0.077 0.079 0 0.9325 0.924 0.095 0.102 0 0.5265 0.7485 0.091 0.095 0 0.6625 0.7275 0.107 0.107 0 0.808 0.7535 0.098 0.095 0 0.501 0.57 0.106 0.106 0 0.7065 0.52 0.091 0.082 0 0.856 0.62 0.102 0.09 0 0.631 0.4345 0.078 0.083 0 0.526 0.407 0.092 0.094 0 0.542 0.2465 0.096 0.099 0 0.825 0.3625 0.086 0.093 0 0.9545 0.3 0.091 0.084 0 0.9625 0.221 0.075 0.088 0 0.6575 0.056 0.105 0.11 0 0.066 0.0775 0.096 0.105 0 0.047 0.8945 0.092 0.111 0 0.326 0.215 0.086 0.084 0 0.449 0.41 0.116 0.106 0 0.426 0.566 0.112 0.112 0 0.4985 0.6835 0.101 0.095 0 0.385 0.8555 0.098 0.103 0 0.4865 0.866 0.103 0.104 0 0.6765 0.9045 0.103 0.099 0 0.6855 0.679 0.111 0.096 0 0.8575 0.689 0.107 0.106 0 0.8055 0.5265 0.103 0.099 0 0.8785 0.4325 0.087 0.079 0 0.9325 0.256 0.109 0.104 0 0.264 0.8265 0.094 0.097 0 0.237 0.695 0.1 0.104 0 0.0505 0.672 0.099 0.106 0 0.14 0.546 0.104 0.108 0 0.164 0.3275 0.104 0.103 0 0.1675 0.175 0.093 0.102 0 0.3405 0.212 0.093 0.092 0 0.364 0.45 0.1 0.098 0 0.4375 0.6495 0.109 0.099 0 0.614 0.68 0.104 0.1 0 0.5785 0.3845 0.095 0.085 0 0.549 0.298 0.076
78%|███████▊ | 378/486 [00:21<00:04, 26.02it/s]
0.07 0 0.5185 0.204 0.107 0.108 0 0.7365 0.286 0.101 0.112 0 0.7005 0.14 0.091 0.098 0 0.139 0.8425 0.09 0.083 0 0.808 0.4785 0.084 0.075 0 0.917 0.45 0.096 0.096 0 0.8235 0.3935 0.097 0.089 0 0.692 0.4065 0.08 0.089 0 0.6165 0.277 0.089 0.1 0 0.674 0.302 0.088 0.106 0 0.938 0.342 0.11 0.102 0 0.9555 0.241 0.089 0.084 0 0.871 0.239 0.084 0.098 0 0.7865 0.2265 0.087 0.095 0 0.495 0.0825 0.076 0.081 0 0.625 0.1455 0.074 0.081 0 0.733 0.1395 0.09 0.087 0 0.8055 0.1205 0.091 0.087 0 0.89 0.1405 0.08 0.089 0 0.9565 0.1615 0.087 0.093 0 0.954 0.0595 0.092 0.101 0 0.8225 0.037 0.121 0.07 0 0.6695 0.071 0.081 0.078 0 0.062 0.058 0.08 0.084 0 0.0455 0.1575 0.089 0.081 0 0.0565 0.241 0.107 0.102 0 0.1755 0.11 0.099 0.09 0 0.197 0.208 0.088 0.078 0 0.0465 0.4245 0.091 0.089 0 0.0655 0.361 0.083 0.09 0 0.13 0.3085 0.096 0.087 0 0.1345 0.379 0.071 0.072 0 0.2125 0.345 0.073 0.078 0 0.1755 0.4485 0.093 0.089 0 0.212 0.348 0.082 0.076 0 0.384 0.1525 0.076 0.077 0 0.334 0.2635 0.072 0.083 0 0.291 0.3115 0.092 0.093 0 0.415 0.2395 0.12 0.113 0 0.7 0.094 0.098 0.102 0 0.9055 0.06 0.113 0.106 0 0.7035 0.2975 0.133 0.129 0 0.848 0.397 0.068 0.068 0 0.754 0.439 0.076 0.076 0 0.567 0.3685 0.08 0.087 0 0.464 0.3275 0.078 0.075 0 0.447 0.445 0.094 0.096 0 0.2775 0.449 0.087 0.088 0 0.3015 0.525 0.081 0.072 0 0.261 0.596 0.096 0.094 0 0.1105 0.652 0.083 0.088 0 0.182 0.653 0.08 0.082 0 0.165 0.7555 0.092 0.093 0 0.107 0.8255 0.084 0.085 0 0.0445 0.8905 0.071 0.079 0 0.151 0.899 0.102 0.088 0 0.2755 0.758 0.079 0.082 0 0.302 0.689 0.088 0.084 0 0.364 0.62 0.102 0.104 0 0.472 0.5435 0.096 0.091 0 0.454 0.643 0.09 0.086 0 0.4165 0.7145 0.093 0.103 0 0.492 0.7335 0.11 0.101 0 0.4195 0.819 0.095 0.094 0 0.484 0.803 0.084 0.08 0 0.6445 0.9135 0.103 0.099 0 0.5965 0.4905 0.089 0.087 0 0.6815 0.4625 0.069 0.075 0 0.3315 0.574 0.091 0.1 0 0.414 0.766 0.106 0.104 0 0.4835 0.567 0.085 0.086 0 0.5695 0.5605 0.095 0.095 0 0.8845 0.963 0.071 0.07 0 0.939 0.906 0.082 0.078 0 0.8905 0.8275 0.075 0.075 0 0.831 0.5575 0.076 0.085 0 0.8065 0.1385 0.083 0.083 0 0.5875 0.097 0.085 0.072 0 0.688 0.0425 0.09 0.083 0 0.7965 0.045 0.089 0.08 0 0.9505 0.115 0.093 0.102 0 0.903 0.0405 0.108 0.079 0 0.955 0.1275 0.088 0.097 0 0.942 0.2405 0.104 0.105 0 0.841 0.239 0.068 0.058 0 0.8435 0.103 0.067 0.058 0 0.034 0.039 0.066 0.072 0 0.0955 0.035 0.071 0.068 0 0.1795 0.046 0.075 0.076 0 0.2645 0.038 0.077 0.066 0 0.2775 0.0995 0.083 0.079 0 0.304 0.1585 0.1 0.097 0 0.088 0.115 0.088 0.082 0 0.052 0.27 0.094 0.098 0 0.13 0.258 0.09 0.096 0 0.217 0.274 0.098 0.114 0 0.3 0.25 0.096 0.092 0 0.4235 0.0905 0.073 0.065 0 0.4275 0.2015 0.095 0.069 0 0.515 0.2525 0.092 0.105 0 0.39 0.291 0.09 0.1 0 0.305 0.345 0.086 0.082 0 0.383 0.3915 0.086 0.099 0 0.496 0.3545 0.076 0.083 0 0.526 0.425 0.122 0.108 0 0.6815 0.2915 0.065 0.061 0 0.6 0.269 0.098 0.118 0 0.3085 0.436 0.089 0.088 0 0.295 0.5265 0.1 0.105 0 0.2045 0.4785 0.083 0.071 0 0.043 0.4825 0.08 0.115 0 0.103 0.53 0.082 0.076 0 0.2055 0.5715 0.115 0.113 0 0.139 0.6095 0.086 0.085 0 0.0375 0.6125 0.073 0.105 0 0.1115 0.7025 0.083 0.079 0 0.191 0.7015 0.086 0.087 0 0.3075 0.6565 0.081 0.083 0 0.343 0.7045 0.088 0.085 0 0.1975 0.8265 0.087 0.089 0 0.132 0.922 0.098 0.1 0 0.3075 0.9345 0.087 0.093 0 0.2925 0.794 0.095 0.102 0 0.4205 0.7805 0.083 0.097 0 0.4975 0.8605 0.101 0.099 0 0.637 0.9615 0.086 0.077 0 0.587 0.9115 0.114 0.097 0 0.6065 0.8355 0.097 0.089 0 0.681 0.8155 0.09 0.101 0 0.6455 0.724 0.085 0.086 0 0.7145 0.6185 0.121 0.125 0 0.8175 0.9295 0.087 0.073 0 0.958 0.8995 0.084 0.137 0 0.059 0.9635 0.092 0.073 0 0.1545 0.957 0.099 0.086 0 0.399 0.6705 0.094 0.093 0 0.527 0.7665 0.11 0.111 0 0.177 0.205 0.096 0.09 0 0.3915 0.1855 0.075 0.073 0 0.628 0.259 0.108 0.11 0 0.602 0.0425 0.08
79%|███████▉ | 386/486 [00:22<00:03, 29.81it/s]
0.075 0 0.6825 0.123 0.083 0.078 0 0.734 0.035 0.096 0.068 0 0.775 0.1215 0.074 0.087 0 0.86 0.167 0.086 0.086 0 0.905 0.253 0.1 0.096 0 0.965 0.3135 0.07 0.089 0 0.787 0.438 0.09 0.1 0 0.723 0.513 0.106 0.106 0 0.6205 0.6025 0.113 0.113 0 0.655 0.5475 0.084 0.085 0 0.767 0.6485 0.096 0.097 0 0.703 0.121 0.082 0.088 0 0.84 0.2265 0.092 0.089 0 0.4415 0.3075 0.111 0.113 0 0.5735 0.3765 0.089 0.093 0 0.6035 0.463 0.103 0.098 0 0.464 0.412 0.104 0.096 0 0.564 0.5595 0.088 0.075 0 0.3955 0.58 0.089 0.092 0 0.314 0.6375 0.096 0.095 0 0.137 0.6265 0.098 0.099 0 0.048 0.6195 0.094 0.095 0 0.0885 0.9435 0.093 0.089 0 0.338 0.925 0.084 0.084 0 0.307 0.8255 0.066 0.065 0 0.4685 0.796 0.089 0.068 0 0.483 0.88 0.096 0.092 0 0.5975 0.7835 0.087 0.079 0 0.651 0.846 0.088 0.088 0 0.047 0.474 0.092 0.1 0 0.325 0.909 0.114 0.106 0 0.19 0.4525 0.086 0.083 0 0.3465 0.4295 0.107 0.093 0 0.4735 0.442 0.097 0.096 0 0.4625 0.6305 0.095 0.081 0 0.612 0.638 0.098 0.084 0 0.3255 0.257 0.079 0.082 0 0.2125 0.1415 0.083 0.085 0 0.315 0.118 0.102 0.106 0 0.9145 0.1775 0.089 0.089 0 0.853 0.4065 0.092 0.097 0 0.3875 0.9115 0.095 0.093 0 0.139 0.538 0.082 0.084 0 0.1095 0.3635 0.083 0.081 0 0.2915 0.1965 0.089 0.089 0 0.3645 0.4275 0.097 0.093 0 0.4875 0.399 0.107 0.104 0 0.585 0.24 0.11 0.098 0 0.6425 0.131 0.111 0.102 0 0.376 0.36 0.122 0.108 0 0.4015 0.5175 0.123 0.121 0 0.043 0.752 0.084 0.094 0 0.313 0.7175 0.098 0.107 0 0.4245 0.6605 0.107 0.107 0 0.4175 0.931 0.083 0.086 0 0.467 0.8205 0.086 0.091 0 0.6265 0.6245 0.087 0.081 0 0.707 0.759 0.118 0.118 0 0.741 0.845 0.098 0.098 0 0.836 0.0535 0.096 0.085 0 0.907 0.9185 0.094 0.091 0 0.897 0.1605 0.122 0.121 0 0.8375 0.258 0.121 0.116 0 0.895 0.548 0.098 0.104 0 0.965 0.8295 0.07 0.081 0 0.3275 0.936 0.117 0.116 0 0.0515 0.9665 0.083 0.067 0 0.1635 0.9285 0.097 0.093 0 0.125 0.8025 0.094 0.097 0 0.149 0.666 0.082 0.086 0 0.2815 0.66 0.097 0.092 0 0.201 0.5115 0.084 0.071 0 0.389 0.6395 0.086 0.085 0 0.552 0.4115 0.112 0.099 0 0.045 0.393 0.086 0.09 0 0.0815 0.1655 0.113 0.107 0 0.1765 0.947 0.123 0.106 0 0.3005 0.9295 0.113 0.107 0 0.042 0.173 0.082 0.11 0 0.1295 0.104 0.131 0.138 0 0.1655 0.1925 0.117 0.113 0 0.3105 0.0495 0.129 0.097 0 0.309 0.1625 0.116 0.113 0 0.491 0.167 0.112 0.114 0 0.6315 0.1935 0.111 0.107 0 0.746 0.237 0.108 0.114 0 0.8665 0.247 0.123 0.132 0 0.925 0.078 0.102 0.094 0 0.82 0.1515 0.092 0.085 0 0.733 0.102 0.068 0.074 0 0.686 0.155 0.086 0.076 0 0.6825 0.267 0.083 0.078 0 0.8065 0.3975 0.081 0.085 0 0.8645 0.5655 0.089 0.087 0 0.6445 0.4435 0.101 0.089 0 0.556 0.1395 0.09 0.087 0 0.107 0.101 0.082 0.078 0 0.122 0.462 0.084 0.076 0 0.2275 0.417 0.079 0.08 0 0.3415 0.466 0.093 0.08 0 0.4515 0.4245 0.089 0.083 0 0.103 0.794 0.074 0.07 0 0.2495 0.7525 0.089 0.085 0 0.0345 0.9245 0.067 0.079 0 0.1955 0.9185 0.083 0.075 0 0.3265 0.857 0.081 0.07 0 0.388 0.6985 0.082 0.073 0 0.519 0.892 0.068 0.068 0 0.7505 0.724 0.075 0.064
80%|████████ | 390/486 [00:22<00:03, 30.50it/s]
0 0.2255 0.0715 0.099 0.089 0 0.372 0.076 0.096 0.084 0 0.492 0.065 0.104 0.096 0 0.308 0.2435 0.09 0.089 0 0.382 0.1685 0.068 0.059 0 0.046 0.486 0.09 0.11 0 0.1275 0.5815 0.103 0.115 0 0.231 0.615 0.102 0.104 0 0.394 0.443 0.096 0.098 0 0.4825 0.5065 0.107 0.099 0 0.9475 0.106 0.081 0.088 0 0.9535 0.4645 0.079 0.085 0 0.8685 0.49 0.073 0.062 0 0.8215 0.562 0.079 0.072 0 0.7765 0.685 0.081 0.076 0 0.551 0.9245 0.074 0.077 0 0.6575 0.9615 0.091 0.077 0 0.193 0.774 0.096 0.1 0 0.0525 0.0695 0.087 0.085 0 0.039 0.1585 0.074 0.079 0 0.148 0.043 0.09 0.084 0 0.2915 0.0335 0.103 0.065 0 0.37 0.0735 0.07 0.069 0 0.576 0.194 0.072 0.066 0 0.809 0.156 0.1 0.098 0 0.071 0.8555 0.118 0.117 0 0.116 0.7375 0.082 0.075 0 0.2005 0.6715 0.073 0.067 0 0.101 0.4545 0.082 0.087 0 0.259 0.5585 0.062 0.063 0 0.2255 0.754 0.075 0.076 0 0.3705 0.8135 0.067 0.061 0 0.3855 0.926 0.081 0.08 0 0.4615 0.9315 0.059 0.071 0 0.54 0.9725 0.07 0.055 0 0.641 0.9735 0.078 0.053 0 0.8215 0.6175 0.091 0.083 0 0.845 0.752 0.064 0.062 0 0.6375 0.5035 0.089 0.093 0 0.775 0.4555 0.074 0.077 0 0.8765 0.4935 0.065 0.065 0 0.1425 0.3765 0.133 0.143 0 0.132 0.4785 0.08 0.069 0 0.1445 0.5925 0.071 0.063 0 0.088 0.739 0.122 0.118 0 0.0575 0.887 0.109 0.144 0 0.1305 0.937 0.119 0.106 0 0.241 0.911 0.138 0.124 0 0.305 0.5585 0.09 0.087 0 0.331 0.388 0.126 0.122 0 0.254 0.0485 0.088 0.069 0 0.8025 0.418 0.137 0.114 0 0.8225 0.3235 0.135 0.095 0 0.8075 0.247 0.107 0.094 0 0.807 0.1665 0.1 0.077 0 0.802 0.062 0.12 0.112 0 0.9545 0.1275 0.091 0.119 0 0.141 0.132 0.092 0.088 0 0.0615 0.2285 0.101 0.095 0 0.05 0.333 0.094 0.106 0 0.052 0.4375 0.096 0.103 0 0.1575 0.327 0.107 0.096 0 0.1605 0.442 0.123 0.124 0 0.073 0.557 0.114 0.106 0 0.09 0.6675 0.106 0.103 0 0.161 0.6465 0.102 0.105 0 0.198 0.5455 0.118 0.107 0 0.1635 0.444 0.131 0.13 0 0.2655 0.447 0.097 0.1 0 0.337 0.5025 0.1 0.093 0 0.2995 0.635 0.097 0.094 0 0.2605 0.8795 0.101 0.107 0 0.306 0.9635 0.108 0.073 0 0.403 0.9645 0.09 0.071 0 0.5295 0.9545 0.083 0.079 0 0.6255 0.881 0.109 0.098 0 0.8 0.5605 0.072 0.075 0 0.899 0.664 0.05 0.056 0 0.7025 0.2485 0.109 0.099 0 0.805 0.3805 0.072 0.071 0 0.5005 0.498 0.081 0.082 0 0.421 0.409 0.092 0.092 0 0.054 0.965 0.106 0.07 0 0.0375 0.8175 0.073 0.109 0 0.1495 0.93 0.091 0.088 0 0.252 0.917 0.102 0.108 0 0.3255 0.967 0.097 0.066 0 0.4445 0.952 0.101 0.096 0 0.367 0.8775 0.104 0.103 0 0.117 0.7975 0.094 0.099 0 0.209 0.82 0.104 0.096 0 0.3045 0.783 0.105 0.096 0 0.1795 0.704 0.101 0.096 0 0.103 0.6115 0.072 0.077 0 0.1925 0.6105 0.071 0.073 0 0.11 0.5105 0.07 0.069 0 0.1465 0.365 0.071 0.08 0 0.2115 0.139 0.083 0.078 0 0.0335 0.066 0.059 0.062 0 0.2905 0.231 0.079 0.072 0 0.3325 0.3785 0.083 0.077 0 0.282 0.46 0.074 0.064 0 0.342 0.5705 0.108 0.103 0 0.367 0.7045 0.086 0.083 0 0.542 0.85 0.086 0.084 0 0.605 0.959 0.084 0.068 0 0.4785 0.6005 0.081 0.089 0 0.591 0.688 0.078 0.08 0 0.8865 0.925 0.077 0.084 0 0.8895 0.734 0.089 0.082 0 0.757 0.592 0.048 0.046 0 0.867 0.579 0.07 0.068 0 0.871 0.448 0.076 0.068 0 0.464 0.133 0.062 0.05 0 0.936 0.1695 0.062 0.057 0 0.071 0.1275 0.066 0.065 0 0.1655 0.209 0.079 0.074 0 0.1195 0.31 0.077 0.076 0 0.4145 0.2675 0.093 0.093 0 0.324 0.2915 0.074 0.063 0 0.4885 0.2095 0.059 0.065 0 0.6085 0.2425 0.085 0.083 0 0.5755 0.305 0.107 0.102 0 0.4295 0.3725 0.111 0.103 0 0.371 0.512 0.114 0.092 0 0.2655 0.5195 0.093 0.103 0 0.2055 0.5565 0.079 0.077 0 0.1845 0.8385 0.093 0.085 0 0.2785 0.8085 0.083 0.087 0 0.4235 0.7545 0.067 0.067 0 0.476 0.674 0.098 0.096 0 0.552 0.4325 0.102 0.113 0 0.627 0.446 0.082 0.08 0 0.7345 0.3085 0.093 0.097 0 0.7735
82%|████████▏ | 398/486 [00:22<00:03, 27.81it/s]
0.148 0.077 0.064 0 0.8795 0.211 0.079 0.074 0 0.9255 0.312 0.077 0.076 0 0.8395 0.4045 0.083 0.087 0 0.961 0.4385 0.078 0.097 0 0.8915 0.5085 0.107 0.107 0 0.8475 0.5635 0.093 0.097 0 0.946 0.824 0.062 0.064 0 0.934 0.9105 0.072 0.073 0 0.733 0.8655 0.074 0.073 0 0.614 0.851 0.06 0.058 0 0.8525 0.9385 0.075 0.075 0 0.934 0.0405 0.128 0.079 0 0.936 0.125 0.104 0.108 0 0.8955 0.34 0.105 0.104 0 0.8285 0.183 0.115 0.106 0 0.827 0.0795 0.106 0.097 0 0.7035 0.092 0.107 0.106 0 0.7355 0.2485 0.119 0.113 0 0.5745 0.3265 0.105 0.103 0 0.636 0.1745 0.118 0.121 0 0.608 0.052 0.112 0.092 0 0.5395 0.0775 0.103 0.099 0 0.522 0.1945 0.118 0.123 0 0.4085 0.16 0.087 0.082 0 0.419 0.0295 0.092 0.057 0 0.3365 0.056 0.085 0.082 0 0.1955 0.088 0.093 0.088 0 0.052 0.1485 0.102 0.103 0 0.4465 0.567 0.077 0.076 0 0.592 0.9165 0.102 0.091 0 0.863 0.8825 0.11 0.143 0 0.772 0.6305 0.094 0.093 0 0.2185 0.118 0.121 0.112 0 0.1625 0.038 0.083 0.066 0 0.2515 0.037 0.085 0.072 0 0.3615 0.0705 0.069 0.057 0 0.1165 0.302 0.127 0.104 0 0.114 0.4025 0.124 0.111 0 0.2225 0.232 0.137 0.108 0 0.2415 0.3645 0.097 0.099 0 0.337 0.3865 0.118 0.137 0 0.289 0.523 0.118 0.114 0 0.365 0.6135 0.098 0.103 0 0.3805 0.4995 0.097 0.111 0 0.479 0.451 0.122 0.122 0 0.378 0.251 0.1 0.106 0 0.1705 0.852 0.065 0.056 0 0.4545 0.781 0.065 0.074 0 0.568 0.946 0.126 0.096 0 0.6635 0.9115 0.079 0.077 0 0.678 0.9675 0.084 0.065 0 0.079 0.049 0.122 0.096 0 0.2985 0.06 0.113 0.112 0 0.316 0.2655 0.13 0.127 0 0.4515 0.341 0.093 0.096 0 0.0765 0.678 0.117 0.136 0 0.7535 0.619 0.117 0.106 0 0.4 0.866 0.11 0.1 0 0.944 0.8245 0.104 0.097 0 0.9535 0.7375 0.093 0.091 0 0.587 0.061 0.108 0.098 0 0.4915 0.1305 0.085 0.081 0 0.72 0.0625 0.086 0.083 0 0.826 0.0685 0.11 0.109 0 0.9625 0.0505 0.075 0.091 0 0.8895 0.146 0.105 0.108 0 0.7875 0.157 0.089 0.082 0 0.6025 0.1555 0.103 0.083 0 0.6955 0.1435 0.099 0.089 0 0.7905 0.153 0.085 0.08 0 0.521 0.2295 0.1 0.089 0 0.409 0.222 0.074 0.066 0 0.735 0.209 0.084 0.076 0 0.8205 0.2495 0.113 0.085 0 0.961 0.2775 0.074 0.095 0 0.3965 0.3315 0.057 0.065 0 0.6165 0.303 0.077 0.082 0 0.5335 0.3765 0.087 0.083 0 0.465 0.4095 0.074 0.081 0 0.6345 0.41 0.079 0.076 0 0.719 0.4025 0.084 0.089 0 0.83 0.3445 0.08 0.077 0 0.9495 0.36 0.071 0.064 0 0.884 0.4135 0.094 0.089 0 0.848 0.5205 0.094 0.097 0 0.7545 0.5155 0.095 0.105 0 0.6605 0.5085 0.115 0.103 0 0.4505 0.4895 0.083 0.075 0 0.3215 0.4905 0.093 0.091 0 0.506 0.556 0.084 0.08 0 0.608 0.62 0.084 0.088 0 0.698 0.6055 0.076 0.085 0 0.772 0.6215 0.076 0.073 0 0.865 0.628 0.108 0.1 0 0.958 0.686 0.084 0.094 0 0.942 0.761 0.1 0.09 0 0.831 0.708 0.106 0.092 0 0.7415 0.697 0.083 0.082 0 0.663 0.675 0.082 0.086 0 0.6735 0.7795 0.093 0.089 0 0.574 0.723 0.104 0.112 0 0.392 0.6255 0.088 0.087 0 0.299 0.6365 0.07 0.063 0 0.162 0.595 0.082 0.074 0 0.0805 0.4975 0.055 0.059 0 0.1145 0.692 0.073 0.074 0 0.059 0.7835 0.092 0.085 0 0.127 0.8655 0.08 0.067 0 0.226 0.893 0.08 0.078 0 0.267 0.7545 0.082 0.075 0 0.359 0.8075 0.086 0.089 0 0.3775 0.9405 0.103 0.105 0 0.4415 0.885 0.097 0.094 0 0.533 0.952 0.1 0.096 0 0.4895 0.7865 0.107 0.105 0 0.582 0.8435 0.108 0.099 0 0.745 0.915 0.08 0.08 0 0.6755 0.116 0.111 0.104 0 0.7895 0.134 0.095 0.088 0 0.8875 0.154 0.091 0.09 0 0.8945 0.2875 0.117 0.115 0 0.602 0.1945 0.072 0.079 0 0.509 0.1795 0.102 0.107 0 0.5015 0.2785 0.101 0.099 0 0.2395 0.3025 0.119 0.107 0 0.131 0.4115 0.106 0.107 0 0.2725 0.3795 0.119 0.079 0 0.1715 0.5435 0.067 0.059 0 0.1525 0.588 0.105 0.092 0 0.206 0.7835 0.098 0.099 0 0.0775 0.9035 0.095 0.085 0 0.4935 0.9325 0.085 0.081 0 0.514 0.4385 0.102 0.107 0 0.6825 0.452 0.101 0.1 0 0.515 0.595 0.088 0.09 0 0.626 0.608 0.102 0.098 0 0.8275 0.4535 0.121 0.121
83%|████████▎ | 401/486 [00:22<00:03, 25.03it/s]
0 0.7965 0.5555 0.111 0.103 0 0.7375 0.62 0.113 0.108 0 0.806 0.6675 0.114 0.097 0 0.043 0.1415 0.084 0.087 0 0.0615 0.3235 0.107 0.103 0 0.1885 0.346 0.095 0.098 0 0.062 0.4865 0.094 0.097 0 0.125 0.477 0.078 0.072 0 0.1625 0.5445 0.095 0.091 0 0.2495 0.5755 0.089 0.085 0 0.341 0.6085 0.092 0.073 0 0.349 0.533 0.094 0.076 0 0.4135 0.563 0.079 0.078 0 0.347 0.469 0.072 0.066 0 0.299 0.3735 0.092 0.095 0 0.2365 0.259 0.099 0.09 0 0.1505 0.1635 0.097 0.091 0 0.244 0.1395 0.084 0.083 0 0.3115 0.1075 0.095 0.095 0 0.3775 0.1925 0.099 0.095 0 0.4565 0.2015 0.085 0.091 0 0.5275 0.202 0.093 0.104 0 0.5515 0.134 0.089 0.084 0 0.661 0.1065 0.104 0.109 0 0.621 0.2 0.1 0.104 0 0.761 0.0535 0.102 0.085 0 0.9125 0.079 0.103 0.104 0 0.8065 0.111 0.093 0.092 0 0.945 0.2025 0.104 0.105 0 0.877 0.285 0.098 0.086 0 0.7895 0.211 0.107 0.108 0 0.714 0.2145 0.096 0.107 0 0.9245 0.3485 0.101 0.103 0 0.905 0.4195 0.106 0.087 0 0.8925 0.4695 0.083 0.077 0 0.9245 0.5535 0.083 0.089 0 0.8465 0.5315 0.091 0.091 0 0.781 0.346 0.096 0.09 0 0.6845 0.3455 0.093 0.103 0 0.5795 0.327 0.097 0.098 0 0.4525 0.294 0.109 0.096 0 0.4645 0.3835 0.097 0.089 0 0.3295 0.3015 0.091 0.095 0 0.3935 0.336 0.077 0.1 0 0.5265 0.4715 0.113 0.115 0 0.579 0.5315 0.092 0.081 0 0.6745 0.4985 0.093 0.093 0 0.646 0.592 0.096 0.094 0 0.221 0.8675 0.086 0.085 0 0.2085 0.959 0.107 0.08 0 0.0565 0.0495 0.075 0.071 0 0.147 0.1335 0.09 0.087 0 0.035 0.2785 0.068 0.085 0 0.0435 0.376 0.077 0.082 0 0.1045 0.342 0.077 0.094 0 0.1215 0.2355 0.089 0.089 0 0.2445 0.1325 0.095 0.089 0 0.3945 0.057 0.069 0.076 0 0.216 0.2925 0.088 0.095 0 0.298 0.2905 0.076 0.087 0 0.4145 0.1955 0.081 0.071 0 0.4555 0.3185 0.075 0.077 0 0.357 0.366 0.094 0.094 0 0.1585 0.392 0.091 0.084 0 0.1415 0.469 0.059 0.058 0 0.0375 0.6015 0.069 0.081 0 0.0695 0.673 0.075 0.084 0 0.174 0.5515 0.082 0.083 0 0.1625 0.6435 0.081 0.073 0 0.2775 0.5475 0.083 0.083 0 0.3615 0.5235 0.073 0.079 0 0.265 0.639 0.09 0.082 0 0.1555 0.73 0.059 0.068 0 0.1665 0.8105 0.097 0.095 0 0.065 0.94 0.064 0.066 0 0.149 0.9685 0.068 0.055 0 0.241 0.8845 0.062 0.069 0 0.308 0.8255 0.09 0.085 0 0.3 0.7275 0.098 0.093 0 0.356 0.927 0.108 0.11 0 0.262 0.962 0.082 0.072 0 0.3885 0.8185 0.081 0.101 0 0.4735 0.8465 0.105 0.117 0 0.5515 0.9365 0.099 0.095 0 0.462 0.7475 0.102 0.097 0 0.398 0.6135 0.072 0.071 0 0.4785 0.565 0.063 0.068 0 0.4925 0.641 0.069 0.07 0 0.603 0.6905 0.078 0.081 0 0.6325 0.7655 0.083 0.077 0 0.577 0.8415 0.102 0.103 0 0.656 0.8475 0.088 0.093 0 0.732 0.879 0.08 0.07 0 0.723 0.7995 0.08 0.077 0 0.903 0.961 0.074 0.064 0 0.806 0.7265 0.09 0.099 0 0.9135 0.8175 0.065 0.059 0 0.052 0.058 0.064 0.06 0 0.1105 0.037 0.083 0.07 0 0.123 0.2285 0.058 0.059 0 0.2055 0.44 0.083 0.084 0 0.3815 0.4355 0.105 0.119 0 0.4915 0.437 0.113 0.12 0 0.064 0.748 0.064 0.07 0 0.059 0.583 0.066 0.062 0 0.3655 0.6545 0.093 0.089 0 0.322 0.8275 0.108 0.105 0 0.526 0.724 0.112 0.102 0 0.4165 0.041 0.111 0.08 0 0.754 0.164 0.114 0.104 0 0.7675 0.07 0.135 0.11 0 0.855 0.0575 0.118 0.113 0 0.9245 0.238 0.111 0.108 0 0.9545 0.449 0.091 0.094 0 0.957 0.825 0.086 0.102 0 0.9635 0.613 0.073 0.1 0 0.236 0.2475 0.092 0.087 0 0.0595 0.4415 0.117 0.111 0 0.1065 0.6235 0.097 0.101 0 0.469 0.2465 0.116 0.107 0 0.5175 0.0425 0.101 0.073 0 0.589 0.3055 0.108 0.103 0 0.6945 0.265 0.101 0.104 0 0.4275 0.478 0.113 0.102 0 0.7735 0.4385 0.103 0.099 0 0.701 0.5335 0.078 0.075 0 0.5075 0.6165 0.109 0.111 0 0.3395 0.6615 0.097 0.091 0 0.2855 0.7575 0.077 0.089 0 0.3555 0.768 0.089 0.112 0 0.4255 0.709 0.117 0.108 0 0.62 0.658 0.112 0.122 0 0.578 0.747 0.112 0.114 0 0.471 0.8025 0.118 0.115 0 0.324 0.966 0.086 0.068 0 0.409 0.9015 0.08 0.067 0 0.537 0.874 0.11 0.116 0 0.6345 0.9205 0.105 0.105 0 0.846 0.6715 0.098 0.095 0 0.9295 0.896 0.127 0.126
84%|████████▎ | 407/486 [00:23<00:03, 24.93it/s]
0 0.043 0.837 0.08 0.086 0 0.108 0.9675 0.076 0.065 0 0.2115 0.9655 0.073 0.069 0 0.3505 0.9625 0.091 0.075 0 0.467 0.9105 0.092 0.095 0 0.299 0.8595 0.096 0.097 0 0.166 0.8395 0.094 0.083 0 0.375 0.803 0.094 0.092 0 0.6795 0.8885 0.085 0.089 0 0.4575 0.7205 0.083 0.079 0 0.3225 0.707 0.091 0.08 0 0.1765 0.736 0.087 0.08 0 0.0995 0.4095 0.095 0.105 0 0.134 0.2355 0.082 0.073 0 0.1525 0.142 0.081 0.076 0 0.2755 0.323 0.079 0.082 0 0.447 0.304 0.09 0.082 0 0.5655 0.3805 0.075 0.081 0 0.586 0.5225 0.078 0.083 0 0.674 0.3875 0.084 0.085 0 0.202 0.361 0.076 0.08 0 0.1105 0.4695 0.081 0.071 0 0.151 0.549 0.07 0.072 0 0.287 0.448 0.076 0.076 0 0.285 0.594 0.086 0.078 0 0.0715 0.7085 0.073 0.081 0 0.042 0.9555 0.08 0.081 0 0.3445 0.7515 0.091 0.083 0 0.336 0.8265 0.078 0.067 0 0.4535 0.5865 0.077 0.083 0 0.486 0.701 0.086 0.09 0 0.532 0.8765 0.09 0.089 0 0.586 0.961 0.082 0.076 0 0.6045 0.836 0.095 0.094 0 0.536 0.755 0.104 0.11 0 0.615 0.5845 0.074 0.077 0 0.6795 0.686 0.109 0.106 0 0.6885 0.772 0.095 0.082 0 0.8685 0.74 0.119 0.11 0 0.754 0.6775 0.074 0.083 0 0.803 0.6315 0.104 0.103 0 0.699 0.553 0.09 0.088 0 0.827 0.5265 0.088 0.089 0 0.8745 0.423 0.085 0.086 0 0.6635 0.407 0.079 0.078 0 0.7505 0.3485 0.083 0.073 0 0.654 0.2695 0.084 0.079 0 0.83 0.264 0.072 0.068 0 0.7355 0.1825 0.073 0.071 0 0.8355 0.1745 0.077 0.071 0 0.653 0.0675 0.068 0.065 0 0.7665 0.066 0.069 0.062 0 0.065 0.1095 0.104 0.095 0 0.102 0.374 0.124 0.11 0 0.0425 0.4185 0.083 0.113 0 0.052 0.5315 0.078 0.085 0 0.288 0.7145 0.088 0.091 0 0.219 0.755 0.086 0.082 0 0.4665 0.204 0.097 0.084 0 0.821 0.141 0.114 0.12 0 0.914 0.2155 0.078 0.077 0 0.6915 0.319 0.091 0.092 0 0.617 0.343 0.068 0.066 0 0.5455 0.341 0.097 0.094 0 0.367 0.397 0.108 0.102 0 0.2965 0.445 0.095 0.096 0 0.5195 0.5355 0.087 0.081 0 0.8805 0.4865 0.099 0.107 0 0.8325 0.5735 0.093 0.085 0 0.8555 0.6425 0.091 0.091 0 0.9615 0.514 0.067 0.072 0 0.3415 0.872 0.093 0.086 0 0.4055 0.9215 0.085 0.077 0 0.532 0.921 0.092 0.082 0 0.49 0.9675 0.092 0.065 0 0.8745 0.8325 0.107 0.101 0 0.853 0.9535 0.108 0.089 0 0.081 0.038 0.096 0.074 0 0.1755 0.204 0.111 0.11 0 0.0915 0.292 0.075 0.076 0 0.3015 0.172 0.089 0.084 0 0.2535 0.2785 0.089 0.097 0 0.536 0.115 0.092 0.088 0 0.4885 0.186 0.073 0.074 0 0.4595 0.3135 0.089 0.083 0 0.371 0.2975 0.082 0.087 0 0.1385 0.563 0.085 0.084 0 0.076 0.656 0.092 0.092 0 0.072 0.761 0.092 0.098 0 0.07 0.927 0.102 0.106 0 0.253 0.8445 0.102 0.101 0 0.221 0.722 0.116 0.122 0 0.2415 0.6175 0.099 0.091 0 0.4585 0.665 0.075 0.078 0 0.65 0.3235 0.066 0.063 0 0.5345 0.369 0.071 0.07 0 0.052 0.173 0.102 0.12 0 0.2745 0.09 0.099 0.108 0 0.27 0.218 0.096 0.098 0 0.078 0.3225 0.112 0.125 0 0.074 0.456 0.108 0.108 0 0.228 0.361 0.098 0.096 0 0.358 0.3405 0.108 0.119 0 0.055 0.8815 0.08 0.083 0 0.1615 0.641 0.093 0.084 0 0.828 0.7205 0.076 0.081 0 0.727 0.884 0.1 0.088 0 0.7485 0.9585 0.123 0.079 0 0.1515 0.054 0.073 0.07 0 0.7195 0.088 0.137 0.12 0 0.696 0.1785 0.09 0.077 0 0.931 0.052 0.098 0.1 0 0.871 0.0985 0.08 0.069 0 0.785 0.1585 0.092 0.087 0 0.683 0.2725 0.108 0.119 0 0.831 0.228 0.132 0.102 0 0.753 0.322 0.106 0.108 0 0.4545 0.5785 0.099 0.089 0 0.462 0.6555 0.096 0.085 0 0.2955 0.8275 0.089 0.087 0 0.3435 0.8755 0.063 0.053 0 0.631 0.8805 0.08 0.081 0 0.952 0.616 0.092 0.106
85%|████████▍ | 411/486 [00:23<00:02, 28.03it/s]
0 0.048 0.066 0.094 0.114 0 0.1285 0.048 0.095 0.094 0 0.2255 0.042 0.099 0.082 0 0.4545 0.0435 0.101 0.085 0 0.039 0.346 0.076 0.106 0 0.221 0.254 0.118 0.112 0 0.358 0.246 0.12 0.122 0 0.2775 0.4895 0.075 0.077 0 0.3665 0.4275 0.069 0.075 0 0.4785 0.389 0.109 0.114 0 0.391 0.5375 0.116 0.111 0 0.4915 0.802 0.111 0.134 0 0.901 0.3815 0.098 0.103 0 0.9605 0.3435 0.079 0.099 0 0.132 0.065 0.11 0.108 0 0.5635 0.0825 0.081 0.077 0 0.6635 0.1265 0.103 0.085 0 0.7935 0.191 0.089 0.08 0 0.9465 0.2775 0.095 0.097 0 0.577 0.26 0.086 0.078 0 0.4435 0.2545 0.095 0.087 0 0.3675 0.6325 0.099 0.099 0 0.472 0.5655 0.094 0.083 0 0.5625 0.487 0.077 0.078 0 0.4725 0.653 0.089 0.08 0 0.65 0.584 0.078 0.08 0 0.8835 0.6205 0.089 0.093 0 0.919 0.8155 0.096 0.095 0 0.7395 0.8005 0.079 0.075 0 0.61 0.7805 0.112 0.109 0 0.524 0.9045 0.074 0.063 0 0.5985 0.9695 0.083 0.061 0 0.652 0.878 0.104 0.11 0 0.5455 0.852 0.101 0.104 0 0.9525 0.0315 0.063 0.061 0 0.959 0.107 0.074 0.086 0 0.9645 0.202 0.071 0.088 0 0.928 0.2805 0.074 0.083 0 0.9575 0.4035 0.085 0.097 0 0.957 0.539 0.084 0.1 0 0.958 0.6595 0.084 0.085 0 0.9025 0.851 0.087 0.082 0 0.9065 0.95 0.089 0.088 0 0.7885 0.877 0.089 0.09 0 0.8355 0.7095 0.083 0.075 0 0.8305 0.5845 0.081 0.081 0 0.818 0.4875 0.094 0.085 0 0.861 0.3595 0.084 0.083 0 0.8495 0.2735 0.095 0.085 0 0.8615 0.192 0.105 0.096 0 0.8795 0.1025 0.083 0.079 0 0.7825 0.1095 0.091 0.083 0 0.7405 0.1995 0.077 0.071 0 0.6665 0.305 0.085 0.084 0 0.719 0.384 0.072 0.078 0 0.7925 0.4035 0.085 0.091 0 0.6245 0.4065 0.079 0.075 0 0.639 0.966 0.082 0.066 0 0.6665 0.8605 0.075 0.069 0 0.681 0.765 0.074 0.068 0 0.65 0.664 0.068 0.056 0 0.5805 0.6325 0.061 0.061 0 0.5695 0.5305 0.059 0.049 0 0.493 0.5705 0.08 0.083 0 0.5785 0.3095 0.087 0.085 0 0.587 0.2175 0.086 0.087 0 0.6515 0.1835 0.085 0.079 0 0.6555 0.0935 0.081 0.079 0 0.5705 0.088 0.087 0.084 0 0.449 0.184 0.09 0.09 0 0.5035 0.287 0.083 0.082 0 0.3565 0.1865 0.071 0.065 0 0.375 0.244 0.066 0.058 0 0.396 0.304 0.094 0.096 0 0.417 0.4355 0.09 0.091 0 0.4035 0.5605 0.087 0.093 0 0.333 0.887 0.092 0.094 0 0.291 0.726 0.08 0.082 0 0.192 0.937 0.078 0.08 0 0.9205 0.0575 0.107 0.105 0 0.832 0.0535 0.08 0.081 0 0.845 0.1375 0.096 0.095 0 0.87 0.2375 0.09 0.089 0 0.966 0.2525 0.068 0.079 0 0.8865 0.3435 0.085 0.083 0 0.764 0.346 0.096 0.094 0 0.687 0.2895 0.074 0.063 0 0.6905 0.201 0.081 0.08 0 0.772 0.1645 0.094 0.099 0 0.717 0.104 0.1 0.104 0 0.6165 0.1285 0.091 0.093 0 0.624 0.0595 0.062 0.051 0 0.545 0.121 0.06 0.066 0 0.467 0.0505 0.104 0.093 0 0.3415 0.0515 0.101 0.095 0 0.4365 0.1705 0.081 0.083 0 0.425 0.25 0.086 0.076 0 0.5165 0.3555 0.063 0.061 0 0.1275 0.579 0.079 0.086 0 0.0965 0.756 0.061 0.06 0 0.3335 0.9235 0.107 0.097 0 0.3485 0.747 0.067 0.062 0 0.4335 0.852 0.073 0.082 0 0.475 0.9705 0.08 0.059 0 0.5575 0.9185 0.085 0.083 0 0.51 0.844 0.086 0.08 0 0.663 0.848 0.096 0.088 0 0.593 0.8115 0.086 0.079 0 0.527 0.7875 0.064 0.061 0 0.4705 0.7195 0.075 0.071 0 0.571 0.7325 0.09 0.089 0 0.673 0.7375 0.102 0.107 0 0.8255 0.7685 0.081 0.079 0 0.876 0.878 0.072 0.078 0 0.8475 0.965 0.089 0.066 0 0.4525 0.5545 0.083 0.093 0 0.048 0.055 0.088 0.076 0 0.1515 0.424 0.089 0.1 0 0.2075 0.5635 0.071 0.075 0 0.3335 0.4425 0.099 0.105 0 0.2725 0.1085 0.083 0.073 0 0.2945 0.1835 0.081 0.069 0 0.4875 0.38 0.075 0.072 0 0.563 0.134 0.07 0.068 0 0.6305 0.0635 0.065 0.065 0 0.691 0.083 0.074 0.082 0 0.763 0.118 0.09 0.092 0 0.7535 0.046 0.067 0.068 0 0.8315 0.17 0.065 0.068 0 0.8185 0.071 0.077 0.092 0 0.942 0.111 0.078 0.088 0 0.9135 0.199 0.075 0.074 0 0.8995 0.2915 0.081 0.085 0 0.7385 0.4735 0.083 0.085 0 0.896 0.577 0.118 0.122 0 0.9535 0.7665 0.083 0.097 0 0.953 0.854 0.09 0.1 0 0.8995 0.903 0.089 0.088 0 0.715 0.967 0.086 0.062 0 0.615 0.927 0.078 0.09 0 0.618 0.6985 0.07 0.065 0 0.3725 0.7 0.059 0.054 0 0.6955 0.737 0.081 0.088 0 0.762 0.809 0.106 0.104 0 0.8 0.7035 0.096 0.089 0 0.742 0.597 0.084 0.086
86%|████████▌ | 417/486 [00:23<00:02, 24.81it/s]
0 0.9335 0.0415 0.081 0.075 0 0.8925 0.181 0.087 0.082 0 0.9665 0.231 0.067 0.094 0 0.8855 0.293 0.089 0.096 0 0.9675 0.4555 0.065 0.093 0 0.89 0.499 0.084 0.088 0 0.9605 0.586 0.071 0.08 0 0.8765 0.612 0.095 0.098 0 0.7775 0.572 0.099 0.102 0 0.695 0.5895 0.09 0.087 0 0.7115 0.6795 0.085 0.079 0 0.8335 0.6955 0.069 0.065 0 0.896 0.762 0.092 0.098 0 0.7935 0.797 0.103 0.108 0 0.8885 0.926 0.067 0.068 0 0.7995 0.9245 0.073 0.073 0 0.6685 0.789 0.085 0.084 0 0.6855 0.8835 0.081 0.079 0 0.561 0.9185 0.088 0.089 0 0.416 0.882 0.088 0.082 0 0.3085 0.9235 0.077 0.079 0 0.1885 0.846 0.075 0.066 0 0.507 0.8205 0.066 0.069 0 0.5185 0.7425 0.087 0.085 0 0.608 0.708 0.072 0.064 0 0.4245 0.662 0.077 0.072 0 0.3705 0.6 0.075 0.078 0 0.275 0.588 0.07 0.066 0 0.578 0.4675 0.088 0.087 0 0.6665 0.453 0.073 0.08 0 0.7495 0.2805 0.069 0.073 0 0.661 0.217 0.08 0.078 0 0.6745 0.064 0.087 0.076 0 0.568 0.068 0.088 0.084 0 0.455 0.0605 0.086 0.073 0 0.2915 0.0635 0.091 0.089 0 0.2625 0.44 0.083 0.082 0 0.0945 0.068 0.069 0.064 0 0.0795 0.253 0.067 0.07 0 0.499 0.1785 0.112 0.103 0 0.476 0.275 0.102 0.092 0 0.561 0.0435 0.108 0.085 0 0.7435 0.0845 0.107 0.087 0 0.8865 0.138 0.107 0.11 0 0.767 0.5375 0.106 0.091 0 0.778 0.6165 0.1 0.087 0 0.285 0.7115 0.078 0.091 0 0.2045 0.783 0.079 0.08 0 0.1945 0.9015 0.085 0.079 0 0.2815 0.93 0.097 0.084 0 0.287 0.844 0.092 0.1 0 0.434 0.8415 0.072 0.071 0 0.419 0.932 0.114 0.106 0 0.51 0.933 0.104 0.11 0 0.528 0.8415 0.098 0.095 0 0.617 0.9045 0.118 0.127 0 0.693 0.848 0.124 0.13 0 0.663 0.709 0.076 0.082 0 0.816 0.703 0.06 0.056 0 0.802 0.81 0.104 0.09 0 0.9465 0.0985 0.099 0.105 0 0.8195 0.111 0.097 0.098 0 0.7255 0.072 0.093 0.078 0 0.629 0.037 0.086 0.072 0 0.0755 0.0955 0.093 0.087 0 0.147 0.187 0.1 0.11 0 0.3025 0.202 0.105 0.104 0 0.4265 0.2865 0.075 0.057 0 0.4265 0.363 0.095 0.078 0 0.602 0.1475 0.084 0.069 0 0.5805 0.2065 0.085 0.069 0 0.646 0.26 0.098 0.09 0 0.888 0.257 0.086 0.084 0 0.5725 0.3175 0.077 0.079 0 0.698 0.3365 0.09 0.089 0 0.8005 0.345 0.075 0.072 0 0.8295 0.4145 0.069 0.067 0 0.4085 0.525 0.087 0.094 0 0.5565 0.7155 0.091 0.089 0 0.6485 0.7135 0.101 0.105 0 0.804 0.7485 0.092 0.103 0 0.747 0.8055 0.098 0.091 0 0.5425 0.8615 0.089 0.093 0 0.5 0.955 0.1 0.086 0 0.219 0.786 0.09 0.088 0 0.9575 0.0625 0.085 0.087 0 0.8015 0.0675 0.099 0.093 0 0.723 0.1995 0.088 0.081 0 0.384 0.047 0.1 0.092 0 0.362 0.173 0.086 0.09 0 0.2775 0.173 0.089 0.098 0 0.158 0.239 0.078 0.08 0 0.2555 0.04 0.085 0.078 0 0.171 0.037 0.092 0.072 0 0.23 0.3295 0.094 0.083 0 0.286 0.2565 0.078 0.067 0 0.0545 0.354 0.091 0.084 0 0.1445 0.429 0.073 0.076 0 0.165 0.5315 0.076 0.081 0 0.403 0.3735 0.09 0.083 0 0.5225 0.2765 0.081 0.073 0 0.496 0.39 0.094 0.098 0 0.4545 0.4705 0.089 0.091 0 0.3325 0.5035 0.093 0.097 0 0.276 0.5925 0.098 0.097 0 0.2405 0.705 0.089 0.092 0 0.2145 0.7905 0.079 0.071 0 0.4145 0.7015 0.107 0.107 0 0.4605 0.579 0.099 0.1 0 0.5415 0.6355 0.089 0.083 0 0.6235 0.6685 0.075 0.085 0 0.47 0.767 0.088 0.088 0 0.515 0.8315 0.112 0.107 0 0.6475 0.7945 0.091 0.097 0 0.724 0.8195 0.09 0.111 0 0.739 0.9465 0.092 0.085 0 0.8005 0.8065 0.079 0.079 0 0.8945 0.9385 0.083 0.085 0 0.8415 0.6685 0.083 0.089 0 0.7395 0.0295 0.079 0.057 0 0.7985 0.0865 0.095 0.089 0 0.868 0.1685 0.096 0.077 0 0.965 0.321 0.07 0.092 0 0.86 0.402 0.106 0.088 0 0.833 0.4835 0.13 0.121 0 0.9485 0.542 0.075 0.07 0 0.574 0.6825 0.072 0.077 0 0.6275 0.5825 0.081 0.071 0 0.7015 0.29 0.087 0.084 0 0.693 0.176 0.09 0.082 0 0.671 0.0875 0.084 0.077 0 0.564 0.0375 0.1 0.073 0 0.5755 0.1115 0.089 0.085 0 0.5835 0.2115 0.097 0.089 0 0.466 0.0965 0.094 0.089 0 0.467 0.1875 0.094 0.097 0 0.4415 0.299 0.079 0.082 0 0.214 0.394 0.072 0.066 0 0.4365 0.523 0.081 0.08 0 0.165 0.8035 0.086 0.087 0 0.041 0.7665 0.08 0.095 0 0.0905 0.241 0.083 0.082
86%|████████▋ | 420/486 [00:23<00:03, 20.80it/s]
0 0.9125 0.099 0.097 0.096 0 0.844 0.1895 0.092 0.081 0 0.852 0.0495 0.064 0.065 0 0.695 0.0515 0.068 0.061 0 0.5485 0.039 0.059 0.052 0 0.6605 0.146 0.049 0.046 0 0.3935 0.0445 0.093 0.087 0 0.2745 0.04 0.093 0.078 0 0.1665 0.0525 0.089 0.089 0 0.1165 0.1345 0.089 0.081 0 0.115 0.229 0.12 0.104 0 0.239 0.192 0.086 0.092 0 0.3715 0.199 0.087 0.088 0 0.443 0.205 0.052 0.056 0 0.503 0.1635 0.05 0.055 0 0.3995 0.301 0.049 0.046 0 0.507 0.2745 0.066 0.053 0 0.8775 0.3885 0.089 0.093 0 0.7765 0.364 0.089 0.084 0 0.5125 0.379 0.099 0.104 0 0.618 0.3865 0.118 0.109 0 0.7125 0.443 0.101 0.098 0 0.8275 0.5055 0.069 0.065 0 0.175 0.4585 0.084 0.079 0 0.2955 0.4275 0.077 0.075 0 0.391 0.4275 0.08 0.079 0 0.487 0.491 0.1 0.1 0 0.5905 0.4845 0.111 0.107 0 0.8185 0.632 0.085 0.094 0 0.6725 0.62 0.107 0.112 0 0.568 0.579 0.1 0.09 0 0.4665 0.6115 0.127 0.113 0 0.384 0.625 0.066 0.074 0 0.323 0.5355 0.084 0.079 0 0.0625 0.5045 0.063 0.055 0 0.1465 0.678 0.073 0.07 0 0.1975 0.6745 0.047 0.055 0 0.044 0.8015 0.08 0.075 0 0.25 0.919 0.08 0.084 0 0.286 0.826 0.098 0.096 0 0.306 0.726 0.098 0.096 0 0.423 0.8 0.096 0.098 0 0.4865 0.714 0.117 0.098 0 0.517 0.8115 0.098 0.097 0 0.4835 0.937 0.075 0.08 0 0.594 0.8105 0.068 0.067 0 0.6215 0.727 0.117 0.106 0 0.764 0.8005 0.1 0.085 0 0.77 0.9245 0.086 0.093 0 0.847 0.893 0.072 0.082 0 0.9185 0.826 0.073 0.076 0 0.908 0.721 0.072 0.07 0 0.047 0.0315 0.074 0.061 0 0.132 0.0465 0.08 0.071 0 0.038 0.1285 0.074 0.077 0 0.118 0.1365 0.052 0.047 0 0.2205 0.104 0.075 0.076 0 0.167 0.252 0.064 0.058 0 0.065 0.352 0.07 0.072 0 0.1615 0.3855 0.063 0.059 0 0.2885 0.208 0.061 0.064 0 0.3865 0.2035 0.059 0.055 0 0.4305 0.078 0.087 0.08 0 0.546 0.0445 0.088 0.087 0 0.61 0.182 0.09 0.094 0 0.778 0.033 0.08 0.064 0 0.862 0.0815 0.076 0.075 0 0.942 0.119 0.082 0.08 0 0.9645 0.2115 0.071 0.085 0 0.947 0.373 0.076 0.082 0 0.9105 0.4645 0.089 0.093 0 0.897 0.55 0.064 0.068 0 0.724 0.2715 0.084 0.083 0 0.8115 0.384 0.073 0.082 0 0.7755 0.471 0.109 0.106 0 0.704 0.4025 0.072 0.075 0 0.6355 0.3575 0.071 0.065 0 0.6285 0.435 0.093 0.084 0 0.62 0.5105 0.084 0.077 0 0.695 0.492 0.07 0.068 0 0.6625 0.615 0.097 0.086 0 0.7735 0.6745 0.079 0.073 0 0.8345 0.746 0.121 0.134 0 0.9425 0.7945 0.079 0.071 0 0.894 0.8895 0.088 0.087 0 0.8035 0.9565 0.107 0.081 0 0.734 0.775 0.106 0.12 0 0.667 0.751 0.104 0.114 0 0.6205 0.9525 0.085 0.071 0 0.602 0.8385 0.09 0.089 0 0.4725 0.9575 0.103 0.081 0 0.4475 0.878 0.085 0.076 0 0.542 0.71 0.098 0.096 0 0.471 0.71 0.076 0.066 0 0.3575 0.841 0.065 0.056 0 0.332 0.6945 0.066 0.065 0 0.2045 0.7365 0.071 0.059 0 0.189 0.9355 0.08 0.079 0 0.15 0.8425 0.066 0.061 0 0.4805 0.492 0.075 0.068 0 0.4645 0.4175 0.091 0.077 0 0.5175 0.3865 0.095 0.091 0 0.1315 0.1625 0.079 0.079 0 0.0965 0.2195 0.091 0.085 0 0.098 0.3195 0.07 0.069 0 0.0815 0.4115 0.103 0.101 0 0.1015 0.56 0.097 0.094 0 0.1735 0.395 0.075 0.076 0 0.225 0.2935 0.07 0.067 0 0.326 0.2255 0.058 0.053 0 0.314 0.0505 0.068 0.067 0 0.2945 0.4135 0.087 0.089 0 0.2145 0.552 0.081 0.076 0 0.0585 0.813 0.079 0.078 0 0.0805 0.965 0.101 0.066 0 0.241 0.885 0.062 0.058 0 0.306 0.815 0.054 0.066 0 0.2185 0.6695 0.079 0.081 0 0.299 0.632 0.074 0.082 0 0.351 0.5605 0.092 0.067 0 0.394 0.377 0.086 0.084 0 0.434 0.2795 0.08 0.077 0 0.4855 0.395 0.091 0.108 0 0.565 0.364 0.094 0.092 0 0.4495 0.513 0.077 0.07 0 0.4635 0.5835 0.109 0.103 0 0.526 0.4965 0.092 0.091 0 0.5815 0.442 0.081 0.062 0 0.451 0.7905 0.064 0.053 0 0.55 0.7445 0.064 0.059 0 0.628 0.776 0.07 0.068
87%|████████▋ | 423/486 [00:23<00:03, 18.97it/s]
0 0.659 0.8455 0.064 0.059 0 0.7135 0.932 0.071 0.056 0 0.7735 0.969 0.061 0.06 0 0.8255 0.9055 0.089 0.081 0 0.87 0.7255 0.068 0.065 0 0.971 0.9515 0.058 0.067 0 0.9735 0.765 0.053 0.062 0 0.868 0.576 0.072 0.064 0 0.655 0.616 0.078 0.08 0 0.7385 0.464 0.079 0.074 0 0.8635 0.4555 0.095 0.093 0 0.7485 0.337 0.075 0.07 0 0.813 0.2575 0.068 0.057 0 0.7805 0.1735 0.067 0.067 0 0.8575 0.208 0.087 0.078 0 0.9195 0.0875 0.083 0.081 0 0.9505 0.1775 0.087 0.083 0 0.966 0.2625 0.068 0.079 0 0.0385 0.13 0.075 0.094 0 0.199 0.0415 0.1 0.081 0 0.2885 0.05 0.091 0.084 0 0.2095 0.174 0.101 0.1 0 0.077 0.344 0.12 0.144 0 0.204 0.2795 0.102 0.099 0 0.2105 0.403 0.107 0.114 0 0.1625 0.533 0.107 0.114 0 0.2215 0.589 0.063 0.058 0 0.267 0.5095 0.106 0.101 0 0.2115 0.6815 0.109 0.107 0 0.112 0.8385 0.072 0.079 0 0.2005 0.8115 0.097 0.107 0 0.2545 0.7345 0.085 0.079 0 0.3295 0.6445 0.117 0.107 0 0.2115 0.9645 0.095 0.071 0 0.3175 0.957 0.103 0.086 0 0.284 0.851 0.062 0.054 0 0.3835 0.849 0.063 0.062 0 0.429 0.882 0.096 0.102 0 0.543 0.8575 0.102 0.105 0 0.4545 0.7175 0.087 0.093 0 0.579 0.7175 0.094 0.093 0 0.5525 0.634 0.087 0.076 0 0.4285 0.5715 0.097 0.091 0 0.383 0.484 0.07 0.074 0 0.4975 0.5095 0.065 0.063 0 0.6 0.515 0.098 0.104 0 0.7065 0.4195 0.087 0.091 0 0.5075 0.336 0.095 0.084 0 0.359 0.288 0.066 0.066 0 0.458 0.25 0.08 0.08 0 0.443 0.136 0.08 0.084 0 0.9425 0.147 0.103 0.118 0 0.85 0.2435 0.068 0.061 0 0.8225 0.478 0.063 0.062 0 0.959 0.4945 0.078 0.093 0 0.787 0.9025 0.094 0.083 0 0.58 0.05 0.092 0.086 0 0.5755 0.149 0.075 0.07 0 0.0835 0.1615 0.067 0.073 0 0.0395 0.293 0.077 0.106 0 0.3165 0.3695 0.093 0.085 0 0.4825 0.376 0.083 0.08 0 0.5785 0.3745 0.103 0.099 0 0.605 0.2515 0.058 0.059 0 0.851 0.24 0.104 0.11 0 0.959 0.0585 0.082 0.091 0 0.9285 0.136 0.093 0.092 0 0.937 0.239 0.108 0.11 0 0.94 0.3615 0.108 0.111 0 0.774 0.399 0.09 0.086 0 0.09 0.888 0.1 0.084 0 0.113 0.959 0.102 0.082 0 0.483 0.7485 0.076 0.081 0 0.5185 0.914 0.111 0.114 0 0.5995 0.958 0.069 0.066 0 0.658 0.8645 0.088 0.091 0 0.6035 0.8055 0.073 0.067 0 0.606 0.611 0.09 0.08 0 0.6565 0.745 0.077 0.072 0 0.7395 0.779 0.077 0.074 0 0.6905 0.6835 0.085 0.075 0 0.76 0.6695 0.076 0.063 0 0.884 0.757 0.092 0.082 0 0.8105 0.863 0.069 0.07 0 0.8515 0.9455 0.103 0.091 0 0.9595 0.865 0.081 0.078 0 0.864 0.8405 0.076 0.081 0 0.9685 0.78 0.063 0.068 0 0.081 0.0955 0.082 0.087 0 0.176 0.0535 0.088 0.073 0 0.2775 0.076 0.065 0.072 0 0.129 0.1755 0.072 0.071 0 0.1305 0.2665 0.071 0.077 0 0.061 0.355 0.084 0.086 0 0.04 0.468 0.078 0.09 0 0.1065 0.525 0.057 0.068 0 0.067 0.617 0.092 0.086 0 0.1635 0.6315 0.069 0.065 0 0.172 0.8065 0.07 0.077 0 0.288 0.901 0.068 0.058 0 0.235 0.9745 0.056 0.051 0 0.3445 0.7405 0.079 0.077 0 0.2655 0.5985 0.083 0.085 0 0.354 0.5195 0.1 0.091 0 0.2595 0.4005 0.063 0.063 0 0.3455 0.402 0.071 0.084 0 0.2495 0.242 0.061 0.058 0 0.238 0.164 0.068 0.058 0 0.4215 0.143 0.081 0.084 0 0.4005 0.299 0.073 0.078 0 0.459 0.3925 0.082 0.087 0 0.5035 0.571 0.103 0.108 0 0.495 0.788 0.092 0.086 0 0.561 0.411 0.074 0.072 0 0.643 0.315 0.102 0.092 0 0.504 0.1465 0.078 0.079 0 0.65 0.4225 0.098 0.103 0 0.721 0.5085 0.068 0.081 0 0.6015 0.6045 0.081 0.079 0 0.6165 0.6885 0.071 0.079 0 0.716 0.619 0.068 0.066 0 0.7005 0.7005 0.065 0.063 0 0.789 0.594 0.074 0.07 0 0.916 0.1095 0.078 0.071 0 0.899 0.241 0.098 0.106 0 0.9235 0.5575 0.095 0.093 0 0.8775 0.658 0.107 0.108 0 0.963 0.639 0.074 0.114 0 0.8015 0.6975 0.097 0.097 0 0.8975 0.7735 0.109 0.109 0 0.7865 0.812 0.115 0.112 0 0.751 0.8995 0.096 0.085 0 0.9535 0.9465 0.091 0.097 0 0.9515 0.04 0.089 0.072 0 0.8725 0.059 0.095 0.098 0 0.9335 0.143 0.071 0.064 0 0.851 0.197 0.084 0.086 0 0.955 0.2625 0.09 0.095 0 0.9325 0.358 0.105 0.114 0 0.9135 0.4365 0.109 0.095 0 0.8045
88%|████████▊ | 429/486 [00:24<00:02, 20.31it/s]
0.46 0.107 0.104 0 0.6905 0.049 0.127 0.096 0 0.6615 0.1515 0.107 0.109 0 0.5875 0.211 0.083 0.078 0 0.525 0.1905 0.11 0.117 0 0.533 0.077 0.09 0.074 0 0.365 0.0765 0.092 0.081 0 0.3575 0.197 0.091 0.094 0 0.2015 0.1485 0.115 0.107 0 0.1845 0.225 0.097 0.086 0 0.039 0.4525 0.076 0.103 0 0.235 0.508 0.098 0.102 0 0.158 0.5935 0.082 0.085 0 0.044 0.899 0.082 0.1 0 0.1345 0.8725 0.101 0.101 0 0.2985 0.9485 0.079 0.081 0 0.349 0.864 0.068 0.062 0 0.2465 0.9125 0.077 0.075 0 0.2045 0.6725 0.093 0.073 0 0.3745 0.6855 0.089 0.077 0 0.414 0.775 0.1 0.096 0 0.484 0.8045 0.076 0.075 0 0.443 0.945 0.078 0.068 0 0.519 0.939 0.082 0.08 0 0.5605 0.871 0.105 0.106 0 0.6555 0.9035 0.111 0.109 0 0.5865 0.779 0.111 0.114 0 0.7455 0.844 0.063 0.064 0 0.701 0.748 0.106 0.102 0 0.666 0.6655 0.084 0.077 0 0.809 0.736 0.1 0.106 0 0.729 0.61 0.092 0.098 0 0.9025 0.743 0.089 0.102 0 0.958 0.7105 0.084 0.107 0 0.836 0.651 0.1 0.094 0 0.791 0.5635 0.1 0.097 0 0.935 0.599 0.09 0.102 0 0.8745 0.5365 0.099 0.107 0 0.5345 0.5435 0.087 0.071 0 0.5415 0.459 0.113 0.098 0 0.365 0.0425 0.096 0.083 0 0.5245 0.045 0.083 0.078 0 0.7225 0.047 0.111 0.092 0 0.845 0.0265 0.078 0.051 0 0.042 0.498 0.082 0.084 0 0.26 0.4985 0.072 0.075 0 0.4635 0.355 0.061 0.058 0 0.898 0.2875 0.076 0.059 0 0.91 0.385 0.076 0.084 0 0.0545 0.591 0.097 0.104 0 0.166 0.6415 0.1 0.093 0 0.069 0.7165 0.11 0.101 0 0.0675 0.8035 0.119 0.095 0 0.074 0.8905 0.114 0.105 0 0.0555 0.9585 0.107 0.083 0 0.1865 0.889 0.125 0.116 0 0.299 0.834 0.104 0.102 0 0.2195 0.7505 0.103 0.101 0 0.2775 0.688 0.093 0.09 0 0.3805 0.7225 0.083 0.081 0 0.472 0.6595 0.078 0.073 0 0.487 0.931 0.12 0.108 0 0.531 0.825 0.076 0.07 0 0.5835 0.747 0.071 0.092 0 0.6265 0.873 0.089 0.086 0 0.8285 0.754 0.109 0.092 0 0.894 0.887 0.086 0.078 0 0.7375 0.935 0.095 0.094 0 0.902 0.074 0.098 0.086 0 0.868 0.156 0.086 0.08 0 0.923 0.249 0.086 0.09 0 0.8385 0.245 0.081 0.09 0 0.875 0.3405 0.09 0.087 0 0.7565 0.221 0.089 0.1 0 0.7525 0.0775 0.083 0.089 0 0.685 0.114 0.094 0.094 0 0.653 0.2415 0.09 0.083 0 0.728 0.3535 0.086 0.095 0 0.752 0.4055 0.09 0.085 0 0.8065 0.4425 0.097 0.091 0 0.055 0.2665 0.094 0.089 0 0.154 0.3075 0.122 0.119 0 0.071 0.369 0.11 0.11 0 0.0715 0.47 0.107 0.09 0 0.136 0.515 0.11 0.096 0 0.257 0.5865 0.09 0.091 0 0.353 0.597 0.108 0.11 0 0.49 0.4725 0.09 0.085 0 0.551 0.3735 0.09 0.083 0 0.563 0.4785 0.078 0.099 0 0.628 0.438 0.088 0.092 0 0.581 0.5675 0.108 0.093 0 0.6385 0.6435 0.105 0.099 0 0.5725 0.735 0.093 0.08 0 0.5415 0.809 0.089 0.08 0 0.7375 0.672 0.087 0.082 0 0.733 0.5905 0.078 0.071 0 0.857 0.604 0.09 0.084 0 0.2725 0.255 0.105 0.108 0 0.7095 0.1175 0.079 0.073 0 0.835 0.2125 0.078 0.075 0 0.623 0.384 0.114 0.112 0 0.5725 0.677 0.085 0.078 0 0.5015 0.814 0.101 0.094 0 0.4865 0.8975 0.093 0.069 0 0.6 0.855 0.092 0.106 0 0.5815 0.9415 0.095 0.081 0 0.7065 0.817 0.113 0.092 0 0.8195 0.873 0.073 0.078 0 0.7855 0.951 0.085 0.078 0 0.874 0.9435 0.084 0.085 0 0.1655 0.306 0.069 0.076 0 0.265 0.299 0.104 0.102 0 0.243 0.196 0.088 0.088 0 0.384 0.2095 0.104 0.097 0 0.568 0.0945 0.098 0.075 0 0.645 0.0375 0.116 0.073 0 0.7485 0.0535 0.095 0.085 0 0.918 0.0515 0.096 0.101 0 0.8355 0.1275 0.087 0.099 0 0.833 0.2405 0.084 0.085 0 0.9675 0.206 0.065 0.078 0 0.945 0.4475 0.094 0.093 0 0.8465 0.527 0.111 0.1 0 0.826 0.617 0.098 0.084 0 0.7685 0.421 0.095 0.09 0 0.679 0.3665 0.094 0.089 0 0.7085 0.293 0.089 0.082 0 0.624 0.309 0.084 0.08 0 0.584 0.453 0.104 0.098 0 0.697 0.591 0.08 0.064 0 0.605 0.631 0.096 0.098 0 0.4025 0.5115 0.095 0.085
89%|████████▉ | 432/486 [00:24<00:02, 21.62it/s]
0 0.2155 0.0685 0.067 0.059 0 0.3945 0.061 0.077 0.076 0 0.4485 0.0675 0.057 0.057 0 0.187 0.3295 0.064 0.057 0 0.839 0.0775 0.09 0.089 0 0.9605 0.322 0.077 0.088 0 0.943 0.54 0.096 0.09 0 0.2655 0.5485 0.091 0.099 0 0.2625 0.7005 0.097 0.089 0 0.494 0.7145 0.108 0.097 0 0.6635 0.6985 0.073 0.071 0 0.2675 0.8255 0.093 0.095 0 0.361 0.792 0.082 0.088 0 0.081 0.932 0.104 0.1 0 0.199 0.918 0.096 0.088 0 0.323 0.9495 0.11 0.095 0 0.412 0.92 0.104 0.094 0 0.515 0.89 0.1 0.102 0 0.601 0.8175 0.094 0.087 0 0.6105 0.915 0.111 0.104 0 0.748 0.848 0.116 0.108 0 0.807 0.7965 0.082 0.079 0 0.2205 0.0585 0.087 0.085 0 0.512 0.0545 0.094 0.081 0 0.1125 0.562 0.081 0.09 0 0.2485 0.592 0.095 0.1 0 0.365 0.5815 0.11 0.105 0 0.493 0.537 0.104 0.098 0 0.574 0.429 0.092 0.094 0 0.043 0.784 0.084 0.102 0 0.17 0.7925 0.098 0.093 0 0.264 0.716 0.106 0.098 0 0.182 0.935 0.106 0.098 0 0.3275 0.828 0.105 0.098 0 0.4605 0.71 0.105 0.098 0 0.5345 0.8715 0.113 0.107 0 0.6405 0.8935 0.087 0.093 0 0.5965 0.6975 0.109 0.103 0 0.6855 0.656 0.089 0.09 0 0.782 0.7965 0.106 0.105 0 0.8485 0.693 0.103 0.094 0 0.872 0.516 0.086 0.09 0 0.743 0.244 0.084 0.08 0 0.8005 0.3635 0.083 0.089 0 0.793 0.463 0.088 0.076 0 0.687 0.3785 0.082 0.075 0 0.594 0.3315 0.104 0.099 0 0.473 0.2855 0.096 0.085 0 0.504 0.4295 0.098 0.091 0 0.624 0.457 0.09 0.084 0 0.4035 0.532 0.093 0.084 0 0.3445 0.591 0.087 0.09 0 0.5535 0.5265 0.091 0.089 0 0.4715 0.609 0.077 0.08 0 0.571 0.6285 0.094 0.095 0 0.5615 0.725 0.093 0.086 0 0.15 0.9385 0.104 0.099 0 0.3525 0.939 0.067 0.066 0 0.856 0.7035 0.108 0.109 0 0.14 0.3955 0.096 0.073 0 0.18 0.481 0.078 0.084 0 0.083 0.4815 0.086 0.085 0 0.136 0.568 0.088 0.084 0 0.057 0.605 0.09 0.082 0 0.2045 0.752 0.085 0.068 0 0.2225 0.833 0.093 0.082 0 0.2655 0.9155 0.103 0.089 0 0.3295 0.8425 0.093 0.087 0 0.298 0.7515 0.09 0.099 0 0.4485 0.8985 0.089 0.079 0 0.4515 0.767 0.089 0.084 0 0.53 0.8315 0.08 0.083 0 0.3935 0.647 0.101 0.098 0 0.329 0.5765 0.084 0.085 0 0.5545 0.6445 0.089 0.089 0 0.5145 0.564 0.097 0.09 0 0.8585 0.718 0.079 0.082 0 0.874 0.8675 0.08 0.079 0 0.963 0.934 0.07 0.076 0 0.3075 0.3735 0.079 0.075 0 0.474 0.427 0.082 0.088 0 0.5615 0.3885 0.085 0.087 0 0.653 0.4745 0.086 0.087 0 0.3455 0.286 0.083 0.08 0 0.413 0.2545 0.066 0.071 0 0.523 0.2635 0.082 0.083 0 0.658 0.331 0.108 0.094 0 0.7985 0.293 0.077 0.086 0 0.8705 0.316 0.081 0.09 0 0.9585 0.36 0.083 0.098 0 0.964 0.2395 0.072 0.077 0 0.654 0.2245 0.11 0.095 0 0.7025 0.0975 0.095 0.091 0 0.6245 0.1505 0.081 0.075 0 0.527 0.1795 0.1 0.087 0 0.6075 0.072 0.095 0.092 0 0.499 0.088 0.094 0.08 0 0.417 0.0975 0.082 0.075 0 0.3755 0.0435 0.101 0.085 0 0.507 0.039 0.1 0.074 0 0.3505 0.113 0.097 0.092 0 0.205 0.2825 0.078 0.073 0 0.072 0.4275 0.08 0.083 0 0.187 0.379 0.098 0.096 0 0.37 0.394 0.082 0.078 0 0.7285 0.14 0.113 0.114 0 0.88 0.109 0.08 0.08 0 0.8845 0.287 0.105 0.102 0 0.8955 0.6055 0.095 0.099 0 0.2945 0.7295 0.097 0.097 0 0.4435 0.7175 0.083 0.083 0 0.579 0.6825 0.098 0.095 0 0.6605 0.566 0.095 0.088 0 0.7475 0.7275 0.095 0.095 0 0.885 0.873 0.1 0.096 0 0.7225 0.8505 0.101 0.103 0 0.6245 0.7795 0.081 0.075 0 0.5485 0.84 0.091 0.086 0 0.402 0.824 0.108 0.104 0 0.429 0.948 0.09 0.086
90%|█████████ | 439/486 [00:24<00:01, 25.22it/s]
0 0.069 0.0815 0.094 0.091 0 0.3225 0.1275 0.101 0.093 0 0.453 0.1485 0.11 0.099 0 0.5545 0.058 0.103 0.094 0 0.703 0.156 0.108 0.102 0 0.8185 0.148 0.099 0.088 0 0.3045 0.2695 0.105 0.095 0 0.1715 0.341 0.093 0.088 0 0.303 0.3605 0.104 0.095 0 0.505 0.291 0.09 0.088 0 0.626 0.237 0.082 0.076 0 0.635 0.3 0.072 0.064 0 0.7495 0.288 0.067 0.066 0 0.275 0.461 0.084 0.08 0 0.4325 0.4875 0.095 0.083 0 0.943 0.6575 0.086 0.093 0 0.806 0.5995 0.07 0.069 0 0.746 0.6755 0.098 0.099 0 0.6425 0.704 0.089 0.088 0 0.57 0.634 0.092 0.09 0 0.446 0.664 0.096 0.094 0 0.3255 0.5665 0.097 0.099 0 0.293 0.71 0.088 0.092 0 0.38 0.736 0.078 0.072 0 0.23 0.956 0.124 0.088 0 0.503 0.856 0.072 0.074 0 0.5075 0.9435 0.087 0.079 0 0.7955 0.909 0.087 0.09 0 0.8755 0.883 0.081 0.09 0 0.192 0.7175 0.086 0.083 0 0.1945 0.5255 0.085 0.083 0 0.9135 0.545 0.105 0.114 0 0.887 0.7235 0.086 0.077 0 0.953 0.8895 0.094 0.097 0 0.73 0.882 0.106 0.102 0 0.705 0.7265 0.1 0.099 0 0.7805 0.5565 0.105 0.109 0 0.6765 0.5575 0.079 0.081 0 0.505 0.71 0.112 0.108 0 0.4855 0.812 0.067 0.062 0 0.2875 0.7785 0.071 0.065 0 0.055 0.856 0.082 0.07 0 0.04 0.594 0.076 0.076 0 0.1115 0.5155 0.081 0.073 0 0.3515 0.5635 0.071 0.057 0 0.035 0.405 0.066 0.092 0 0.1075 0.4005 0.087 0.081 0 0.2195 0.4205 0.083 0.073 0 0.289 0.357 0.098 0.094 0 0.1115 0.331 0.079 0.058 0 0.2255 0.2935 0.087 0.079 0 0.0355 0.2455 0.069 0.095 0 0.077 0.0465 0.092 0.077 0 0.275 0.05 0.118 0.098 0 0.142 0.059 0.112 0.102 0 0.0415 0.2395 0.081 0.107 0 0.0585 0.497 0.115 0.118 0 0.2015 0.5155 0.113 0.107 0 0.1335 0.7475 0.113 0.119 0 0.2215 0.948 0.107 0.096 0 0.3825 0.8005 0.105 0.101 0 0.578 0.943 0.068 0.07 0 0.5065 0.7355 0.083 0.075 0 0.6495 0.7955 0.109 0.119 0 0.6145 0.6875 0.115 0.111 0 0.8025 0.704 0.119 0.108 0 0.357 0.468 0.092 0.092 0 0.475 0.544 0.106 0.11 0 0.5635 0.4425 0.103 0.097 0 0.708 0.574 0.076 0.072 0 0.0555 0.3895 0.109 0.105 0 0.239 0.6045 0.114 0.113 0 0.349 0.5535 0.056 0.053 0 0.528 0.3615 0.064 0.053 0 0.6845 0.2995 0.121 0.121 0 0.857 0.2275 0.072 0.065 0 0.8915 0.5195 0.083 0.089 0 0.936 0.6285 0.108 0.105 0 0.742 0.5715 0.114 0.109 0 0.5585 0.589 0.123 0.118 0 0.1945 0.8745 0.085 0.095 0 0.26 0.9405 0.106 0.103 0 0.411 0.9465 0.108 0.107 0 0.3505 0.8635 0.097 0.095 0 0.3365 0.1725 0.087 0.091 0 0.434 0.274 0.098 0.098 0 0.339 0.3705 0.09 0.095 0 0.602 0.266 0.056 0.062 0 0.69 0.3175 0.09 0.081 0 0.775 0.338 0.076 0.066 0 0.718 0.4415 0.1 0.089 0 0.76 0.523 0.084 0.08 0 0.5285 0.4935 0.103 0.099 0 0.398 0.5015 0.078 0.079 0 0.0325 0.546 0.063 0.078 0 0.1605 0.6105 0.103 0.093 0 0.1915 0.728 0.097 0.098 0 0.2765 0.6595 0.073 0.077 0 0.322 0.6395 0.082 0.087 0 0.4095 0.7575 0.099 0.093 0 0.5785 0.821 0.097 0.092 0 0.644 0.694 0.104 0.106 0 0.464 0.619 0.086 0.086 0 0.96 0.5415 0.076 0.089 0 0.4175 0.142 0.099 0.094 0 0.0525 0.376 0.077 0.07 0 0.129 0.392 0.082 0.082 0 0.279 0.387 0.094 0.086 0 0.4725 0.361 0.097 0.086 0 0.681 0.0585 0.1 0.091 0 0.7745 0.208 0.123 0.116 0 0.7015 0.382 0.095 0.094 0 0.9505 0.3445 0.095 0.095 0 0.954 0.498 0.082 0.112 0 0.8575 0.506 0.107 0.116 0 0.469 0.495 0.088 0.078 0 0.461 0.6665 0.086 0.077 0 0.3025 0.6065 0.085 0.077 0 0.6675 0.8885 0.075 0.069 0 0.7765 0.8325 0.105 0.099 0 0.032 0.14 0.062 0.07 0 0.066 0.2725 0.076 0.079 0 0.0525 0.4225 0.087 0.075 0 0.175 0.3695 0.09 0.085 0 0.264 0.304 0.074 0.072 0 0.3255 0.2035 0.081 0.083 0 0.3655 0.102 0.073 0.068 0 0.5685 0.0375 0.081 0.073 0 0.4965 0.3085 0.079 0.079 0 0.323 0.3695 0.076 0.081 0 0.459 0.442 0.076 0.07 0 0.094 0.63 0.07 0.066 0 0.0895 0.7795 0.071 0.083 0 0.1175 0.8655 0.061 0.067 0 0.26 0.797 0.098 0.084 0 0.2295 0.612 0.061 0.07 0 0.3045 0.628 0.089 0.088 0 0.4325 0.814 0.067 0.064 0 0.52 0.653 0.09 0.096 0 0.6475 0.8415 0.091 0.087 0 0.7905 0.8435 0.091 0.093 0 0.6905 0.649 0.095 0.09 0 0.885 0.651 0.088 0.088 0 0.8235 0.5615 0.097 0.103 0 0.91 0.5385 0.094 0.087 0 0.684 0.4325 0.082 0.087 0 0.8935 0.4145 0.085 0.079 0 0.873 0.334 0.094 0.08 0 0.745 0.2865 0.098 0.103 0 0.8935 0.26 0.073 0.076 0 0.8245
92%|█████████▏| 445/486 [00:24<00:01, 25.43it/s]
0.202 0.089 0.078 0 0.8825 0.041 0.077 0.068 0 0.9665 0.142 0.067 0.09 0 0.9715 0.0475 0.057 0.079 0 0.494 0.234 0.092 0.08 0 0.0375 0.6405 0.073 0.087 0 0.1105 0.6835 0.089 0.085 0 0.1085 0.77 0.097 0.086 0 0.1975 0.7795 0.105 0.107 0 0.283 0.7815 0.082 0.099 0 0.353 0.781 0.086 0.108 0 0.3825 0.5995 0.083 0.087 0 0.4125 0.694 0.103 0.092 0 0.444 0.7845 0.094 0.109 0 0.0485 0.8505 0.087 0.091 0 0.1015 0.9585 0.107 0.081 0 0.108 0.8865 0.094 0.093 0 0.2105 0.9195 0.101 0.115 0 0.2975 0.9225 0.087 0.093 0 0.373 0.949 0.078 0.084 0 0.357 0.868 0.088 0.074 0 0.4305 0.8955 0.099 0.095 0 0.5125 0.9665 0.103 0.067 0 0.568 0.8855 0.114 0.089 0 0.613 0.9575 0.09 0.073 0 0.5645 0.8025 0.093 0.083 0 0.5885 0.734 0.081 0.07 0 0.7205 0.7425 0.091 0.081 0 0.6785 0.8215 0.083 0.085 0 0.9165 0.815 0.085 0.08 0 0.8355 0.8995 0.099 0.091 0 0.8015 0.9615 0.097 0.077 0 0.154 0.0565 0.12 0.103 0 0.054 0.114 0.106 0.104 0 0.164 0.175 0.13 0.13 0 0.062 0.206 0.112 0.09 0 0.0645 0.3035 0.125 0.117 0 0.208 0.2875 0.114 0.111 0 0.326 0.3085 0.114 0.121 0 0.2525 0.3915 0.117 0.113 0 0.0765 0.457 0.121 0.124 0 0.094 0.554 0.118 0.094 0 0.126 0.6615 0.126 0.127 0 0.258 0.679 0.12 0.126 0 0.3415 0.5625 0.087 0.079 0 0.364 0.6785 0.128 0.113 0 0.086 0.8 0.102 0.102 0 0.206 0.7905 0.114 0.103 0 0.322 0.7915 0.134 0.111 0 0.443 0.787 0.122 0.126 0 0.0615 0.9275 0.117 0.111 0 0.21 0.935 0.094 0.086 0 0.556 0.889 0.108 0.086 0 0.6935 0.931 0.095 0.096 0 0.6625 0.8155 0.097 0.095 0 0.776 0.784 0.054 0.06 0 0.863 0.7165 0.088 0.089 0 0.817 0.908 0.09 0.08 0 0.898 0.8655 0.09 0.087 0 0.839 0.8295 0.078 0.077 0 0.941 0.9675 0.072 0.065 0 0.643 0.561 0.082 0.072 0 0.5365 0.3105 0.087 0.087 0 0.636 0.3415 0.076 0.081 0 0.623 0.2135 0.1 0.103 0 0.7455 0.207 0.087 0.1 0 0.7875 0.0395 0.095 0.077 0 0.8415 0.077 0.085 0.082 0 0.709 0.1075 0.078 0.081 0 0.8405 0.297 0.085 0.078 0 0.1425 0.0665 0.073 0.077 0 0.1735 0.1665 0.103 0.103 0 0.2735 0.165 0.099 0.092 0 0.0585 0.2885 0.091 0.087 0 0.262 0.0315 0.086 0.059 0 0.477 0.044 0.08 0.084 0 0.6275 0.0885 0.091 0.077 0 0.507 0.2295 0.084 0.083 0 0.4125 0.25 0.069 0.072 0 0.5075 0.359 0.105 0.104 0 0.292 0.4705 0.092 0.097 0 0.4235 0.634 0.083 0.084 0 0.115 0.8525 0.102 0.105 0 0.3215 0.8405 0.105 0.109 0 0.06 0.0375 0.084 0.073 0 0.173 0.054 0.098 0.094 0 0.2795 0.1055 0.105 0.101 0 0.488 0.04 0.108 0.078 0 0.4895 0.12 0.079 0.07 0 0.4295 0.2485 0.085 0.083 0 0.573 0.3275 0.086 0.083 0 0.8505 0.0765 0.095 0.097 0 0.8135 0.188 0.109 0.096 0 0.7795 0.2995 0.099 0.103 0 0.777 0.4015 0.104 0.107 0 0.9345 0.327 0.099 0.106 0 0.0615 0.5165 0.059 0.063 0 0.0885 0.6895 0.075 0.079 0 0.1755 0.7405 0.079 0.091 0 0.125 0.9165 0.076 0.071 0 0.34 0.662 0.094 0.108 0 0.567 0.603 0.08 0.076 0 0.665 0.558 0.106 0.098 0 0.5725 0.737 0.069 0.062 0 0.5805 0.845 0.093 0.09 0 0.8075 0.5265 0.109 0.099 0 0.7335 0.9385 0.091 0.089 0 0.771 0.8455 0.074 0.059 0 0.9025 0.846 0.103 0.098 0 0.819 0.753 0.1 0.084 0 0.8665 0.531 0.093 0.086 0 0.5125 0.7805 0.067 0.057 0 0.5325 0.9735 0.077 0.053 0 0.5665 0.6265 0.091 0.095 0 0.57 0.5045 0.062 0.053 0 0.799 0.392 0.088 0.092 0 0.894 0.4095 0.052 0.059 0 0.157 0.653 0.09 0.078 0 0.0445 0.6755 0.083 0.095 0 0.1345 0.5515 0.101 0.093 0 0.2585 0.3625 0.089 0.093 0 0.553 0.3005 0.094 0.085 0 0.094 0.057 0.128 0.098 0 0.3875 0.045 0.095 0.072 0 0.2575 0.196 0.085 0.076 0 0.4205 0.1895 0.081 0.081 0 0.517 0.1115 0.106 0.099 0 0.653 0.097 0.104 0.1 0 0.6235 0.216 0.115 0.112 0 0.8275 0.1245 0.089 0.089 0 0.9005 0.1715 0.077 0.081 0 0.7615 0.275 0.107 0.102 0 0.634 0.327 0.078 0.074 0 0.5935 0.489 0.095 0.092 0
93%|█████████▎| 452/486 [00:24<00:01, 27.84it/s]
0.7165 0.5315 0.097 0.097 0 0.9045 0.74 0.089 0.084 0 0.809 0.736 0.074 0.078 0 0.695 0.804 0.104 0.088 0 0.5355 0.7375 0.079 0.077 0 0.114 0.5795 0.08 0.083 0 0.1165 0.814 0.091 0.086 0 0.227 0.7415 0.106 0.101 0 0.0745 0.574 0.067 0.064 0 0.224 0.4665 0.084 0.071 0 0.2875 0.3355 0.085 0.083 0 0.265 0.266 0.102 0.082 0 0.375 0.2855 0.106 0.109 0 0.407 0.2685 0.078 0.077 0 0.491 0.3025 0.096 0.089 0 0.6335 0.2605 0.093 0.083 0 0.7455 0.3325 0.069 0.071 0 0.647 0.379 0.1 0.086 0 0.546 0.4755 0.094 0.085 0 0.565 0.5665 0.1 0.087 0 0.679 0.616 0.088 0.08 0 0.785 0.569 0.078 0.078 0 0.809 0.658 0.096 0.088 0 0.85 0.748 0.1 0.086 0 0.8725 0.846 0.111 0.092 0 0.889 0.934 0.098 0.082 0 0.7325 0.8385 0.089 0.077 0 0.7035 0.718 0.091 0.092 0 0.1 0.0445 0.096 0.081 0 0.034 0.1505 0.066 0.069 0 0.0375 0.2435 0.073 0.077 0 0.2805 0.2645 0.079 0.079 0 0.3135 0.039 0.095 0.076 0 0.5445 0.2355 0.087 0.091 0 0.625 0.276 0.098 0.106 0 0.746 0.31 0.096 0.096 0 0.5085 0.38 0.109 0.096 0 0.382 0.415 0.088 0.088 0 0.203 0.5075 0.088 0.087 0 0.4225 0.5005 0.097 0.103 0 0.3565 0.574 0.097 0.106 0 0.448 0.582 0.07 0.064 0 0.527 0.464 0.084 0.072 0 0.547 0.5355 0.088 0.081 0 0.5735 0.5905 0.103 0.091 0 0.4395 0.6815 0.099 0.085 0 0.5465 0.66 0.097 0.092 0 0.375 0.813 0.088 0.084 0 0.415 0.9265 0.08 0.091 0 0.4605 0.867 0.087 0.09 0 0.5475 0.826 0.097 0.092 0 0.5885 0.9425 0.089 0.091 0 0.742 0.9675 0.066 0.059 0 0.694 0.8385 0.068 0.073 0 0.5695 0.755 0.089 0.086 0 0.644 0.711 0.082 0.076 0 0.7485 0.612 0.125 0.124 0 0.887 0.5915 0.098 0.095 0 0.963 0.539 0.072 0.11 0 0.8 0.53 0.096 0.112 0 0.759 0.4555 0.098 0.103 0 0.82 0.375 0.1 0.114 0 0.897 0.3875 0.086 0.097 0 0.8805 0.4715 0.119 0.109 0 0.2475 0.036 0.093 0.07 0 0.186 0.138 0.11 0.114 0 0.115 0.193 0.09 0.084 0 0.2975 0.2365 0.069 0.069 0 0.3855 0.0975 0.095 0.095 0 0.498 0.082 0.068 0.06 0 0.5065 0.18 0.123 0.122 0 0.623 0.155 0.074 0.074 0 0.4345 0.305 0.095 0.09 0 0.775 0.2145 0.078 0.073 0 0.623 0.3585 0.108 0.105 0 0.4325 0.435 0.097 0.09 0 0.338 0.489 0.086 0.08 0 0.55 0.468 0.106 0.1 0 0.8305 0.653 0.085 0.084 0 0.885 0.578 0.058 0.064 0 0.688 0.645 0.106 0.1 0 0.5315 0.641 0.087 0.074 0 0.545 0.811 0.09 0.086 0 0.485 0.957 0.092 0.086 0 0.775 0.8285 0.1 0.103 0 0.922 0.82 0.106 0.106 0 0.891 0.9625 0.1 0.075 0 0.1135 0.1635 0.075 0.069 0 0.225 0.168 0.1 0.098 0 0.0965 0.3755 0.083 0.081 0 0.065 0.501 0.098 0.098 0 0.105 0.618 0.082 0.088 0 0.22 0.5925 0.092 0.087 0 0.245 0.706 0.094 0.092 0 0.0995 0.8315 0.083 0.081 0 0.106 0.937 0.082 0.084 0 0.2925 0.7945 0.083 0.077 0 0.398 0.7925 0.074 0.071 0 0.4995 0.7665 0.075 0.081 0 0.594 0.7155 0.074 0.065 0 0.467 0.5635 0.072 0.071 0 0.4095 0.414 0.089 0.086 0 0.481 0.3545 0.128 0.123 0 0.2595 0.316 0.065 0.06 0 0.576 0.2485 0.088 0.089 0 0.5185 0.0495 0.103 0.087 0 0.53 0.1315 0.094 0.093 0 0.4585 0.1235 0.093 0.091 0 0.0455 0.049 0.089 0.094 0 0.1905 0.229 0.093 0.096 0 0.2755 0.173 0.085 0.086 0 0.295 0.2815 0.084 0.083 0 0.23 0.3265 0.09 0.085 0 0.153 0.3405 0.088 0.089 0 0.169 0.418 0.09 0.086 0 0.0425 0.469 0.083 0.092 0 0.098 0.543 0.09 0.092 0 0.053 0.7455 0.102 0.107 0 0.222 0.609 0.092 0.082 0 0.222 0.71 0.072 0.072 0 0.314 0.352 0.074 0.078 0 0.404 0.446 0.09 0.084 0 0.3455 0.5065 0.073 0.071 0 0.386 0.5595 0.09 0.089 0 0.3645 0.6255 0.069 0.063 0 0.3725 0.6895 0.079 0.067 0 0.3105 0.7555 0.103 0.101 0 0.393 0.7995 0.104 0.105 0 0.4875 0.7835 0.107 0.113 0 0.5545 0.752 0.101 0.1 0 0.562 0.6705 0.114 0.095 0 0.649 0.7385 0.098 0.101 0 0.6035 0.8455 0.109 0.099 0 0.499 0.931 0.094 0.084 0 0.63 0.944 0.092 0.094 0 0.704 0.854 0.114 0.112 0 0.818 0.747 0.088 0.084 0 0.816 0.836 0.096 0.088 0 0.889 0.7235 0.104 0.099 0 0.9605 0.687 0.079 0.086 0 0.9555 0.8565 0.087 0.099 0 0.8815 0.8605 0.099 0.099 0 0.9055 0.951 0.091 0.084 0 0.652 0.3365 0.064 0.055 0 0.6805 0.2535 0.079 0.075 0 0.734 0.3265 0.1 0.095
94%|█████████▎| 455/486 [00:25<00:01, 22.85it/s]
0 0.924 0.158 0.078 0.07 0 0.931 0.2515 0.08 0.079 0 0.829 0.4135 0.096 0.091 0 0.8995 0.4245 0.077 0.073 0 0.0535 0.0915 0.101 0.111 0 0.1655 0.0645 0.095 0.093 0 0.046 0.206 0.09 0.12 0 0.144 0.194 0.1 0.094 0 0.2345 0.1485 0.105 0.101 0 0.1825 0.252 0.089 0.09 0 0.277 0.259 0.112 0.11 0 0.1905 0.313 0.095 0.09 0 0.0685 0.423 0.115 0.112 0 0.157 0.373 0.074 0.082 0 0.177 0.473 0.09 0.084 0 0.0395 0.574 0.077 0.1 0 0.1185 0.728 0.097 0.1 0 0.0445 0.7765 0.087 0.111 0 0.1265 0.837 0.081 0.082 0 0.163 0.92 0.104 0.11 0 0.2135 0.7635 0.087 0.089 0 0.2805 0.8615 0.103 0.095 0 0.3635 0.949 0.091 0.1 0 0.4885 0.94 0.093 0.088 0 0.307 0.758 0.092 0.088 0 0.2395 0.662 0.093 0.088 0 0.435 0.724 0.098 0.096 0 0.647 0.9315 0.104 0.099 0 0.735 0.9545 0.104 0.087 0 0.822 0.965 0.092 0.07 0 0.9165 0.8825 0.107 0.105 0 0.827 0.8915 0.104 0.097 0 0.7305 0.852 0.097 0.096 0 0.631 0.8095 0.102 0.099 0 0.9355 0.784 0.103 0.102 0 0.832 0.7455 0.11 0.109 0 0.9535 0.696 0.091 0.1 0 0.9655 0.581 0.069 0.112 0 0.904 0.6015 0.084 0.111 0 0.865 0.437 0.106 0.104 0 0.7505 0.481 0.101 0.092 0 0.69 0.569 0.114 0.112 0 0.639 0.69 0.086 0.082 0 0.5775 0.5545 0.105 0.095 0 0.4805 0.5585 0.097 0.107 0 0.39 0.4195 0.1 0.091 0 0.4135 0.4935 0.099 0.089 0 0.5575 0.4475 0.087 0.081 0 0.715 0.392 0.088 0.084 0 0.6415 0.3195 0.097 0.093 0 0.6395 0.2275 0.103 0.101 0 0.729 0.302 0.096 0.108 0 0.774 0.2705 0.092 0.093 0 0.95 0.243 0.098 0.102 0 0.9365 0.13 0.083 0.09 0 0.8945 0.0455 0.091 0.077 0 0.7335 0.1065 0.107 0.111 0 0.5635 0.1515 0.097 0.107 0 0.6135 0.0705 0.091 0.093 0 0.059 0.1525 0.086 0.081 0 0.0845 0.2695 0.087 0.085 0 0.1725 0.3685 0.087 0.089 0 0.3035 0.388 0.091 0.084 0 0.2265 0.2665 0.081 0.087 0 0.2875 0.189 0.091 0.086 0 0.5925 0.114 0.091 0.09 0 0.752 0.16 0.09 0.092 0 0.9155 0.04 0.093 0.078 0 0.7245 0.2775 0.099 0.105 0 0.5485 0.3775 0.111 0.099 0 0.7025 0.3935 0.103 0.099 0 0.775 0.347 0.09 0.082 0 0.835 0.44 0.084 0.084 0 0.9625 0.3725 0.075 0.099 0 0.8325 0.5765 0.091 0.091 0 0.6695 0.5315 0.103 0.085 0 0.5745 0.5225 0.083 0.077 0 0.4245 0.5665 0.117 0.099 0 0.533 0.62 0.082 0.078 0 0.094 0.8035 0.08 0.081 0 0.0485 0.8875 0.087 0.091 0 0.088 0.0825 0.072 0.069 0 0.0765 0.187 0.089 0.084 0 0.157 0.2855 0.074 0.075 0 0.0845 0.4275 0.067 0.075 0 0.088 0.5345 0.088 0.087 0 0.08 0.679 0.084 0.08 0 0.1935 0.602 0.115 0.112 0 0.2325 0.4605 0.107 0.109 0 0.293 0.3455 0.088 0.091 0 0.4175 0.266 0.095 0.098 0 0.3845 0.181 0.081 0.076 0 0.4345 0.0475 0.083 0.091 0 0.554 0.068 0.102 0.09 0 0.4285 0.522 0.099 0.102 0 0.5535 0.45 0.101 0.108 0 0.256 0.9375 0.084 0.087 0 0.429 0.9015 0.1 0.099 0 0.2695 0.821 0.083 0.082 0 0.3445 0.7715 0.083 0.087 0 0.4435 0.778 0.093 0.09 0 0.553 0.917 0.112 0.102 0 0.6945 0.957 0.109 0.08 0 0.809 0.925 0.092 0.098 0 0.7275 0.8385 0.105 0.101 0 0.587 0.785 0.098 0.102 0 0.466 0.675 0.09 0.092 0 0.598 0.6175 0.09 0.089 0 0.727 0.7 0.096 0.088 0 0.727 0.494 0.096 0.09 0 0.7615 0.256 0.095 0.1
94%|█████████▍| 459/486 [00:25<00:01, 23.70it/s]
0 0.2845 0.1045 0.085 0.083 0 0.58 0.091 0.088 0.096 0 0.4325 0.042 0.117 0.082 0 0.5405 0.2515 0.091 0.095 0 0.4545 0.3435 0.115 0.111 0 0.5875 0.4065 0.095 0.103 0 0.7755 0.322 0.089 0.088 0 0.901 0.261 0.094 0.094 0 0.912 0.3525 0.102 0.097 0 0.1935 0.839 0.081 0.078 0 0.662 0.9615 0.104 0.077 0 0.85 0.96 0.1 0.078 0 0.578 0.0575 0.116 0.107 0 0.7095 0.064 0.101 0.098 0 0.563 0.1645 0.094 0.085 0 0.614 0.272 0.102 0.108 0 0.853 0.413 0.1 0.094 0 0.943 0.678 0.096 0.096 0 0.909 0.8035 0.082 0.079 0 0.661 0.708 0.094 0.086 0 0.5815 0.8525 0.103 0.113 0 0.459 0.8695 0.11 0.109 0 0.422 0.7085 0.096 0.103 0 0.174 0.8225 0.112 0.107 0 0.568 0.4105 0.096 0.099 0 0.5005 0.3605 0.105 0.101 0 0.4385 0.2555 0.079 0.075 0 0.3205 0.19 0.103 0.102 0 0.1785 0.0585 0.105 0.095 0 0.173 0.1875 0.11 0.111 0 0.267 0.333 0.09 0.094 0 0.0395 0.033 0.075 0.064 0 0.1375 0.0715 0.075 0.075 0 0.247 0.075 0.104 0.088 0 0.0435 0.266 0.085 0.102 0 0.159 0.2575 0.086 0.087 0 0.262 0.268 0.086 0.088 0 0.3875 0.274 0.107 0.106 0 0.3625 0.135 0.067 0.068 0 0.466 0.169 0.098 0.106 0 0.5635 0.0865 0.095 0.083 0 0.0815 0.521 0.081 0.086 0 0.0745 0.616 0.083 0.084 0 0.161 0.4925 0.09 0.093 0 0.2485 0.483 0.103 0.102 0 0.3605 0.457 0.089 0.094 0 0.468 0.3845 0.078 0.079 0 0.578 0.3415 0.094 0.093 0 0.476 0.601 0.112 0.098 0 0.1975 0.722 0.071 0.06 0 0.0975 0.9375 0.093 0.087 0 0.227 0.919 0.086 0.084 0 0.3725 0.9165 0.101 0.085 0 0.464 0.9215 0.078 0.075 0 0.387 0.748 0.072 0.076 0 0.563 0.8795 0.08 0.077 0 0.567 0.961 0.074 0.07 0 0.661 0.863 0.068 0.068 0 0.5285 0.68 0.089 0.074 0 0.601 0.7205 0.074 0.073 0 0.7095 0.7675 0.077 0.075 0 0.688 0.663 0.082 0.084 0 0.7745 0.7285 0.063 0.065 0 0.6175 0.6635 0.061 0.063 0 0.623 0.572 0.098 0.086 0 0.755 0.6375 0.076 0.075 0 0.7765 0.5375 0.079 0.077 0 0.732 0.437 0.074 0.076 0 0.6195 0.4695 0.083 0.075 0 0.542 0.042 0.1 0.082 0 0.453 0.0855 0.084 0.075 0 0.3715 0.166 0.073 0.076 0 0.3035 0.204 0.059 0.06 0 0.324 0.2865 0.082 0.079 0 0.4085 0.236 0.099 0.106 0 0.477 0.155 0.1 0.08 0 0.581 0.1565 0.102 0.099 0 0.5215 0.2425 0.093 0.095 0 0.487 0.333 0.092 0.094 0 0.674 0.211 0.084 0.086 0 0.7785 0.1935 0.095 0.093 0 0.845 0.1545 0.108 0.107 0 0.8815 0.0565 0.111 0.097 0 0.7955 0.391 0.099 0.098 0 0.6095 0.4475 0.081 0.077 0 0.4065 0.557 0.091 0.09 0 0.7065 0.531 0.113 0.114 0 0.5905 0.616 0.093 0.086 0 0.5965 0.714 0.099 0.094 0 0.358 0.943 0.112 0.108 0 0.4205 0.8255 0.101 0.093 0 0.647 0.8455 0.112 0.113 0 0.735 0.8155 0.09 0.093 0 0.7325 0.732 0.079 0.078 0 0.787 0.895 0.11 0.096 0 0.8905 0.8575 0.105 0.105 0 0.945 0.955 0.094 0.09 0 0.9525 0.724 0.081 0.082 0 0.095 0.097 0.09 0.092 0 0.0475 0.2155 0.067 0.071 0 0.1645 0.1775 0.101 0.101 0 0.2735 0.218 0.115 0.114 0 0.305 0.0605 0.092 0.093 0 0.3585 0.109 0.099 0.09 0 0.509 0.0425 0.098 0.081 0 0.475 0.2405 0.092 0.091 0 0.6365 0.086 0.085 0.078 0 0.7195 0.164 0.105 0.108 0 0.8525 0.096 0.105 0.108 0 0.67 0.2985 0.098 0.097 0 0.798 0.2835 0.104 0.099 0 0.9295 0.39 0.095 0.09 0 0.0975 0.48 0.097 0.09 0 0.646 0.6445 0.104 0.113 0 0.6455 0.7645 0.089 0.093 0 0.8825 0.732 0.099 0.094 0 0.055 0.074 0.094 0.096 0 0.048 0.187 0.092 0.092 0 0.0965 0.2885 0.095 0.083 0 0.1665 0.2145 0.099 0.083 0 0.2385 0.2825 0.097 0.081 0 0.267 0.361 0.092 0.088 0 0.0525 0.4645 0.095 0.093 0 0.1045 0.563 0.077 0.078 0 0.12 0.6425 0.076 0.059 0 0.1645 0.714 0.097 0.072 0 0.403 0.3055 0.09 0.081 0 0.4925 0.4285 0.081 0.093 0 0.3835 0.611 0.089 0.078 0 0.6235 0.215 0.069 0.072 0
96%|█████████▌| 465/486 [00:25<00:00, 25.00it/s]
0.6555 0.8105 0.089 0.091 0 0.705 0.6415 0.094 0.079 0 0.8575 0.731 0.079 0.072 0 0.124 0.079 0.088 0.096 0 0.323 0.1575 0.084 0.079 0 0.4555 0.1555 0.101 0.101 0 0.829 0.108 0.092 0.094 0 0.9495 0.0745 0.091 0.095 0 0.7505 0.2765 0.095 0.103 0 0.577 0.266 0.096 0.094 0 0.1025 0.2445 0.085 0.081 0 0.238 0.346 0.094 0.09 0 0.17 0.47 0.094 0.088 0 0.229 0.5645 0.098 0.087 0 0.737 0.6635 0.076 0.085 0 0.8075 0.7785 0.079 0.069 0 0.0685 0.751 0.099 0.102 0 0.146 0.753 0.082 0.08 0 0.0605 0.9375 0.099 0.103 0 0.1415 0.867 0.101 0.09 0 0.23 0.8045 0.092 0.095 0 0.366 0.7915 0.098 0.101 0 0.3815 0.898 0.109 0.1 0 0.4585 0.8105 0.113 0.123 0 0.5815 0.9045 0.091 0.081 0 0.556 0.787 0.072 0.076 0 0.6305 0.788 0.071 0.08 0 0.7175 0.795 0.103 0.11 0 0.749 0.889 0.11 0.112 0 0.8165 0.802 0.107 0.118 0 0.896 0.854 0.098 0.11 0 0.922 0.9595 0.092 0.081 0 0.964 0.8705 0.072 0.079 0 0.626 0.685 0.07 0.08 0 0.6345 0.5605 0.085 0.083 0 0.705 0.5815 0.096 0.107 0 0.7245 0.516 0.075 0.082 0 0.8 0.517 0.096 0.096 0 0.8015 0.608 0.097 0.08 0 0.9075 0.482 0.091 0.092 0 0.9035 0.5735 0.077 0.077 0 0.935 0.628 0.1 0.094 0 0.837 0.695 0.078 0.072 0 0.2545 0.326 0.093 0.09 0 0.1145 0.1055 0.115 0.097 0 0.0865 0.053 0.099 0.09 0 0.0975 0.212 0.093 0.078 0 0.038 0.292 0.074 0.084 0 0.183 0.25 0.068 0.066 0 0.7125 0.0435 0.081 0.079 0 0.629 0.07 0.076 0.074 0 0.762 0.2755 0.06 0.063 0 0.518 0.408 0.08 0.066 0 0.04 0.6535 0.058 0.057 0 0.049 0.7405 0.094 0.091 0 0.066 0.906 0.084 0.092 0 0.1545 0.6665 0.075 0.081 0 0.1985 0.7435 0.077 0.067 0 0.2315 0.8395 0.075 0.079 0 0.1775 0.9415 0.097 0.101 0 0.2645 0.918 0.073 0.072 0 0.344 0.969 0.098 0.06 0 0.409 0.915 0.08 0.08 0 0.525 0.967 0.096 0.066 0 0.4815 0.836 0.081 0.08 0 0.275 0.638 0.074 0.08 0 0.416 0.5885 0.082 0.081 0 0.484 0.668 0.082 0.09 0 0.463 0.7545 0.078 0.073 0 0.5855 0.844 0.081 0.074 0 0.594 0.7215 0.096 0.101 0 0.6425 0.6215 0.095 0.091 0 0.8065 0.636 0.075 0.074 0 0.825 0.9515 0.078 0.075 0 0.813 0.851 0.076 0.07 0 0.797 0.517 0.08 0.076 0 0.0745 0.041 0.073 0.068 0 0.0535 0.154 0.085 0.088 0 0.1915 0.0475 0.103 0.093 0 0.2955 0.043 0.095 0.084 0 0.41 0.0605 0.096 0.095 0 0.168 0.177 0.102 0.096 0 0.106 0.318 0.072 0.066 0 0.309 0.1955 0.084 0.079 0 0.2535 0.2825 0.081 0.083 0 0.179 0.3715 0.096 0.085 0 0.1205 0.464 0.089 0.084 0 0.105 0.556 0.08 0.07 0 0.0445 0.6695 0.081 0.075 0 0.1455 0.6515 0.075 0.067 0 0.2375 0.543 0.081 0.082 0 0.2845 0.42 0.093 0.088 0 0.3535 0.314 0.089 0.086 0 0.398 0.1875 0.088 0.083 0 0.4925 0.1995 0.075 0.073 0 0.548 0.1475 0.09 0.093 0 0.5345 0.031 0.097 0.06 0 0.476 0.303 0.102 0.096 0 0.4245 0.3665 0.093 0.077 0 0.4045 0.446 0.095 0.096 0 0.372 0.5535 0.09 0.087 0 0.334 0.6235 0.088 0.091 0 0.3315 0.7455 0.075 0.077 0 0.3925 0.661 0.081 0.086 0 0.661 0.1775 0.082 0.083 0 0.596 0.287 0.088 0.09 0 0.4905 0.466 0.085 0.094 0 0.5675 0.4195 0.091 0.091 0 0.498 0.576 0.106 0.1 0 0.4815 0.6475 0.093 0.083 0 0.7855 0.124 0.057 0.054 0 0.853 0.1455 0.076 0.075 0 0.807 0.1995 0.096 0.091 0 0.719 0.25 0.096 0.104 0 0.6535 0.3715 0.087 0.085 0 0.57 0.5285 0.088 0.093 0 0.5695 0.6585 0.087 0.105 0 0.508 0.749 0.088 0.094 0 0.399 0.934 0.1 0.1 0 0.6405 0.6675 0.081 0.081 0 0.669 0.5975 0.088 0.077 0 0.6875 0.486 0.081 0.076 0 0.7675 0.3875 0.097 0.097 0 0.8475 0.302 0.081 0.084 0 0.962 0.096 0.076 0.09 0 0.961 0.192 0.078 0.094 0 0.951 0.3225 0.086 0.081 0 0.951 0.6625 0.092 0.097 0 0.8665 0.6975
96%|█████████▋| 468/486 [00:25<00:00, 23.16it/s]
0.075 0.071 0 0.768 0.6545 0.072 0.077 0 0.7935 0.514 0.089 0.084 0 0.837 0.4525 0.088 0.093 0 0.1745 0.3985 0.077 0.079 0 0.0555 0.5005 0.085 0.085 0 0.2375 0.651 0.093 0.098 0 0.074 0.7555 0.078 0.079 0 0.0575 0.8655 0.079 0.077 0 0.1565 0.7825 0.077 0.067 0 0.421 0.327 0.092 0.082 0 0.4765 0.2395 0.083 0.083 0 0.4795 0.1075 0.091 0.081 0 0.7075 0.2275 0.085 0.091 0 0.684 0.4055 0.076 0.075 0 0.8405 0.4615 0.095 0.091 0 0.6095 0.76 0.069 0.064 0 0.657 0.8405 0.066 0.057 0 0.2415 0.0455 0.089 0.087 0 0.3425 0.0625 0.093 0.093 0 0.1225 0.173 0.085 0.084 0 0.061 0.374 0.098 0.098 0 0.2155 0.1455 0.099 0.101 0 0.325 0.162 0.104 0.106 0 0.195 0.2455 0.104 0.105 0 0.1775 0.353 0.109 0.102 0 0.1915 0.4485 0.089 0.075 0 0.3005 0.447 0.111 0.11 0 0.4405 0.4285 0.083 0.077 0 0.437 0.3225 0.098 0.101 0 0.478 0.1695 0.102 0.097 0 0.5515 0.208 0.083 0.092 0 0.654 0.286 0.072 0.078 0 0.478 0.0405 0.094 0.079 0 0.9015 0.146 0.093 0.096 0 0.9545 0.0935 0.083 0.095 0 0.6525 0.4745 0.077 0.061 0 0.76 0.4835 0.06 0.057 0 0.874 0.475 0.068 0.066 0 0.96 0.4785 0.07 0.077 0 0.765 0.8655 0.068 0.067 0 0.864 0.8625 0.064 0.061 0 0.9445 0.81 0.061 0.066 0 0.967 0.888 0.066 0.062 0 0.0435 0.5745 0.085 0.093 0 0.046 0.036 0.088 0.07 0 0.109 0.101 0.092 0.092 0 0.2385 0.043 0.097 0.084 0 0.4155 0.072 0.079 0.088 0 0.1895 0.298 0.091 0.098 0 0.1155 0.373 0.069 0.066 0 0.1875 0.456 0.075 0.078 0 0.3395 0.269 0.083 0.074 0 0.5425 0.214 0.087 0.082 0 0.6845 0.173 0.079 0.082 0 0.6755 0.294 0.089 0.09 0 0.517 0.3265 0.098 0.091 0 0.1425 0.5775 0.101 0.103 0 0.048 0.728 0.09 0.098 0 0.4505 0.5615 0.091 0.091 0 0.3815 0.045 0.061 0.058 0 0.4975 0.077 0.069 0.07 0 0.5975 0.1165 0.085 0.091 0 0.6925 0.083 0.063 0.064 0 0.8805 0.123 0.089 0.076 0 0.7545 0.1425 0.079 0.075 0 0.6885 0.1665 0.083 0.077 0 0.426 0.1635 0.054 0.049 0 0.4775 0.2705 0.081 0.073 0 0.55 0.2065 0.076 0.079 0 0.626 0.258 0.086 0.084 0 0.722 0.235 0.078 0.078 0 0.8355 0.2965 0.083 0.073 0 0.9255 0.361 0.079 0.076 0 0.061 0.41 0.082 0.078 0 0.16 0.422 0.074 0.074 0 0.3865 0.4155 0.073 0.073 0 0.0725 0.5175 0.075 0.075 0 0.1755 0.54 0.091 0.096 0 0.3055 0.541 0.079 0.08 0 0.587 0.45 0.072 0.076 0 0.724 0.459 0.076 0.072 0 0.837 0.4595 0.062 0.059 0 0.571 0.556 0.092 0.086 0 0.6915 0.5575 0.083 0.077 0 0.8195 0.579 0.101 0.088 0 0.9255 0.5895 0.087 0.085 0 0.2635 0.6405 0.089 0.101 0 0.1165 0.6755 0.069 0.081 0 0.3455 0.645 0.097 0.102 0 0.4365 0.6585 0.091 0.093 0 0.8585 0.712 0.113 0.108 0 0.9525 0.8055 0.095 0.109 0 0.845 0.8815 0.114 0.117 0 0.9025 0.952 0.111 0.092 0 0.7295 0.9315 0.115 0.097 0 0.7415 0.861 0.113 0.112 0 0.808 0.77 0.082 0.086 0 0.7235 0.7615 0.107 0.105 0 0.738 0.6755 0.1 0.087 0 0.6485 0.6935 0.091 0.089 0 0.601 0.774 0.106 0.112 0 0.6005 0.9165 0.123 0.115 0 0.559 0.8345 0.08 0.073 0 0.476 0.943 0.098 0.102 0 0.4765 0.857 0.105 0.096 0 0.4955 0.777 0.109 0.094 0 0.423 0.7685 0.098 0.107 0 0.377 0.905 0.122 0.12 0 0.308 0.789 0.118 0.11 0 0.109 0.9385 0.082 0.087 0 0.0365 0.958 0.067 0.078 0 0.102 0.036 0.094 0.07 0 0.116 0.1305 0.076 0.071 0 0.189 0.1085 0.078 0.083 0 0.262 0.0415 0.096 0.081 0 0.274 0.1225 0.094 0.089 0 0.3685 0.0995 0.071 0.069 0 0.466 0.091 0.068 0.068 0 0.319 0.19 0.068 0.068
97%|█████████▋| 471/486 [00:25<00:00, 20.76it/s]
0 0.089 0.321 0.098 0.092 0 0.225 0.314 0.076 0.072 0 0.102 0.4845 0.098 0.097 0 0.3165 0.4225 0.077 0.077 0 0.3415 0.354 0.067 0.058 0 0.4645 0.4195 0.077 0.083 0 0.4075 0.472 0.081 0.072 0 0.5995 0.155 0.059 0.056 0 0.292 0.5705 0.08 0.071 0 0.4025 0.572 0.049 0.05 0 0.9555 0.2785 0.083 0.087 0 0.892 0.3185 0.096 0.099 0 0.8805 0.4235 0.099 0.089 0 0.8635 0.5355 0.111 0.107 0 0.935 0.6305 0.106 0.109 0 0.8375 0.6375 0.091 0.095 0 0.7635 0.6135 0.093 0.083 0 0.762 0.69 0.09 0.08 0 0.6785 0.5665 0.067 0.069 0 0.558 0.7025 0.078 0.073 0 0.1235 0.865 0.083 0.08 0 0.144 0.9585 0.104 0.083 0 0.364 0.939 0.11 0.088 0 0.4125 0.8735 0.091 0.089 0 0.7455 0.9015 0.103 0.095 0 0.7015 0.963 0.093 0.074 0 0.8785 0.862 0.109 0.098 0 0.248 0.344 0.104 0.098 0 0.148 0.751 0.086 0.076 0 0.3425 0.6135 0.081 0.073 0 0.245 0.816 0.082 0.084 0 0.3025 0.8675 0.089 0.089 0 0.3445 0.9705 0.081 0.057 0 0.7215 0.8515 0.115 0.117 0 0.884 0.957 0.08 0.078 0 0.9245 0.6735 0.113 0.103 0 0.84 0.6065 0.114 0.109 0 0.746 0.5325 0.106 0.105 0 0.741 0.426 0.11 0.108 0 0.4875 0.386 0.097 0.082 0 0.813 0.486 0.082 0.1 0 0.9385 0.5785 0.095 0.097 0 0.911 0.49 0.11 0.108 0 0.756 0.2815 0.112 0.109 0 0.838 0.1855 0.096 0.089 0 0.914 0.2315 0.098 0.103 0 0.9515 0.3775 0.083 0.083 0 0.043 0.3215 0.08 0.105 0 0.1145 0.2905 0.103 0.109 0 0.0585 0.437 0.107 0.108 0 0.0475 0.6305 0.087 0.101 0 0.1005 0.595 0.091 0.098 0 0.1815 0.4785 0.109 0.111 0 0.239 0.3535 0.11 0.097 0 0.329 0.2895 0.094 0.099 0 0.423 0.2695 0.104 0.091 0 0.3945 0.3695 0.121 0.111 0 0.2965 0.4615 0.103 0.107 0 0.401 0.4565 0.096 0.095 0 0.2145 0.584 0.099 0.104 0 0.16 0.667 0.09 0.084 0 0.2375 0.675 0.075 0.082 0 0.291 0.62 0.094 0.106 0 0.3685 0.6095 0.095 0.095 0 0.32 0.702 0.108 0.1 0 0.334 0.7695 0.108 0.103 0 0.041 0.8855 0.08 0.095 0 0.373 0.87 0.092 0.086 0 0.384 0.951 0.102 0.084 0 0.4645 0.9105 0.105 0.107 0 0.56 0.902 0.1 0.096 0 0.4275 0.771 0.103 0.1 0 0.4265 0.6755 0.109 0.101 0 0.5155 0.1775 0.061 0.065 0 0.542 0.3035 0.086 0.083 0 0.5295 0.3825 0.085 0.085 0 0.507 0.4525 0.088 0.075 0 0.523 0.501 0.086 0.078 0 0.4765 0.5415 0.111 0.087 0 0.4625 0.6065 0.091 0.089 0 0.5575 0.647 0.105 0.108 0 0.621 0.705 0.084 0.082 0 0.534 0.7965 0.096 0.099 0 0.6495 0.948 0.097 0.094 0 0.637 0.799 0.098 0.102 0 0.703 0.767 0.088 0.102 0 0.742 0.6715 0.1 0.099 0 0.841 0.6665 0.106 0.119 0 0.9355 0.6745 0.095 0.111 0 0.818 0.775 0.096 0.098 0 0.89 0.8265 0.108 0.117 0 0.786 0.892 0.114 0.108 0 0.933 0.927 0.102 0.112 0 0.8655 0.926 0.075 0.08 0 0.115 0.3145 0.104 0.099 0 0.1925 0.2485 0.125 0.125 0 0.0335 0.5075 0.065 0.069 0 0.12 0.4855 0.07 0.061 0 0.2265 0.407 0.081 0.072 0 0.1065 0.618 0.133 0.122 0 0.225 0.6425 0.086 0.077 0 0.3155 0.576 0.111 0.098 0 0.3505 0.655 0.075 0.068 0 0.331 0.6965 0.062 0.063 0 0.4585 0.2775 0.111 0.109 0 0.407 0.3555 0.09 0.085 0 0.4255 0.446 0.105 0.104 0 0.525 0.419 0.104 0.108 0 0.5445 0.527 0.117 0.106 0 0.44 0.5915 0.078 0.071 0 0.463 0.721 0.09 0.088 0 0.5955 0.2745 0.099 0.089 0 0.661 0.3465 0.106 0.093 0 0.666 0.4435 0.096 0.091 0 0.75 0.4055 0.088 0.091 0 0.7805 0.241 0.115 0.112 0 0.6695 0.5355 0.095 0.099 0 0.7745 0.534 0.107 0.112 0 0.621 0.703 0.1 0.098 0 0.71 0.7275 0.082 0.105
98%|█████████▊| 478/486 [00:26<00:00, 21.85it/s]
0 0.32 0.1845 0.112 0.103 0 0.2295 0.222 0.105 0.11 0 0.1595 0.5325 0.085 0.087 0 0.306 0.347 0.058 0.056 0 0.0405 0.6745 0.079 0.095 0 0.1055 0.652 0.097 0.106 0 0.177 0.6795 0.088 0.099 0 0.2575 0.6585 0.093 0.101 0 0.154 0.7935 0.12 0.105 0 0.06 0.8465 0.106 0.103 0 0.1665 0.909 0.103 0.104 0 0.0755 0.93 0.081 0.072 0 0.2475 0.947 0.095 0.1 0 0.2575 0.8075 0.083 0.075 0 0.3895 0.7695 0.095 0.093 0 0.3685 0.86 0.113 0.104 0 0.4035 0.9495 0.083 0.071 0 0.538 0.8585 0.076 0.069 0 0.6405 0.711 0.121 0.102 0 0.7675 0.558 0.093 0.086 0 0.6265 0.5135 0.095 0.089 0 0.9165 0.1525 0.093 0.091 0 0.871 0.7655 0.088 0.083 0 0.7455 0.8825 0.111 0.105 0 0.88 0.9175 0.104 0.103 0 0.4355 0.2625 0.099 0.101 0 0.051 0.6525 0.082 0.079 0 0.1335 0.649 0.067 0.078 0 0.3305 0.6595 0.099 0.099 0 0.396 0.9285 0.096 0.103 0 0.495 0.9345 0.074 0.075 0 0.639 0.499 0.114 0.114 0 0.71 0.446 0.096 0.1 0 0.643 0.6235 0.11 0.119 0 0.7075 0.586 0.081 0.078 0 0.8065 0.516 0.079 0.082 0 0.8965 0.553 0.089 0.094 0 0.797 0.6435 0.11 0.107 0 0.9 0.6475 0.104 0.107 0 0.7505 0.751 0.085 0.082 0 0.879 0.7625 0.124 0.117 0 0.813 0.8375 0.094 0.083 0 0.955 0.9175 0.09 0.113 0 0.122 0.0575 0.078 0.097 0 0.2655 0.0885 0.097 0.101 0 0.175 0.1995 0.092 0.097 0 0.1135 0.285 0.097 0.094 0 0.0705 0.3705 0.087 0.087 0 0.191 0.277 0.076 0.074 0 0.2835 0.252 0.093 0.092 0 0.2725 0.3405 0.119 0.099 0 0.452 0.1545 0.076 0.071 0 0.504 0.2455 0.086 0.079 0 0.563 0.187 0.086 0.076 0 0.5785 0.031 0.087 0.06 0 0.665 0.0345 0.09 0.067 0 0.763 0.045 0.086 0.088 0 0.832 0.0325 0.086 0.063 0 0.7575 0.1275 0.107 0.111 0 0.889 0.1305 0.084 0.081 0 0.0725 0.5915 0.101 0.115 0 0.0515 0.256 0.081 0.08 0 0.062 0.336 0.118 0.1 0 0.0395 0.438 0.077 0.102 0 0.0705 0.506 0.089 0.086 0 0.0915 0.6025 0.121 0.115 0 0.1265 0.731 0.121 0.104 0 0.07 0.804 0.078 0.078 0 0.3265 0.9075 0.069 0.073 0 0.446 0.931 0.106 0.098 0 0.3155 0.705 0.075 0.072 0 0.2065 0.202 0.093 0.09 0 0.299 0.069 0.104 0.104 0 0.304 0.1845 0.086 0.089 0 0.2435 0.314 0.105 0.102 0 0.3695 0.121 0.091 0.092 0 0.4515 0.1085 0.079 0.081 0 0.4225 0.227 0.077 0.088 0 0.375 0.2885 0.106 0.091 0 0.387 0.386 0.084 0.084 0 0.3925 0.4745 0.087 0.093 0 0.239 0.521 0.096 0.106 0 0.3805 0.5835 0.105 0.101 0 0.4595 0.499 0.101 0.104 0 0.4775 0.341 0.073 0.08 0 0.546 0.356 0.092 0.104 0 0.603 0.2115 0.082 0.085 0 0.5545 0.0495 0.075 0.071 0 0.603 0.315 0.08 0.08 0 0.5835 0.505 0.091 0.092 0 0.527 0.584 0.09 0.098 0 0.4375 0.658 0.089 0.102 0 0.509 0.687 0.09 0.106 0 0.59 0.694 0.086 0.096 0 0.6775 0.661 0.081 0.09 0 0.7745 0.6615 0.093 0.099 0 0.6975 0.4925 0.089 0.093 0 0.6205 0.5705 0.079 0.085 0 0.8825 0.7315 0.095 0.097 0 0.2945 0.0755 0.113 0.105 0 0.1605 0.081 0.101 0.092 0 0.136 0.148 0.09 0.084 0 0.053 0.2035 0.096 0.095 0 0.1145 0.2615 0.099 0.093 0 0.077 0.399 0.108 0.1 0 0.1735 0.4205 0.099 0.095 0 0.087 0.549 0.1 0.098 0 0.163 0.677 0.102 0.092 0 0.144 0.8395 0.1 0.093 0 0.1435 0.9635 0.095 0.071 0 0.2855 0.924 0.091 0.086 0 0.271 0.7965 0.072 0.063 0 0.461 0.9585 0.102 0.083 0 0.4135 0.759 0.097 0.086 0 0.6445 0.77 0.097 0.088 0 0.6915 0.644 0.071 0.07 0 0.763 0.5815 0.084 0.083 0 0.6815 0.532 0.103 0.086 0 0.574 0.4495 0.114 0.111 0 0.894 0.507 0.092 0.08 0 0.7655 0.4425 0.111 0.099 0 0.6585 0.3555 0.109 0.087 0 0.7365 0.254 0.099 0.086 0 0.7105 0.12 0.117 0.108 0 0.54 0.211 0.116 0.108 0 0.4335 0.2955 0.109 0.107 0 0.368 0.3835 0.102 0.097
100%|█████████▉| 484/486 [00:26<00:00, 22.72it/s]
0 0.346 0.0595 0.12 0.109 0 0.3435 0.159 0.119 0.102 0 0.313 0.2605 0.12 0.109 0 0.343 0.3575 0.128 0.097 0 0.7225 0.142 0.131 0.124 0 0.7165 0.2665 0.111 0.109 0 0.943 0.042 0.104 0.082 0 0.8705 0.4985 0.121 0.129 0 0.7265 0.4965 0.125 0.117 0 0.5695 0.52 0.107 0.108 0 0.4195 0.5085 0.105 0.121 0 0.2755 0.631 0.119 0.12 0 0.2405 0.7565 0.101 0.101 0 0.036 0.812 0.07 0.076 0 0.273 0.9495 0.146 0.101 0 0.3645 0.8525 0.113 0.111 0 0.3955 0.9615 0.113 0.077 0 0.5045 0.9085 0.141 0.147 0 0.682 0.829 0.13 0.13 0 0.6805 0.9545 0.117 0.091 0 0.8595 0.952 0.119 0.096 0 0.5605 0.629 0.105 0.104 0 0.707 0.638 0.094 0.092 0 0.83 0.6545 0.1 0.093 0 0.9535 0.6785 0.093 0.101 0 0.9615 0.8165 0.077 0.083 0 0.039 0.2225 0.076 0.123 0 0.201 0.4165 0.124 0.121 0 0.1275 0.5205 0.081 0.085 0 0.1645 0.616 0.083 0.102 0 0.0925 0.6345 0.091 0.091 0 0.0735 0.7145 0.111 0.095 0 0.1275 0.768 0.091 0.092 0 0.195 0.801 0.102 0.1 0 0.097 0.8895 0.094 0.109 0 0.04 0.9155 0.078 0.111 0 0.1955 0.904 0.095 0.086 0 0.297 0.889 0.084 0.094 0 0.296 0.73 0.104 0.094 0 0.383 0.817 0.1 0.088 0 0.4005 0.9055 0.097 0.085 0 0.4385 0.964 0.099 0.072 0 0.467 0.693 0.11 0.108 0 0.541 0.7765 0.092 0.093 0 0.6395 0.756 0.101 0.092 0 0.705 0.861 0.084 0.088 0 0.853 0.8705 0.104 0.089 0 0.877 0.472 0.094 0.092 0 0.958 0.8695 0.082 0.109 0 0.105 0.0645 0.106 0.097 0 0.3795 0.0475 0.083 0.081 0 0.483 0.038 0.094 0.072 0 0.46 0.117 0.092 0.092 0 0.269 0.237 0.084 0.09 0 0.203 0.308 0.084 0.086 0 0.1385 0.34 0.089 0.086 0 0.097 0.4025 0.106 0.111 0 0.245 0.4395 0.096 0.089 0 0.525 0.4115 0.086 0.079 0 0.614 0.421 0.098 0.094 0 0.7945 0.4325 0.093 0.093 0 0.8695 0.3805 0.085 0.097 0 0.913 0.1145 0.114 0.109 0 0.9355 0.2165 0.099 0.099 0 0.932 0.594 0.07 0.068 0 0.952 0.6835 0.092 0.091 0 0.9035 0.7915 0.079 0.071 0 0.84 0.869 0.074 0.072 0 0.82 0.7265 0.086 0.081 0 0.785 0.628 0.07 0.07 0 0.77 0.8165 0.086 0.087 0 0.5715 0.7435 0.095 0.089 0 0.616 0.825 0.09 0.086 0 0.5265 0.871 0.083 0.084 0 0.5075 0.9495 0.079 0.077 0 0.423 0.9015 0.084 0.089 0 0.3445 0.81 0.079 0.076 0 0.4515 0.064 0.055 0.07 0 0.4005 0.159 0.055 0.064 0 0.4375 0.2565 0.085 0.079 0 0.3395 0.282 0.079 0.072 0 0.297 0.352 0.074 0.066 0 0.2515 0.4725 0.073 0.073 0 0.0385 0.718 0.069 0.074 0 0.142 0.77 0.108 0.108 0 0.084 0.825 0.102 0.096 0 0.0815 0.911 0.071 0.066 0 0.287 0.8675 0.08 0.083 0 0.5485 0.6515 0.125 0.111 0 0.674 0.817 0.124 0.12 0 0.857 0.825 0.1 0.086 0 0.86 0.7215 0.076 0.079 0 0.927 0.7165 0.074 0.075 0 0.8485 0.6015 0.063 0.065 0 0.7045 0.545 0.077 0.078 0 0.672 0.4685 0.082 0.073 0 0.594 0.532 0.086 0.08 0 0.575 0.245 0.082 0.082 0 0.508 0.352 0.06 0.066 0 0.7405 0.3505 0.077 0.067 0 0.298 0.0955 0.086 0.087 0 0.4525 0.066 0.089 0.082 0 0.2885 0.201 0.089 0.088 0 0.0415 0.2165 0.081 0.095 0 0.4 0.226 0.098 0.094 0 0.527 0.147 0.092 0.096 0 0.521 0.2485 0.088 0.085 0 0.7615 0.1265 0.103 0.105 0 0.674 0.2915 0.1 0.105 0 0.836 0.253 0.104 0.104 0 0.944 0.358 0.088 0.084 0 0.7245 0.4115 0.099 0.101 0 0.122 0.3865 0.102 0.095 0 0.414 0.466 0.086 0.082 0 0.5765 0.4615 0.089 0.095 0 0.6805 0.597 0.081 0.078 0 0.045 0.6045 0.082 0.089 0 0.155 0.703 0.084 0.088 0 0.4155 0.5975 0.085 0.081 0 0.364 0.7785 0.1 0.097 0 0.1245 0.916 0.091 0.088 0 0.2925 0.945 0.107 0.102 0 0.9555 0.646 0.085 0.094 0 0.8125 0.813 0.081 0.088 0 0.9355 0.848 0.095 0.094 0 0.8675 0.9635 0.091 0.069
100%|██████████| 486/486 [00:26<00:00, 18.31it/s]
0 0.955 0.721 0.09 0.098 0 0.93 0.6195 0.098 0.095 0 0.9625 0.849 0.075 0.084 0 0.885 0.8795 0.098 0.105 0 0.7525 0.966 0.097 0.068 0 0.6505 0.94 0.095 0.092 0 0.487 0.9675 0.106 0.065 0 0.415 0.917 0.1 0.1 0 0.508 0.891 0.076 0.084 0 0.6015 0.844 0.095 0.08 0 0.6985 0.793 0.083 0.084 0 0.742 0.867 0.088 0.09 0 0.866 0.77 0.096 0.088 0 0.7755 0.7695 0.079 0.087 0 0.5915 0.761 0.107 0.096 0 0.68 0.6985 0.104 0.095 0 0.7595 0.6545 0.111 0.107 0 0.8515 0.676 0.095 0.098 0 0.826 0.529 0.078 0.072 0 0.7135 0.539 0.075 0.082 0 0.6105 0.6095 0.097 0.091 0 0.5355 0.6435 0.091 0.097 0 0.474 0.7 0.09 0.092 0 0.3075 0.8825 0.081 0.081 0 0.2265 0.848 0.079 0.084 0 0.1525 0.8965 0.099 0.095 0 0.05 0.951 0.09 0.084 0 0.1775 0.757 0.093 0.09 0 0.0635 0.6865 0.101 0.109 0 0.093 0.4355 0.1 0.083 0 0.226 0.526 0.088 0.08 0 0.1505 0.299 0.083 0.08 0 0.304 0.248 0.102 0.096 0 0.446 0.283 0.098 0.096 0 0.307 0.456 0.104 0.102 0 0.451 0.4395 0.082 0.077 0 0.421 0.537 0.088 0.08 0 0.3555 0.642 0.085 0.074 0 0.533 0.514 0.09 0.094 0 0.632 0.489 0.096 0.1 0 0.693 0.4105 0.08 0.083 0 0.6245 0.3565 0.067 0.065 0 0.6825 0.2945 0.089 0.081 0 0.938 0.262 0.066 0.07 0 0.6645 0.217 0.073 0.064 0 0.7165 0.162 0.049 0.056 0 0.64 0.107 0.09 0.084 0 0.523 0.0715 0.064 0.067 0 0.714 0.049 0.078 0.074 0 0.918 0.237 0.062 0.07 0 0.2935 0.277 0.069 0.066 0 0.452 0.486 0.062 0.062 0 0.4855 0.5745 0.079 0.071 0 0.395 0.5915 0.07 0.069 0 0.3195 0.5235 0.067 0.055 0 0.2325 0.588 0.067 0.068 0 0.1855 0.649 0.087 0.086 0 0.046 0.768 0.09 0.092 0 0.1665 0.747 0.067 0.062 0 0.2725 0.7195 0.091 0.089 0 0.3495 0.6385 0.085 0.073 0 0.0805 0.8425 0.095 0.081 0 0.123 0.933 0.092 0.078 0 0.197 0.964 0.1 0.072 0 0.2025 0.854 0.089 0.08 0 0.22 0.782 0.07 0.062 0 0.295 0.8955 0.084 0.077 0 0.3205 0.8235 0.085 0.083 0 0.381 0.722 0.08 0.082 0 0.502 0.695 0.078 0.08 0 0.518 0.78 0.082 0.084 0 0.402 0.8235 0.1 0.097 0 0.3205 0.968 0.099 0.064 0 0.4055 0.9245 0.095 0.089 0 0.5265 0.9135 0.115 0.107 0 0.595 0.838 0.098 0.09 0 0.684 0.651 0.074 0.076 0 0.7005 0.8025 0.093 0.087 0 0.731 0.8975 0.082 0.085 0 0.87 0.573 0.076 0.076 0 0.781 0.6595 0.094 0.095 0 0.7995 0.7765 0.091 0.091 0 0.8775 0.7295 0.075 0.073 0 0.9545 0.743 0.081 0.098 0 0.8955 0.815 0.093 0.082 0 0.8275 0.896 0.089 0.094 0 0.93 0.904 0.106 0.094
0%| | 0/206 [00:00<?, ?it/s]
0 0.0585 0.9515 0.081 0.075 0 0.1075 0.8795 0.083 0.075 0 0.058 0.7955 0.086 0.091 0 0.234 0.9465 0.086 0.077 0 0.1965 0.871 0.085 0.078 0 0.148 0.8015 0.086 0.079 0 0.0735 0.6615 0.073 0.071 0 0.0395 0.5875 0.077 0.083 0 0.043 0.4355 0.084 0.077 0 0.082 0.502 0.082 0.076 0 0.1275 0.5905 0.093 0.091 0 0.1665 0.6685 0.083 0.079 0 0.1975 0.73 0.081 0.072 0 0.326 0.94 0.078 0.082 0 0.365 0.8635 0.074 0.075 0 0.332 0.788 0.086 0.084 0 0.2575 0.6615 0.085 0.077 0 0.22 0.5815 0.1 0.091 0 0.137 0.4375 0.092 0.091 0 0.231 0.4355 0.088 0.087 0 0.313 0.5785 0.076 0.073 0 0.3515 0.6475 0.073 0.071 0 0.383 0.722 0.088 0.072 0 0.424 0.797 0.076 0.074 0 0.466 0.86 0.074 0.088 0 0.6 0.961 0.064 0.06 0 0.079 0.1385 0.074 0.073 0 0.2235 0.2165 0.091 0.081 0 0.348 0.283 0.094 0.096 0 0.37 0.125 0.092 0.092 0 0.4105 0.042 0.079 0.074 0 0.317 0.0515 0.088 0.079 0 0.509 0.0485 0.092 0.087 0 0.4455 0.1195 0.079 0.081 0 0.4055 0.2055 0.085 0.081 0 0.6735 0.0365 0.075 0.065 0 0.637 0.116 0.076 0.078 0 0.551 0.123 0.086 0.084 0 0.496 0.2035 0.086 0.085 0 0.436 0.283 0.07 0.078 0 0.2905 0.361 0.077 0.066 0 0.5265 0.2825 0.075 0.071 0 0.7985 0.1005 0.063 0.059 0 0.7205 0.1095 0.083 0.081 0 0.6685
0%| | 1/206 [00:00<00:26, 7.66it/s]
0.1865 0.065 0.073 0 0.8905 0.0895 0.077 0.083 0 0.9245 0.171 0.081 0.086 0 0.968 0.085 0.064 0.076 0 0.7545 0.192 0.083 0.076 0 0.871 0.2485 0.086 0.089 0 0.801 0.253 0.078 0.082 0 0.652 0.339 0.09 0.082 0 0.9055 0.3245 0.083 0.085 0 0.9605 0.252 0.077 0.08 0 0.85 0.399 0.088 0.082 0 0.33 0.431 0.082 0.076 0 0.4205 0.4255 0.081 0.075 0 0.511 0.4305 0.09 0.081 0 0.5975 0.428 0.065 0.058 0 0.4605 0.5095 0.079 0.077 0 0.5485 0.5015 0.083 0.077 0 0.632 0.4955 0.072 0.075 0 0.7115 0.481 0.089 0.086 0 0.4035 0.579 0.077 0.076 0 0.4985 0.5835 0.075 0.069 0 0.4465 0.649 0.069 0.07 0 0.468 0.715 0.076 0.07 0 0.5305 0.6515 0.081 0.061 0 0.6085 0.6335 0.077 0.077 0 0.657 0.5645 0.066 0.063 0 0.565 0.7175 0.07 0.067 0 0.547 0.8465 0.074 0.083 0 0.6125 0.821 0.075 0.072 0 0.086 0.957 0.098 0.08 0 0.199 0.9555 0.102 0.089 0 0.317 0.954 0.102 0.088 0 0.43 0.9535 0.11 0.087 0 0.137 0.86 0.1 0.096 0 0.07 0.766 0.102 0.1 0 0.135 0.6625 0.098 0.097 0 0.1835 0.7635 0.093 0.095 0 0.2575 0.859 0.089 0.092 0 0.0675 0.5665 0.115 0.115 0 0.0565 0.375 0.099 0.094 0 0.12 0.4655 0.092 0.095 0 0.1755 0.3755 0.103 0.099 0 0.182 0.57 0.096 0.098 0 0.2465 0.664 0.105 0.1 0 0.305 0.764 0.112 0.106 0 0.478 0.8605 0.106 0.111 0 0.413 0.761 0.09 0.094 0 0.354 0.6675 0.104 0.103 0 0.287 0.564 0.102 0.1 0 0.236 0.4745 0.104 0.087 0 0.22 0.2965 0.094 0.091 0 0.351 0.473 0.11 0.098 0 0.406 0.566 0.104 0.1 0 0.4675 0.6645 0.109 0.103 0 0.528 0.763 0.098 0.094 0 0.596 0.856 0.104 0.1 0 0.6555 0.9475 0.109 0.097 0 0.7615 0.9465 0.097 0.091 0 0.866 0.948 0.096 0.092 0 0.7035 0.8495 0.097 0.097 0 0.6375 0.758 0.105 0.094 0 0.581 0.665 0.098 0.094 0 0.525 0.565 0.11 0.114 0 0.4625 0.478 0.081 0.078 0 0.398 0.386 0.118 0.104 0 0.3325 0.291 0.091 0.084 0 0.273 0.196 0.11 0.098 0 0.3875 0.1955 0.113 0.105 0 0.44 0.117 0.116 0.104 0 0.4475 0.2905 0.105 0.101 0 0.5175 0.385 0.105 0.11 0 0.5575 0.29 0.107 0.102 0 0.621 0.385 0.092 0.092 0 0.6775 0.482 0.107 0.1 0 0.632 0.5765 0.084 0.077 0 0.691 0.669 0.106 0.104 0 0.747 0.7635 0.08 0.075 0 0.862 0.7685 0.096 0.101 0 0.8015 0.6645 0.101 0.105 0 0.9095 0.6705 0.103 0.107 0 0.7355 0.5715 0.093 0.091 0 0.7885
1%| | 2/206 [00:00<00:24, 8.31it/s]
0.4865 0.103 0.111 0 0.9075 0.4835 0.105 0.105 0 0.832 0.3845 0.106 0.097 0 0.6745 0.2925 0.111 0.107 0 0.6045 0.1975 0.089 0.083 0 0.722 0.206 0.106 0.102 0 0.95 0.389 0.09 0.092 0 0.8905 0.2925 0.109 0.115 0 0.837 0.201 0.08 0.078 0 0.8835 0.114 0.101 0.104 0 0.7675 0.1135 0.111 0.107 0 0.6555 0.111 0.105 0.098 0 0.1055 0.116 0.095 0.09 0 0.2135 0.104 0.095 0.08 0 0.1585 0.051 0.111 0.098 0 0.2705 0.061 0.115 0.108 0 0.0965 0.159 0.111 0.102 0 0.209 0.159 0.114 0.104 0 0.3275 0.1515 0.101 0.095 0 0.052 0.2595 0.096 0.101 0 0.158 0.2625 0.106 0.099 0 0.276 0.2545 0.108 0.099 0 0.3905 0.246 0.111 0.098 0 0.122 0.3525 0.094 0.089 0 0.229 0.35 0.1 0.086 0 0.3375 0.341 0.103 0.098 0 0.439 0.339 0.104 0.108 0 0.0675 0.453 0.109 0.102 0 0.1755 0.4435 0.103 0.095 0 0.289 0.4385 0.106 0.099 0 0.4025 0.4345 0.103 0.093 0 0.491 0.4425 0.082 0.087 0 0.1345 0.535 0.101 0.098 0 0.243 0.5315 0.104
1%|▏ | 3/206 [00:00<00:27, 7.51it/s]
0.095 0 0.3475 0.5245 0.103 0.093 0 0.4595 0.521 0.115 0.094 0 0.0945 0.6255 0.085 0.075 0 0.195 0.619 0.092 0.084 0 0.3045 0.6125 0.085 0.087 0 0.41 0.6085 0.104 0.099 0 0.515 0.6015 0.086 0.093 0 0.0445 0.717 0.083 0.082 0 0.149 0.7075 0.096 0.089 0 0.2595 0.706 0.095 0.096 0 0.3655 0.7005 0.101 0.093 0 0.4695 0.6935 0.097 0.093 0 0.4345 0.145 0.101 0.1 0 0.4845 0.053 0.091 0.092 0 0.544 0.1425 0.094 0.101 0 0.709 0.051 0.11 0.098 0 0.6555 0.145 0.109 0.104 0 0.762 0.151 0.096 0.108 0 0.927 0.052 0.106 0.094 0 0.609 0.2385 0.096 0.095 0 0.5495 0.3395 0.103 0.101 0 0.66 0.328 0.122 0.11 0 0.7665 0.327 0.109 0.106 0 0.823 0.2275 0.098 0.095 0 0.611 0.4255 0.108 0.101 0 0.672 0.506 0.102 0.108 0 0.6235 0.599 0.113 0.098 0 0.7335 0.5965 0.097 0.103 0 0.824 0.426 0.094 0.094 0 0.935 0.413 0.122 0.116 0 0.778 0.511 0.106 0.1 0 0.893 0.509 0.094 0.092 0 0.8405 0.597 0.091 0.092 0 0.934 0.588 0.072 0.074 0 0.5695 0.6955 0.095 0.091 0 0.782 0.685 0.096 0.102 0 0.8855 0.6825 0.103 0.099 0 0.315 0.7835 0.09 0.083 0 0.4195 0.7845 0.107 0.087 0 0.5295 0.7725 0.089 0.083 0 0.6205 0.7795 0.099 0.091 0 0.7285 0.776 0.091 0.09 0 0.945 0.777 0.1 0.094 0 0.162 0.8815 0.098 0.099 0 0.269 0.884 0.096 0.092 0 0.369 0.876 0.102 0.092 0 0.472 0.8685 0.098 0.085 0 0.574 0.863 0.1 0.094 0 0.68 0.8685 0.09 0.091 0 0.783 0.866 0.1 0.094 0 0.8955 0.8655 0.103 0.095 0 0.228 0.9655 0.098 0.063 0 0.124 0.9645 0.088 0.065 0 0.3315 0.95 0.087 0.078 0 0.4285 0.9595 0.087 0.067 0 0.5325 0.953 0.101 0.086 0 0.637 0.9485 0.098 0.093 0 0.737 0.9515 0.094 0.085 0 0.848 0.9545 0.092 0.081 0 0.949 0.9545 0.098 0.089 0 0.774 0.052 0.082 0.084 0 0.849 0.1335 0.092 0.089 0 0.937 0.123 0.096 0.088 0 0.906 0.2135 0.08 0.071 0 0.8015 0.2145 0.089 0.091 0 0.7585 0.3075 0.093 0.087 0 0.701 0.2185 0.096 0.087 0 0.6575 0.3035 0.081 0.073 0 0.5625 0.308 0.089 0.082 0 0.598 0.22 0.092 0.088 0 0.5685 0.068 0.083 0.074 0 0.5295 0.1485 0.083 0.071 0 0.49 0.228 0.092 0.088 0 0.414 0.3885 0.096 0.083 0 0.3855 0.467 0.091 0.08 0 0.3225 0.392 0.089 0.084 0 0.3975 0.2355 0.087 0.077 0 0.467 0.075 0.09 0.078 0 0.57 0.072 0.082 0.082 0 0.3615 0.0765 0.087 0.077 0 0.318 0.1585 0.078 0.073 0 0.2155 0.375 0.091 0.086 0 0.0775 0.407 0.101 0.088 0 0.122 0.2625 0.094 0.093 0 0.0455 0.2415 0.083 0.097 0 0.162 0.1605 0.082 0.069 0 0.1115 0.085 0.083 0.094 0 0.18 0.079 0.08 0.074 0 0.2935 0.2405 0.085 0.085 0 0.2575 0.6325 0.067 0.071 0 0.3225 0.6835 0.083 0.079 0 0.37 0.728 0.062 0.062 0 0.434 0.7785 0.078 0.065 0 0.5355 0.864 0.075 0.062 0 0.6865 0.8815 0.067 0.061 0 0.635 0.827 0.086 0.074 0 0.562 0.778 0.078 0.072 0 0.508 0.7385 0.078 0.079 0 0.2785 0.53 0.081 0.074 0 0.3425 0.5845 0.063 0.057 0 0.4 0.6355 0.064 0.061 0 0.3515 0.4925 0.061 0.059 0 0.4725 0.595 0.081 0.074 0 0.5345 0.6465 0.061 0.055 0 0.5855 0.695 0.059 0.062 0 0.644 0.735 0.062 0.06 0 0.724 0.7755 0.072 0.073 0 0.363 0.383 0.068 0.062 0 0.4335 0.4345 0.071 0.061 0 0.496 0.5005 0.068 0.069 0 0.547 0.5525 0.06 0.061 0 0.3575 0.2985 0.073 0.067 0 0.3755 0.22 0.083 0.074 0 0.3695 0.1035 0.077 0.073 0 0.4905 0.0355 0.079 0.061 0 0.501 0.1125 0.074 0.069 0 0.7835 0.744 0.067 0.068 0 0.8395 0.7915 0.069 0.071 0 0.901 0.7435 0.078 0.075 0 0.833 0.699 0.072 0.074 0 0.7225 0.6995 0.063 0.057 0 0.6715 0.646 0.069 0.062 0 0.693 0.558 0.08 0.074 0 0.8585 0.6155 0.085 0.073 0 0.8065 0.5595 0.079 0.073 0 0.043 0.9215 0.076 0.083 0 0.2445 0.9205 0.087 0.085 0 0.3535 0.9365 0.061 0.057 0 0.455 0.931 0.088 0.082 0 0.5555 0.9325 0.085 0.083 0 0.7475 0.9405 0.061 0.061 0 0.8475 0.936 0.089 0.078 0 0.9485 0.938 0.085 0.086 0 0.2995 0.838 0.083 0.074 0 0.4095 0.8365 0.089 0.079 0 0.501 0.8465 0.078 0.075 0 0.597 0.8545 0.082 0.083 0 0.6935 0.86 0.081 0.078 0 0.7915 0.8585 0.093 0.091 0 0.8955 0.8555 0.081 0.081 0 0.3535 0.768 0.069 0.064 0 0.452 0.7675 0.08 0.077 0 0.552 0.772 0.078 0.072 0 0.6455 0.7575 0.087 0.099 0 0.7425 0.757 0.089 0.086 0 0.8435 0.7725 0.083 0.083 0 0.942 0.7665 0.086 0.083 0 0.056 0.745 0.068 0.076 0 0.105 0.667 0.084 0.084 0 0.2995 0.666 0.089 0.086 0 0.409 0.67 0.088 0.08 0 0.5005 0.6825 0.075 0.077 0 0.5985 0.6765 0.091 0.081 0 0.696 0.68 0.09 0.082 0 0.7915 0.6935 0.081 0.077 0 0.8455 0.6075 0.077 0.077 0 0.7425 0.6065 0.075 0.075 0 0.555 0.602 0.086 0.08 0 0.462 0.5975 0.08 0.077 0 0.3525 0.592 0.083 0.076 0 0.062 0.5835 0.096 0.089 0 0.2065 0.502 0.083 0.088 0 0.3 0.505 0.096 0.092 0 0.3995 0.505 0.095 0.094 0 0.503 0.513 0.094 0.09 0 0.5965 0.5265 0.081 0.083 0 0.6935 0.5255 0.085 0.083 0 0.7935 0.5195 0.079 0.073 0 0.8955 0.5155 0.087 0.083 0 0.9535 0.443 0.075 0.074 0 0.8485 0.439 0.081 0.082 0 0.569 0.437 0.07 0.068 0 0.354 0.422 0.084 0.074 0 0.2565 0.4065 0.089 0.089 0 0.1565 0.4215 0.087 0.085 0 0.0725 0.4235 0.075 0.083 0 0.1135 0.3355 0.089 0.077 0 0.2095 0.333 0.081 0.078 0 0.4055 0.3475 0.085 0.075 0 0.509 0.348 0.08 0.084 0 0.6025 0.362 0.073 0.072 0 0.696 0.364 0.086 0.08 0 0.8045 0.358 0.079 0.08 0 0.9045 0.356 0.069 0.082 0 0.951 0.268 0.074 0.076 0 0.8395 0.271 0.083 0.082 0 0.6455 0.2615 0.083 0.085 0 0.562 0.276 0.076 0.09 0 0.449 0.2725 0.072 0.075 0 0.351 0.268 0.078 0.068 0 0.25 0.2655 0.078 0.083 0 0.1665 0.261 0.079 0.08 0 0.0715 0.246 0.089 0.092 0 0.1195 0.176 0.091 0.084 0 0.2115 0.1775 0.089 0.089 0 0.073 0.081 0.086 0.08 0 0.1705 0.087 0.091 0.08 0 0.302 0.1795 0.08 0.089 0 0.351 0.0915 0.09 0.087 0 0.3965 0.187 0.097 0.098 0 0.4595 0.102 0.087 0.092 0 0.499 0.187 0.096 0.092 0 0.57 0.11 0.09 0.094 0 0.646 0.0905 0.086 0.089 0 0.753 0.1065 0.094 0.085 0 0.7005 0.195 0.093 0.094 0 0.796 0.2045 0.072 0.063 0
3%|▎ | 6/206 [00:00<00:19, 10.47it/s]
0.89 0.0435 0.086 0.073 0 0.941 0.1115 0.084 0.089 0 0.8875 0.186 0.093 0.088 0 0.031 0.889 0.06 0.076 0 0.0605 0.8085 0.075 0.079 0 0.0395 0.725 0.071 0.086 0 0.1105 0.729 0.075 0.08 0 0.15 0.811 0.07 0.066 0 0.201 0.8985 0.072 0.067 0 0.039 0.5615 0.07 0.073 0 0.0555 0.407 0.073 0.07 0 0.0785 0.4895 0.085 0.075 0 0.1235 0.557 0.085 0.082 0 0.0515 0.2325 0.071 0.073 0 0.0895 0.1475 0.077 0.073 0 0.152 0.066 0.084 0.072 0 0.093 0.3165 0.074 0.077 0 0.134 0.3985 0.078 0.081 0 0.267 0.161 0.074 0.068 0 0.42 0.092 0.07 0.068 0 0.497 0.0925 0.08 0.077 0 0.361 0.1685 0.084 0.077 0 0.319 0.2405 0.092 0.085 0 0.26 0.329 0.076 0.074 0 0.215 0.411 0.076 0.072 0 0.1725 0.484 0.081 0.078 0 0.209 0.5725 0.082 0.079 0 0.2535 0.497 0.083 0.072 0 0.299 0.416 0.072 0.072 0 0.355 0.338 0.08 0.076 0 0.405 0.2585 0.07 0.075 0 0.4505 0.177 0.075 0.074 0 0.209 0.73 0.074 0.066 0 0.253 0.6555 0.076 0.075 0 0.294 0.574 0.076 0.076 0 0.244 0.817 0.08 0.074 0 0.283 0.7395 0.074 0.071 0 0.286 0.897 0.076 0.076 0 0.321 0.8215 0.074 0.071 0 0.3815 0.7435 0.097 0.095 0 0.3305 0.6575 0.073 0.071 0 0.381 0.58 0.08 0.082 0 0.3475 0.501 0.081 0.08 0 0.3855 0.421 0.087 0.082 0 0.488 0.269 0.088 0.078 0 0.527 0.199 0.072 0.07 0 0.577 0.1075 0.08 0.077 0 0.6155 0.1905 0.081 0.077 0 0.517 0.347 0.066 0.068 0 0.55 0.4415 0.088 0.075 0 0.437 0.5025 0.074 0.075 0 0.415 0.659 0.08 0.08 0 0.4985 0.663 0.081 0.074 0 0.466 0.7395 0.074 0.077 0 0.409 0.8275 0.082 0.075 0 0.3595 0.905 0.073 0.076 0 0.455 0.9065 0.078 0.069 0 0.5445 0.91 0.079 0.07 0 0.4945 0.8245 0.079 0.077 0 0.5815 0.824 0.083 0.07 0 0.5445 0.7415 0.073 0.073 0 0.6185 0.9165 0.067 0.071 0 0.7045 0.916 0.085 0.082 0 0.7815 0.923 0.071 0.068 0 0.8425 0.9305 0.063 0.065 0 0.907 0.934 0.07 0.07 0 0.665 0.834 0.07 0.064 0 0.7415 0.838 0.071 0.06 0 0.812 0.841 0.07 0.06 0 0.883 0.855 0.074 0.068 0 0.9635 0.8595
3%|▎ | 7/206 [00:00<00:20, 9.57it/s]
0.071 0.071 0 0.9345 0.774 0.073 0.068 0 0.857 0.772 0.08 0.068 0 0.7065 0.766 0.081 0.078 0 0.6225 0.7535 0.083 0.065 0 0.735 0.683 0.074 0.068 0 0.893 0.6935 0.078 0.067 0 0.9515 0.6225 0.075 0.075 0 0.863 0.6075 0.09 0.087 0 0.703 0.6025 0.07 0.071 0 0.6235 0.5935 0.083 0.073 0 0.578 0.5255 0.082 0.081 0 0.833 0.523 0.084 0.076 0 0.7365 0.529 0.083 0.076 0 0.7015 0.4495 0.091 0.073 0 0.5935 0.354 0.079 0.078 0 0.6835 0.374 0.089 0.084 0 0.758 0.3665 0.078 0.087 0 0.9045 0.3865 0.083 0.085 0 0.8665 0.318 0.083 0.074 0 0.6525 0.2775 0.083 0.079 0 0.068 0.069 0.096 0.088 0 0.1675 0.0765 0.087 0.089 0 0.2625 0.0775 0.095 0.087 0 0.3615 0.076 0.089 0.084 0 0.4625 0.0835 0.075 0.069 0 0.5415 0.091 0.081 0.078 0 0.6255 0.0885 0.087 0.085 0 0.72 0.0905 0.09 0.085 0 0.823 0.0935 0.104 0.097 0 0.0445 0.159 0.085 0.08 0 0.1245 0.1555 0.079 0.077 0 0.217 0.1635 0.088 0.077 0 0.312 0.1655 0.068 0.069 0 0.3925 0.162 0.085 0.078 0 0.493 0.1635 0.096 0.083 0 0.6775 0.185 0.089 0.094 0 0.774 0.1775 0.098 0.095 0 0.173 0.241 0.09 0.086 0 0.2655 0.243 0.085 0.066 0 0.3575 0.2495 0.101 0.083 0 0.455 0.257 0.086 0.082 0 0.5415 0.2575 0.087 0.083 0 0.634 0.269 0.092 0.08 0 0.742 0.2655 0.072 0.067 0 0.821 0.2645 0.086 0.085 0 0.929 0.271 0.086 0.086 0 0.0495 0.31 0.089 0.082 0 0.1375 0.322 0.085 0.078 0 0.2285 0.325 0.091 0.082 0 0.4005 0.3305 0.105 0.093 0 0.501 0.3435 0.086 0.083 0 0.585 0.347 0.086 0.082 0 0.69 0.3485 0.086 0.079 0 0.7885 0.35 0.067 0.072 0 0.8715 0.352 0.083 0.086 0 0.0785 0.4035 0.083 0.087 0 0.174 0.4075 0.092 0.083 0 0.269 0.411 0.088 0.076 0 0.3575 0.4175 0.099 0.091 0 0.6315 0.4335 0.107 0.083 0 0.7295 0.429 0.083 0.076 0 0.824 0.436 0.102 0.088 0 0.928 0.441 0.084 0.088 0 0.2295 0.4955 0.091 0.087 0 0.319 0.4985 0.088 0.083 0 0.41 0.5045 0.088 0.083 0 0.498 0.508 0.084 0.086 0 0.577 0.511 0.084 0.092 0 0.6705 0.516 0.097 0.086 0 0.775 0.5245 0.104 0.095 0 0.877 0.528 0.09 0.088 0 0.086 0.5695 0.09 0.085 0 0.2955 0.578 0.071 0.068 0 0.3745 0.5885 0.085 0.083 0 0.467 0.59 0.08 0.07 0 0.546 0.5975 0.086 0.083 0 0.6365 0.599 0.091 0.082 0 0.935 0.619 0.098 0.084 0 0.412 0.808 0.108 0.108 0 0.3005 0.062 0.073 0.068 0 0.46 0.078 0.076 0.078 0 0.617 0.1035 0.098 0.095 0 0.706 0.0615 0.076 0.077 0 0.792 0.0355 0.072 0.061 0 0.779 0.1225 0.098 0.107 0 0.854 0.084 0.084 0.084 0 0.939 0.048 0.082 0.082 0 0.9235 0.136 0.067 0.072 0 0.907 0.23 0.08 0.082 0 0.7505 0.216 0.093 0.084 0 0.737 0.304 0.086 0.08 0 0.8055 0.354 0.077 0.084 0 0.8815 0.3165 0.085 0.081 0 0.96 0.374 0.074 0.082 0 0.873 0.4065 0.064 0.069 0 0.722 0.397 0.088 0.084 0 0.7905 0.4435 0.073 0.071 0 0.7095 0.491 0.091 0.088 0 0.852 0.501 0.088 0.084 0 0.618 0.524 0.086 0.076 0 0.6845 0.5935 0.085 0.079 0 0.8345 0.5905 0.097 0.087 0 0.918
4%|▍ | 9/206 [00:00<00:19, 10.12it/s]
0.5615 0.076 0.069 0 0.9105 0.6585 0.085 0.083 0 0.2845 0.155 0.077 0.072 0 0.265 0.25 0.068 0.07 0 0.351 0.2055 0.088 0.087 0 0.4445 0.1745 0.087 0.083 0 0.514 0.2245 0.088 0.087 0 0.426 0.272 0.096 0.098 0 0.503 0.325 0.092 0.098 0 0.4165 0.365 0.097 0.086 0 0.5715 0.383 0.083 0.072 0 0.3235 0.387 0.087 0.092 0 0.234 0.4455 0.086 0.077 0 0.3055 0.4905 0.073 0.081 0 0.393 0.459 0.096 0.096 0 0.3825 0.549 0.077 0.078 0 0.4685 0.5105 0.093 0.087 0 0.552 0.474 0.07 0.068 0 0.4525 0.6035 0.075 0.077 0 0.3375 0.744 0.091 0.08 0 0.4265 0.7045 0.077 0.075 0 0.3945 0.886 0.093 0.096 0 0.475 0.9485 0.096 0.087 0 0.4865 0.8485 0.093 0.085 0 0.558 0.911 0.092 0.09 0 0.624 0.9495 0.08 0.079 0 0.6455 0.867 0.091 0.088 0 0.5665 0.809 0.087 0.096 0 0.653 0.768 0.09 0.084 0 0.765 0.953 0.094 0.086 0 0.8535 0.918 0.095 0.086 0 0.928 0.8795 0.08 0.073 0 0.785 0.8655 0.092 0.077 0 0.8005 0.7815 0.079 0.071 0 0.7235 0.815 0.079 0.072 0 0.085 0.085 0.072 0.066 0 0.183 0.062 0.106 0.104 0 0.2895 0.044 0.089 0.074 0 0.0505 0.1895 0.087 0.093 0 0.0425 0.2945 0.079 0.095 0 0.128 0.258 0.102 0.086 0 0.1505 0.1655 0.095 0.081 0 0.255 0.1335 0.098 0.085 0 0.235 0.2275 0.094 0.089 0 0.1045 0.3545 0.089 0.079 0 0.0775 0.446 0.093 0.084 0 0.054 0.543 0.102 0.102 0 0.1195 0.619 0.083 0.084 0 0.0655 0.813 0.093 0.102 0 0.1445 0.8865 0.117 0.107 0 0.1725 0.777 0.095 0.094 0 0.1885 0.6935 0.093 0.099 0 0.2185 0.5875 0.091 0.087 0 0.1505 0.5165 0.089 0.087 0 0.169 0.422 0.102 0.092 0 0.1995 0.329 0.093 0.096 0 0.3355 0.2045 0.083 0.077 0 0.309 0.3085 0.096 0.083 0 0.2535 0.4945 0.083 0.069 0 0.2435 0.8565 0.079 0.083 0 0.266 0.764 0.09 0.086 0 0.293 0.6655 0.092 0.089 0 0.3235 0.5685 0.099 0.089 0 0.345 0.472 0.106 0.1 0 0.3765 0.3735 0.091 0.091 0 0.4055 0.2805 0.091 0.093 0 0.4305 0.1785 0.111 0.105 0 0.468 0.0835 0.068 0.069 0 0.553 0.0615 0.098 0.089 0 0.5365 0.1585 0.099 0.099 0 0.636 0.133 0.096 0.084 0 0.6015 0.23 0.101 0.092 0 0.7355 0.1055 0.093 0.093 0 0.706 0.2155 0.092 0.083 0 0.6785 0.3065 0.093 0.081 0 0.4555 0.4405 0.095 0.089 0 0.4255 0.5435 0.071 0.073 0 0.396 0.633 0.08 0.082 0 0.3625 0.7345 0.103 0.107 0 0.3385 0.834 0.089 0.084 0 0.312 0.9185 0.092 0.087 0 0.4235 0.887 0.081 0.072
5%|▍ | 10/206 [00:01<00:20, 9.48it/s]
0 0.4485 0.802 0.103 0.092 0 0.47 0.7075 0.094 0.095 0 0.52 0.5205 0.092 0.081 0 0.548 0.4205 0.092 0.087 0 0.832 0.0745 0.064 0.071 0 0.9365 0.0475 0.089 0.087 0 0.9085 0.1465 0.077 0.077 0 0.8015 0.183 0.095 0.088 0 0.877 0.246 0.106 0.1 0 0.775 0.276 0.07 0.062 0 0.8485 0.3335 0.087 0.083 0 0.7535 0.3735 0.073 0.075 0 0.6495 0.397 0.093 0.086 0 0.625 0.4945 0.086 0.077 0 0.5955 0.589 0.089 0.088 0 0.5685 0.6905 0.089 0.081 0 0.4935 0.9545 0.091 0.079 0 0.5855 0.943 0.071 0.072 0 0.684 0.911 0.114 0.102 0 0.711 0.8225 0.11 0.093 0 0.6395 0.7485 0.075 0.079 0 0.666 0.653 0.104 0.108 0 0.692 0.558 0.104 0.084 0 0.876 0.8565 0.09 0.085 0 0.9485 0.9385 0.097 0.093 0 0.9655 0.836 0.069 0.086 0 0.901 0.7615 0.104 0.095 0 0.736 0.7255 0.1 0.097 0 0.834 0.692 0.088 0.074 0 0.9325 0.669 0.111 0.1 0 0.86 0.6025 0.086 0.083 0 0.7955 0.5315 0.097 0.097 0 0.8885 0.5005 0.097 0.093 0 0.8185 0.4385 0.077 0.065 0 0.9645 0.2215 0.065 0.093 0 0.1625 0.0625 0.087 0.083 0 0.14 0.1725 0.096 0.083 0 0.238 0.148 0.1 0.094 0 0.275 0.0445 0.078 0.065 0 0.119 0.279 0.07 0.076 0 0.2045 0.258 0.105 0.102 0 0.354 0.1235 0.08 0.069 0 0.3235 0.2305 0.093 0.089 0 0.306 0.3375 0.104 0.097 0 0.191 0.3595 0.102 0.085 0 0.173 0.4575 0.098 0.095 0 0.0735 0.492 0.081 0.074 0 0.1515 0.5625 0.081 0.073 0 0.129 0.664 0.102 0.09 0 0.115 0.7615 0.072 0.067 0 0.204 0.742 0.106 0.094 0 0.1845 0.8365 0.123 0.097 0 0.163 0.927 0.106 0.09 0 0.2755 0.916 0.069 0.07 0 0.366 0.8935 0.098 0.099 0 0.447 0.957 0.1 0.08 0 0.4755 0.8595 0.103 0.099 0 0.395 0.799 0.09 0.078 0 0.2585 0.5345 0.091 0.085 0 0.278 0.442 0.094 0.086 0 0.334 0.6135 0.094 0.089 0 0.6565 0.914 0.099 0.098 0 0.571 0.845 0.098 0.11 0 0.5945 0.741 0.123 0.094 0 0.5195 0.6715 0.093 0.083 0 0.359 0.518 0.106 0.102 0 0.378 0.4095 0.098 0.091 0 0.4085 0.3055 0.093 0.091 0 0.427 0.205 0.106 0.11 0 0.46 0.103 0.088 0.084 0 0.559 0.0815 0.088 0.081 0 0.642 0.152 0.092 0.086 0 0.4885 0.3885 0.115 0.107 0 0.4635 0.4925 0.097 0.095 0 0.5645 0.4685 0.091 0.091 0 0.5445 0.573 0.095 0.09 0 0.754 0.893 0.102 0.092 0 0.8445 0.961 0.091 0.07 0 0.8515 0.8695 0.109 0.097 0 0.9505 0.8465 0.087 0.085 0 0.8795 0.7615 0.095 0.085 0 0.802 0.6945 0.106 0.093 0 0.7275 0.618 0.077 0.08 0 0.6475 0.543 0.085 0.082 0 0.912 0.664 0.108 0.098 0 0.826 0.5895 0.092 0.077 0 0.751 0.5185 0.092 0.087 0 0.9395 0.57 0.081 0.08 0 0.855 0.496 0.102 0.094 0 0.7725 0.416 0.101 0.1 0 0.598 0.3605 0.104 0.099 0 0.6095 0.259 0.107 0.106 0 0.688 0.332 0.092 0.082 0 0.8 0.314 0.098 0.096 0 0.906 0.285 0.116 0.112 0 0.723 0.2335 0.114 0.103 0 0.8255 0.2085 0.105 0.097 0 0.9375 0.1775 0.095 0.077 0 0.953 0.075 0.094 0.092 0 0.8495 0.1005 0.095 0.087 0 0.7495 0.1295 0.097 0.091 0 0.046 0.127 0.076 0.074 0 0.1275 0.1755 0.089 0.083 0 0.037 0.2245 0.07 0.087 0 0.1125 0.2725 0.089 0.087 0 0.099 0.3705 0.076 0.079 0 0.09 0.4665 0.07 0.079 0 0.166 0.51 0.076 0.074 0 0.0695 0.559 0.077 0.072 0 0.1775 0.423 0.085 0.084 0 0.1955 0.327 0.085 0.084 0 0.207 0.23 0.092 0.088 0 0.222 0.1255 0.09 0.087 0 0.0555 0.039 0.091 0.076 0 0.23 0.04 0.094 0.072 0 0.317 0.088 0.092 0.088 0 0.396 0.107 0.078 0.08 0 0.408 0.04 0.08 0.07 0 0.486 0.095 0.094 0.088 0 0.5725 0.0505 0.083 0.079 0 0.6495 0.1035 0.079 0.079 0 0.5635 0.1455 0.089 0.095 0 0.472 0.196 0.094 0.088 0 0.548 0.247 0.1 0.084 0 0.297 0.185 0.086 0.08 0 0.2955 0.2795 0.091 0.087 0 0.3725 0.3325 0.087 0.085 0 0.449 0.385 0.092 0.088 0 0.261 0.47 0.076 0.074 0 0.35 0.428 0.092 0.08 0 0.3365 0.516 0.069 0.07 0 0.424 0.475 0.086 0.084 0 0.4115 0.565 0.073 0.068 0 0.4835 0.608 0.079 0.072 0 0.507 0.52 0.09 0.08 0 0.2925 0.687 0.087 0.07 0 0.559 0.6525 0.074 0.073 0 0.5795 0.571 0.071 0.072 0 0.668 0.5235 0.09 0.081 0 0.529 0.4295 0.082 0.089 0 0.5315 0.3375 0.083 0.085 0 0.624 0.3005 0.082 0.085 0 0.699 0.3395 0.074 0.071 0 0.716 0.2405 0.082 0.083
6%|▌ | 12/206 [00:01<00:18, 10.70it/s]
0 0.1165 0.89 0.085 0.076 0 0.0415 0.8525 0.077 0.079 0 0.2685 0.8585 0.077 0.065 0 0.372 0.915 0.082 0.074 0 0.539 0.9115 0.094 0.103 0 0.6905 0.86 0.085 0.086 0 0.8385 0.936 0.079 0.072 0 0.9145 0.9025 0.073 0.075 0 0.741 0.826 0.088 0.076 0 0.775 0.7765 0.086 0.079 0 0.847 0.702 0.07 0.086 0 0.7725 0.689 0.083 0.082 0 0.8765 0.5955 0.079 0.071 0 0.7155 0.623 0.091 0.074 0 0.4355 0.824 0.083 0.082 0 0.3195 0.798 0.051 0.05 0 0.331 0.746 0.078 0.078 0 0.0425 0.761 0.077 0.084 0 0.1085 0.6575 0.093 0.085 0 0.22 0.6855 0.082 0.081 0 0.4725 0.717 0.085 0.082 0 0.375 0.652 0.08 0.08 0 0.2695 0.5935 0.079 0.083 0 0.1645 0.5645 0.091 0.083 0 0.0365 0.555 0.071 0.094 0 0.072 0.444 0.08 0.09 0 0.2105 0.4545 0.095 0.091 0 0.3175 0.504 0.095 0.088 0 0.4365 0.5535 0.095 0.093 0 0.5265 0.612 0.085 0.094 0 0.7535 0.5485 0.075 0.079 0 0.612 0.52 0.094 0.086 0 0.511 0.4555 0.088 0.093 0 0.385 0.4045 0.092 0.101 0 0.2385 0.3685 0.079 0.075 0 0.1095 0.35 0.083 0.088 0 0.0485 0.322 0.075 0.076 0 0.1255 0.247 0.095 0.092 0 0.2065 0.2835 0.075 0.085 0 0.0415 0.1735 0.069 0.077 0 0.1315 0.1635 0.073 0.071 0 0.1885 0.16 0.063 0.086 0 0.258 0.1905 0.086 0.083 0 0.1045 0.1145 0.085 0.065 0 0.0905 0.058 0.093 0.086 0 0.346 0.2435 0.078 0.079 0 0.437 0.3005 0.078 0.087 0 0.571 0.3745 0.09 0.089 0 0.676 0.4315 0.094 0.095 0 0.811 0.483 0.09 0.088 0 0.952 0.474 0.092 0.09 0 0.856 0.425 0.088 0.088 0 0.7 0.347 0.102 0.1 0 0.6045 0.274 0.087 0.086 0 0.503 0.2085 0.084 0.093 0 0.3965 0.148 0.061 0.06 0 0.247 0.032 0.072 0.062 0 0.3215 0.073 0.079 0.088 0 0.4345 0.1095 0.071 0.069 0 0.4415 0.06 0.073 0.084 0 0.5195 0.0585 0.083 0.091 0 0.5865 0.09 0.073 0.078 0 0.6435 0.119 0.065 0.08 0 0.72 0.136 0.078 0.092 0 0.774 0.0575 0.08 0.079 0 0.9325 0.037 0.089 0.072 0 0.797 0.924 0.086 0.084 0 0.7245 0.8935 0.089 0.089 0 0.8765 0.849 0.093 0.094 0 0.7925 0.7895 0.081 0.089 0 0.9435 0.729 0.085 0.064 0 0.844 0.684 0.09 0.09 0 0.9065 0.6075 0.089 0.083 0 0.909 0.479 0.076 0.08 0 0.8105 0.552 0.083 0.078 0 0.756 0.659 0.082 0.074 0 0.6655 0.7205 0.079 0.081 0 0.568 0.83 0.07 0.076 0 0.639 0.867 0.068 0.09 0 0.5195 0.9505 0.069 0.075 0 0.3285 0.9645 0.079 0.069 0 0.408 0.915 0.078 0.084 0 0.4935 0.779 0.083 0.088 0 0.6725 0.5935 0.085 0.083 0 0.735 0.5065 0.076 0.075 0 0.7975 0.437 0.091 0.088 0 0.813 0.193 0.09 0.084 0 0.784 0.286 0.078 0.082 0 0.7235 0.359 0.079 0.086 0 0.655 0.3365 0.074 0.085 0 0.7275 0.035 0.085 0.068 0 0.577 0.417 0.082 0.084 0 0.5475 0.5295 0.085 0.079 0 0.4575 0.502 0.079 0.082 0 0.4535 0.584 0.103 0.102 0 0.5125 0.6475 0.077 0.075 0 0.3695 0.7755 0.097 0.095 0 0.379 0.708 0.072 0.066 0 0.3095 0.85 0.075 0.084 0 0.2125 0.9135 0.087 0.085 0 0.208 0.827 0.084 0.066 0 0.208 0.766 0.07 0.062 0 0.2165 0.6555 0.085 0.083 0 0.0415 0.848 0.081 0.088 0 0.04 0.612 0.078 0.102 0 0.0655 0.5545 0.085 0.083 0 0.097 0.446 0.08 0.072 0 0.173 0.4925 0.082 0.065 0 0.309 0.537 0.078 0.076 0 0.08 0.319 0.062 0.07 0 0.14 0.34 0.068 0.082 0 0.3025 0.4055 0.063 0.059 0 0.4785 0.3585 0.077 0.071 0 0.409 0.314 0.066 0.06 0 0.326
7%|▋ | 14/206 [00:01<00:19, 9.82it/s]
0.3015 0.076 0.075 0 0.2675 0.246 0.083 0.076 0 0.18 0.2385 0.09 0.085 0 0.046 0.1725 0.078 0.081 0 0.1205 0.081 0.085 0.086 0 0.2465 0.1375 0.099 0.091 0 0.3305 0.067 0.083 0.076 0 0.3805 0.1765 0.081 0.081 0 0.4465 0.234 0.083 0.092 0 0.5415 0.2715 0.087 0.079 0 0.5245 0.22 0.099 0.092 0 0.6185 0.1955 0.085 0.081 0 0.551 0.142 0.084 0.082 0 0.465 0.1075 0.084 0.081 0 0.437 0.039 0.082 0.074 0 0.7415 0.1645 0.061 0.063 0 0.8935 0.0535 0.087 0.089 0 0.9575 0.253 0.077 0.094 0 0.7915 0.1845 0.079 0.077 0 0.8535 0.353 0.073 0.076 0 0.806 0.455 0.082 0.082 0 0.7655 0.2905 0.085 0.079 0 0.612 0.0555 0.068 0.069 0 0.6555 0.2125 0.081 0.071 0 0.697 0.6795 0.072 0.077 0 0.6435 0.7825 0.077 0.069 0 0.591 0.9025 0.084 0.083 0 0.4915 0.972 0.081 0.056 0 0.4545 0.774 0.075 0.072 0 0.5985 0.596 0.081 0.08 0 0.348 0.921 0.064 0.07 0 0.403 0.922 0.064 0.066 0 0.4375 0.6405 0.077 0.077 0 0.4995 0.524 0.067 0.066 0 0.4065 0.4665 0.089 0.079 0 0.564 0.419 0.078 0.082 0 0.4355 0.352 0.075 0.072 0 0.598 0.321 0.082 0.09 0 0.5135 0.2505 0.069 0.075 0 0.399 0.197 0.08 0.076 0 0.554 0.1515 0.076 0.075 0 0.311 0.124 0.074 0.07 0 0.2245 0.08 0.065 0.068 0 0.044 0.3075 0.05 0.057 0 0.1095 0.461 0.063 0.062 0 0.1785 0.51 0.087 0.074 0 0.1635 0.6215 0.095 0.089 0 0.256 0.686 0.07 0.07 0 0.07 0.959 0.07 0.072 0 0.8645 0.7685 0.051 0.051 0 0.329 0.041 0.082 0.068 0 0.251 0.138 0.072 0.066 0 0.142 0.273 0.066 0.074 0 0.275 0.402 0.082 0.088 0 0.4235 0.2295 0.069 0.075 0 0.486 0.149 0.06 0.06 0 0.5445 0.076 0.059 0.048 0 0.6145 0.3725 0.065 0.059 0 0.8235 0.2185 0.069 0.067 0 0.56 0.445 0.09 0.088 0 0.9265 0.506 0.075 0.076 0 0.9085 0.6235 0.069 0.069 0 0.8525 0.702 0.059 0.048 0 0.954 0.747 0.072 0.062 0 0.864 0.9505 0.072 0.079 0 0.7045 0.845 0.053 0.048 0 0.547 0.709 0.082 0.086 0 0.4775 0.6555 0.077 0.081 0 0.4005 0.6905 0.075 0.071 0 0.045 0.0925 0.074 0.071 0 0.165 0.176 0.082 0.076 0 0.257 0.1335 0.052 0.053 0 0.2595 0.225 0.059 0.06 0 0.3355 0.29 0.087 0.088 0 0.1735 0.4575 0.065 0.061 0 0.468 0.0985 0.088 0.085 0 0.5625 0.162 0.099 0.098 0 0.6085 0.25 0.075 0.078 0 0.4995 0.3175 0.065 0.069 0 0.97 0.0635 0.06 0.067 0 0.838 0.118 0.084 0.082 0 0.923 0.1505 0.082 0.081 0 0.7975 0.1925 0.073 0.075 0 0.89 0.2485 0.068 0.079 0 0.9705 0.286 0.059 0.072 0 0.6705 0.286 0.081 0.1 0 0.714 0.317 0.076 0.082 0 0.77 0.3725 0.082 0.077 0 0.882 0.375 0.082 0.08 0 0.955 0.384 0.07 0.082 0 0.935 0.552 0.064 0.068 0 0.8415 0.509 0.081 0.082 0 0.724 0.4755 0.062 0.061 0 0.605 0.3705 0.082 0.081 0 0.5625 0.409 0.065 0.072 0 0.612 0.572 0.072 0.068 0 0.6025 0.637 0.069 0.06 0 0.8625 0.681 0.079 0.07 0 0.922
8%|▊ | 17/206 [00:01<00:14, 13.23it/s]
0.8955 0.078 0.077 0 0.454 0.6665 0.076 0.077 0 0.3515 0.7895 0.077 0.077 0 0.5365 0.754 0.067 0.07 0 0.336 0.891 0.068 0.072 0 0.3095 0.958 0.085 0.074 0 0.4805 0.8895 0.071 0.071 0 0.061 0.051 0.084 0.084 0 0.1365 0.1055 0.073 0.075 0 0.409 0.0615 0.084 0.079 0 0.36 0.096 0.084 0.08 0 0.557 0.1345 0.078 0.087 0 0.4895 0.168 0.081 0.08 0 0.46 0.196 0.07 0.078 0 0.512 0.2925 0.088 0.103 0 0.354 0.2055 0.086 0.091 0 0.2805 0.16 0.083 0.078 0 0.1815 0.183 0.085 0.08 0 0.107 0.2615 0.082 0.079 0 0.0365 0.3595 0.071 0.091 0 0.1415 0.42 0.079 0.084 0 0.069 0.933 0.106 0.1 0 0.0945 0.076 0.075 0.076 0 0.2075 0.048 0.069 0.07 0 0.327 0.053 0.076 0.076 0 0.284 0.144 0.064 0.072 0 0.496 0.0365 0.092 0.071 0 0.623 0.0975 0.08 0.077 0 0.877 0.0775 0.074 0.073 0 0.8335 0.2015 0.095 0.095 0 0.9535 0.261 0.093 0.096 0 0.8955 0.368 0.069 0.08 0 0.6435 0.2605 0.065 0.065 0 0.5405 0.2225 0.077 0.081 0 0.4425 0.1945 0.075 0.081 0 0.222 0.381 0.068 0.054 0 0.674 0.5425 0.062 0.075 0 0.7785 0.553 0.075 0.08 0 0.9 0.529 0.066 0.064 0 0.8315 0.6525 0.079 0.077 0 0.618 0.655 0.074 0.068 0 0.7825 0.824 0.091 0.078 0 0.9195 0.81 0.059 0.062
10%|█ | 21/206 [00:01<00:10, 17.31it/s]
0 0.2745 0.626 0.059 0.07 0 0.0805 0.7075 0.085 0.085 0 0.166 0.8155 0.062 0.059 0 0.274 0.834 0.084 0.088 0 0.227 0.9485 0.078 0.081 0 0.405 0.9115 0.066 0.059 0 0.2885 0.958 0.071 0.072 0 0.6055 0.6625 0.061 0.069 0 0.9065 0.649 0.065 0.066 0 0.943 0.5995 0.076 0.069 0 0.537 0.58 0.07 0.062 0 0.5945 0.5045 0.065 0.063 0 0.714 0.439 0.078 0.084 0 0.891 0.356 0.058 0.058 0 0.9215 0.2935 0.067 0.069 0 0.906 0.165 0.072 0.074 0 0.865 0.0305 0.074 0.057 0 0.6835 0.0805 0.069 0.069 0 0.7555 0.2215 0.059 0.057 0 0.683 0.2835 0.072 0.083 0 0.5145 0.0375 0.083 0.073 0 0.5545 0.135 0.067 0.076 0 0.4715 0.1885 0.069 0.077 0 0.4695 0.3035 0.071 0.069 0 0.529 0.4135 0.076 0.067 0 0.2995 0.448 0.065 0.06 0 0.205 0.153 0.06 0.074 0 0.0625 0.3225 0.089 0.097 0 0.0535 0.434 0.079 0.074 0 0.9005 0.886 0.083 0.076 0 0.88 0.943 0.054 0.05 0 0.785 0.8645 0.092 0.091 0 0.939 0.7785 0.082 0.075 0 0.821 0.7535 0.074 0.071 0 0.733 0.7255 0.08 0.069 0 0.9605 0.6755 0.079 0.069 0 0.8515 0.6485 0.081 0.071 0 0.5635 0.8055 0.085 0.077 0 0.639 0.6715 0.064 0.053 0 0.443 0.8125 0.086 0.079 0 0.378 0.776 0.08 0.08 0 0.4565 0.695 0.073 0.07 0 0.552 0.711 0.07 0.062 0 0.5355 0.6155 0.089 0.079 0 0.672 0.4825 0.088 0.079 0 0.83 0.3935 0.068 0.061 0 0.8905 0.209 0.079 0.09 0 0.8235 0.0385 0.081 0.073 0 0.742 0.2485 0.078 0.069 0 0.575 0.386 0.082 0.086 0 0.5325 0.4405 0.073 0.071 0 0.33 0.5195 0.076 0.075 0 0.3145 0.4215 0.063 0.059 0 0.1805 0.576 0.065 0.062 0 0.161 0.506 0.07 0.068 0 0.1675 0.4275 0.071 0.071 0 0.1365 0.345 0.091 0.08 0 0.047 0.262 0.078 0.078 0 0.0485 0.204 0.079 0.07 0 0.2055 0.257 0.053 0.058 0 0.267 0.282 0.07 0.068 0 0.2625 0.036 0.077 0.062 0 0.0365 0.101 0.059 0.068 0 0.2455 0.1395 0.069 0.065 0 0.713 0.109 0.056 0.064 0 0.886 0.121 0.07 0.074 0 0.4665 0.2475 0.057 0.057 0 0.328 0.3515 0.066 0.067 0 0.1535 0.5655 0.079 0.065 0 0.472 0.4825 0.06 0.063 0 0.3765 0.462 0.051 0.054 0 0.6645 0.259 0.051 0.052 0 0.688 0.35 0.058 0.056 0 0.573 0.3945 0.05 0.061 0 0.5915 0.4875 0.065 0.059 0 0.5685 0.593 0.069 0.064 0 0.2495 0.661 0.059 0.058 0 0.4165 0.7015 0.069 0.073 0 0.3915 0.8035 0.061 0.059 0 0.4755 0.821 0.073 0.062 0 0.8345 0.6555 0.089 0.083 0 0.8045 0.875 0.065 0.07 0 0.0645 0.745 0.065 0.062 0 0.033 0.8895 0.064 0.067 0 0.0265 0.8175 0.051 0.067 0 0.1215 0.9645 0.081 0.071 0 0.229 0.92 0.064 0.06 0 0.0335 0.0335 0.065 0.065 0 0.147 0.096 0.07 0.072 0 0.0685 0.119 0.081 0.078 0 0.033 0.251 0.064 0.09 0 0.1045 0.2665 0.083 0.079 0 0.2695 0.0575 0.059 0.055 0 0.245 0.1235 0.046 0.049 0 0.035 0.3695 0.066 0.081 0 0.1515 0.3865 0.083 0.085 0 0.0995 0.4935 0.081 0.083 0 0.074 0.5975 0.064 0.075 0 0.276 0.4715 0.082 0.085 0 0.169 0.578 0.058 0.058 0 0.208 0.6635 0.076 0.077 0 0.169 0.7225 0.058 0.057 0 0.1715 0.802 0.055 0.062 0 0.1185 0.845 0.071 0.068 0 0.2135 0.935 0.079 0.054 0 0.492 0.0705 0.094 0.093 0 0.591 0.03 0.07 0.054 0 0.584 0.109 0.072 0.076 0 0.458 0.159 0.08 0.082 0 0.5485 0.2175 0.081 0.073 0 0.527 0.2585 0.052 0.053 0 0.448 0.299 0.086 0.1 0 0.7265 0.3535 0.075 0.075 0 0.6205 0.407 0.075 0.076 0 0.544 0.472 0.078 0.078 0 0.4675 0.664 0.085 0.08 0 0.5335 0.604 0.085 0.082 0 0.7135 0.512 0.093 0.096 0 0.835 0.5455 0.074 0.093 0 0.686 0.6645 0.068 0.075 0 0.8145 0.683 0.077 0.09 0 0.837 0.9115 0.06 0.059 0 0.686 0.889 0.068 0.076 0 0.9585 0.658 0.079 0.07 0 0.878 0.6145 0.066 0.067 0 0.9105 0.513 0.059 0.064 0 0.967 0.457 0.064 0.078 0 0.97 0.3455 0.06 0.073 0 0.927
12%|█▏ | 24/206 [00:01<00:10, 17.38it/s]
0.2525 0.072 0.075 0 0.8125 0.072 0.055 0.066 0 0.782 0.217 0.064 0.068 0 0.81 0.2875 0.06 0.063 0 0.8425 0.3525 0.063 0.067 0 0.877 0.43 0.078 0.076 0 0.7985 0.551 0.069 0.064 0 0.7995 0.462 0.063 0.074 0 0.737 0.317 0.07 0.068 0 0.6935 0.417 0.061 0.066 0 0.7185 0.5095 0.067 0.075 0 0.5825 0.044 0.063 0.068 0 0.636 0.133 0.06 0.056 0 0.5605 0.101 0.047 0.05 0 0.562 0.18 0.062 0.07 0 0.4605 0.067 0.065 0.074 0 0.4825 0.2775 0.049 0.057 0 0.6405 0.3305 0.071 0.071 0 0.5145 0.3545 0.063 0.071 0 0.4325 0.359 0.071 0.066 0 0.296 0.4085 0.064 0.061 0 0.375 0.4515 0.058 0.061 0 0.5995 0.469 0.063 0.056 0 0.629 0.5225 0.066 0.057 0 0.6155 0.6005 0.069 0.055 0 0.568 0.704 0.054 0.056 0 0.5195 0.6015 0.071 0.075 0 0.424 0.5845 0.062 0.055 0 0.2435 0.521 0.059 0.06 0 0.0385 0.4425 0.061 0.069 0 0.0295 0.569 0.055 0.056 0 0.0915 0.7365 0.057 0.059 0 0.303 0.6335 0.066 0.067 0 0.279 0.7025 0.06 0.053 0 0.1335 0.841 0.055 0.056 0 0.122 0.9295 0.068 0.063 0 0.234 0.8635 0.062 0.065 0 0.303 0.826 0.046 0.052 0 0.421 0.7675 0.06 0.065 0 0.8175 0.869 0.089 0.094 0 0.8565 0.7255 0.077 0.085 0 0.9105 0.613 0.081 0.088 0 0.965 0.5345 0.07 0.081 0 0.765 0.743 0.05 0.048 0 0.741 0.6875 0.078 0.079 0 0.797 0.582 0.066 0.066 0 0.855 0.4555 0.086 0.077 0 0.915 0.362 0.05 0.052 0 0.955 0.2785 0.082 0.077 0 0.9555 0.182 0.075 0.07 0 0.8935 0.1515 0.049 0.045 0 0.774 0.1275 0.07 0.063 0 0.8435 0.243 0.075 0.066 0 0.8615 0.3355 0.077 0.083 0 0.8045 0.3175 0.075 0.073 0 0.698 0.348 0.062 0.07 0 0.7775 0.394 0.069 0.068 0 0.7515 0.483 0.065 0.066 0 0.706 0.5775 0.078 0.083 0 0.6655 0.6385 0.067 0.073 0 0.516 0.062 0.068 0.062 0 0.3435 0.108 0.069 0.068 0 0.2295 0.081
13%|█▎ | 26/206 [00:02<00:10, 17.04it/s]
0.073 0.066 0 0.0605 0.1385 0.061 0.073 0 0.2965 0.223 0.071 0.076 0 0.4385 0.239 0.061 0.064 0 0.5485 0.2765 0.063 0.069 0 0.36 0.399 0.07 0.072 0 0.4655 0.4505 0.071 0.075 0 0.601 0.5005 0.07 0.069 0 0.056 0.4165 0.078 0.079 0 0.2195 0.435 0.079 0.08 0 0.3275 0.4825 0.077 0.079 0 0.037 0.525 0.072 0.078 0 0.1605 0.5295 0.069 0.075 0 0.262 0.584 0.076 0.076 0 0.4185 0.6095 0.069 0.073 0 0.114 0.622 0.076 0.078 0 0.0805 0.698 0.083 0.092 0 0.189 0.7665 0.088 0.085 0 0.148 0.843 0.08 0.076 0 0.114 0.955 0.09 0.08 0 0.311 0.809 0.07 0.074 0 0.336 0.718 0.074 0.078 0 0.4475 0.7445 0.073 0.071 0 0.5025 0.808 0.047 0.05 0 0.5315 0.6955 0.085 0.087 0 0.575 0.8065 0.076 0.083 0 0.549 0.0505 0.052 0.047 0 0.6465 0.0815 0.075 0.065 0 0.748 0.165 0.08 0.072 0 0.1395 0.4155 0.079 0.069 0 0.0915 0.512 0.057 0.06 0 0.0815 0.5945 0.083 0.079 0 0.095 0.6855 0.082 0.083 0 0.094 0.8295 0.078 0.083 0 0.184 0.9125 0.078 0.087 0 0.0535 0.96 0.075 0.078 0 0.16 0.7355 0.09 0.093 0 0.214 0.64 0.088 0.086 0 0.316 0.5885 0.05 0.053 0 0.346 0.4775 0.054 0.059 0 0.2925 0.483 0.073 0.068 0 0.287 0.418 0.07 0.078 0 0.28 0.3575 0.052 0.047 0 0.3345 0.337 0.087 0.088 0 0.4485 0.424 0.073 0.064 0 0.485 0.4 0.078 0.068 0 0.5595 0.392 0.079 0.066 0 0.5345 0.3275 0.055 0.057 0 0.0415 0.2665 0.075 0.085 0 0.0925 0.3345 0.059 0.073 0 0.177 0.311 0.072 0.078 0 0.088 0.4845 0.06 0.065 0 0.2105 0.4675 0.065 0.075 0 0.144 0.587 0.09 0.102 0 0.049 0.721 0.082 0.09 0 0.34 0.4935 0.08 0.083
14%|█▎ | 28/206 [00:02<00:10, 17.48it/s]
0 0.2425 0.7705 0.059 0.069 0 0.1305 0.87 0.075 0.08 0 0.3935 0.873 0.075 0.086 0 0.46 0.801 0.078 0.078 0 0.523 0.6945 0.07 0.067 0 0.58 0.77 0.07 0.07 0 0.5935 0.943 0.055 0.056 0 0.574 0.5895 0.054 0.051 0 0.622 0.659 0.058 0.06 0 0.6025 0.481 0.065 0.062 0 0.692 0.593 0.062 0.074 0 0.8025 0.6535 0.061 0.061 0 0.7845 0.5985 0.069 0.073 0 0.9605 0.6845 0.079 0.103 0 0.9135 0.9265 0.069 0.067 0 0.9465 0.531 0.065 0.068 0 0.807 0.4925 0.078 0.075 0 0.6955 0.4945 0.067 0.067 0 0.7555 0.431 0.063 0.054 0 0.8355 0.389 0.067 0.066 0 0.891 0.3045 0.064 0.067 0 0.8185 0.2595 0.063 0.065 0 0.744 0.3235 0.076 0.079 0 0.7325 0.239 0.067 0.068 0 0.6795 0.0925 0.055 0.057 0 0.59 0.0395 0.052 0.053 0 0.404 0.0955 0.064 0.065 0 0.3205 0.254 0.067 0.06 0 0.401 0.0385 0.092 0.073 0 0.0555 0.7575 0.061 0.061 0 0.1105 0.8925 0.047 0.057 0 0.1265 0.9715 0.053 0.045 0 0.442 0.778 0.06 0.06 0 0.537 0.9495 0.084 0.077 0 0.5515 0.8095 0.061 0.057 0 0.5855 0.871 0.065 0.054 0 0.6555 0.8925 0.067 0.069 0 0.73 0.8815 0.076 0.081 0 0.88 0.936 0.068 0.06 0 0.8815 0.878 0.073 0.072 0 0.765 0.8015 0.074 0.073 0 0.631 0.739 0.07 0.066 0 0.664 0.659 0.082 0.066 0 0.8095 0.698 0.095 0.086 0 0.938 0.77 0.064 0.068 0 0.928 0.6905 0.082 0.079 0 0.8475 0.5915 0.081 0.087 0 0.701 0.5325 0.084 0.093 0 0.5495 0.5675 0.081 0.087 0 0.6015 0.4835 0.079 0.087 0 0.7655 0.472 0.045 0.052 0 0.909 0.481 0.086 0.094 0 0.7735 0.4125 0.083 0.077 0 0.665 0.3725 0.074 0.085 0 0.931 0.3705 0.064 0.069 0 0.8245 0.316 0.063 0.052 0 0.7895 0.273 0.051 0.054 0 0.72 0.24 0.072 0.08 0 0.572 0.2285 0.052 0.055 0 0.7535 0.1395 0.071 0.079 0 0.849 0.184 0.076 0.086 0 0.902 0.096 0.086 0.09 0 0.8105 0.037 0.079 0.072 0 0.0315 0.095 0.061 0.072 0 0.0555 0.1975 0.071 0.073 0 0.3505 0.0905 0.071 0.069 0 0.2915 0.1605 0.077 0.079 0 0.231 0.194 0.072 0.084 0 0.295 0.2115 0.08 0.077 0 0.247 0.2985 0.08 0.071 0 0.226 0.3695 0.074 0.069 0 0.147 0.3975 0.09 0.075 0 0.075 0.412 0.072 0.07 0 0.109 0.339 0.092 0.07 0 0.087 0.281 0.072 0.064 0 0.1475 0.2665 0.091 0.075 0 0.441 0.2915 0.068 0.067 0 0.749 0.092 0.07 0.076 0 0.841 0.0815 0.066 0.067 0 0.812 0.1955 0.068 0.075 0 0.887 0.1935 0.066 0.067 0 0.8655 0.2785 0.081 0.085 0 0.8725 0.363 0.065 0.066 0 0.893 0.486 0.076 0.078 0 0.03 0.5505 0.058 0.077 0 0.13 0.554 0.08 0.072 0 0.22 0.5385 0.082 0.073 0 0.4705 0.459 0.067 0.072 0 0.464 0.5795 0.09 0.089 0 0.5685 0.575 0.081 0.074 0 0.732 0.617 0.074 0.07 0 0.7775 0.555 0.063 0.06 0 0.0925 0.6595 0.073 0.063 0 0.062 0.7405 0.074 0.069 0 0.2645 0.6705 0.077 0.081 0 0.311 0.711 0.072 0.074 0 0.393 0.6805 0.074 0.077 0 0.5065 0.7105 0.071 0.063 0 0.5975 0.714 0.073 0.068 0 0.853 0.7155 0.064 0.065 0 0.8595 0.885 0.071 0.072 0 0.7915 0.834 0.065 0.058 0 0.7955 0.959 0.097 0.082 0 0.665 0.876 0.094 0.09 0 0.6035 0.941 0.067 0.066 0 0.548 0.87 0.066 0.062 0 0.5905 0.8175 0.065 0.063 0 0.5205 0.8105 0.065 0.067 0 0.4095 0.947 0.095 0.09 0 0.4575 0.8615 0.087 0.087 0 0.3825 0.803 0.081 0.078 0 0.2925 0.952 0.083 0.076 0 0.216 0.9115 0.076 0.081 0 0.135 0.9325 0.072 0.077 0 0.0825 0.856 0.087 0.084 0 0.167 0.8105 0.058 0.073 0 0.219 0.7605 0.076 0.075 0 0.3645 0.051 0.087 0.092 0 0.035 0.192 0.066 0.076 0 0.058 0.276 0.086 0.084 0 0.2535 0.2775 0.073 0.079 0 0.374 0.3165 0.08 0.087 0 0.513 0.34 0.076 0.086 0 0.041 0.4225 0.06 0.063 0 0.3255 0.588 0.073 0.068 0 0.2675 0.6895 0.079 0.065 0 0.358 0.725 0.078 0.074 0 0.4485 0.737 0.075 0.078 0 0.627 0.6645 0.078 0.067 0 0.74 0.714 0.094 0.08 0 0.8205 0.844 0.063 0.058 0 0.3805 0.824 0.071 0.07 0 0.2825 0.787 0.067 0.064 0 0.1945 0.786 0.085 0.078 0 0.044 0.8595 0.08 0.075 0 0.398 0.961 0.096 0.072
15%|█▍ | 30/206 [00:02<00:10, 17.34it/s]
0 0.042 0.065 0.06 0.062 0 0.1255 0.1395 0.085 0.077 0 0.3735 0.0345 0.077 0.067 0 0.297 0.144 0.082 0.094 0 0.206 0.2495 0.098 0.089 0 0.147 0.344 0.078 0.068 0 0.071 0.4245 0.082 0.071 0 0.027 0.502 0.052 0.08 0 0.062 0.6625 0.078 0.071 0 0.1215 0.5855 0.083 0.085 0 0.171 0.515 0.084 0.086 0 0.258 0.405 0.098 0.092 0 0.327 0.3225 0.084 0.081 0 0.5105 0.113 0.073 0.072 0 0.56 0.03 0.074 0.058 0 0.666 0.1065 0.09 0.091 0 0.5995 0.2165 0.077 0.087 0 0.446 0.4185 0.084 0.087 0 0.3655 0.511 0.081 0.086 0 0.3045 0.607 0.075 0.078 0 0.2355 0.6735 0.097 0.087 0 0.1785 0.765 0.077 0.072 0 0.1195 0.862 0.063 0.074 0 0.2375 0.9325 0.077 0.083 0 0.3705 0.7495 0.083 0.079 0 0.413 0.9395 0.068 0.065 0 0.4755 0.8385 0.081 0.079 0 0.522 0.789 0.064 0.056 0 0.7725 0.9135 0.063 0.065 0 0.615 0.667 0.084 0.088 0 0.7345 0.685 0.083 0.082 0 0.895 0.709 0.06 0.07 0 0.9725 0.799 0.055 0.074 0 0.8145 0.6185 0.087 0.095 0 0.6775 0.5795 0.081 0.079 0 0.546 0.4975 0.098 0.097 0 0.6205 0.4015 0.075 0.083 0 0.7355 0.487 0.091 0.094 0 0.86 0.523 0.09 0.088 0 0.915 0.448 0.086 0.088 0 0.9605 0.3675 0.079 0.085 0 0.969 0.298 0.062 0.068 0 0.8225 0.37 0.077 0.082 0 0.8765 0.278 0.083 0.086 0 0.935 0.1895 0.066 0.069 0 0.695 0.297 0.09 0.1 0 0.7575 0.2025 0.099 0.107 0 0.843 0.101 0.084 0.076 0 0.8865 0.036 0.073 0.07 0 0.96 0.1555 0.08 0.095 0 0.906 0.114 0.08 0.084 0 0.8165 0.0885 0.095 0.099 0 0.737 0.07 0.084 0.084 0 0.633 0.0325 0.084 0.061 0 0.63 0.115 0.07 0.064 0 0.9435 0.3805 0.069 0.071 0 0.875 0.357 0.064 0.058 0 0.82 0.3235 0.084 0.087 0 0.7335 0.3035 0.075 0.081 0 0.6495 0.276 0.091 0.086 0 0.4575 0.2 0.077 0.076 0 0.4035 0.171 0.067 0.084 0 0.3405 0.16 0.085 0.09 0 0.291 0.126 0.076 0.082 0 0.2375 0.0815 0.099 0.091 0 0.2045 0.1445 0.083 0.077 0 0.143 0.0625 0.082 0.079 0 0.035 0.0665 0.06 0.063 0 0.0785 0.2075 0.071 0.061 0 0.1935 0.369 0.081 0.074 0 0.2565 0.3285 0.071 0.077 0 0.305 0.387 0.082 0.08 0 0.379 0.401 0.094 0.11 0 0.511 0.454 0.08 0.076 0 0.569 0.49 0.086 0.088 0 0.62 0.531 0.084 0.074 0 0.6875 0.4805 0.095 0.085 0 0.954 0.6195 0.086 0.097 0 0.9665 0.883 0.067 0.074 0 0.8835 0.838 0.081 0.08 0 0.8105 0.89 0.089 0.086 0 0.6965 0.8375 0.089 0.081 0 0.6635 0.957 0.097 0.084 0 0.4885 0.691 0.083 0.082 0 0.3825 0.7455 0.081 0.075 0 0.236 0.7405 0.078 0.083 0 0.081 0.876 0.06 0.052 0 0.2645 0.6615 0.069 0.061 0 0.3065 0.6 0.097 0.092 0 0.238 0.581 0.084 0.09 0 0.1835 0.569 0.091 0.104 0 0.1175 0.601 0.077 0.07 0 0.0805 0.5315 0.081 0.081
16%|█▌ | 32/206 [00:02<00:10, 16.75it/s]
0 0.893 0.7295 0.08 0.077 0 0.8885 0.5765 0.065 0.067 0 0.917 0.5055 0.066 0.069 0 0.9425 0.4225 0.077 0.067 0 0.9595 0.302 0.075 0.076 0 0.8015 0.074 0.059 0.062 0 0.533 0.039 0.074 0.076 0 0.498 0.11 0.07 0.088 0 0.398 0.076 0.088 0.074 0 0.3545 0.1885 0.071 0.061 0 0.375 0.296 0.078 0.072 0 0.2285 0.1565 0.061 0.059 0 0.193 0.2405 0.076 0.083 0 0.1125 0.0715 0.077 0.079 0 0.035 0.03 0.06 0.058 0 0.108 0.342 0.066 0.068 0 0.1145 0.427 0.069 0.072 0 0.191 0.4315 0.064 0.053 0 0.331 0.4125 0.056 0.053 0 0.0455 0.4815 0.069 0.055 0 0.046 0.557 0.064 0.058 0 0.208 0.503 0.044 0.052 0 0.135 0.562 0.058 0.056 0 0.3045 0.5275 0.053 0.059 0 0.2985 0.644 0.067 0.062 0 0.0765 0.6595 0.071 0.081 0 0.152 0.679 0.06 0.06 0 0.2065 0.6985 0.057 0.075 0 0.3965 0.691 0.063 0.074 0 0.4145 0.5655 0.067 0.065 0 0.5675 0.516 0.077 0.08 0 0.4825 0.748 0.069 0.066 0 0.541 0.702 0.042 0.042 0 0.475 0.8065 0.086 0.075 0 0.5385 0.8205 0.071 0.077 0 0.6125 0.825 0.083 0.094 0 0.03 0.8805 0.058 0.091 0 0.1 0.91 0.07 0.076 0 0.171 0.9165 0.07 0.075 0 0.25 0.948 0.09 0.086 0 0.0725 0.1255 0.069 0.075 0 0.265 0.1025 0.054 0.063 0 0.3395 0.1055 0.067 0.069 0 0.146 0.2405 0.056 0.063 0 0.217 0.2235 0.07 0.069 0 0.137 0.341 0.06 0.074 0 0.2285 0.336 0.059 0.072 0 0.3515 0.345 0.047 0.056 0 0.2865 0.5455 0.071 0.081 0 0.5895 0.067 0.055 0.064 0 0.666 0.0695 0.064 0.063 0 0.7675 0.0985 0.061 0.071 0 0.7775 0.173 0.073 0.062 0 0.638 0.2175 0.06 0.059 0 0.5275 0.1655 0.059 0.061 0 0.464 0.2255 0.05 0.057 0 0.5505 0.238 0.063
17%|█▋ | 34/206 [00:02<00:09, 17.36it/s]
0.062 0 0.602 0.3595 0.07 0.071 0 0.523 0.399 0.056 0.066 0 0.4715 0.458 0.041 0.052 0 0.5525 0.4945 0.063 0.061 0 0.6695 0.4725 0.065 0.059 0 0.612 0.516 0.066 0.062 0 0.4425 0.582 0.061 0.054 0 0.523 0.584 0.066 0.056 0 0.625 0.6015 0.072 0.057 0 0.164 0.8695 0.05 0.059 0 0.254 0.853 0.064 0.072 0 0.583 0.947 0.072 0.092 0 0.6685 0.8445 0.063 0.065 0 0.578 0.7495 0.062 0.061 0 0.6615 0.7075 0.053 0.057 0 0.114 0.1275 0.062 0.055 0 0.2905 0.199 0.077 0.06 0 0.4025 0.1775 0.077 0.069 0 0.452 0.2025 0.082 0.077 0 0.2135 0.358 0.081 0.082 0 0.2685 0.37 0.055 0.048 0 0.227 0.464 0.064 0.058 0 0.4085 0.567 0.067 0.064 0 0.244 0.7085 0.06 0.071 0 0.321 0.712 0.052 0.046 0 0.6875 0.21 0.075 0.078 0 0.781 0.211 0.09 0.092 0 0.9405 0.1295 0.067 0.071 0 0.928 0.188 0.062 0.06 0 0.951 0.2845 0.08 0.081 0 0.7645 0.3125 0.045 0.047 0 0.8285 0.396 0.055 0.06 0 0.878 0.404 0.054 0.052 0 0.8235 0.585 0.063 0.058 0 0.7675 0.703 0.063 0.07 0 0.7345 0.763 0.059 0.062 0 0.966 0.804 0.068 0.084 0 0.6845 0.9585 0.095 0.083 0 0.587 0.9625 0.07 0.057 0 0.889 0.04 0.074 0.076 0 0.86 0.1085 0.072 0.069 0 0.835 0.189 0.064 0.07 0 0.741 0.0605 0.082 0.087 0 0.5535 0.026 0.063 0.05 0 0.489 0.134 0.054 0.058 0 0.427 0.183 0.082 0.086 0 0.6335 0.1815 0.077 0.071 0 0.088 0.235 0.054 0.05 0 0.352 0.33 0.066 0.062 0 0.4515 0.3345 0.065 0.057 0 0.535 0.3095 0.074 0.069 0 0.745 0.353 0.062 0.06 0 0.8165 0.345 0.081 0.066 0 0.8965 0.4245 0.067 0.067 0 0.7255 0.426 0.061 0.066 0 0.6535 0.4255 0.073 0.065 0 0.072 0.333 0.048 0.056 0 0.0255 0.3395 0.049 0.065 0 0.1325 0.4615 0.071 0.081 0 0.152 0.5625 0.07 0.073 0 0.308 0.588 0.064 0.074 0 0.4445 0.622 0.063 0.076 0 0.537 0.5685 0.074 0.081 0 0.624 0.5235 0.062 0.075 0 0.786 0.588 0.07 0.092 0 0.9 0.638 0.062 0.068 0 0.9185 0.603 0.047 0.054 0 0.93 0.725 0.046 0.058 0 0.6955 0.7955 0.081 0.089 0 0.7225 0.7395 0.051 0.053 0 0.7315 0.876 0.067 0.058 0 0.2605 0.84 0.059 0.062 0 0.286 0.9205 0.066 0.069
17%|█▋ | 36/206 [00:02<00:09, 17.44it/s]
0 0.2565 0.1355 0.077 0.075 0 0.808 0.0405 0.1 0.079 0 0.8355 0.177 0.085 0.076 0 0.631 0.346 0.082 0.078 0 0.3685 0.384 0.069 0.066 0 0.058 0.2685 0.06 0.055 0 0.2995 0.691 0.069 0.062 0 0.7405 0.635 0.075 0.084 0 0.499 0.734 0.062 0.058 0 0.658 0.7545 0.092 0.093 0 0.7755 0.7545 0.085 0.079 0 0.7645 0.845 0.087 0.076 0 0.8865 0.887 0.075 0.078 0 0.8605 0.972 0.079 0.056 0 0.6525 0.873 0.065 0.066 0 0.511 0.8855 0.084 0.087 0 0.1795 0.8435 0.057 0.063 0 0.162 0.9405 0.054 0.053 0 0.7565 0.9155 0.091 0.095 0 0.7505 0.813 0.069 0.064 0 0.419 0.7 0.076 0.076 0 0.487 0.598 0.084 0.076 0 0.5125 0.544 0.075 0.066 0 0.5015 0.487 0.079 0.062 0 0.497 0.4105 0.09 0.095 0 0.5725 0.3155 0.085 0.087 0 0.475 0.3175 0.094 0.085 0 0.4755 0.2375 0.081 0.083 0 0.3795 0.306 0.089 0.078 0 0.2775 0.1595 0.085 0.077 0 0.303 0.372 0.08 0.086 0 0.256 0.461 0.082 0.08 0 0.0445 0.1065 0.075 0.075 0 0.2085 0.041 0.069 0.068 0 0.1525 0.1675 0.071 0.081 0 0.1025 0.2625 0.075 0.063 0 0.6275 0.043 0.063 0.072 0 0.694 0.0335 0.06 0.065 0 0.8805 0.1025 0.057 0.061 0 0.92 0.2395 0.076 0.077 0 0.781 0.2835 0.064 0.075 0 0.5615 0.206 0.063 0.07 0 0.624 0.337 0.076 0.082 0 0.73 0.4065
19%|█▉ | 39/206 [00:02<00:08, 20.57it/s]
0.074 0.071 0 0.9595 0.5285 0.081 0.093 0 0.4595 0.383 0.057 0.062 0 0.5725 0.448 0.067 0.064 0 0.695 0.5125 0.074 0.069 0 0.8 0.587 0.062 0.074 0 0.919 0.662 0.068 0.068 0 0.338 0.4415 0.062 0.061 0 0.394 0.492 0.062 0.06 0 0.518 0.5505 0.072 0.075 0 0.6035 0.634 0.075 0.082 0 0.735 0.683 0.094 0.1 0 0.8475 0.746 0.079 0.084 0 0.9725 0.833 0.055 0.076 0 0.926 0.833 0.066 0.08 0 0.7965 0.8725 0.079 0.079 0 0.778 0.789 0.06 0.064 0 0.672 0.8065 0.082 0.081 0 0.5745 0.7355 0.073 0.075 0 0.6025 0.9025 0.089 0.083 0 0.469 0.679 0.078 0.074 0 0.407 0.7945 0.08 0.081 0 0.4295 0.594 0.075 0.078 0 0.183 0.507 0.06 0.054 0 0.144 0.578 0.074 0.07 0 0.07 0.572 0.078 0.076 0 0.075 0.724 0.056 0.062 0 0.1105 0.2115 0.065 0.067 0 0.3585 0.12 0.075 0.072 0 0.3595 0.2345 0.079 0.077 0 0.8405 0.1685 0.065 0.057 0 0.96 0.1985 0.062 0.061 0 0.655 0.334 0.062 0.058 0 0.765 0.3175 0.056 0.057 0 0.474 0.585 0.08 0.076 0 0.6335 0.4995 0.051 0.055 0 0.771 0.4485 0.066 0.073 0 0.9195 0.585 0.073 0.082 0 0.8915 0.659 0.073 0.068 0 0.7955 0.586 0.057 0.062 0 0.6775 0.6035 0.055 0.059 0 0.161 0.668 0.07 0.068 0 0.0525 0.7 0.075 0.072 0 0.057 0.7935 0.078 0.077 0 0.0915 0.9045 0.085 0.087 0 0.198 0.9345 0.098 0.097 0 0.4055 0.813 0.071 0.07 0 0.5065 0.873 0.083 0.08 0 0.6085 0.8015 0.061 0.065 0 0.7405 0.8925 0.051 0.059 0 0.8075 0.9445 0.063 0.067 0 0.822 0.7985 0.062 0.067 0 0.942 0.9135 0.068 0.063 0 0.07 0.4845 0.062 0.067 0 0.063 0.8185 0.076 0.073 0 0.0785 0.893 0.073 0.074 0 0.1745 0.972 0.067 0.056 0 0.2 0.8015 0.064 0.059 0 0.2355 0.699 0.061 0.062 0 0.523 0.9695 0.066 0.057 0 0.661 0.9435 0.056 0.065 0 0.63 0.8415 0.07 0.071 0 0.8135 0.878 0.077 0.076 0 0.9425 0.921 0.075 0.074 0 0.944 0.6865 0.064 0.059 0 0.715 0.6205 0.086 0.081 0 0.5645 0.6305 0.063 0.051 0 0.601 0.5605 0.064 0.069 0 0.5035 0.507 0.073 0.066 0 0.649 0.463 0.074 0.068 0 0.741 0.4965 0.086 0.089 0 0.944 0.32 0.076 0.08 0 0.8335 0.301 0.051 0.052 0 0.567 0.2745 0.072 0.077 0 0.445 0.2255 0.072 0.073 0 0.4885 0.122 0.073 0.066 0 0.5985 0.175 0.075 0.078 0 0.8625 0.2365 0.053 0.055 0 0.965 0.2135 0.07 0.077 0 0.867 0.173 0.072 0.078 0 0.615 0.078 0.074 0.07 0 0.7605 0.042 0.083 0.08 0 0.8505 0.0895 0.055 0.067 0 0.909 0.091 0.076 0.078
20%|██ | 42/206 [00:02<00:07, 20.93it/s]
0 0.115 0.1005 0.032 0.033 0 0.178 0.1425 0.058 0.063 0 0.31 0.219 0.052 0.054 0 0.1245 0.2585 0.069 0.069 0 0.116 0.352 0.068 0.068 0 0.281 0.338 0.076 0.078 0 0.3055 0.464 0.075 0.07 0 0.967 0.2395 0.066 0.077 0 0.494 0.5165 0.094 0.091 0 0.343 0.5435 0.072 0.073 0 0.2695 0.5615 0.061 0.057 0 0.309 0.6145 0.062 0.069 0 0.37 0.6265 0.07 0.067 0 0.1385 0.6675 0.051 0.053 0 0.0995 0.716 0.069 0.068 0 0.201 0.7065 0.072 0.063 0 0.2875 0.7075 0.073 0.077 0 0.4395 0.7035 0.077 0.081 0 0.3975 0.7895 0.079 0.079 0 0.294 0.855 0.08 0.072 0 0.1835 0.9035 0.075 0.087 0 0.254 0.95 0.076 0.072 0 0.9505 0.949 0.079 0.08 0 0.7395 0.9675 0.075 0.065 0 0.7765 0.855 0.087 0.078 0 0.889 0.818 0.052 0.054 0 0.669 0.78 0.076 0.078 0 0.8215 0.603 0.079 0.082 0 0.884 0.5035 0.066 0.073 0 0.948 0.4045 0.086 0.089 0 0.8605 0.3795 0.065 0.069 0 0.922 0.1695 0.078 0.085 0 0.796 0.0995 0.092 0.091 0 0.7375 0.199 0.081 0.086 0 0.814 0.215 0.062 0.062 0 0.7415 0.489 0.075 0.08 0 0.6955 0.4345 0.081 0.077 0 0.629 0.4085 0.076 0.081 0 0.6235 0.497 0.081 0.078 0 0.592 0.593 0.08 0.078 0 0.585 0.695 0.08 0.076 0 0.5075 0.6295 0.065 0.067 0 0.477 0.9415 0.06 0.059 0 0.2225 0.9705 0.071 0.057 0 0.2395 0.917 0.069 0.07 0 0.2805 0.8225 0.075 0.073 0 0.4015 0.7225 0.081 0.089 0 0.3215 0.719 0.085 0.094 0 0.2205 0.751 0.067 0.07 0 0.122 0.7595 0.07 0.085 0 0.1185 0.6675 0.087 0.089 0 0.2275 0.6655 0.063 0.067 0 0.161 0.589 0.08 0.082 0 0.34 0.6 0.094 0.09 0 0.3565 0.5285 0.085 0.069 0 0.3985 0.4845 0.081 0.075 0 0.1625 0.506 0.091 0.088 0 0.3465 0.432 0.077 0.072 0 0.414 0.356 0.098 0.1 0 0.4805 0.322 0.087 0.082 0 0.4895 0.2635 0.071 0.067 0 0.514 0.2155 0.076 0.063 0 0.6605 0.141 0.063 0.068 0 0.6165 0.042 0.097 0.082 0 0.42 0.1125 0.082 0.079 0 0.339 0.2325 0.072 0.071 0 0.296 0.337 0.086 0.086 0 0.058 0.4775 0.09 0.093 0 0.064 0.393 0.09 0.096 0 0.0785 0.2895 0.095 0.085 0 0.15 0.2095 0.06 0.069 0 0.1295 0.1475 0.101 0.097 0 0.1905 0.0575 0.091 0.083 0 0.105 0.0285 0.094 0.055 0 0.1165 0.1205 0.071 0.069 0 0.0615 0.2275 0.067 0.067 0 0.043 0.321 0.07 0.082 0 0.274 0.0335 0.086 0.065 0 0.2315 0.148 0.089 0.086 0 0.1885 0.246 0.095 0.088 0 0.105 0.3105 0.054 0.055 0 0.152 0.382 0.082 0.072 0 0.111 0.463 0.076 0.074 0 0.057 0.685 0.08 0.074 0 0.388 0.0845 0.086 0.085 0 0.3535 0.1875 0.091 0.089 0 0.31 0.298 0.09 0.102 0 0.253 0.3915 0.078 0.079 0 0.238 0.4905 0.076 0.069 0 0.198 0.5945 0.08 0.075 0 0.152 0.8495 0.068 0.065 0 0.2 0.7405 0.07 0.071 0 0.2525 0.6285 0.079 0.075 0 0.3275 0.432 0.061 0.068 0 0.4155 0.3315 0.079 0.083 0 0.464 0.2105 0.08 0.073 0 0.4935 0.1045 0.065 0.061 0 0.443 0.908 0.062 0.064 0 0.4865 0.808 0.061 0.056 0 0.5295 0.6955 0.067 0.075 0 0.6 0.836 0.066 0.072 0 0.6555 0.952 0.085 0.084 0 0.7935 0.975 0.057 0.05 0 0.9375 0.9235 0.061 0.063 0 0.8375 0.8695 0.063 0.061 0 0.857 0.779 0.064 0.066 0 0.747 0.7575 0.068 0.071 0 0.6505 0.634 0.071 0.08 0 0.5945 0.4965 0.061 0.063 0 0.8145 0.5405 0.081 0.083 0 0.9425 0.5535 0.077 0.071 0 0.97 0.451 0.06 0.074 0 0.8705 0.429 0.073 0.07 0 0.746 0.399 0.064 0.066 0 0.637 0.3775 0.084 0.073 0 0.7995 0.2755 0.065 0.065 0 0.9235 0.0845 0.087 0.081 0 0.931 0.3395 0.072 0.071 0 0.9425 0.411 0.067 0.06
22%|██▏ | 45/206 [00:03<00:08, 17.95it/s]
0 0.6545 0.3125 0.083 0.089 0 0.6845 0.1885 0.079 0.077 0 0.2515 0.2345 0.053 0.055 0 0.087 0.4715 0.078 0.083 0 0.0425 0.5935 0.077 0.083 0 0.031 0.7045 0.06 0.069 0 0.263 0.4015 0.082 0.065 0 0.2055 0.4865 0.085 0.083 0 0.153 0.6115 0.076 0.077 0 0.1305 0.7215 0.071 0.071 0 0.073 0.829 0.082 0.072 0 0.038 0.9235 0.068 0.083 0 0.173 0.9555 0.084 0.079 0 0.2505 0.731 0.083 0.082 0 0.2765 0.6355 0.081 0.077 0 0.3465 0.7875 0.077 0.083 0 0.4585 0.465 0.065 0.068 0 0.5845 0.492 0.063 0.064 0 0.498 0.712 0.07 0.07 0 0.6515 0.6315 0.069 0.071 0 0.5965 0.734 0.087 0.08 0 0.5705 0.851 0.077 0.086 0 0.532 0.9535 0.094 0.081 0 0.6595 0.9705 0.089 0.055 0 0.6825 0.8685 0.083 0.083 0 0.7295 0.767 0.081 0.086 0 0.765 0.67 0.084 0.07 0 0.9315 0.5935 0.069 0.083 0 0.85 0.7965 0.09 0.089 0 0.8075 0.889 0.089 0.084 0 0.892 0.9555 0.068 0.075 0 0.1785 0.9515 0.073 0.069
23%|██▎ | 47/206 [00:03<00:08, 17.96it/s]
0 0.363 0.8405 0.074 0.071 0 0.476 0.928 0.082 0.092 0 0.5925 0.942 0.079 0.084 0 0.6625 0.951 0.065 0.064 0 0.7675 0.93 0.093 0.094 0 0.958 0.894 0.08 0.078 0 0.836 0.819 0.092 0.09 0 0.903 0.687 0.064 0.064 0 0.8285 0.6915 0.061 0.063 0 0.7605 0.713 0.089 0.088 0 0.964 0.5855 0.072 0.083 0 0.8335 0.599 0.077 0.08 0 0.7575 0.5745 0.081 0.073 0 0.895 0.488 0.092 0.084 0 0.762 0.491 0.086 0.08 0 0.932 0.411 0.088 0.076 0 0.9265 0.2785 0.075 0.071 0 0.8685 0.3285 0.079 0.071 0 0.967 0.0595 0.066 0.077 0 0.775 0.1815 0.084 0.081 0 0.713 0.273 0.084 0.076 0 0.664 0.3355 0.076 0.073 0 0.6055 0.413 0.101 0.088 0 0.52 0.5035 0.088 0.095 0 0.676 0.1205 0.088 0.095 0 0.6075 0.2 0.081 0.076 0 0.575 0.129 0.046 0.05 0 0.539 0.0325 0.084 0.063 0 0.5145 0.106 0.085 0.08 0 0.473 0.1865 0.072 0.077 0 0.4255 0.2615 0.065 0.057 0 0.404 0.3165 0.068 0.061 0 0.49 0.387 0.082 0.088 0 0.43 0.49 0.086 0.082 0 0.358 0.387 0.092 0.096 0 0.299 0.468 0.074 0.068 0 0.364 0.604 0.07 0.074 0 0.263 0.5515 0.078 0.083 0 0.2865 0.696 0.075 0.084 0 0.223 0.616 0.082 0.084 0 0.198 0.6825 0.1 0.095 0 0.052 0.6555 0.09 0.083 0 0.1045 0.5785 0.085 0.087 0 0.1465 0.5015 0.067 0.055 0 0.188 0.425 0.082 0.088 0 0.2315 0.3455 0.083 0.081 0 0.281 0.2545 0.076 0.095 0 0.357 0.137 0.08 0.078 0 0.3945 0.0515 0.077 0.087 0 0.2655 0.0295 0.091 0.057 0 0.214 0.0925 0.07 0.083 0 0.177 0.1655 0.062 0.071 0 0.1295 0.257 0.081 0.082 0 0.082 0.3425 0.086 0.087 0 0.097 0.13 0.078 0.07 0 0.05 0.1705 0.07 0.063 0 0.123 0.0465 0.064 0.049 0 0.032 0.114 0.062 0.08 0 0.2235 0.054 0.077 0.072 0 0.3185 0.09 0.077 0.078 0 0.4035 0.154 0.065 0.062 0 0.523 0.1205 0.076 0.085 0 0.6225 0.15 0.081 0.078 0 0.9255 0.0845 0.085 0.083 0 0.7895 0.032 0.083 0.062 0 0.418 0.349 0.066 0.062 0 0.0655 0.579 0.091 0.088 0 0.258 0.5755 0.08 0.065 0 0.638 0.8365 0.066 0.071 0 0.498 0.8685 0.05 0.067 0 0.0525 0.045 0.095 0.088 0 0.1285 0.1635 0.065 0.065 0 0.0785 0.395 0.073 0.082 0 0.1435 0.3635 0.073 0.065 0 0.263 0.2945 0.078 0.079 0 0.219 0.421 0.08 0.082 0 0.0455 0.515 0.089 0.092 0 0.3175 0.399 0.091 0.086 0 0.2645 0.498 0.067 0.068 0 0.0565 0.632 0.063 0.07 0 0.1395 0.6665 0.087 0.081 0 0.0635 0.807 0.071 0.068 0 0.247 0.7125 0.072 0.073 0 0.3225 0.713 0.089 0.088 0 0.318 0.595 0.08 0.08 0 0.388 0.437 0.08 0.078 0 0.431 0.316 0.082 0.078 0 0.48 0.421 0.078 0.078 0 0.618 0.0295 0.074 0.057 0 0.59 0.078 0.11 0.086 0 0.5945 0.138 0.071 0.072 0 0.5725 0.229 0.073 0.072 0 0.569 0.355 0.074 0.082 0 0.531 0.387 0.084 0.092 0 0.5395 0.4875 0.083 0.081 0 0.514 0.5405 0.098 0.091 0 0.4955 0.617 0.091 0.086 0 0.4815 0.6625 0.103 0.093 0 0.4675 0.7325 0.089 0.073 0 0.5315 0.837 0.071 0.082 0 0.6485 0.843 0.085 0.074 0 0.7735 0.888 0.075 0.08 0 0.9 0.91 0.076 0.084 0 0.922 0.7725 0.08 0.077 0 0.7905 0.7605 0.067 0.069 0 0.666 0.738 0.066 0.076 0 0.6925 0.6205 0.093 0.103 0 0.825 0.6495 0.076 0.079 0 0.958 0.5645 0.084 0.081 0 0.826 0.53 0.082 0.084 0 0.737 0.544 0.07 0.076 0 0.653 0.5185 0.084 0.091 0 0.9665 0.435 0.067 0.084 0 0.901 0.474 0.07 0.078 0 0.8545 0.425 0.081 0.082 0 0.8595 0.354 0.079 0.074 0 0.806 0.3185 0.082 0.077 0 0.6855 0.3385 0.071 0.073 0 0.703 0.2835 0.072 0.075 0 0.646 0.265 0.07 0.078 0 0.7015 0.1715 0.077 0.077 0 0.818 0.205 0.086 0.084 0 0.967 0.2145 0.066 0.077 0 0.7395 0.059 0.073 0.072 0 0.843 0.0935 0.086 0.085 0 0.9295 0.1315 0.075 0.081 0 0.965 0.0455 0.07 0.073 0 0.0855 0.1435 0.077 0.079 0 0.2175 0.152 0.087 0.082 0 0.3595 0.2315 0.077 0.075 0 0.188 0.256 0.082 0.086 0 0.121 0.3765 0.068 0.073 0 0.259 0.3625 0.066 0.073 0 0.21 0.441 0.08 0.074 0 0.273 0.5085 0.082 0.083 0 0.04 0.472 0.078 0.086 0 0.1395 0.578 0.063 0.072 0 0.2495 0.6195 0.061 0.061 0 0.3985 0.074 0.087 0.086 0 0.538 0.1245 0.076 0.087 0 0.661 0.0365 0.082 0.071 0 0.71 0.086 0.078 0.07 0 0.797 0.12 0.072 0.068 0 0.676 0.177 0.07 0.07 0 0.7075 0.2115 0.055 0.061 0 0.788 0.1945 0.086 0.091 0 0.8975 0.146 0.071 0.07 0 0.9305 0.0555 0.079 0.075 0 0.964 0.2725 0.072 0.079 0 0.88 0.2895 0.064 0.069 0 0.9275 0.3605 0.075 0.077 0 0.9665 0.4385 0.067 0.075 0 0.8625 0.416 0.073 0.076 0 0.781 0.3945 0.062 0.067 0 0.463 0.3165 0.056 0.057 0 0.552 0.367 0.088 0.1 0 0.645 0.427 0.058 0.064 0 0.694 0.498 0.064 0.066 0 0.844 0.542 0.064 0.068 0 0.948 0.6215 0.052 0.053 0 0.4375 0.3865 0.065 0.077 0 0.5045 0.4605 0.077 0.087 0 0.579 0.5395 0.072 0.075 0 0.6645 0.598 0.083 0.082 0 0.87 0.69 0.068 0.064 0 0.935 0.7435 0.074 0.075 0 0.9365 0.847 0.077 0.07 0 0.93 0.8875 0.056 0.057 0 0.84 0.8225 0.062 0.065 0 0.663 0.794 0.064 0.064 0 0.6415 0.849 0.045 0.048 0 0.611 0.835 0.062 0.074 0 0.409 0.5685 0.08 0.085 0 0.439 0.639 0.062 0.064 0
24%|██▍ | 49/206 [00:03<00:09, 16.18it/s]
0.47 0.704 0.09 0.076 0 0.427 0.776 0.07 0.062 0 0.388 0.837 0.074 0.07 0 0.3275 0.892 0.085 0.084 0 0.382 0.713 0.066 0.068 0 0.33 0.6415 0.074 0.071 0 0.2985 0.7255 0.063 0.065 0 0.2385 0.7585 0.063 0.063 0 0.1755 0.8145 0.073 0.065 0 0.0835 0.8485 0.059 0.053 0 0.1025 0.409 0.077 0.074 0 0.0645 0.649 0.077 0.078 0 0.1545 0.5805 0.065 0.065 0 0.1015 0.8415 0.077 0.073 0 0.103 0.973 0.06 0.054 0 0.1985 0.7975 0.081 0.075 0 0.254 0.7465 0.068 0.067 0 0.289 0.8005 0.056 0.053 0 0.2395 0.6775 0.103 0.097 0 0.3435 0.725 0.085 0.084 0 0.228 0.5885 0.078 0.087 0 0.289 0.5895 0.074 0.081 0 0.382 0.6105 0.074 0.077 0 0.4485 0.683 0.075 0.072 0 0.433 0.783 0.062 0.052 0 0.55 0.8395 0.086 0.089 0 0.28 0.4725 0.078 0.077 0 0.383 0.491 0.076 0.078 0 0.433 0.4065 0.08 0.077 0 0.487 0.628 0.082 0.078 0 0.4855 0.5645 0.087 0.073 0 0.647 0.778 0.08 0.078 0 0.712 0.829 0.074 0.066 0 0.691 0.9015 0.084 0.079 0 0.78 0.9075 0.078 0.073 0 0.8165 0.829 0.073 0.076 0 0.879 0.862 0.084 0.088 0 0.912 0.6865 0.088 0.091 0 0.817 0.7045 0.082 0.075 0 0.739 0.6365 0.088 0.085 0 0.86 0.606 0.07 0.068 0 0.7855 0.5545 0.101 0.063 0 0.672 0.5385 0.084 0.079 0 0.592 0.5145 0.076 0.073 0 0.6115 0.409 0.075 0.074 0 0.704 0.452 0.094 0.086 0 0.81 0.4675 0.082 0.077 0 0.884 0.5255 0.078 0.085 0 0.9475 0.516 0.083 0.078 0 0.924 0.4325 0.088 0.097 0 0.854 0.404 0.094 0.1 0 0.7425 0.3395 0.089 0.081 0 0.8605 0.2845 0.079 0.079 0 0.8095 0.2575 0.097 0.101 0 0.9565 0.3465 0.071 0.065 0 0.9485 0.2885 0.097 0.085 0 0.963 0.234 0.074 0.07 0 0.4945 0.2165 0.093 0.083 0 0.476 0.066 0.076 0.07 0 0.098 0.0335 0.078 0.065 0 0.0335 0.0805 0.063 0.067 0 0.152 0.118 0.076 0.08 0 0.081 0.144 0.07 0.074 0 0.1525 0.2215 0.075 0.079 0 0.0295 0.2935 0.057 0.073 0 0.1385 0.306 0.083 0.074 0 0.048 0.376 0.07 0.08 0 0.083 0.4565 0.074 0.081 0 0.2745 0.1875 0.075 0.075 0 0.2355 0.3645 0.065 0.073 0 0.179 0.4275 0.076 0.083 0 0.205 0.518 0.084 0.084 0 0.135 0.588 0.076 0.082 0 0.038 0.6465 0.072 0.073 0 0.0865 0.711 0.069 0.068 0 0.0955 0.7825 0.087 0.081 0 0.1785 0.7355 0.065 0.057 0 0.241 0.7585 0.064 0.075 0 0.0315 0.9355 0.059 0.077 0 0.1695 0.977 0.057 0.046 0 0.1485 0.901 0.079 0.078 0 0.229 0.899 0.078 0.078 0 0.2435 0.8345 0.073 0.059 0 0.3135 0.873 0.069 0.064 0 0.3815 0.949 0.071 0.078 0 0.451 0.94 0.068 0.078 0 0.5205 0.957 0.069 0.082 0 0.3925 0.7915 0.083 0.087 0 0.4735 0.8485 0.071 0.073 0 0.55 0.874 0.078 0.076 0 0.5805 0.803 0.075 0.074 0 0.504 0.781 0.066 0.076 0 0.8945 0.7295 0.083 0.087 0 0.807 0.703 0.07 0.064 0 0.6425 0.6485 0.063 0.063 0 0.754 0.536 0.072 0.084 0 0.767 0.425 0.076 0.082 0 0.8755 0.391 0.073 0.074 0 0.7735 0.344 0.071 0.07 0 0.8055 0.2715 0.063 0.071 0 0.9665 0.3035 0.067 0.089 0 0.7745 0.19 0.065 0.056 0 0.889 0.0265 0.064 0.049 0 0.84 0.0505 0.058 0.063 0 0.7265 0.141 0.059 0.064 0 0.668 0.3255 0.068 0.069 0 0.601 0.2315 0.072 0.083 0 0.625 0.0635 0.074 0.071 0 0.5125 0.066 0.075 0.07 0 0.5235 0.1335 0.069 0.075 0 0.5015 0.23 0.091 0.096 0 0.427 0.2245 0.078 0.085 0 0.3525 0.2555 0.081 0.097 0 0.4265 0.0875 0.075 0.077
26%|██▌ | 53/206 [00:03<00:09, 15.93it/s]
0 0.631 0.092 0.078 0.076 0 0.502 0.08 0.088 0.084 0 0.375 0.0445 0.084 0.073 0 0.345 0.1105 0.06 0.061 0 0.3385 0.3285 0.061 0.061 0 0.639 0.3765 0.062 0.061 0 0.4275 0.217 0.057 0.054 0 0.5585 0.437 0.073 0.076 0 0.8155 0.408 0.059 0.066 0 0.896 0.3595 0.076 0.073 0 0.9205 0.2485 0.099 0.081 0 0.1125 0.7185 0.073 0.071 0 0.1715 0.6845 0.041 0.045 0 0.309 0.714 0.05 0.052 0 0.3545 0.884 0.081 0.08 0 0.476 0.7895 0.05 0.057 0 0.879 0.619 0.058 0.058 0 0.9495 0.7225 0.057 0.059 0 0.7305 0.9505 0.063 0.053 0 0.081 0.054 0.066 0.058 0 0.0715 0.182 0.081 0.084 0 0.0435 0.289 0.081 0.102 0 0.0355 0.427 0.069 0.08 0 0.228 0.0675 0.082 0.085 0 0.1835 0.087 0.071 0.074 0 0.218 0.2015 0.072 0.083 0 0.1765 0.226 0.053 0.056 0 0.174 0.3265 0.098 0.095 0 0.203 0.424 0.068 0.064 0 0.1505 0.446 0.073 0.088 0 0.124 0.4975 0.076 0.063 0 0.1235 0.562 0.083 0.094 0 0.1185 0.6895 0.067 0.071 0 0.2375 0.7095 0.097 0.083 0 0.362 0.744 0.074 0.076 0 0.0975 0.8475 0.061 0.061 0 0.2135 0.866 0.075 0.084 0 0.332 0.9005 0.082 0.081 0 0.6665 0.89 0.071 0.082 0 0.8575 0.8885 0.079 0.077 0 0.959 0.905 0.082 0.094 0 0.7885 0.775 0.085 0.084 0 0.889 0.7735 0.1 0.095 0 0.9145 0.6625 0.093 0.089 0 0.8255 0.6795 0.061 0.067 0 0.707 0.627 0.052 0.056 0 0.6545 0.6045 0.069 0.067 0 0.587 0.5335 0.064 0.067 0 0.522 0.5135 0.082 0.083 0 0.3525 0.57 0.065 0.062 0 0.342 0.496 0.056 0.062 0 0.398 0.4805 0.082 0.085 0 0.4225 0.3695 0.079 0.083 0 0.4295 0.254 0.089 0.082 0 0.3405 0.1105 0.087 0.077 0 0.4465 0.129 0.083 0.078 0 0.4695 0.033 0.087 0.064 0 0.7015 0.0725 0.089 0.087 0 0.695 0.18 0.096 0.094 0 0.6865 0.291 0.083 0.09 0 0.875 0.048 0.114 0.094 0 0.958 0.11 0.08 0.082 0 0.9415 0.2205 0.077 0.083 0 0.823 0.201 0.088 0.086 0 0.9205 0.335 0.089 0.086 0 0.9595 0.3755 0.053 0.057 0 0.902 0.4535 0.076 0.085 0 0.751 0.3885 0.07 0.069 0 0.5635 0.4295 0.071 0.073 0 0.6405 0.438 0.057 0.06 0 0.331 0.042 0.084 0.08 0 0.4815 0.0395 0.047 0.051 0 0.4845 0.0995 0.067 0.065 0 0.5195 0.184 0.095 0.08 0 0.63 0.17 0.078 0.086 0 0.7405 0.1965 0.075 0.075 0 0.832 0.27 0.066 0.076 0 0.9355 0.2635 0.057 0.057 0 0.7685 0.091 0.067 0.07 0 0.911 0.1215 0.076 0.073 0 0.9585 0.0305 0.075 0.059 0 0.822 0.0745 0.058 0.063 0 0.163 0.5025 0.078 0.073 0 0.1345 0.691 0.097 0.094 0 0.6405 0.693 0.069 0.062 0 0.775 0.6955 0.058 0.059 0 0.683 0.8495 0.064 0.067 0 0.605 0.8245 0.076 0.085 0 0.4135 0.048 0.059 0.066 0 0.029 0.2525 0.056 0.059 0 0.165 0.258 0.062 0.064 0 0.195 0.327 0.056 0.062 0 0.328 0.2535 0.06 0.061 0 0.408 0.248 0.054 0.064 0 0.83 0.055 0.062 0.068 0 0.905 0.108 0.064 0.062 0 0.901 0.2735 0.058 0.065 0 0.907 0.4095 0.08 0.089 0 0.754 0.4055 0.068 0.067 0 0.6345 0.4305 0.077 0.081 0 0.838 0.569 0.096 0.092 0 0.784 0.7025 0.076 0.079 0 0.941 0.8065 0.064 0.059 0 0.921 0.892 0.086 0.08 0 0.904 0.9665 0.074 0.067 0 0.7875 0.8465 0.081 0.079 0 0.638 0.7415 0.084 0.083 0 0.5925 0.856 0.081 0.086 0 0.434 0.86 0.084 0.09 0 0.44 0.722 0.09 0.086 0 0.4845 0.6425 0.067 0.073 0 0.5395 0.6345 0.083 0.093 0 0.237 0.9145 0.074 0.075 0 0.1205 0.872 0.083 0.076 0 0.14 0.734 0.052 0.06 0 0.3085 0.658 0.087 0.086 0 0.0365 0.773 0.071 0.08 0 0.046 0.7155 0.09 0.077 0 0.0495 0.6475 0.091 0.083 0 0.1455 0.6075 0.077 0.067 0 0.2665 0.6005 0.077 0.071 0 0.0925 0.555 0.105 0.076 0 0.0595 0.4945 0.077 0.071 0 0.103 0.4625 0.074 0.093 0 0.165 0.454 0.07 0.072 0 0.249 0.465 0.084 0.08 0 0.3265 0.526 0.089 0.08 0 0.41 0.532 0.064 0.07 0 0.1065 0.9485 0.085 0.083 0 0.3025 0.95 0.113
27%|██▋ | 56/206 [00:03<00:08, 17.08it/s]
0.092 0 0.141 0.8265 0.084 0.081 0 0.3735 0.7635 0.085 0.085 0 0.5475 0.8615 0.095 0.091 0 0.761 0.843 0.084 0.086 0 0.9455 0.889 0.093 0.086 0 0.927 0.967 0.086 0.066 0 0.598 0.706 0.078 0.088 0 0.6055 0.635 0.073 0.068 0 0.432 0.572 0.088 0.086 0 0.235 0.497 0.078 0.078 0 0.0915 0.4 0.085 0.086 0 0.3655 0.4015 0.067 0.085 0 0.429 0.4915 0.078 0.083 0 0.465 0.4505 0.064 0.071 0 0.5615 0.4825 0.079 0.087 0 0.655 0.5375 0.064 0.073 0 0.7565 0.576 0.073 0.066 0 0.8835 0.533 0.069 0.066 0 0.705 0.4335 0.064 0.059 0 0.8035 0.481 0.055 0.058 0 0.527 0.3555 0.068 0.059 0 0.413 0.2955 0.074 0.067 0 0.9695 0.248 0.061 0.104 0 0.9195 0.2075 0.097 0.097 0 0.8495 0.1885 0.083 0.093 0 0.806 0.145 0.082 0.088 0 0.735 0.128 0.09 0.098 0 0.684 0.093 0.088 0.1 0 0.616 0.094 0.076 0.092 0 0.5645 0.0665 0.081 0.101 0 0.509 0.045 0.072 0.082 0 0.4605 0.0565 0.071 0.085 0 0.3975 0.043 0.085 0.082 0 0.344 0.0395 0.082 0.077 0 0.8715 0.113 0.069 0.068 0 0.7615 0.0545 0.079 0.083 0 0.9705 0.2595 0.059 0.061 0 0.9705 0.321 0.059 0.058 0 0.9625 0.451 0.075 0.084 0 0.8605 0.3095 0.077 0.075 0 0.8515 0.3935 0.075 0.073 0 0.809 0.457 0.052 0.048 0 0.8395 0.5555 0.079 0.079 0 0.8425 0.645 0.087 0.082 0 0.747 0.8105 0.084 0.069 0 0.618 0.8435 0.072 0.061 0 0.497 0.947 0.088 0.086 0 0.6065 0.6435 0.065 0.065 0 0.62 0.527 0.09 0.078 0 0.725 0.3525 0.078 0.061 0 0.7435 0.2455 0.087 0.075 0 0.6325 0.033 0.069 0.064 0 0.5745 0.1225 0.059 0.059 0 0.61 0.1945 0.082 0.073 0 0.4365 0.0405 0.091 0.073 0 0.2705 0.087 0.083 0.082 0 0.378 0.0955 0.082 0.067 0 0.3025 0.1585 0.067 0.063 0 0.446 0.133 0.082 0.086 0 0.4405 0.2125 0.097 0.079 0 0.1105 0.285 0.061 0.06 0 0.315 0.2855 0.066 0.061 0 0.4455 0.2935 0.075 0.083 0 0.419 0.3655 0.088 0.085 0 0.2875 0.36 0.075 0.064 0 0.22 0.3805 0.068 0.067 0 0.2835 0.456 0.083 0.1 0 0.3455 0.4615 0.081 0.089 0 0.4195 0.452 0.093 0.086 0 0.4045 0.5195 0.085 0.089 0 0.151 0.6885 0.068 0.065 0 0.109 0.737 0.066 0.062 0 0.0585 0.8975 0.067 0.067 0 0.268 0.7145 0.074 0.081 0 0.333 0.698 0.094 0.096 0 0.382 0.7505 0.084 0.077 0 0.2345 0.7975 0.077 0.081 0 0.209 0.8755 0.094 0.085 0 0.2125 0.9395 0.101 0.083 0 0.318 0.965 0.074 0.07 0 0.278 0.889 0.086 0.09 0 0.3355 0.8755 0.061 0.071 0 0.2445 0.1995 0.075 0.067 0 0.0925 0.491 0.085 0.078 0 0.05 0.6455 0.066 0.067 0 0.1435 0.644 0.077 0.072 0 0.12 0.7255 0.064 0.061 0 0.173 0.714 0.066 0.068 0 0.2345 0.705 0.087 0.082 0 0.137 0.8795 0.072 0.075 0 0.7575 0.6115 0.067 0.085 0 0.955 0.6945 0.068 0.077 0 0.931 0.3625 0.07 0.069 0 0.8345 0.5065 0.065 0.069 0 0.9 0.5395 0.07 0.071 0 0.9625 0.5635 0.057 0.065
28%|██▊ | 58/206 [00:03<00:08, 17.48it/s]
0 0.043 0.1085 0.076 0.073 0 0.256 0.1025 0.074 0.073 0 0.362 0.053 0.078 0.082 0 0.1845 0.3 0.077 0.078 0 0.358 0.292 0.08 0.082 0 0.373 0.381 0.09 0.084 0 0.436 0.4225 0.06 0.067 0 0.512 0.3575 0.084 0.077 0 0.525 0.4345 0.068 0.077 0 0.5925 0.448 0.079 0.082 0 0.7375 0.504 0.075 0.076 0 0.3455 0.608 0.073 0.074 0 0.6105 0.721 0.085 0.08 0 0.5005 0.7805 0.075 0.083 0 0.432 0.892 0.072 0.068 0 0.4945 0.92 0.063 0.082 0 0.567 0.9225 0.088 0.081 0 0.61 0.96 0.08 0.076 0 0.483 0.7475 0.068 0.067 0 0.207 0.4495 0.078 0.081 0 0.055 0.3025 0.07 0.071 0 0.313 0.3535 0.06 0.061 0 0.149 0.1215 0.064 0.071 0 0.1675 0.032 0.067 0.062 0 0.3005 0.0305 0.089 0.059 0 0.452 0.0375 0.09 0.073 0 0.785 0.116 0.074 0.072 0 0.942 0.0995 0.084 0.083 0 0.8685 0.244 0.065 0.07 0 0.74 0.284 0.068 0.074 0 0.785 0.4225 0.06 0.067 0 0.8555 0.3905 0.087 0.079
30%|██▉ | 61/206 [00:03<00:07, 18.27it/s]
0 0.051 0.035 0.082 0.068 0 0.056 0.102 0.084 0.072 0 0.046 0.17 0.078 0.076 0 0.0405 0.2365 0.077 0.081 0 0.0415 0.327 0.079 0.094 0 0.0965 0.2945 0.059 0.067 0 0.0705 0.442 0.091 0.092 0 0.307 0.057 0.088 0.088 0 0.295 0.166 0.084 0.1 0 0.224 0.209 0.088 0.09 0 0.2425 0.284 0.093 0.078 0 0.2095 0.3215 0.077 0.079 0 0.256 0.344 0.06 0.062 0 0.217 0.387 0.078 0.076 0 0.178 0.4255 0.08 0.069 0 0.298 0.4055 0.088 0.079 0 0.128 0.54 0.084 0.084 0 0.1665 0.5915 0.081 0.067 0 0.122 0.6205 0.086 0.077 0 0.0485 0.6625 0.069 0.073 0 0.114 0.704 0.094 0.094 0 0.1755 0.6795 0.081 0.083 0 0.148 0.7615 0.074 0.073 0 0.17 0.8505 0.09 0.093 0 0.1335 0.953 0.081 0.078 0 0.298 0.947 0.098 0.082 0 0.318 0.889 0.09 0.078 0 0.346 0.8265 0.09 0.093 0 0.431 0.673 0.072 0.076 0 0.4915 0.686 0.059 0.074 0 0.455 0.768 0.06 0.06 0 0.5235 0.7825 0.077 0.077 0 0.5 0.9425 0.096 0.097 0 0.5505 0.879 0.101 0.094 0 0.5865 0.8205 0.097 0.077 0 0.597 0.746 0.086 0.076 0 0.5425 0.0425 0.081 0.061 0 0.5405 0.101 0.085 0.08 0 0.527 0.1605 0.098 0.075 0 0.5255 0.229 0.095 0.08 0 0.492 0.2775 0.08 0.089 0 0.4685 0.374 0.079 0.078 0 0.4185 0.415 0.077 0.08 0 0.452 0.4725 0.096 0.087 0 0.7755 0.0385 0.101 0.073 0 0.772 0.0925 0.07 0.065 0 0.7585 0.1395 0.081 0.065 0 0.739 0.196 0.092 0.08 0 0.7235 0.26 0.091 0.074 0 0.7035 0.328 0.083 0.098 0 0.578 0.3795 0.08 0.077 0 0.5545 0.447 0.077 0.074 0 0.5825 0.512 0.075 0.072 0 0.6925 0.417 0.101 0.084 0 0.705 0.492 0.086 0.076 0 0.657 0.5315 0.098 0.103 0 0.639 0.622 0.084 0.09 0 0.7155 0.673 0.069 0.066 0 0.736 0.603 0.086 0.072 0 0.77 0.525 0.088 0.098 0 0.857 0.147 0.092 0.094 0 0.9495 0.1845 0.095 0.093 0 0.9015 0.2345 0.091 0.093 0 0.8515 0.2965 0.059 0.057 0 0.902 0.374 0.096 0.1 0 0.827 0.424 0.064 0.068 0 0.8915 0.4525 0.089 0.095 0 0.851 0.5835 0.094 0.091 0 0.7935 0.699 0.065 0.068 0 0.858 0.705 0.092 0.086 0 0.8245 0.7495 0.053 0.045 0 0.798 0.8175 0.094 0.087 0 0.815 0.883 0.086 0.088 0 0.752 0.928 0.066 0.062 0 0.804 0.9525 0.06 0.061 0 0.9415 0.851 0.053 0.056 0 0.9355 0.894 0.059 0.06 0 0.1155 0.091 0.083 0.078 0 0.24 0.0315 0.066 0.061 0 0.23 0.122 0.082 0.074 0 0.3245 0.151 0.087 0.08 0 0.3795 0.08 0.075 0.07 0 0.031 0.265 0.06 0.078 0 0.1565 0.295 0.055 0.066 0 0.136 0.374 0.08 0.068 0 0.5795 0.0335 0.091 0.065 0 0.57 0.132 0.064 0.066 0 0.505 0.124 0.07 0.07 0 0.469 0.1565 0.064 0.077 0 0.416 0.1735 0.076 0.079 0 0.371 0.314 0.056 0.06 0 0.5145 0.3005 0.077 0.077 0 0.5935 0.317 0.073 0.076 0 0.6665 0.284 0.069 0.068 0 0.727 0.308 0.07 0.066 0 0.829 0.3385 0.078 0.069 0 0.861 0.2505 0.052 0.051 0 0.3345 0.3985 0.079 0.083 0 0.429 0.401 0.06 0.05 0 0.42 0.471 0.076 0.08 0 0.509 0.4395 0.072 0.079 0 0.5905 0.466 0.091 0.09 0 0.7055 0.41 0.059 0.056 0 0.7145 0.5145 0.079 0.071 0 0.7895 0.509 0.073 0.074 0 0.9035 0.4875 0.059 0.057 0 0.6545 0.5945 0.083 0.077 0 0.1 0.587 0.074 0.074 0 0.201 0.5865 0.094 0.085 0 0.3145 0.571 0.085 0.076 0 0.4215 0.658 0.073 0.07 0 0.5475 0.6995 0.063 0.067 0 0.044 0.7325 0.072 0.087 0 0.1855 0.7305 0.063 0.059 0 0.2645 0.7315 0.069 0.071 0 0.405 0.7755 0.084 0.079 0 0.501 0.771 0.09 0.08 0 0.0965 0.917 0.089 0.09 0 0.209 0.9055 0.078 0.085 0 0.32 0.8635 0.074 0.075 0 0.4115 0.919 0.063 0.07 0 0.4735 0.8675 0.079 0.077 0 0.5875 0.885 0.071 0.078 0 0.734 0.9285 0.082 0.089 0 0.746 0.816 0.08 0.078 0 0.762 0.7255 0.062 0.075 0 0.853 0.7155 0.078 0.071 0 0.9535 0.692 0.071 0.074 0 0.8365 0.885 0.079 0.078 0 0.951 0.8645 0.072 0.065 0 0.059 0.116 0.058 0.062 0 0.1555 0.261 0.081 0.09 0 0.0765 0.5145 0.081 0.081 0 0.3755 0.1985 0.095 0.087 0 0.335 0.313 0.098 0.104 0 0.3995 0.3495 0.071 0.071 0 0.306 0.4305 0.096
31%|███ | 63/206 [00:04<00:07, 17.89it/s]
0.107 0 0.258 0.5735 0.094 0.091 0 0.221 0.711 0.084 0.09 0 0.2045 0.821 0.061 0.066 0 0.3535 0.875 0.077 0.082 0 0.4385 0.9215 0.097 0.093 0 0.4945 0.634 0.107 0.1 0 0.526 0.238 0.078 0.08 0 0.62 0.0635 0.084 0.085 0 0.944 0.08 0.082 0.084 0 0.2445 0.891 0.049 0.05 0 0.412 0.9785 0.064 0.043 0 0.6525 0.84 0.067 0.076 0 0.589 0.7915 0.06 0.065 0 0.7155 0.702 0.069 0.078 0 0.5705 0.722 0.057 0.058 0 0.461 0.6715 0.064 0.075 0 0.2095 0.596 0.059 0.064 0 0.303 0.512 0.056 0.062 0 0.393 0.432 0.062 0.06 0 0.908 0.6005 0.068 0.065 0 0.853 0.43 0.062 0.052 0 0.8995 0.3905 0.073 0.065 0 0.969 0.2445 0.062 0.081 0 0.7675 0.1985 0.069 0.067 0 0.6225 0.3005 0.067 0.071 0 0.4765 0.234 0.059 0.068 0 0.5445 0.165 0.071 0.07 0 0.4355 0.1515 0.059 0.047 0 0.3815 0.1225 0.059 0.063 0 0.4175 0.0325 0.063 0.063 0 0.517 0.054 0.066 0.058 0 0.249 0.0625 0.066 0.075 0 0.9035 0.139 0.067 0.066 0 0.943 0.968 0.052 0.058 0 0.092 0.9435 0.064 0.061 0 0.0345 0.616 0.067 0.082 0 0.0335 0.426 0.063 0.062 0 0.0315 0.4785 0.061 0.067 0 0.032 0.32 0.058 0.064 0 0.905 0.933 0.05 0.05 0 0.8815 0.824 0.059 0.056 0 0.9435 0.7585 0.069 0.071 0 0.6295 0.7905 0.049 0.045 0 0.47 0.748 0.07 0.07 0 0.3845 0.713 0.071 0.076 0 0.479 0.6495 0.066 0.067 0 0.593 0.602 0.056 0.044 0 0.526 0.584 0.056 0.052 0 0.602 0.5295 0.068 0.061 0 0.513 0.531 0.058 0.056 0 0.335 0.4175 0.074 0.073 0 0.26 0.387 0.064 0.066 0 0.77 0.406 0.072 0.076 0 0.705 0.42 0.074 0.078 0 0.858 0.346 0.058 0.052 0 0.4705 0.4365 0.069 0.063 0 0.4415 0.3955 0.067 0.063 0 0.3605 0.3505 0.069 0.069 0 0.2475 0.326 0.049 0.05 0 0.214 0.186 0.056 0.064 0 0.271 0.247 0.044 0.05 0 0.3825 0.246 0.075 0.084 0 0.302 0.1575 0.054 0.055 0 0.46 0.1865 0.06 0.067 0 0.47 0.2575 0.064 0.069 0 0.5355 0.3225 0.053 0.051 0 0.596 0.2695 0.084 0.101 0 0.68 0.2545 0.068 0.083 0 0.7635 0.2855 0.079 0.095 0 0.921 0.191 0.08 0.078 0 0.833 0.203 0.08 0.076 0 0.7145 0.1875 0.059 0.057 0 0.6455 0.1525 0.089 0.081 0 0.624 0.0835 0.05 0.055 0 0.5445 0.0845 0.053 0.065 0 0.4505 0.0885 0.049 0.055 0 0.5065 0.026 0.087 0.05 0 0.392 0.0465 0.082 0.087 0 0.971 0.1175 0.054 0.073 0 0.8735 0.1195 0.057 0.055 0 0.8505 0.0495 0.069 0.069 0 0.044 0.0365 0.07 0.065 0 0.2045 0.0335 0.073 0.065 0 0.3025 0.0255 0.059 0.047 0 0.1315 0.1275 0.077 0.071 0 0.189 0.1915 0.074 0.069 0 0.413 0.084 0.064 0.074 0 0.492 0.033 0.044 0.046 0 0.532 0.034 0.042 0.048 0 0.707 0.095 0.054 0.058 0 0.919 0.024 0.064 0.046 0 0.8655 0.168 0.061 0.066 0 0.8215 0.187 0.053 0.054 0 0.9745 0.268 0.051 0.07 0 0.871 0.254 0.064 0.07 0 0.863 0.3535 0.082 0.075 0 0.783 0.297 0.072 0.076 0 0.7605 0.352 0.043 0.042 0 0.724 0.2525 0.08 0.093 0 0.655 0.181 0.074 0.074 0 0.7955 0.434 0.079 0.076 0 0.7935 0.5535 0.077 0.075 0 0.7165 0.5015 0.069 0.079 0 0.687 0.614 0.064 0.074 0 0.7 0.569 0.058 0.046 0 0.6345 0.5835 0.075 0.081 0 0.5485 0.5655 0.063 0.073 0 0.4595 0.59 0.067 0.064 0 0.43 0.655 0.068 0.066 0 0.548 0.649 0.082 0.082 0 0.3185 0.7085 0.047
32%|███▏ | 66/206 [00:04<00:08, 17.38it/s]
0.047 0 0.5055 0.7475 0.081 0.085 0 0.6425 0.7405 0.073 0.077 0 0.6125 0.796 0.067 0.066 0 0.5895 0.8435 0.081 0.069 0 0.585 0.901 0.074 0.056 0 0.409 0.861 0.054 0.058 0 0.4675 0.897 0.059 0.064 0 0.501 0.9385 0.06 0.049 0 0.658 0.9195 0.076 0.081 0 0.699 0.844 0.08 0.078 0 0.7705 0.8945 0.077 0.079 0 0.7905 0.8305 0.069 0.059 0 0.8775 0.9555 0.059 0.055 0 0.9645 0.9585 0.071 0.071 0 0.941 0.805 0.084 0.078 0 0.902 0.7385 0.064 0.053 0 0.8275 0.77 0.063 0.062 0 0.816 0.7045 0.074 0.067 0 0.7965 0.6515 0.051 0.041 0 0.1265 0.5845 0.061 0.065 0 0.0335 0.508 0.061 0.078 0 0.3065 0.4635 0.067 0.067 0 0.464 0.3195 0.076 0.075 0 0.513 0.28 0.052 0.06 0 0.252 0.358 0.056 0.054 0 0.9265 0.162 0.115 0.11 0 0.8955 0.2785 0.087 0.093 0 0.866 0.3925 0.1 0.101 0 0.8345 0.52 0.079 0.086 0 0.798 0.6545 0.09 0.093 0 0.782 0.766 0.106 0.102 0 0.7465 0.904 0.097 0.096 0 0.923 0.934 0.086 0.074 0 0.956 0.8135 0.086 0.089 0 0.622 0.887 0.078 0.076 0 0.381 0.944 0.068 0.072 0 0.2595 0.9225 0.079 0.077 0 0.275 0.816 0.078 0.082 0 0.421 0.704 0.07 0.07 0 0.0375 0.8445 0.069 0.093 0 0.045 0.7555 0.076 0.081 0 0.149 0.7895 0.072 0.081 0 0.162 0.6655 0.094 0.087 0 0.303 0.691 0.066 0.068 0 0.0565 0.53 0.085 0.088 0 0.184 0.5435 0.066 0.073 0 0.235 0.524 0.068 0.062 0 0.3305 0.5405 0.095 0.103 0 0.4 0.558 0.056 0.056 0 0.102 0.4015 0.074 0.081 0 0.2015 0.4265 0.075 0.081 0 0.0445 0.325 0.081 0.092 0 0.4575 0.47 0.069 0.056 0 0.4765 0.362 0.073 0.066 0 0.375 0.3185 0.068 0.073 0 0.4885 0.29 0.073 0.066 0 0.2715 0.1905 0.063 0.067 0 0.4875 0.17 0.069 0.076 0 0.5515 0.2005 0.079 0.085 0 0.622 0.9325 0.096 0.087 0 0.3665 0.9425 0.091 0.085 0 0.122 0.914 0.072 0.06 0 0.036 0.878 0.056 0.058 0 0.1315 0.795 0.093 0.098 0 0.138 0.685 0.082 0.08 0 0.1655 0.577 0.065 0.068 0 0.1815 0.5 0.093 0.088 0 0.7005 0.8585 0.077 0.083 0 0.726 0.773 0.086 0.082 0 0.745 0.701 0.096 0.08 0 0.5375 0.488 0.091 0.084 0 0.844 0.361 0.074 0.066 0 0.867 0.285 0.074 0.076 0 0.9425 0.2505 0.073 0.069 0 0.9535 0.1615 0.077 0.077 0 0.8745 0.205 0.073 0.068 0 0.8855 0.137 0.069 0.062 0 0.811 0.044 0.088 0.078 0 0.6845 0.03 0.065 0.058 0 0.6835 0.0845 0.083 0.059 0 0.6665 0.1615 0.077 0.087 0 0.6365 0.251 0.077 0.076 0 0.5915 0.087 0.079 0.078 0 0.489 0.0485 0.088 0.079 0 0.35 0.0995 0.082 0.071 0 0.249 0.0755 0.088 0.081 0 0.0985 0.106 0.075 0.064 0 0.081 0.1985 0.064 0.055 0 0.2255 0.1695 0.081 0.071 0 0.1165 0.7885 0.069 0.061 0 0.178 0.947 0.072 0.072 0 0.052 0.5915 0.056 0.055 0 0.3895 0.8905 0.065 0.071 0 0.387 0.974 0.072 0.052 0 0.5505 0.97 0.071 0.06 0 0.558 0.8985 0.056 0.055 0 0.5675 0.8365 0.061 0.061 0 0.184 0.703 0.084 0.086 0 0.394 0.779 0.052 0.046 0 0.4395 0.739 0.071 0.074 0 0.559 0.76 0.068 0.068 0 0.631 0.7335 0.062 0.059 0 0.8975 0.793 0.067 0.062 0 0.899 0.7195 0.074 0.069 0 0.833 0.6355 0.08 0.071 0 0.7685 0.5975 0.061 0.063 0 0.7245 0.6695 0.073 0.075 0 0.601 0.6515 0.078 0.075 0 0.535 0.6135 0.064 0.067 0 0.494 0.5855 0.056 0.053 0 0.5285 0.5315 0.071 0.061 0 0.369 0.5815 0.078 0.071 0 0.29 0.555 0.084 0.084 0 0.2045 0.558 0.075 0.072 0 0.259 0.4525 0.076 0.077 0 0.3535 0.465 0.063 0.062 0 0.965 0.4145 0.054 0.061 0 0.969 0.323 0.062 0.074 0 0.77 0.3465 0.066 0.063 0 0.516 0.39 0.068 0.07 0 0.1575 0.3475 0.069 0.081 0 0.08 0.326 0.082 0.072 0 0.2365 0.169 0.055 0.048 0 0.289 0.207 0.066 0.066 0 0.2645 0.124 0.065 0.062 0 0.542 0.224 0.058 0.056 0 0.6655 0.3555 0.049 0.049 0 0.664 0.225 0.07 0.054 0 0.916 0.244 0.068 0.072 0 0.658 0.1425 0.076 0.067 0 0.424 0.057 0.07 0.064 0 0.9285 0.144 0.077 0.08 0 0.867 0.1005 0.072 0.071 0 0.9595 0.037 0.073 0.07
33%|███▎ | 69/206 [00:04<00:07, 17.99it/s]
0 0.0705 0.209 0.073 0.068 0 0.2835 0.4275 0.077 0.077 0 0.125 0.668 0.058 0.058 0 0.1905 0.735 0.075 0.068 0 0.2505 0.7995 0.069 0.067 0 0.0845 0.821 0.069 0.072 0 0.0595 0.928 0.089 0.09 0 0.2105 0.9165 0.071 0.067 0 0.359 0.954 0.078 0.07 0 0.513 0.9665 0.074 0.061 0 0.5535 0.8365 0.065 0.063 0 0.499 0.584 0.086 0.082 0 0.605 0.7405 0.068 0.063 0 0.7655 0.815 0.067 0.064 0 0.9535 0.6725 0.069 0.063 0 0.0435 0.5025 0.083 0.091 0 0.0425 0.5745 0.083 0.085 0 0.066 0.6535 0.08 0.087 0 0.043 0.7475 0.084 0.095 0 0.034 0.899 0.062 0.072 0 0.1255 0.5975 0.079 0.081 0 0.1835 0.5285 0.101 0.093 0 0.2125 0.632 0.091 0.086 0 0.195 0.7655 0.078 0.071 0 0.3175 0.9645 0.079 0.061 0 0.312 0.88 0.072 0.068 0 0.2995 0.7565 0.069 0.069 0 0.4805 0.5355 0.089 0.087 0 0.4755 0.645 0.083 0.092 0 0.487 0.788 0.092 0.084 0 0.4985 0.89 0.087 0.084 0 0.454 0.9185 0.074 0.079 0 0.607 0.906 0.082 0.088 0 0.638 0.7955 0.074 0.063 0 0.619 0.624 0.064 0.064 0 0.653 0.6745 0.058 0.053 0 0.6635 0.545 0.097 0.094 0 0.783 0.5845 0.1 0.085 0 0.8165 0.6665 0.073 0.067 0 0.7825 0.7025 0.083 0.087 0 0.782 0.81 0.078 0.072 0 0.7745 0.9175 0.091 0.089 0 0.9165 0.9245 0.091 0.085 0 0.919 0.827 0.086 0.078 0 0.9365 0.7295 0.067 0.067 0 0.926 0.674 0.07 0.072 0 0.9625 0.6295 0.069 0.077 0 0.6385 0.208 0.075 0.074 0 0.582 0.0545 0.07 0.061
35%|███▍ | 72/206 [00:04<00:07, 18.93it/s]
0 0.0555 0.239 0.065 0.07 0 0.083 0.3145 0.07 0.073 0 0.168 0.404 0.074 0.07 0 0.3225 0.2835 0.067 0.069 0 0.6845 0.0335 0.071 0.059 0 0.864 0.149 0.066 0.068 0 0.8945 0.225 0.079 0.072 0 0.7625 0.238 0.089 0.094 0 0.62 0.1545 0.076 0.073 0 0.62 0.2375 0.07 0.075 0 0.482 0.298 0.084 0.084 0 0.425 0.327 0.074 0.072 0 0.4245 0.4 0.093 0.08 0 0.5015 0.396 0.089 0.088 0 0.552 0.5085 0.086 0.079 0 0.6045 0.509 0.051 0.054 0 0.379 0.606 0.08 0.082 0 0.3525 0.683 0.059 0.064 0 0.3425 0.7425 0.071 0.065 0 0.4405 0.6835 0.091 0.089 0 0.585 0.623 0.08 0.09 0 0.9595 0.4505 0.081 0.091 0 0.896 0.4845 0.09 0.091 0 0.8985 0.5715 0.073 0.079 0 0.5975 0.733 0.071 0.07 0 0.676 0.7755 0.09 0.099 0 0.9115 0.8075 0.057 0.061 0 0.5055 0.7725 0.061 0.051 0 0.479 0.811 0.066 0.054 0 0.402 0.8685 0.086 0.083 0 0.398 0.946 0.078 0.084 0 0.467 0.9165 0.096 0.103 0 0.313 0.9155 0.058 0.059 0 0.1765 0.843 0.059 0.062 0 0.087 0.82 0.072 0.076 0 0.6135 0.8635 0.103 0.101 0 0.6195 0.8005 0.071 0.067 0 0.798 0.928 0.098 0.094 0 0.0375 0.1145 0.071 0.101 0 0.1075 0.1055 0.085 0.087 0 0.1985 0.1875 0.083 0.087 0 0.061 0.2345 0.074 0.069 0 0.105 0.2245 0.062 0.061 0 0.1235 0.3215 0.079 0.079 0 0.1695 0.363 0.093 0.092 0 0.2475 0.355 0.077 0.068 0 0.0575 0.541 0.087 0.086 0 0.113 0.501 0.096 0.108 0 0.224 0.479 0.086 0.088 0 0.0405 0.6285 0.059 0.063 0 0.171 0.5935 0.086 0.093 0 0.2175 0.6045 0.051 0.055 0 0.136 0.6915 0.07 0.073 0 0.235 0.744 0.064 0.062 0 0.3065 0.7315 0.071 0.075 0 0.286 0.633 0.074 0.072 0 0.323 0.523 0.068 0.076 0 0.366 0.4045 0.082 0.085 0 0.3025 0.243 0.081 0.078 0 0.418 0.232 0.096 0.092 0 0.4525 0.08 0.099 0.094 0 0.7775 0.111 0.077 0.086 0 0.8235 0.2815 0.085 0.093 0 0.439 0.49 0.092 0.09 0 0.5025 0.5985 0.081 0.079 0 0.635 0.6785 0.092 0.099 0 0.8075 0.7265 0.107 0.101 0 0.9625 0.527 0.075 0.076 0 0.9405 0.657 0.083 0.076 0 0.708 0.879 0.066 0.064 0 0.8645 0.85 0.085 0.068 0 0.839 0.89 0.082 0.068 0 0.958 0.9345 0.07 0.075 0 0.8335 0.964 0.083 0.068 0 0.273 0.9355 0.07 0.075 0 0.2705 0.822 0.091 0.082 0 0.1695 0.63 0.075 0.07 0 0.311 0.6875 0.086 0.079 0 0.5985 0.8345 0.071 0.059 0 0.589 0.785 0.07 0.052 0 0.911 0.7355 0.064 0.059 0 0.917 0.8465 0.056 0.051 0 0.534 0.591 0.06 0.056 0 0.5215 0.5345 0.081 0.075 0 0.409 0.4615 0.094 0.091 0 0.3755 0.3895 0.061 0.057 0 0.33 0.4165 0.082 0.079 0 0.2195 0.3915 0.091 0.083 0 0.2675 0.3425 0.091 0.099 0 0.2735 0.1635 0.065 0.063 0 0.361 0.2175 0.076 0.081 0 0.417 0.2595 0.076 0.083 0 0.563 0.1445 0.086 0.077 0 0.576 0.075 0.072 0.062 0 0.7195 0.103 0.077 0.076 0 0.7285 0.155 0.073 0.052 0 0.731 0.2475 0.076 0.071 0 0.8635 0.0295 0.071 0.057 0 0.9615 0.109 0.077 0.088
36%|███▋ | 75/206 [00:04<00:06, 20.72it/s]
0 0.049 0.0505 0.096 0.087 0 0.1325 0.0455 0.071 0.067 0 0.122 0.2955 0.084 0.073 0 0.0865 0.3575 0.097 0.103 0 0.1525 0.3605 0.087 0.093 0 0.1335 0.461 0.107 0.092 0 0.134 0.518 0.104 0.08 0 0.323 0.3915 0.09 0.095 0 0.063 0.6625 0.082 0.079 0 0.043 0.773 0.084 0.08 0 0.119 0.8305 0.086 0.077 0 0.1315 0.7605 0.093 0.079 0 0.2125 0.7475 0.085 0.077 0 0.1965 0.822 0.093 0.076 0 0.3 0.812 0.074 0.062 0 0.574 0.9095 0.076 0.071 0 0.7855 0.4025 0.065 0.071 0 0.9285 0.4155 0.071 0.069 0 0.9555 0.0795 0.071 0.075 0 0.952 0.1495 0.074 0.069 0 0.9545 0.319 0.085 0.088 0 0.8455 0.067 0.081 0.092 0 0.7735 0.1245 0.085 0.087 0 0.607 0.0865 0.08 0.079 0 0.494 0.0815 0.082 0.083 0 0.3895 0.0445 0.077 0.075 0 0.135 0.0905 0.054 0.055 0 0.2565 0.1535 0.095 0.083 0 0.4005 0.1455 0.075 0.071 0 0.055 0.235 0.064 0.062 0 0.287 0.244 0.062 0.056 0 0.2465 0.2985 0.077 0.083 0 0.424 0.241 0.07 0.078 0 0.0425 0.4245 0.059 0.061 0 0.077 0.4995 0.07 0.077 0 0.1695 0.4585 0.079 0.081 0 0.6805 0.267 0.053 0.05 0 0.696
38%|███▊ | 78/206 [00:04<00:06, 20.14it/s]
0.341 0.056 0.06 0 0.728 0.425 0.078 0.074 0 0.6325 0.443 0.071 0.072 0 0.5815 0.582 0.065 0.068 0 0.657 0.6315 0.07 0.067 0 0.756 0.598 0.062 0.066 0 0.958 0.9255 0.056 0.059 0 0.867 0.9175 0.074 0.079 0 0.818 0.8095 0.072 0.075 0 0.6245 0.729 0.069 0.074 0 0.657 0.842 0.064 0.07 0 0.606 0.9175 0.066 0.069 0 0.5125 0.9035 0.077 0.077 0 0.5475 0.788 0.071 0.082 0 0.513 0.7165 0.068 0.065 0 0.4075 0.722 0.081 0.078 0 0.3225 0.7585 0.067 0.073 0 0.4495 0.8435 0.063 0.067 0 0.2715 0.86 0.065 0.07 0 0.2175 0.806 0.065 0.074 0 0.2155 0.9415 0.067 0.081 0 0.1405 0.8925 0.063 0.069 0 0.1365 0.819 0.063 0.066 0 0.0315 0.8575 0.061 0.067 0 0.0315 0.76 0.061 0.072 0 0.221 0.031 0.06 0.058 0 0.1745 0.0585 0.077 0.075 0 0.1435 0.1585 0.069 0.065 0 0.0855 0.233 0.071 0.072 0 0.182 0.1895 0.046 0.053 0 0.298 0.0975 0.078 0.087 0 0.491 0.0815 0.092 0.091 0 0.4485 0.164 0.071 0.076 0 0.285 0.189 0.08 0.076 0 0.352 0.225 0.078 0.08 0 0.2855 0.298 0.067 0.068 0 0.2815 0.371 0.061 0.066 0 0.433 0.351 0.072 0.068 0 0.361 0.4325 0.072 0.071 0 0.1155 0.4615 0.055 0.063 0 0.215 0.4965 0.054 0.055 0 0.0395 0.5605 0.071 0.069 0 0.071 0.6095 0.048 0.051 0 0.4275 0.6125 0.071 0.073 0 0.328 0.895 0.088 0.068 0 0.4225 0.9545 0.095 0.085 0 0.1255 0.2715 0.061 0.061 0 0.241 0.7985 0.092 0.095 0 0.3855 0.6055 0.053 0.059 0 0.4055 0.524 0.061 0.054 0 0.821 0.03 0.068 0.056 0 0.827 0.084 0.056 0.056 0 0.7305 0.1945 0.049 0.059 0 0.8655 0.229 0.069 0.074 0 0.6985 0.531 0.079 0.072 0 0.85 0.56 0.078 0.084 0 0.9625 0.6205 0.075 0.081 0 0.74 0.613 0.076 0.074 0 0.8065 0.672 0.081 0.082 0 0.838 0.765 0.082 0.086 0 0.867 0.8375 0.06 0.075 0 0.8535 0.924 0.065 0.064 0 0.7505 0.7765 0.073 0.083 0 0.586 0.691 0.076 0.082 0 0.1205 0.076 0.067 0.066 0 0.101 0.113 0.068 0.062 0 0.049 0.244 0.072 0.068 0 0.1375 0.2455 0.069 0.063 0 0.1255 0.3195 0.073 0.075 0 0.0585 0.381 0.067 0.066 0 0.1085 0.4655 0.067 0.061 0 0.0385 0.6005 0.073 0.069 0 0.1935 0.3735 0.061 0.065 0 0.24 0.1745 0.064 0.061 0 0.3435 0.166 0.071 0.074 0 0.3805 0.046 0.079 0.072 0 0.467 0.052 0.072 0.072 0 0.4085 0.1185 0.067 0.067 0 0.542 0.074 0.06 0.06 0 0.5095 0.152 0.063 0.056 0 0.64 0.054 0.05 0.054 0 0.931 0.057 0.062 0.068 0 0.836 0.1135 0.058 0.057 0 0.783 0.1905 0.05 0.057 0 0.941 0.2375 0.068 0.057 0 0.6655 0.248 0.059 0.058 0 0.7865 0.3175 0.059 0.063 0 0.907 0.354 0.056 0.06 0 0.8775 0.4215 0.055 0.057 0 0.551 0.329 0.066 0.064 0 0.4365 0.357 0.057 0.058 0 0.5705 0.4365 0.061 0.059 0 0.678 0.42 0.058 0.058 0 0.787 0.487 0.058 0.056 0 0.9665 0.5185 0.059 0.061 0 0.9655 0.5775 0.059 0.063 0 0.805 0.57 0.048 0.046 0 0.815 0.661 0.078 0.072 0 0.7745 0.625 0.055 0.054 0 0.7185 0.6215 0.057 0.053 0 0.643 0.671 0.062 0.058 0 0.4565 0.49 0.047 0.054 0 0.3935 0.462 0.049 0.054 0 0.9445 0.843 0.057 0.06 0 0.939 0.933 0.07 0.066 0 0.828 0.903 0.056 0.048 0 0.789 0.969 0.08 0.062 0 0.7225 0.9175 0.065 0.063 0 0.6715 0.9785 0.069 0.043 0 0.6395 0.9105 0.057 0.057 0 0.5475 0.9025 0.063 0.071 0 0.489 0.862 0.064 0.066 0 0.3745 0.9195 0.077 0.069 0 0.404 0.858 0.074 0.06 0 0.4385 0.799 0.053 0.054 0 0.3725 0.717 0.067 0.064 0 0.285 0.7065 0.06 0.065 0 0.2025 0.707 0.073 0.062 0 0.2055 0.8935 0.067 0.061 0 0.118 0.9145 0.072 0.083 0 0.045 0.876 0.074 0.084 0 0.0415 0.783 0.065 0.07 0 0.125 0.689 0.042 0.042 0 0.9635 0.0375 0.065 0.067 0 0.902 0.102 0.074 0.09 0 0.8155 0.0695 0.071 0.081 0 0.881 0.197 0.08 0.078 0 0.806 0.1895 0.086 0.071 0 0.952 0.34 0.076 0.072 0 0.857 0.295 0.078 0.082 0 0.8135 0.2705 0.071 0.075 0 0.6325 0.271 0.069 0.072 0 0.734 0.305 0.076 0.078 0 0.7655 0.3985 0.061 0.061 0 0.9005 0.5095 0.089 0.083 0 0.9165 0.425 0.057 0.058 0 0.9485 0.666 0.081 0.076 0 0.8605 0.6175 0.081 0.075 0 0.767 0.553 0.084 0.078 0 0.687 0.423 0.072 0.08 0 0.6565 0.521 0.079 0.082 0 0.8975 0.783 0.067 0.062 0 0.8095 0.7155 0.087 0.087 0 0.7275 0.6795 0.079 0.073 0 0.596 0.6055 0.076 0.079 0 0.736 0.886 0.068 0.072 0 0.6425 0.8405 0.063 0.067 0 0.687 0.9705 0.074 0.059 0 0.5925 0.937 0.077 0.08 0 0.516 0.878 0.082 0.08 0 0.445 0.8225 0.08 0.069 0 0.373 0.9095 0.078 0.073 0 0.4775 0.693 0.085 0.102 0 0.574 0.7095 0.074 0.077 0 0.232 0.959 0.074 0.07 0 0.103 0.918 0.068 0.086 0 0.0245 0.8275 0.047 0.055 0 0.079 0.783 0.056 0.066 0 0.1435 0.808 0.081 0.084 0 0.257 0.8585 0.062 0.063 0 0.085 0.64 0.072 0.076 0 0.1665 0.7045 0.073 0.067 0 0.111 0.513 0.062 0.064 0 0.213 0.5895 0.068 0.077 0 0.369 0.537 0.076 0.074 0 0.451 0.508 0.084 0.078 0 0.1795 0.411 0.069 0.07 0 0.139 0.3795 0.07 0.061 0 0.065 0.224 0.084 0.072 0 0.0595 0.1485 0.085 0.075 0 0.2025 0.0615 0.065 0.069 0 0.161 0.147 0.07 0.072 0 0.2235 0.256 0.065 0.078 0 0.2885 0.3395 0.069 0.067 0 0.4465 0.291 0.079 0.072 0 0.33 0.252 0.08 0.076 0 0.2765 0.046 0.071 0.068 0 0.3475 0.046 0.061 0.068 0 0.297 0.1355 0.08 0.077 0 0.3845 0.142 0.065 0.072 0 0.037 0.076 0.066 0.068 0 0.0255 0.149 0.049 0.062 0 0.3055 0.097 0.071 0.07 0 0.874 0.06 0.082 0.078 0 0.692 0.169 0.048 0.06 0 0.647 0.1725 0.066 0.063 0 0.5545 0.1905 0.069 0.053 0 0.53 0.285 0.07 0.068 0 0.7005 0.4025 0.059 0.059 0 0.79 0.543 0.064 0.064 0 0.872 0.561 0.054 0.058 0 0.783 0.63 0.068 0.064 0 0.971 0.8995 0.058 0.065 0 0.7635 0.932 0.059 0.056 0 0.6625 0.768 0.049 0.058 0 0.474 0.6885 0.076 0.085 0 0.3445 0.7895 0.087 0.075 0 0.1645 0.871 0.081 0.078 0 0.034 0.8375 0.062 0.085 0 0.092 0.6135 0.084 0.083 0 0.1945 0.65 0.081 0.072
39%|███▉ | 81/206 [00:05<00:07, 17.04it/s]
0 0.967 0.078 0.066 0.066 0 0.912 0.136 0.068 0.064 0 0.8905 0.2035 0.069 0.065 0 0.9165 0.3285 0.073 0.075 0 0.9105 0.425 0.073 0.066 0 0.83 0.3475 0.07 0.071 0 0.746 0.432 0.07 0.068 0 0.8345 0.507 0.061 0.064 0 0.9235 0.5445 0.075 0.071 0 0.7775 0.5745 0.071 0.065 0 0.754 0.7085 0.06 0.061 0 0.717 0.6675 0.068 0.057 0 0.863 0.8775 0.082 0.067 0 0.8995 0.9255 0.065 0.059 0 0.642 0.9275 0.078 0.067 0 0.675 0.853 0.072 0.062 0 0.2895 0.958 0.057 0.072 0 0.1945 0.974 0.057 0.052 0 0.4255 0.8735 0.049 0.051 0 0.6025 0.74 0.069 0.072 0 0.4085 0.7105 0.073 0.073 0 0.2725 0.6995 0.051 0.049 0 0.448 0.639 0.07 0.07 0 0.289 0.519 0.062 0.056 0 0.3675 0.043 0.067 0.06 0 0.5725 0.059 0.071 0.076 0 0.964 0.051 0.072 0.07 0 0.864 0.096 0.08 0.072 0 0.9485 0.16 0.079 0.082 0 0.9455 0.2275 0.057 0.057 0 0.868
40%|████ | 83/206 [00:05<00:07, 17.11it/s]
0.2705 0.074 0.073 0 0.923 0.466 0.082 0.082 0 0.9185 0.582 0.075 0.08 0 0.831 0.6145 0.07 0.073 0 0.7565 0.597 0.073 0.078 0 0.7085 0.545 0.079 0.066 0 0.616 0.5235 0.072 0.071 0 0.6815 0.399 0.065 0.064 0 0.748 0.332 0.074 0.072 0 0.6665 0.284 0.069 0.084 0 0.666 0.1925 0.076 0.073 0 0.538 0.397 0.068 0.07 0 0.4805 0.2425 0.063 0.061 0 0.449 0.3775 0.074 0.073 0 0.3655 0.36 0.067 0.062 0 0.365 0.2335 0.056 0.057 0 0.334 0.0605 0.062 0.061 0 0.274 0.0885 0.07 0.077 0 0.2235 0.1935 0.085 0.077 0 0.2115 0.0415 0.081 0.073 0 0.1425 0.046 0.061 0.058 0 0.1075 0.432 0.075 0.072 0 0.0915 0.6005 0.065 0.083 0 0.26 0.435 0.062 0.076 0 0.3675 0.5605 0.069 0.079 0 0.2895 0.704 0.085 0.088 0 0.4695 0.701 0.083 0.09 0 0.565 0.706 0.072 0.084 0 0.6485 0.6925 0.069 0.071 0 0.118 0.79 0.078 0.068 0 0.2375 0.8275 0.071 0.067 0 0.096 0.9485 0.084 0.071 0 0.2235 0.951 0.083 0.082 0 0.4835 0.948 0.081 0.074 0 0.5765 0.967 0.079 0.066 0 0.4355 0.782 0.087 0.082 0 0.5145 0.8735 0.053 0.057 0 0.611 0.877 0.08 0.072 0 0.726 0.894 0.076 0.076 0 0.713 0.7835 0.088 0.085 0 0.8085 0.8605 0.075 0.069 0 0.833 0.935 0.07 0.072 0 0.9085 0.9455 0.055 0.057 0 0.9525 0.961 0.067 0.066 0 0.8225 0.935 0.065 0.072 0 0.669 0.946 0.064 0.064 0 0.7285 0.8915 0.075 0.081 0 0.8385 0.8545 0.063 0.073 0 0.847 0.78 0.066 0.07 0 0.749 0.7925 0.076 0.081 0 0.8885 0.71 0.085 0.082 0 0.9215 0.6085 0.081 0.075 0 0.9015 0.4295 0.073 0.069 0 0.819 0.663 0.076 0.082 0 0.9765 0.3215 0.047 0.059 0 0.931 0.341 0.056 0.068 0 0.947 0.19 0.068 0.08 0 0.7915 0.372 0.079 0.08 0 0.7955 0.517 0.079 0.092 0 0.7365 0.621 0.077 0.08 0 0.667 0.736 0.072 0.082 0 0.594 0.816 0.072 0.068 0 0.24 0.9265 0.08 0.083 0 0.146 0.86 0.076 0.076 0 0.1625 0.7605 0.079 0.077 0 0.276 0.725 0.068 0.07 0 0.0815 0.6965 0.079 0.067 0 0.392 0.5535 0.06 0.069 0 0.47 0.4515 0.088 0.079 0 0.591 0.376 0.068 0.068 0 0.635 0.3155 0.066 0.051 0 0.6715 0.166 0.065 0.054 0 0.652 0.1035 0.09 0.079 0 0.717 0.029 0.074 0.05 0 0.3725 0.3285 0.083 0.071 0 0.25 0.283 0.068 0.062 0 0.157 0.268 0.07 0.058 0 0.073 0.126 0.078 0.074 0 0.0375 0.2355 0.069 0.079 0 0.3065 0.034 0.071 0.064 0 0.2615 0.1225 0.071 0.079 0 0.2175 0.237 0.075 0.076 0 0.1525 0.3425 0.073 0.085 0 0.102 0.4805 0.076 0.093 0 0.0625 0.582 0.079 0.078 0 0.033 0.683 0.064 0.072 0 0.407 0.064 0.044 0.052 0 0.38 0.168 0.068 0.078 0 0.3345 0.2705 0.073 0.083 0 0.293 0.3715 0.082 0.085 0 0.248 0.502 0.08 0.09 0 0.247 0.632 0.07 0.074 0 0.2045 0.7165 0.077 0.085 0 0.1555 0.8045 0.069 0.055 0 0.108 0.876 0.076 0.07 0 0.5395 0.0975 0.085 0.077 0 0.514 0.194 0.058 0.058 0 0.4325 0.4085 0.085 0.093 0 0.367 0.5335 0.082 0.081 0 0.3345 0.688 0.083 0.086 0 0.351 0.7905 0.078 0.073 0 0.2965 0.8995 0.069 0.063 0 0.4345 0.813 0.065 0.072 0 0.432 0.679 0.082 0.09 0 0.519 0.508 0.078 0.088 0 0.492 0.964 0.088 0.066 0 0.6575 0.9085 0.087 0.083 0 0.6945 0.161 0.063 0.056 0 0.6185 0.285 0.077 0.066 0 0.7125 0.415 0.079 0.082 0 0.826 0.1345 0.082 0.083 0 0.7985 0.2275 0.071 0.077 0 0.9425 0.178 0.087 0.088 0 0.959 0.06 0.072 0.066 0 0.929 0.2675 0.084 0.083 0 0.8545 0.4715 0.065 0.067 0 0.9615 0.4665 0.077 0.087 0 0.8115 0.587 0.079 0.078 0 0.9385 0.5825 0.085 0.077 0 0.9505 0.764 0.079 0.076 0 0.8235 0.8055 0.081 0.073 0 0.8835 0.894 0.067 0.064 0 0.972 0.969 0.054 0.062
41%|████▏ | 85/206 [00:05<00:07, 16.99it/s]
0 0.082 0.0395 0.074 0.069 0 0.1835 0.0885 0.085 0.081 0 0.0705 0.2025 0.083 0.083 0 0.0945 0.27 0.057 0.056 0 0.206 0.286 0.072 0.074 0 0.31 0.115 0.084 0.082 0 0.4475 0.054 0.079 0.076 0 0.562 0.03 0.066 0.058 0 0.949 0.0555 0.072 0.081 0 0.8865 0.142 0.067 0.062 0 0.699 0.192 0.074 0.066 0 0.6215 0.2385 0.053 0.065 0 0.562 0.2365 0.076 0.079 0 0.851 0.2485 0.062 0.063 0 0.968 0.3005 0.064 0.073 0 0.8185 0.3225 0.081 0.067 0 0.6275 0.3865 0.063 0.071 0 0.755 0.598 0.068 0.072 0 0.803 0.7595 0.078 0.085 0 0.5705 0.797 0.075 0.084 0 0.59 0.942 0.076 0.068 0 0.3965 0.976 0.061 0.048 0 0.155 0.846 0.066 0.066 0 0.1815 0.598 0.065 0.064 0 0.288
42%|████▏ | 87/206 [00:05<00:06, 17.29it/s]
0.6 0.064 0.064 0 0.3745 0.629 0.055 0.068 0 0.34 0.5135 0.064 0.069 0 0.4345 0.554 0.063 0.064 0 0.615 0.5375 0.068 0.063 0 0.551 0.537 0.078 0.064 0 0.36 0.4225 0.062 0.059 0 0.3305 0.376 0.049 0.042 0 0.0375 0.5565 0.069 0.075 0 0.09 0.4385 0.058 0.055 0 0.9675 0.424 0.065 0.084 0 0.919 0.52 0.076 0.08 0 0.9545 0.6845 0.073 0.073 0 0.901 0.788 0.076 0.082 0 0.943 0.9695 0.076 0.061 0 0.741 0.843 0.078 0.07 0 0.794 0.7295 0.082 0.077 0 0.8245 0.6275 0.089 0.079 0 0.8705 0.369 0.081 0.08 0 0.818 0.4725 0.078 0.081 0 0.7575 0.5585 0.071 0.069 0 0.6995 0.6545 0.075 0.075 0 0.631 0.776 0.068 0.068 0 0.762 0.2925 0.092 0.091 0 0.7045 0.3925 0.091 0.085 0 0.5995 0.598 0.077 0.074 0 0.537 0.708 0.076 0.08 0 0.493 0.8005 0.074 0.077 0 0.4305 0.919 0.079 0.078 0 0.325 0.9275 0.074 0.089 0 0.3865 0.7905 0.077 0.079 0 0.3685 0.652 0.075 0.076 0 0.6105 0.332 0.063 0.072 0 0.335 0.5355 0.074 0.075 0 0.2995 0.4205 0.077 0.079 0 0.3065 0.293 0.067 0.072 0 0.398 0.1195 0.074 0.079 0 0.4285 0.083 0.059 0.064 0 0.2875 0.06 0.061 0.062 0 0.287 0.145 0.066 0.064 0 0.188 0.1095 0.074 0.077 0 0.064 0.039 0.088 0.076 0 0.157 0.189 0.092 0.09 0 0.2365 0.25 0.077 0.08 0 0.1305 0.389 0.083 0.08 0 0.041 0.5945 0.08 0.087 0 0.1385 0.704 0.085 0.084 0 0.2505 0.672 0.059 0.068 0 0.2255 0.7585 0.073 0.075 0 0.1715 0.8105 0.075 0.071 0 0.2725 0.8625 0.069 0.075 0 0.208 0.904 0.068 0.074 0 0.107 0.9375 0.08 0.077 0 0.9575 0.852 0.069 0.068 0 0.763 0.9615 0.09 0.069 0 0.682 0.9515 0.068 0.073 0 0.811 0.87 0.07 0.064 0 0.837 0.7795 0.078 0.083 0 0.963 0.7785 0.074 0.079 0 0.857 0.7145 0.05 0.043 0 0.904 0.6255 0.078 0.087 0 0.9645 0.5845 0.071 0.093 0 0.8695 0.5555 0.073 0.067 0 0.914 0.473 0.088 0.066 0 0.966 0.405 0.068 0.072 0 0.872 0.3065 0.076 0.075 0 0.9235 0.0865 0.079 0.073 0 0.816 0.138 0.084 0.094 0 0.7875 0.2455 0.075 0.075 0 0.7205 0.182 0.071 0.068 0 0.7275 0.29 0.059 0.064 0 0.6745 0.38 0.069 0.072 0 0.7885 0.5035 0.085 0.091 0 0.7755 0.5945 0.087 0.075 0 0.781 0.6555 0.08 0.057 0 0.7445 0.7295 0.081 0.079 0 0.716 0.8305 0.064 0.063 0 0.5285 0.961 0.073 0.07 0 0.6095 0.794 0.077 0.076 0 0.66 0.642 0.08 0.082 0 0.415 0.87 0.082 0.08 0 0.4835 0.829 0.073 0.078 0 0.5185 0.708 0.091 0.088 0 0.57 0.618 0.092 0.082 0 0.654 0.3 0.078 0.082 0 0.2055 0.961 0.081 0.076 0 0.347 0.8135 0.082 0.081 0 0.402 0.726 0.076 0.082 0 0.452 0.65 0.082 0.088 0 0.479 0.478 0.086 0.08 0 0.533 0.371 0.07 0.07 0 0.591 0.2295 0.066 0.061 0 0.5945 0.166 0.071 0.064 0 0.595 0.088 0.074 0.074 0 0.5125 0.1095 0.075 0.069 0 0.4105 0.1215 0.061 0.059 0 0.1175 0.072 0.061 0.06 0 0.1345 0.1955 0.071 0.075 0 0.041 0.2395 0.076 0.089 0 0.0805 0.41 0.065 0.066 0 0.257 0.38 0.084 0.064 0 0.4545 0.308 0.071 0.07 0 0.395 0.3795 0.066 0.065 0 0.03 0.4595 0.058 0.061 0 0.0555 0.542 0.073 0.076 0 0.2525 0.445 0.075 0.072 0 0.3375 0.4555 0.063 0.067 0 0.2945 0.6245 0.063 0.071 0 0.1915 0.568 0.093 0.086 0 0.1555 0.691 0.095 0.086 0 0.03 0.7005 0.058 0.075 0 0.0925 0.7565 0.067 0.075 0 0.1515 0.8565 0.075 0.085 0 0.2285 0.859 0.073 0.072 0 0.0445 0.088 0.083 0.092 0 0.112 0.2055 0.082 0.075 0 0.201 0.2385 0.084 0.083 0 0.1545 0.3195 0.089 0.083 0 0.2735 0.3145 0.091 0.083 0 0.2125 0.395 0.097 0.086 0 0.0855 0.441 0.101 0.1 0 0.083 0.5255 0.082 0.073 0 0.132 0.587 0.1 0.092 0 0.1105 0.6905
43%|████▎ | 89/206 [00:05<00:07, 14.81it/s]
0.095 0.081 0 0.107 0.7925 0.09 0.087 0 0.067 0.8725 0.076 0.067 0 0.139 0.914 0.09 0.07 0 0.204 0.778 0.076 0.072 0 0.2525 0.957 0.097 0.082 0 0.344 0.9225 0.078 0.073 0 0.408 0.9655 0.068 0.055 0 0.452 0.913 0.078 0.084 0 0.397 0.8275 0.092 0.089 0 0.3715 0.705 0.079 0.09 0 0.3295 0.609 0.083 0.082 0 0.252 0.481 0.082 0.072 0 0.3315 0.4245 0.093 0.097 0 0.438 0.446 0.086 0.076 0 0.445 0.551 0.106 0.09 0 0.4905 0.6645 0.089 0.075 0 0.5695 0.656 0.063 0.064 0 0.5755 0.6 0.085 0.056 0 0.6425 0.664 0.069 0.064 0 0.5885 0.5055 0.089 0.075 0 0.6775 0.5915 0.079 0.067 0 0.3935 0.1665 0.081 0.079 0 0.6905 0.0705 0.083 0.075 0 0.778 0.048 0.076 0.076 0 0.858 0.1235 0.06 0.061 0 0.6225 0.278 0.065 0.06 0 0.641 0.3715 0.076 0.071 0 0.656 0.451 0.064 0.056 0 0.968 0.468 0.064 0.072 0 0.7365 0.7165 0.069 0.067 0 0.7415 0.794 0.061 0.074 0 0.93 0.9595 0.078 0.067 0 0.102 0.0845 0.078 0.073 0 0.3355 0.0295 0.065 0.057 0 0.067 0.5445 0.068 0.073 0 0.1785 0.7885 0.107 0.113 0 0.18 0.902 0.104 0.086 0 0.42 0.848 0.108 0.102 0 0.4645 0.428 0.119 0.11 0 0.481 0.261 0.096 0.078 0 0.6415 0.1965 0.077 0.067 0 0.6615 0.042 0.075 0.064 0 0.7135 0.1175 0.063 0.057 0 0.7535 0.0515 0.097 0.095 0 0.8375 0.047 0.109 0.092 0 0.7595 0.2235 0.097 0.097 0 0.9045 0.1645 0.073 0.065 0 0.886 0.223 0.066 0.064 0 0.8465 0.5435 0.105 0.107 0 0.884 0.6205 0.114 0.083 0 0.747 0.6565 0.104 0.109 0 0.783 0.7905 0.064 0.063 0 0.764 0.834 0.11 0.088 0 0.507 0.1575 0.118 0.115 0 0.3685 0.2195 0.117 0.113 0 0.123 0.4195 0.102 0.105 0 0.1185 0.5145 0.095 0.097 0 0.211 0.4365 0.084 0.089 0 0.2865 0.36 0.101 0.104 0 0.4 0.3725 0.084 0.083 0 0.4975 0.3945 0.097 0.091 0 0.624 0.2535 0.108 0.089 0 0.512 0.5235 0.126 0.123 0 0.7335 0.312 0.105 0.098 0 0.1275 0.6825 0.113 0.117 0 0.136 0.843 0.098 0.086 0 0.2405 0.8585 0.109 0.097 0 0.2965 0.6935 0.101 0.101 0 0.449 0.6945 0.11 0.111 0 0.4185 0.802 0.111 0.1 0 0.351 0.8595 0.108 0.099 0 0.3115 0.9195 0.085 0.075 0 0.4205 0.914 0.107 0.102 0 0.593 0.939 0.084 0.08 0 0.7305 0.7485 0.097 0.093 0 0.929 0.6045 0.122 0.123 0 0.952 0.7305 0.096 0.105 0 0.0845 0.1325 0.071 0.073 0 0.0415 0.21 0.073 0.078 0 0.122 0.2435 0.076 0.079 0 0.068 0.343 0.084 0.086 0 0.101 0.455 0.074 0.072 0 0.0585 0.584 0.067 0.068 0 0.13 0.6205 0.08 0.085 0 0.0605 0.7035 0.079 0.089 0 0.133 0.711 0.098 0.094 0 0.114 0.8165 0.086 0.087 0 0.327 0.7235 0.1 0.101 0 0.391 0.591 0.086 0.088 0 0.216 0.4545 0.088 0.089 0 0.2865 0.114 0.067 0.064 0 0.381 0.22 0.094 0.086 0 0.3695 0.329 0.101 0.092 0 0.418 0.4495 0.098 0.099 0 0.505
45%|████▍ | 92/206 [00:05<00:06, 17.19it/s]
0.367 0.096 0.088 0 0.5775 0.298 0.073 0.066 0 0.5785 0.232 0.069 0.064 0 0.466 0.047 0.108 0.092 0 0.6805 0.127 0.067 0.068 0 0.7645 0.132 0.069 0.062 0 0.794 0.325 0.078 0.072 0 0.6635 0.6835 0.087 0.091 0 0.1845 0.081 0.087
46%|████▌ | 95/206 [00:05<00:05, 19.43it/s]
0.07 0 0.253 0.0325 0.086 0.063 0 0.3045 0.135 0.113 0.106 0 0.3625 0.08 0.063 0.064 0 0.446 0.1185 0.104 0.095 0 0.4445 0.0315 0.071 0.061 0 0.5675 0.047 0.073 0.066 0 0.6315 0.14 0.099 0.1 0 0.7905 0.127 0.115 0.116 0 0.4405 0.323 0.095 0.096 0 0.5665 0.279 0.083 0.08 0 0.663 0.2615 0.088 0.073 0 0.671 0.3525 0.098 0.093 0 0.786 0.3265 0.098 0.101 0 0.5955 0.443 0.099 0.094 0 0.7895 0.443 0.111 0.108 0 0.9055 0.422 0.083 0.078 0 0.903 0.2215 0.07 0.057 0 0.889 0.278 0.058 0.058 0 0.648 0.5225 0.096 0.089 0 0.8505 0.5235 0.091 0.079 0 0.7575 0.606 0.095 0.086 0 0.87 0.6095 0.078 0.075 0 0.235 0.587 0.102 0.09 0 0.124 0.692 0.108 0.104 0 0.267 0.697 0.116 0.114 0 0.42 0.7105 0.09 0.095 0 0.4975 0.7095 0.081 0.085 0 0.607 0.668 0.106 0.092 0 0.6105 0.7665 0.101 0.095 0 0.7405 0.744 0.099 0.098 0 0.8475 0.716 0.103 0.102 0 0.958 0.7395 0.084 0.115 0 0.959 0.8425 0.082 0.085 0 0.859 0.8495 0.098 0.101 0 0.7235 0.869 0.117 0.11 0 0.816 0.953 0.092 0.086 0 0.2825 0.816 0.105 0.106 0 0.373 0.8425 0.096 0.095 0 0.451 0.9095 0.092 0.077 0 0.356 0.945 0.098 0.1 0 0.184 0.1695 0.102 0.093 0 0.126 0.38 0.072 0.074 0 0.138 0.4755 0.072 0.073 0 0.2625 0.3035 0.081 0.079 0 0.2715 0.422 0.051 0.06 0 0.114 0.661 0.074 0.076 0 0.2725 0.637 0.095 0.09 0 0.35 0.547 0.092 0.096 0 0.542 0.5275 0.058 0.053 0 0.431 0.666 0.076 0.084 0 0.3545 0.7145 0.059 0.057 0 0.192 0.812 0.078 0.07 0 0.3205 0.922 0.091 0.092 0 0.466 0.936 0.066 0.07 0 0.517 0.7995 0.064 0.067 0 0.563 0.664 0.09 0.084 0 0.459 0.188 0.084 0.088 0 0.5385 0.192 0.093 0.114 0 0.662 0.223 0.106 0.104 0 0.7235 0.1595 0.093 0.091 0 0.899 0.171 0.092 0.094 0 0.076 0.061 0.112 0.112 0 0.228 0.0435 0.136 0.085 0 0.1675 0.1135 0.117 0.115 0 0.102 0.196 0.118 0.108 0 0.0515 0.351 0.099 0.114 0 0.202 0.2755 0.114 0.115 0 0.2895 0.211 0.117 0.11 0 0.2885 0.1015 0.115 0.099 0 0.394 0.049 0.13 0.096 0 0.4 0.15 0.11 0.104 0 0.5355 0.035 0.081 0.068 0 0.5175 0.1175 0.117 0.111 0 0.4925 0.2115 0.101 0.099 0 0.3625 0.3615 0.107 0.107 0 0.495 0.3585 0.104 0.101 0 0.644 0.345 0.096 0.088 0 0.233 0.6535 0.1 0.091 0 0.0615 0.9435 0.107 0.099 0 0.3325 0.907 0.117 0.134 0 0.1365 0.256 0.099 0.092 0 0.3215 0.32 0.117 0.118 0 0.5125 0.384 0.085 0.078 0 0.609 0.1525 0.082 0.079 0 0.808 0.1405 0.092 0.079 0 0.838 0.054 0.106 0.1 0 0.9465 0.064 0.099 0.11 0 0.886 0.3905 0.102 0.113 0 0.914 0.647 0.112 0.132 0 0.585 0.756 0.126 0.116 0 0.456 0.744 0.068 0.064 0 0.3345 0.7245 0.113 0.119 0 0.1965 0.5575 0.069 0.069 0 0.207 0.6795 0.072 0.065 0 0.2085 0.8285 0.083 0.077 0 0.051 0.8185 0.094 0.079 0 0.811 0.1875 0.094 0.095 0 0.733 0.234 0.1 0.088 0 0.89 0.2565 0.088 0.087 0 0.9525 0.327 0.089 0.096 0 0.8845 0.3915 0.099 0.107 0 0.7885 0.362 0.093 0.094 0 0.626 0.276 0.072 0.072 0 0.5335 0.1915 0.081 0.081 0 0.363 0.3215 0.084 0.071 0 0.624 0.4105 0.1 0.103 0 0.6425 0.4805 0.087 0.077 0 0.502 0.461 0.1 0.096 0 0.552 0.533 0.094 0.08 0 0.7395 0.5065 0.077 0.079 0 0.842 0.4785 0.096 0.089 0 0.8875 0.598 0.089 0.084 0 0.472 0.6615 0.074 0.075 0 0.76 0.6155 0.07 0.079 0 0.3275 0.0585 0.087 0.079 0 0.175 0.129 0.078 0.08 0 0.071 0.2915 0.078 0.087 0 0.3105 0.252 0.123 0.126 0 0.6625 0.2355 0.119 0.119 0 0.9535 0.105 0.077 0.088 0 0.9455 0.214 0.109 0.112 0 0.6875 0.3935 0.111 0.105 0 0.7305 0.6565 0.113 0.113 0 0.646 0.7115 0.116 0.119 0 0.677 0.8175 0.082 0.079 0 0.399 0.899 0.1 0.104 0 0.244 0.738 0.08 0.068 0 0.916 0.734 0.088 0.092 0 0.061 0.5975 0.1 0.103 0 0.0455 0.7345 0.089 0.123 0 0.196 0.7085 0.084 0.091 0 0.033 0.843 0.06 0.076 0 0.39 0.7235 0.118 0.119 0 0.304 0.785 0.084 0.078 0 0.52 0.843 0.118 0.116 0 0.618 0.9035 0.122 0.121 0 0.6845 0.5895 0.105 0.109 0 0.841 0.6685 0.08 0.081 0 0.929 0.686 0.09 0.088 0 0.8865 0.81 0.091 0.092 0 0.941 0.946 0.11 0.098 0 0.854 0.965 0.098 0.07 0 0.6705 0.302 0.075 0.072 0 0.763 0.2365 0.082 0.075 0 0.8935 0.221 0.081 0.086 0 0.9285 0.369 0.093 0.086
48%|████▊ | 99/206 [00:05<00:04, 24.20it/s]
0 0.0865 0.0825 0.079 0.079 0 0.2025 0.1405 0.069 0.077 0 0.2005 0.21 0.073 0.064 0 0.545 0.0435 0.098 0.083 0 0.465 0.115 0.092 0.092 0 0.5635 0.1345 0.095 0.097 0 0.463 0.222 0.112 0.114 0 0.5685 0.2745 0.063 0.071 0 0.4535 0.3265 0.075 0.071 0 0.075 0.3925 0.088 0.091 0 0.082 0.5225 0.098 0.093 0 0.1415 0.4795 0.083 0.079 0 0.279 0.4155 0.092 0.085 0 0.371 0.4065 0.088 0.097 0 0.4665 0.411 0.101 0.092 0 0.5545 0.38 0.091 0.104 0 0.7675 0.043 0.075 0.082 0 0.721 0.162 0.092 0.094 0 0.808 0.163 0.1 0.098 0 0.9055 0.165 0.081 0.082 0 0.9605 0.08 0.079 0.094 0 0.898 0.273 0.096 0.114 0 0.7955 0.2565 0.095 0.085 0 0.764 0.3445 0.096 0.089 0 0.8645 0.393 0.113 0.098 0 0.629 0.4435 0.084 0.083 0 0.7135 0.436 0.083 0.084 0 0.766 0.493 0.104 0.104 0 0.899 0.5205 0.078 0.081 0 0.9165 0.6165 0.083 0.083 0 0.8115 0.6065 0.091 0.085 0 0.603 0.538 0.1 0.104 0 0.4925 0.4975 0.105 0.095 0 0.4935 0.5955 0.101 0.089 0 0.4225 0.584 0.063 0.082 0 0.3595 0.4925 0.115 0.093 0 0.2365 0.502 0.079 0.078 0 0.3475 0.581 0.103 0.082 0 0.36 0.6635 0.096 0.085 0 0.161 0.608 0.088 0.086 0 0.072 0.6115 0.09 0.087 0 0.12 0.711 0.084 0.072 0 0.2185 0.6965 0.083 0.095 0 0.2895 0.712 0.091 0.088 0 0.313 0.798 0.104 0.08 0 0.328 0.888 0.088 0.092 0 0.0745 0.9325 0.057 0.061 0 0.458 0.839 0.092 0.094 0 0.46 0.712 0.104 0.106 0 0.598 0.672 0.096 0.092 0 0.5825 0.7705 0.099 0.093 0 0.541 0.873 0.066 0.068 0 0.6265 0.8925 0.099 0.101 0 0.6795 0.832 0.079 0.086 0 0.7125 0.7095 0.089 0.099 0 0.7885 0.7385 0.091 0.089 0 0.7545 0.8305 0.093 0.093 0 0.8695 0.9595 0.103 0.081 0 0.879 0.8225 0.068 0.073 0 0.9035 0.7325 0.085 0.077 0 0.167 0.052 0.108 0.096 0 0.043 0.184 0.082 0.096 0 0.146 0.134 0.084 0.07 0 0.2705 0.1315 0.081 0.069 0 0.3705 0.112 0.089 0.096 0 0.503 0.083 0.08 0.082 0 0.13 0.2885 0.09 0.081 0 0.0385 0.298 0.075 0.09 0 0.1455 0.3915 0.081 0.089 0 0.199 0.503 0.098 0.09 0 0.1195 0.493 0.079 0.084 0 0.051 0.546 0.086 0.09 0 0.1335 0.5995 0.091 0.089 0 0.0425 0.763 0.069 0.074 0 0.048 0.8465 0.076 0.079 0 0.171 0.7185 0.092 0.089 0 0.3105 0.4855 0.081 0.083 0 0.329 0.575 0.092 0.1 0 0.2815 0.6485 0.099 0.099 0 0.229 0.831 0.082 0.076 0 0.312 0.902 0.076 0.068 0 0.354 0.8135 0.076 0.083 0 0.3655 0.7115 0.089 0.097 0 0.4475 0.7385 0.081 0.083 0 0.6355 0.8855 0.083 0.077 0 0.4215 0.547 0.075 0.074 0 0.329 0.3615 0.06 0.065 0 0.311 0.2165 0.074 0.071 0 0.46 0.359 0.088 0.074 0 0.477 0.1765 0.072 0.065 0 0.5405 0.2495 0.087 0.077 0 0.5855 0.19 0.081 0.076 0 0.845 0.351 0.092 0.098 0 0.9585 0.3505 0.083 0.087 0 0.942 0.4745 0.082 0.079 0 0.931 0.5525 0.08 0.073 0 0.956 0.8535 0.088 0.085 0 0.89 0.0365 0.094 0.071 0 0.8885 0.15 0.093 0.104 0 0.8815 0.231 0.091 0.084 0 0.885 0.294 0.096 0.076 0 0.794 0.203 0.082 0.088 0 0.803 0.0835 0.076 0.083 0 0.687 0.466 0.076 0.082 0 0.921 0.683 0.106 0.1 0 0.618 0.5955 0.104 0.097 0 0.5585 0.6645 0.091 0.083 0 0.597 0.7545 0.098 0.091 0 0.591 0.852 0.09 0.09 0 0.425 0.6785 0.092 0.087 0 0.1595 0.486 0.099 0.096 0 0.0355 0.6495 0.065 0.087 0 0.0725 0.716 0.095 0.094 0 0.047 0.806 0.072 0.07 0 0.151 0.697 0.08 0.09 0 0.1955 0.6625 0.065 0.069 0 0.2905 0.645 0.081 0.08 0 0.164 0.795 0.11 0.098 0 0.2275 0.858 0.097 0.092 0 0.146 0.8935 0.088 0.091
50%|████▉ | 102/206 [00:06<00:04, 22.04it/s]
0 0.0425 0.1495 0.077 0.081 0 0.043 0.244 0.082 0.102 0 0.112 0.236 0.098 0.106 0 0.131 0.15 0.094 0.092 0 0.22 0.211 0.114 0.12 0 0.3 0.1465 0.11 0.123 0 0.409 0.1165 0.1 0.091 0 0.1845 0.356 0.093 0.088 0 0.182 0.4625 0.076 0.075 0 0.2145 0.566 0.055 0.056 0 0.089 0.6905 0.08 0.085 0 0.185 0.693 0.106 0.104 0 0.376 0.707 0.08 0.084 0 0.4585 0.5495 0.103 0.117 0 0.548 0.546 0.094 0.108 0 0.5455 0.672 0.105 0.098 0 0.64 0.585 0.088 0.09 0 0.66 0.686 0.104 0.096 0 0.705 0.7705 0.074 0.077 0 0.756 0.7325 0.094 0.095 0 0.803 0.639 0.116 0.114 0 0.2095 0.9225 0.089 0.087 0 0.5365 0.443 0.093 0.098 0 0.575 0.3695 0.092 0.085 0 0.5815 0.2855 0.097 0.087 0 0.783 0.271 0.084 0.09 0 0.8255 0.3825 0.083 0.087
51%|█████ | 105/206 [00:06<00:04, 22.35it/s]
0 0.077 0.8155 0.11 0.087 0 0.218 0.734 0.102 0.098 0 0.214 0.9085 0.092 0.093 0 0.2055 0.833 0.079 0.07 0 0.383 0.8055 0.11 0.097 0 0.368 0.902 0.102 0.094 0 0.469 0.9165 0.11 0.113 0 0.5285 0.761 0.101 0.096 0 0.5665 0.6375 0.091 0.087 0 0.6885 0.813 0.093 0.102 0 0.836 0.9355 0.08 0.081 0 0.891 0.7465 0.084 0.083 0 0.728 0.4095 0.086 0.081 0 0.876 0.5445 0.058 0.063 0 0.713 0.1285 0.076 0.075 0 0.097 0.304 0.074 0.078 0 0.2215 0.351 0.095 0.108 0 0.297 0.313 0.088 0.094 0 0.3635 0.2525 0.079 0.079 0 0.3885 0.323 0.095 0.09 0 0.486 0.3385 0.084 0.091 0 0.5775 0.354 0.079 0.074 0 0.155 0.485 0.114 0.098 0 0.242 0.5205 0.088 0.089 0 0.0935 0.573 0.095 0.086 0 0.173 0.6095 0.088 0.091 0 0.2675 0.6115 0.097 0.103 0 0.3485 0.568 0.089 0.094 0 0.4085 0.4325 0.097 0.097 0 0.4865 0.445 0.081 0.104 0 0.5415 0.471 0.089 0.084 0 0.5025 0.563 0.089 0.094 0 0.5965 0.5585 0.101 0.099 0 0.962 0.3905 0.074 0.095 0 0.851 0.437 0.102 0.104 0 0.7695 0.445 0.079 0.088 0 0.7545 0.5365 0.085 0.079 0 0.955 0.5055 0.074 0.065 0 0.953 0.623 0.088 0.09 0 0.86 0.709 0.096 0.094 0 0.415 0.6435 0.088 0.089 0 0.4965 0.683 0.091 0.09 0 0.152 0.8075 0.07 0.077 0 0.145 0.876 0.064 0.066 0 0.1425 0.954 0.067 0.072 0 0.202 0.92 0.072 0.074 0 0.2825 0.7675 0.091 0.081 0 0.3835 0.8485 0.085 0.079 0 0.395 0.948 0.084 0.08 0 0.484 0.933 0.086 0.094 0 0.5535 0.8325 0.093 0.089 0 0.574 0.902 0.072 0.068 0 0.6575 0.8715 0.081 0.081 0 0.728 0.952 0.086 0.076 0 0.884 0.9465 0.098 0.095 0 0.712 0.8065 0.082 0.079 0 0.679 0.744 0.078 0.074 0 0.1765 0.063 0.079 0.078 0 0.116 0.143 0.1 0.1 0 0.0535 0.205 0.093 0.086 0 0.107 0.2695 0.074 0.059 0 0.1515 0.356 0.085 0.088 0 0.249 0.3705 0.1 0.107 0 0.1695 0.4745 0.091 0.089 0 0.1495 0.585 0.089 0.092 0 0.034 0.6745 0.066 0.077 0 0.035 0.746 0.068 0.068 0 0.127 0.745 0.086 0.09 0 0.138 0.8365 0.104 0.103 0 0.2295 0.875 0.103 0.098 0 0.211 0.696 0.082 0.08 0 0.3765 0.7235 0.089 0.089 0 0.439 0.781 0.08 0.072 0 0.5375 0.78 0.119 0.118 0 0.402 0.6235 0.09 0.075 0 0.4465 0.5595 0.093 0.085 0 0.5225 0.543 0.075 0.074 0 0.3235 0.4435 0.085 0.077 0 0.4205 0.471 0.083 0.078 0 0.209 0.227 0.084 0.072 0 0.261 0.1815 0.088 0.091 0 0.2715 0.102 0.075 0.066 0 0.3795 0.0535 0.097 0.093 0 0.3305 0.2425 0.103 0.103 0 0.442 0.1345 0.098 0.089 0 0.4335 0.286 0.069 0.072 0 0.5365 0.245 0.063 0.072 0 0.717 0.14 0.062 0.064 0 0.823 0.061 0.128 0.12 0 0.819 0.145 0.094 0.082 0 0.7455 0.25 0.085 0.086 0 0.588 0.308 0.096 0.084 0 0.629 0.39 0.082 0.084 0 0.7325 0.399 0.089 0.082 0 0.812 0.356 0.094 0.082 0 0.8925 0.309 0.083 0.074 0 0.641 0.5355 0.088 0.085 0 0.695 0.612 0.102 0.098 0 0.8155 0.485 0.077 0.078 0 0.8525 0.5825 0.069 0.073 0 0.6075 0.6935 0.083 0.091 0 0.6955 0.76 0.095 0.104 0 0.772 0.7455 0.086 0.081 0 0.836 0.845 0.09 0.096 0 0.932 0.831 0.092 0.09 0 0.8625 0.756 0.073 0.074 0 0.086 0.14 0.09 0.108 0 0.1485 0.184 0.083 0.088 0 0.0465 0.4715 0.079 0.101 0 0.126 0.4655 0.092 0.087 0 0.0355 0.6185 0.069 0.101 0 0.0805 0.7205 0.091 0.089 0 0.1915 0.732 0.075 0.072 0 0.2745 0.639 0.105 0.088 0 0.2815 0.748 0.099 0.102 0 0.133 0.899 0.104 0.104 0 0.226 0.855 0.066 0.06 0 0.229 0.931 0.09 0.09 0 0.3485 0.8385 0.079 0.087 0 0.344 0.957 0.072 0.072 0 0.4185 0.9245 0.071 0.065 0 0.5095 0.9605 0.103 0.071 0 0.552 0.8845 0.088 0.091 0 0.616 0.9535 0.11 0.093 0 0.525 0.565 0.106 0.102 0 0.5405 0.4365 0.077 0.075 0 0.648 0.221 0.128 0.124 0 0.8425 0.4725 0.117 0.113 0 0.8175 0.548 0.097 0.092 0 0.654 0.7775
52%|█████▏ | 108/206 [00:06<00:05, 18.12it/s]
0.102 0.101 0 0.7895 0.9165 0.081 0.079 0 0.8625 0.832 0.097 0.112 0 0.097 0.0765 0.09 0.081 0 0.1235 0.1535 0.107 0.077 0 0.205 0.107 0.08 0.084 0 0.2665 0.051 0.105 0.1 0 0.3605 0.082 0.095 0.098 0 0.296 0.1625 0.09 0.083 0 0.1955 0.2495 0.103 0.099 0 0.1905 0.3535 0.099 0.089 0 0.1695 0.4015 0.097 0.077 0 0.1645 0.5095 0.105 0.115 0 0.2285 0.5365 0.071 0.073 0 0.291 0.473 0.106 0.114 0 0.3225 0.348 0.115 0.112 0 0.588 0.063 0.088 0.078 0 0.678 0.1045 0.112 0.119 0 0.5465 0.1755 0.087 0.093 0 0.525 0.2935 0.098 0.091 0 0.588 0.3515 0.086 0.087 0 0.5095 0.381 0.095 0.1 0 0.4885 0.5175 0.081 0.075 0 0.5665 0.4705 0.065 0.063 0 0.703 0.239 0.124 0.114 0 0.69 0.4145 0.084 0.075 0 0.705 0.485 0.082 0.082 0 0.7915 0.108 0.111 0.104 0 0.847 0.2445 0.106 0.113 0 0.9465 0.25 0.087 0.086 0 0.9485 0.4005 0.083 0.089 0 0.809 0.4975 0.1 0.093 0 0.9265 0.5545 0.117 0.117 0 0.8205 0.5935 0.107 0.105 0 0.9095 0.6495 0.091 0.089 0 0.8945 0.738 0.095 0.106 0 0.8005 0.662 0.085 0.072 0 0.775 0.718 0.092 0.094 0 0.7365 0.776 0.111 0.094 0 0.9485 0.8455 0.087 0.089 0 0.9115 0.91 0.103 0.108 0 0.8235 0.962 0.087 0.076 0 0.771 0.865 0.088 0.082 0 0.6915 0.8345 0.085 0.087 0 0.712 0.9205 0.102 0.113 0 0.6185 0.8805 0.077 0.071 0 0.569 0.9415 0.104 0.107 0 0.371 0.9335 0.094 0.097 0 0.424 0.8895 0.094 0.093 0 0.5065 0.8635 0.103 0.099 0 0.4415 0.7835 0.101 0.101 0 0.5485 0.7575 0.107 0.093 0 0.573 0.683 0.12 0.1 0 0.6045 0.585 0.111 0.108 0 0.711 0.6 0.074 0.072 0 0.167 0.869 0.086 0.084 0 0.1815 0.781 0.107 0.098 0 0.207 0.037 0.088 0.072 0 0.1275 0.1175 0.103 0.107 0 0.212 0.1615 0.082 0.081 0 0.3625 0.189 0.089 0.092 0 0.111 0.491 0.096 0.102 0 0.5195 0.235 0.099 0.102 0 0.584 0.1535 0.108 0.095 0 0.6605 0.105 0.099 0.084 0 0.787 0.1375 0.094 0.091 0 0.681 0.249 0.096 0.098 0 0.927 0.22 0.096 0.088 0 0.8515 0.238 0.101 0.096 0 0.785 0.295 0.098 0.1 0 0.308 0.913 0.11 0.104 0 0.451 0.6335 0.094 0.099 0 0.576 0.741 0.11 0.084 0 0.627 0.679 0.112 0.104 0 0.7095 0.7665 0.117 0.115 0 0.8215 0.74 0.113 0.124 0 0.913 0.741 0.094 0.126 0 0.277 0.06 0.11 0.106 0 0.1905 0.1535 0.091 0.087 0 0.5495 0.098 0.095 0.096 0 0.6215 0.126 0.075 0.074 0 0.727 0.077 0.098 0.108 0 0.821 0.127 0.106 0.108 0 0.3825 0.0985 0.093 0.089 0 0.4605 0.1835 0.093 0.097 0 0.066 0.1515 0.09 0.087 0 0.029 0.2635 0.056 0.103 0 0.2465 0.3665 0.077 0.083 0 0.3335 0.347 0.091 0.084 0 0.31 0.4155 0.1 0.093 0 0.2065 0.5115 0.107 0.099 0 0.396 0.4735 0.092 0.089 0 0.4645 0.293 0.093 0.09 0 0.611 0.2595 0.088 0.083 0 0.696 0.2225 0.068 0.065 0 0.7825 0.21 0.083 0.066 0 0.5745 0.5035 0.087 0.087 0 0.709 0.512 0.104 0.102 0 0.226 0.687 0.1 0.094 0 0.3275 0.642 0.073 0.064 0 0.4785 0.5855 0.109 0.109 0 0.4555 0.6705 0.103 0.093 0 0.634 0.6005 0.092 0.089 0 0.6445 0.776 0.097 0.086 0 0.662 0.9615 0.092 0.071 0 0.9485 0.9585 0.103 0.079 0 0.751 0.8275 0.088 0.079 0 0.799 0.72 0.078 0.084 0 0.096 0.0765 0.064 0.055 0 0.2115 0.2435 0.069 0.077 0 0.348 0.2205 0.068 0.059 0 0.217 0.393 0.084 0.082 0 0.371 0.3695 0.08 0.081 0 0.4595 0.294 0.081 0.078 0 0.5865 0.205 0.081 0.088 0 0.609 0.044 0.076 0.078 0 0.764 0.0405 0.08 0.079 0 0.843 0.3115 0.078 0.071 0 0.725 0.3525 0.076 0.075 0 0.5735 0.3675 0.089 0.089 0 0.077 0.6055 0.106
54%|█████▍ | 111/206 [00:06<00:04, 20.02it/s]
0.091 0 0.239 0.6145 0.078 0.067 0 0.3895 0.533 0.081 0.076 0 0.5025 0.516 0.065 0.07 0 0.802 0.562 0.094 0.08 0 0.7205 0.7755 0.075 0.079 0 0.4 0.947 0.058 0.06 0 0.5605 0.965 0.083 0.064 0 0.763 0.837 0.092 0.082 0 0.6505 0.8105 0.097 0.093 0 0.4925 0.7515 0.101 0.089 0 0.5935 0.6785 0.097 0.091 0 0.687 0.714 0.11 0.114 0 0.795 0.7065 0.09 0.089 0 0.875 0.653 0.094 0.088 0 0.7575 0.604 0.095 0.1 0 0.787 0.456 0.108 0.1 0 0.6705 0.4635 0.085 0.089 0 0.415 0.56 0.092 0.094 0 0.48 0.531 0.09 0.09 0 0.59 0.083 0.094 0.094 0 0.624 0.1725 0.084 0.083 0 0.4995 0.172 0.099 0.098 0 0.1715 0.0805 0.107 0.097 0 0.155 0.2 0.114 0.1 0 0.202 0.3095 0.104 0.095 0 0.0815 0.276 0.101 0.096 0 0.041 0.1805 0.078 0.093 0 0.041 0.085 0.08 0.096 0 0.714 0.062 0.086 0.08 0 0.74 0.2935 0.1 0.095 0 0.7245 0.3895 0.089 0.103 0 0.199 0.5465 0.092 0.095 0 0.232 0.72 0.1 0.088 0 0.0515 0.8205 0.095 0.113 0 0.1245 0.834 0.073 0.08 0 0.205 0.823 0.092 0.084 0 0.361 0.802 0.086 0.088 0 0.428 0.764 0.082 0.09 0 0.5265 0.5155 0.069 0.065 0 0.772 0.7735 0.076 0.075 0 0.8925 0.7425 0.099 0.095 0 0.8295 0.655 0.109 0.088 0 0.0835 0.1385 0.083 0.077 0 0.097 0.407 0.082 0.082 0 0.2715 0.4255 0.085 0.083 0 0.377 0.5545 0.062 0.061 0 0.5265 0.808 0.071 0.07 0 0.597 0.8515 0.064 0.055 0 0.693 0.836 0.064 0.064 0 0.702 0.9405 0.066 0.067 0 0.456 0.3215 0.084 0.077 0 0.5825 0.4055 0.077 0.077 0 0.7825 0.407 0.073 0.072 0 0.786 0.221 0.086 0.078 0 0.576 0.248 0.076 0.068 0 0.579 0.105 0.062 0.056 0 0.764 0.096 0.072 0.068 0 0.2125 0.2415 0.067 0.069 0 0.027 0.4735 0.052 0.069 0 0.5875 0.312 0.061 0.058 0 0.7095 0.365 0.061 0.054 0 0.809 0.3375 0.082 0.081 0 0.193 0.545 0.076 0.066 0 0.3115 0.5295 0.067 0.065 0 0.9295 0.5035 0.061 0.063 0 0.128 0.814 0.068 0.06 0 0.3265 0.738 0.071 0.066 0 0.4895 0.712 0.065 0.066 0 0.4555 0.7885 0.087 0.081 0 0.391 0.838 0.074 0.082 0 0.2585 0.968 0.075 0.064 0 0.5145 0.9635 0.081 0.067 0 0.5265 0.8335 0.081 0.087 0 0.6335 0.765 0.077 0.07 0 0.6495 0.8445 0.099 0.091 0 0.72 0.7955 0.07 0.073 0 0.935 0.6495 0.084 0.089 0 0.953 0.8665 0.086 0.079 0 0.949 0.942 0.082 0.074 0 0.297 0.0365 0.076 0.071 0 0.3205 0.138 0.075 0.08 0 0.249 0.207 0.058 0.066 0 0.2935 0.286 0.079 0.082 0 0.1 0.4535 0.086 0.085 0 0.0575 0.5715 0.065 0.061 0 0.2625 0.407 0.089 0.086 0 0.432 0.328 0.08 0.07 0 0.4285 0.4445 0.081 0.077 0 0.3065 0.526 0.077 0.074 0 0.23 0.6555 0.076 0.079 0 0.2145 0.7565 0.073 0.069 0 0.0815 0.7755 0.073 0.073 0 0.1245 0.8715 0.069 0.075 0 0.508 0.756 0.11 0.104 0 0.5215 0.6505 0.077 0.079 0 0.607 0.8305 0.076 0.067 0 0.7645 0.8575 0.089 0.073 0 0.64 0.6835 0.07 0.075 0 0.6455 0.58 0.089 0.078 0 0.648 0.441 0.076 0.084 0 0.686 0.3265 0.086 0.085 0 0.874 0.355 0.08 0.086 0 0.7985 0.303 0.073 0.07 0 0.7195 0.198 0.065 0.06 0 0.5915 0.1665 0.077 0.069 0 0.6885 0.097 0.061 0.064
56%|█████▋ | 116/206 [00:06<00:03, 24.54it/s]
0 0.086 0.0685 0.08 0.077 0 0.3215 0.1395 0.083 0.085 0 0.7965 0.0565 0.097 0.083 0 0.6345 0.19 0.129 0.118 0 0.5565 0.3355 0.087 0.087 0 0.892 0.3295 0.114 0.123 0 0.9105 0.478 0.085 0.084 0 0.8505 0.528 0.067 0.06 0 0.7635 0.498 0.097 0.108 0 0.191 0.4935 0.098 0.107 0 0.6995 0.732 0.097 0.104 0 0.0535 0.861 0.091 0.1 0 0.2945 0.5915 0.091 0.097 0 0.294 0.161 0.094 0.092 0 0.225 0.2595 0.084 0.085 0 0.06 0.587 0.104 0.104 0 0.786 0.0605 0.112 0.103 0 0.5675 0.392 0.109 0.106 0 0.5315 0.5875 0.091 0.083 0 0.4715 0.9145 0.117 0.125 0 0.597 0.8215 0.104 0.109 0 0.714 0.92 0.124 0.11 0 0.7575 0.8285 0.129 0.113 0 0.806 0.733 0.112 0.1 0 0.9045 0.8225 0.117 0.111 0 0.8115 0.6025 0.109 0.119 0 0.9375 0.6 0.119 0.102 0 0.926 0.6755 0.124 0.087 0 0.932 0.7405 0.132
58%|█████▊ | 120/206 [00:06<00:03, 26.51it/s]
0.097 0 0.0615 0.829 0.119 0.124 0 0.2705 0.749 0.107 0.102 0 0.1925 0.6255 0.101 0.097 0 0.2205 0.5345 0.107 0.099 0 0.375 0.6705 0.1 0.103 0 0.4585 0.738 0.109 0.11 0 0.4495 0.6025 0.103 0.097 0 0.8715 0.683 0.123 0.12 0 0.9555 0.6195 0.089 0.115 0 0.9455 0.902 0.099 0.09 0 0.8865 0.4635 0.101 0.095 0 0.176 0.058 0.09 0.082 0 0.33 0.1405 0.08 0.087 0 0.4305 0.147 0.081 0.084 0 0.426 0.2355 0.084 0.083 0 0.267 0.225 0.064 0.064 0 0.0315 0.1365 0.061 0.091 0 0.2785 0.3045 0.097 0.095 0 0.1935 0.385 0.101 0.106 0 0.341 0.356 0.09 0.088 0 0.314 0.4335 0.09 0.079 0 0.3375 0.5145 0.093 0.093 0 0.137 0.533 0.08 0.106 0 0.353 0.641 0.088 0.094 0 0.2645 0.6585 0.089 0.105 0 0.136 0.749 0.09 0.088 0 0.0965 0.9435 0.083 0.091 0 0.2355 0.941 0.087 0.09 0 0.3305 0.752 0.091 0.094 0 0.43 0.77 0.076 0.076 0 0.5055 0.8135 0.073 0.081 0 0.5215 0.558 0.077 0.08 0 0.7355 0.2105 0.087 0.091 0 0.7525 0.303 0.105 0.096 0 0.7315 0.389 0.093 0.09 0 0.711 0.501 0.094 0.082 0 0.797 0.5075 0.09 0.083 0 0.7735 0.5875 0.097 0.087 0 0.8275 0.6615 0.083 0.077 0 0.721 0.753 0.078 0.078 0 0.792 0.76 0.084 0.076 0 0.2775 0.0545 0.067 0.057 0 0.239 0.1125 0.062 0.067 0 0.2595 0.242 0.067 0.072 0 0.2245 0.297 0.077 0.074 0 0.0865 0.7985 0.085 0.081 0 0.181 0.7905 0.096 0.081 0 0.3515 0.8535 0.103 0.089 0 0.956 0.3315 0.086 0.087 0 0.489 0.736 0.086 0.076 0 0.4625 0.799 0.103 0.084 0 0.4645 0.878 0.105 0.09 0 0.5735 0.784 0.093 0.092 0 0.57 0.8675 0.102 0.089 0 0.517 0.9455 0.098 0.093 0 0.668 0.876 0.1 0.104 0 0.743 0.879 0.094 0.098 0 0.8525 0.6995 0.085 0.091 0 0.8805 0.7925 0.099 0.097 0 0.9065 0.8875 0.109 0.107 0 0.8175 0.8765 0.091 0.109 0 0.8305 0.9615 0.091 0.077 0 0.156 0.723 0.114 0.108 0 0.556 0.9425 0.098 0.093 0 0.681 0.903 0.096 0.088 0 0.808 0.8755 0.11 0.099 0 0.923 0.8885 0.122 0.115 0 0.956 0.78 0.088 0.106 0 0.862 0.7745 0.12 0.107 0 0.7285 0.766 0.131 0.124 0 0.586 0.849 0.082 0.082 0 0.6055 0.7275 0.113 0.103 0 0.477 0.741 0.102 0.11 0 0.4825 0.6295 0.073 0.079 0 0.5735 0.628 0.105 0.108 0 0.697 0.6485 0.11 0.099 0 0.6765 0.5525 0.115 0.107 0 0.3985 0.559 0.097 0.076 0 0.855 0.4955 0.1 0.101 0 0.921 0.406 0.098 0.096 0 0.8105 0.379 0.115 0.1 0 0.395 0.459 0.108 0.1 0 0.554 0.4655 0.118 0.115 0 0.667 0.3945 0.12 0.107 0 0.758 0.261 0.112 0.12 0 0.664 0.3055 0.1 0.091 0 0.7505 0.146 0.107 0.104 0 0.8245 0.0515 0.113 0.091 0 0.6815 0.042 0.089 0.076 0 0.6515 0.207 0.111 0.106 0 0.357 0.066 0.11 0.11 0 0.464 0.167 0.13 0.11 0 0.5025 0.251 0.119 0.11 0 0.517 0.366 0.114 0.114 0 0.436 0.363 0.112 0.104 0 0.37 0.3165 0.112 0.109 0 0.3085 0.413 0.111 0.11 0 0.1925 0.3715 0.129 0.129 0 0.0925 0.3605 0.099 0.107 0 0.053 0.2365 0.104 0.119 0 0.114 0.1145 0.11 0.131 0 0.1815 0.152 0.121 0.118 0 0.2455 0.251 0.101 0.106 0 0.284 0.147 0.094 0.104 0 0.343 0.211 0.1 0.112 0 0.4535 0.0795 0.073 0.067 0 0.1465 0.214 0.103 0.096 0 0.286 0.196 0.11 0.096 0 0.468 0.23 0.096 0.084 0 0.5405 0.2795 0.077 0.071 0 0.0545 0.2955 0.071 0.075 0 0.2595 0.324 0.105 0.106 0 0.27 0.4325 0.076 0.069 0 0.396 0.377 0.1 0.094 0 0.762 0.033 0.064 0.058 0 0.7905 0.283 0.079 0.08 0 0.912 0.2445 0.062 0.065 0 0.948 0.499 0.092 0.098 0 0.9015 0.6775 0.073 0.065 0 0.221 0.598 0.086 0.08 0 0.5415 0.848 0.083 0.08 0 0.447 0.8445 0.072 0.075 0 0.331 0.9085 0.096 0.093
61%|██████ | 126/206 [00:07<00:03, 26.39it/s]
0 0.1825 0.0885 0.079 0.079 0 0.3855 0.044 0.085 0.084 0 0.363 0.1935 0.068 0.069 0 0.112 0.331 0.07 0.072 0 0.8545 0.0395 0.095 0.071 0 0.953 0.0665 0.092 0.103 0 0.9355 0.22 0.083 0.084 0 0.795 0.191 0.09 0.098 0 0.6675 0.1485 0.109 0.107 0 0.5365 0.226 0.093 0.09 0 0.518 0.303 0.07 0.07 0 0.698 0.364 0.1 0.098 0 0.673 0.4885 0.104 0.101 0 0.4835 0.4425 0.105 0.105 0 0.304 0.4165 0.09 0.081 0 0.056 0.467 0.102 0.114 0 0.293 0.621 0.102 0.094 0 0.3345 0.7345 0.081 0.089 0 0.2995 0.84 0.101 0.096 0 0.601 0.8325 0.082 0.079 0 0.6035 0.9635 0.063 0.057 0 0.599 0.044 0.098 0.076 0 0.6535 0.1125 0.097 0.093 0 0.8075 0.099 0.085 0.078 0 0.9025 0.1715 0.087 0.081 0 0.793 0.196 0.068 0.062 0 0.5635 0.263 0.075 0.064 0 0.0815 0.3695 0.093 0.085 0 0.1915 0.4485 0.069 0.069 0 0.09 0.494 0.094 0.098 0 0.1215 0.7325 0.085 0.077 0 0.1475 0.8315 0.093 0.095 0 0.1765 0.9525 0.099 0.085 0 0.2345 0.683 0.089 0.086 0 0.257 0.7685 0.088 0.087 0 0.296 0.8645 0.088 0.085 0 0.3215 0.9565 0.111 0.087 0 0.518 0.731 0.082 0.092 0 0.5515 0.852 0.081 0.08 0 0.7975 0.0405 0.097 0.079 0 0.8785 0.116 0.105 0.098 0 0.8765 0.2255 0.087 0.073 0 0.8845 0.303 0.085 0.08 0 0.8805 0.475 0.081 0.092 0 0.8615 0.6345 0.083 0.091 0 0.934 0.79 0.106 0.1 0 0.928 0.9255 0.094 0.093 0 0.8245 0.9605 0.093 0.079 0 0.7645 0.809 0.085 0.086 0 0.8395 0.721 0.065 0.066 0 0.599 0.8515 0.09 0.081 0 0.699 0.5755 0.11 0.103 0 0.731 0.466 0.092 0.094 0 0.7445 0.195 0.099 0.094 0 0.648 0.091 0.102 0.094 0 0.5385 0.05 0.115 0.098 0 0.412 0.081 0.108 0.114 0 0.4845 0.19 0.083 0.08 0 0.6605 0.28 0.089 0.096 0 0.5595 0.6575 0.075 0.079 0 0.605 0.726 0.084 0.08 0 0.11 0.0615 0.084 0.081 0 0.19 0.091 0.09 0.094 0 0.259 0.2455 0.102 0.099 0 0.1415 0.885 0.101 0.1 0 0.2685 0.9425 0.107 0.113 0 0.4355 0.929 0.081 0.076 0 0.8855 0.0695 0.099 0.085 0 0.8095 0.2845 0.101 0.087 0 0.0495 0.2775 0.095 0.105 0 0.1085 0.5495 0.099 0.105 0 0.2405 0.3455 0.107 0.101 0 0.2535 0.4545 0.099 0.105 0 0.365 0.3265 0.088 0.083 0 0.371 0.069 0.09 0.084 0 0.449 0.149 0.098 0.096 0 0.265 0.598 0.1 0.096 0 0.1215 0.7975 0.089 0.095 0 0.0675 0.877 0.099 0.1 0 0.299 0.8015 0.092 0.089 0 0.8245 0.8015 0.087 0.093 0 0.735 0.7975 0.09 0.101 0 0.109 0.0905 0.104 0.099 0 0.2645 0.1095 0.093 0.093 0 0.2255 0.218 0.091 0.082 0 0.221 0.3315 0.088 0.091 0 0.1765 0.464 0.077 0.068 0 0.1805 0.6075 0.103 0.093 0 0.321 0.587 0.106 0.094 0 0.3395 0.4555 0.093 0.089 0 0.47 0.565 0.1 0.094 0 0.832 0.25 0.108 0.114 0 0.756 0.3025 0.072 0.077 0 0.8235 0.1 0.081 0.076 0 0.893 0.1395 0.086 0.081 0 0.95 0.3515 0.072 0.067 0 0.6635 0.055 0.103 0.088 0 0.9085 0.079 0.091 0.096 0 0.9 0.311 0.09 0.096 0 0.914 0.5055 0.086 0.079 0 0.8355 0.3875 0.081 0.079 0 0.786 0.4895 0.086 0.087 0 0.694 0.384 0.086 0.088 0 0.6745 0.271 0.085 0.086 0 0.624 0.173 0.08 0.09 0 0.424 0.094 0.094 0.096 0 0.1075 0.251 0.095 0.098 0 0.44 0.29 0.084 0.07 0 0.473 0.4845 0.082 0.081 0 0.155 0.8205 0.09 0.087 0 0.2625 0.927 0.091 0.092 0 0.2695 0.7825 0.109 0.113 0 0.3705 0.692 0.103 0.096 0 0.49 0.74 0.1 0.096 0 0.3765 0.4675 0.081 0.087 0 0.1825 0.6015 0.103 0.107 0 0.8855 0.158 0.087 0.08 0 0.5275 0.133 0.083 0.08 0 0.338 0.046 0.078 0.074 0 0.2035 0.232 0.099 0.104 0 0.36 0.276 0.098 0.1 0 0.341 0.3995 0.106 0.103 0 0.1665 0.491 0.109 0.094 0 0.319 0.5095 0.098 0.093 0 0.392 0.4705 0.082 0.081 0 0.451 0.5615 0.086 0.085 0 0.041 0.4105 0.08 0.091 0 0.0495 0.687 0.097 0.108 0 0.185 0.6395 0.08 0.079 0 0.28 0.649 0.1 0.094 0 0.141 0.7405 0.094 0.081 0 0.2495 0.946 0.099 0.094 0 0.4445 0.6945 0.099 0.101 0 0.5905 0.7375 0.081 0.079 0 0.597 0.4885 0.098 0.087 0 0.7065 0.5495 0.069 0.061 0 0.7055 0.654 0.105 0.09 0 0.6935 0.8015 0.087 0.087 0
65%|██████▍ | 133/206 [00:07<00:02, 27.51it/s]
0.8055 0.7205 0.113 0.107 0 0.846 0.5865 0.106 0.103 0 0.9105 0.463 0.087 0.088 0 0.7735 0.4045 0.075 0.071 0 0.6915 0.3055 0.091 0.083 0 0.703 0.197 0.062 0.062 0 0.844 0.13 0.092 0.09 0 0.955 0.2945 0.09 0.111 0 0.8905 0.398 0.107 0.112 0 0.9645 0.5135 0.071 0.093 0 0.861 0.5845 0.098 0.093 0 0.963 0.7335 0.074 0.101 0 0.694 0.852 0.07 0.068 0 0.753 0.616 0.098 0.114 0 0.6515 0.6225 0.095 0.103 0 0.5765 0.65 0.085 0.084 0 0.578 0.7425 0.096 0.087 0 0.4655 0.6435 0.089 0.095 0 0.462 0.509 0.072 0.076 0 0.345 0.648 0.094 0.098 0 0.33 0.726 0.078 0.076 0 0.2115 0.65 0.091 0.096 0 0.1115 0.4835 0.113 0.115 0 0.0665 0.3915 0.103 0.089 0 0.045 0.2235 0.068 0.077 0 0.1235 0.118 0.079 0.082 0 0.2245 0.096 0.085 0.078 0 0.3425 0.1185 0.089 0.087 0 0.3155 0.259 0.097 0.094 0 0.475 0.2635 0.084 0.093 0 0.53 0.3945 0.096 0.091 0 0.659 0.38 0.08 0.09 0 0.7665 0.3935 0.081 0.083 0 0.861 0.2625 0.078 0.071 0 0.747 0.2015 0.094 0.099 0 0.6985 0.1065 0.071 0.057 0 0.6045 0.062 0.093 0.086 0 0.5275 0.1395 0.087 0.079 0 0.4915 0.0375 0.085 0.073 0 0.6415 0.192 0.081 0.074 0 0.376 0.4415 0.088 0.085 0 0.0505 0.04 0.099 0.078 0 0.1765 0.052 0.119 0.1 0 0.316 0.0945 0.104 0.097 0 0.433 0.053 0.1 0.09 0 0.1225 0.1595 0.105 0.095 0 0.2555 0.2095 0.089 0.083 0 0.3385 0.2915 0.109 0.099 0 0.0915 0.371 0.099 0.084 0 0.295 0.4215 0.094 0.083 0 0.415 0.4135 0.096 0.095 0 0.4775 0.222 0.105 0.094 0 0.7675 0.0375 0.063 0.059 0 0.7865 0.1075 0.065 0.065 0 0.265 0.774 0.106 0.112 0 0.265 0.892 0.092 0.086 0 0.503 0.8645 0.09 0.083 0 0.5485 0.52 0.089 0.086 0 0.906 0.4625 0.084 0.083 0 0.9465 0.586 0.083 0.086 0 0.877 0.1085 0.064 0.071 0 0.8115 0.1085 0.067 0.069 0 0.901 0.312 0.07 0.066 0 0.451 0.1075 0.07 0.067 0 0.463 0.2135 0.094 0.091 0 0.5545 0.2635 0.081 0.075 0 0.3265 0.4 0.095 0.086 0 0.3915 0.4905 0.069 0.077 0 0.535 0.429 0.086 0.076 0 0.618 0.526 0.066 0.066 0 0.8845 0.4295 0.069 0.067 0 0.114 0.537 0.068 0.07 0 0.2415 0.5735 0.107 0.085 0 0.225 0.647 0.114 0.094 0 0.0935 0.703 0.081 0.078 0 0.3345 0.6505 0.063 0.071 0 0.393 0.724 0.094 0.102 0 0.1955 0.777 0.093 0.112 0 0.146 0.857 0.108 0.104 0 0.116 0.9555 0.096 0.089 0 0.0405 0.9435 0.079 0.101 0 0.2295 0.8905 0.077 0.077 0 0.3335 0.8095 0.109 0.103 0 0.3875 0.8575 0.105 0.101 0 0.349 0.924 0.096 0.094 0 0.9415 0.7675 0.093 0.077 0 0.964 0.647 0.066 0.068 0 0.9515 0.8985 0.073 0.061 0 0.885 0.546 0.072 0.072 0 0.2165 0.0815 0.081 0.069 0 0.271 0.307 0.078 0.078 0 0.175 0.3935 0.07 0.065 0 0.207 0.5505 0.086 0.089 0 0.1115 0.581 0.071 0.07 0 0.3755 0.53 0.075 0.072 0 0.122 0.7275 0.078 0.071 0 0.201 0.7865 0.078 0.089 0 0.1645 0.872 0.077 0.084 0 0.246 0.852 0.078 0.086 0 0.3245 0.9155 0.087 0.083 0 0.3225 0.9675 0.059 0.053 0 0.5165 0.8885 0.105 0.091 0 0.56 0.9615 0.094 0.069 0 0.624 0.901 0.08 0.076 0 0.6715 0.792 0.095 0.086 0 0.7635 0.971 0.093 0.058 0 0.847 0.9245 0.092 0.083 0 0.9495 0.8285 0.077 0.077 0 0.829 0.785 0.09 0.088 0 0.954 0.746 0.08 0.07 0 0.962 0.67 0.076 0.08 0 0.6895 0.695 0.073 0.076 0 0.8465 0.7095 0.075 0.071 0 0.7405 0.62 0.085 0.078 0 0.8995 0.4215 0.081 0.079 0 0.6825 0.5385 0.085 0.083 0 0.62 0.493 0.09 0.086 0 0.6525 0.359 0.071 0.076 0 0.6925 0.2655 0.069 0.073 0 0.7845 0.2475 0.067 0.057 0 0.6905 0.077 0.063 0.06 0 0.4425 0.068 0.103 0.092 0 0.6575 0.036 0.089 0.07 0 0.9415 0.0585 0.101 0.101 0 0.951 0.151 0.094 0.108 0 0.873 0.145 0.088 0.096 0 0.699 0.1935 0.09 0.099 0 0.61 0.251 0.1 0.088 0 0.716 0.3035 0.092 0.091 0 0.6555 0.3535 0.103 0.097 0 0.5755 0.36 0.083 0.078 0 0.582 0.44 0.092 0.082 0 0.739 0.382 0.09 0.074 0 0.4285 0.362 0.105 0.1 0 0.4555 0.433 0.061 0.052 0 0.369 0.4425 0.106 0.113 0 0.2975 0.38 0.119 0.104 0 0.218 0.3825 0.08 0.071 0 0.2605 0.4545 0.115 0.109 0 0.1265 0.416 0.089 0.088 0 0.177 0.496 0.09 0.11 0 0.252 0.54 0.096 0.072 0 0.0815 0.5465 0.103 0.093 0 0.0485 0.6155 0.095 0.079 0 0.078 0.676 0.106 0.102 0 0.212 0.5865 0.098 0.079 0 0.173 0.6675 0.09 0.089 0 0.099 0.789 0.07 0.076 0 0.273 0.649 0.092 0.088 0 0.325 0.603 0.12 0.124 0 0.415 0.6085 0.094 0.091 0 0.4555 0.4995 0.089 0.083 0 0.515 0.56 0.084 0.08 0 0.825 0.4725 0.1 0.097 0 0.765 0.5325 0.072 0.071 0 0.811 0.5815 0.092 0.083 0 0.6405 0.633 0.099 0.086 0 0.788 0.647 0.074 0.07 0 0.794 0.717 0.084 0.082 0 0.6435 0.7345 0.079 0.073 0 0.732 0.7895 0.098 0.089 0 0.464 0.772 0.112 0.1 0 0.3695 0.7785 0.079 0.069 0 0.3315 0.8415 0.071 0.059 0 0.811 0.826 0.104 0.106 0 0.9085 0.812 0.107 0.11 0 0.9605 0.7865 0.079 0.101 0 0.7915 0.8885 0.075 0.067 0 0.919 0.9545 0.098 0.081 0 0.0995 0.0645 0.101 0.093 0 0.0435 0.146 0.085 0.096 0 0.1935 0.127 0.083 0.076 0 0.314 0.1515 0.088 0.089 0 0.0485 0.29 0.087 0.1 0 0.1625 0.317 0.091 0.08 0 0.103 0.426 0.092 0.094 0 0.0725 0.5625 0.091 0.093 0 0.157 0.517 0.084 0.088 0 0.223 0.3885 0.096 0.101 0 0.308 0.341 0.094 0.086 0 0.3605 0.287 0.081 0.08 0 0.292 0.261 0.058 0.054 0 0.4 0.127 0.084 0.074 0 0.4145 0.0435 0.085 0.079 0 0.4915 0.091 0.089 0.082 0 0.4175 0.18 0.055 0.048 0 0.4835 0.237 0.109 0.086 0 0.489 0.331 0.094 0.09 0 0.3535 0.4415 0.087 0.085 0 0.454 0.464 0.08 0.072 0 0.272 0.53 0.104 0.09 0 0.1945 0.6255 0.083 0.081 0 0.068 0.6735 0.086 0.089 0 0.064 0.8 0.094 0.102 0 0.1395 0.808 0.077 0.086 0 0.1725 0.7425 0.087 0.081 0 0.2765 0.7965 0.079 0.071 0 0.37 0.847 0.078 0.07 0 0.3075 0.7305 0.057 0.061 0 0.299 0.651 0.098 0.094 0 0.345 0.59 0.098 0.092 0 0.4575 0.797 0.093 0.09 0 0.479 0.678 0.086 0.076 0 0.494 0.572 0.086 0.076 0 0.5845 0.788 0.081 0.078 0 0.669 0.856 0.08 0.08 0 0.685 0.787 0.086 0.082 0 0.5945 0.693 0.063 0.06 0 0.8315 0.417 0.089 0.082 0 0.9615 0.3925 0.075
66%|██████▌ | 136/206 [00:07<00:03, 21.41it/s]
0.075 0 0.8125 0.3235 0.089 0.067 0 0.961 0.121 0.078 0.078 0 0.8185 0.184 0.107 0.104 0 0.5095 0.1035 0.083 0.081 0 0.762 0.115 0.084 0.07 0 0.493 0.2025 0.086 0.085 0 0.574 0.79 0.122 0.12 0 0.5945 0.6865 0.081 0.079 0 0.656 0.747 0.094 0.096 0 0.681 0.8705 0.12 0.117 0 0.5775 0.9295 0.105 0.109 0 0.355 0.9115 0.09 0.093 0 0.4735 0.814 0.097 0.084 0 0.383 0.7905 0.09 0.101 0 0.2925 0.844 0.081 0.074 0 0.21 0.802 0.096 0.084 0 0.099 0.7565 0.092 0.085 0 0.185 0.723 0.082 0.08 0 0.1165 0.896 0.101 0.098 0 0.124 0.629 0.086 0.076 0 0.2195 0.646 0.091 0.088 0 0.292 0.7045 0.122 0.113 0 0.0755 0.5255 0.083 0.087 0 0.5215 0.0515 0.089 0.089 0 0.5545 0.177 0.091 0.088 0 0.6335 0.093 0.103 0.102 0 0.7245 0.0615 0.073 0.069 0 0.865 0.058 0.08 0.08 0 0.793 0.122 0.084 0.084 0 0.9095 0.223
67%|██████▋ | 139/206 [00:07<00:02, 22.34it/s]
0.085 0.082 0 0.8135 0.2225 0.093 0.089 0 0.7245 0.246 0.075 0.072 0 0.668 0.3125 0.096 0.087 0 0.576 0.365 0.084 0.07 0 0.782 0.3175 0.078 0.073 0 0.721 0.382 0.106 0.098 0 0.6525 0.458 0.083 0.074 0 0.8025 0.4465 0.075 0.067 0 0.949 0.326 0.084 0.08 0 0.9145 0.438 0.091 0.09 0 0.8685 0.5145 0.087 0.083 0 0.118 0.458 0.086 0.082 0 0.198 0.4165 0.08 0.079 0 0.0475 0.5975 0.077 0.081 0 0.1695 0.617 0.097 0.096 0 0.1585 0.753 0.103 0.104 0 0.059 0.954 0.098 0.078 0 0.36 0.858 0.084 0.094 0 0.2895 0.583 0.091 0.084 0 0.3255 0.698 0.079 0.064 0 0.043 0.8115 0.058 0.067 0 0.033 0.6585 0.056 0.081 0 0.3165 0.764 0.085 0.092 0 0.4625 0.7315 0.099 0.095 0 0.3045 0.6215 0.105 0.101 0 0.0795 0.4485 0.079 0.085 0 0.194 0.4535 0.102 0.089 0 0.309 0.4375 0.09 0.085 0 0.4735 0.592 0.091 0.082 0 0.0885 0.324 0.093 0.086 0 0.3345 0.254 0.089 0.084 0 0.8395 0.5775 0.071 0.069 0 0.8415 0.761 0.083 0.078 0 0.86 0.335 0.094 0.09 0 0.439 0.2855 0.092 0.087 0 0.0985 0.7665 0.093 0.087 0 0.2585 0.89 0.087 0.082 0 0.4875 0.967 0.071 0.066 0 0.52 0.8525 0.066 0.059 0 0.2885 0.785 0.053 0.056 0 0.104 0.582 0.078 0.086 0 0.3475 0.675 0.085 0.092 0 0.484 0.715 0.058 0.054 0 0.4415 0.58 0.101 0.104 0 0.2735 0.5165 0.103 0.101 0 0.442 0.46 0.084 0.092 0 0.1865 0.381 0.075 0.08 0 0.438 0.351 0.062 0.064 0 0.524 0.354 0.086 0.09 0 0.651 0.4055 0.08 0.083 0 0.305 0.0625 0.072 0.067 0 0.8615 0.928 0.093 0.096 0 0.9545 0.875 0.089 0.096 0 0.896 0.6965 0.094 0.091 0 0.464 0.0655 0.088 0.089 0 0.0335 0.33 0.065 0.064 0 0.961 0.238 0.078 0.09 0 0.9495 0.134 0.077 0.076 0 0.8975 0.268 0.087 0.088 0 0.9565 0.356 0.079 0.084 0 0.934 0.7535 0.074 0.087 0 0.894 0.9605 0.08 0.075 0 0.759 0.8225 0.09 0.083 0 0.5815 0.595 0.065 0.076 0 0.727 0.5155 0.074 0.065 0 0.664 0.4245 0.074 0.079 0 0.462 0.141 0.066 0.072 0 0.337 0.192 0.064 0.058 0 0.205 0.501 0.074 0.076 0 0.205 0.651 0.078 0.086 0 0.164 0.125 0.076 0.082 0 0.1495 0.315 0.067 0.058 0 0.2845 0.0505 0.099 0.099 0 0.21 0.165 0.088 0.098 0 0.408 0.103 0.076 0.078 0 0.2765 0.4615 0.105 0.105 0 0.2625 0.6035 0.105 0.107 0 0.261 0.709 0.104 0.1 0 0.3285 0.663 0.083 0.096 0 0.3305 0.556 0.097 0.098 0 0.396 0.5885 0.092 0.101 0 0.4315 0.67 0.129 0.108 0 0.3595 0.796 0.109 0.11 0 0.465 0.762 0.11 0.096 0 0.4435 0.8555 0.113 0.113 0 0.56 0.803 0.106 0.098 0 0.541 0.697 0.108 0.11 0 0.6245 0.713 0.079 0.092 0 0.689 0.7485 0.09 0.085 0 0.662 0.8435 0.092 0.085 0 0.6285 0.9065 0.073 0.075 0 0.5875 0.968 0.101 0.06 0 0.7685 0.832 0.077 0.068 0 0.784 0.716 0.08 0.078 0 0.8825 0.6165 0.097 0.089 0 0.544 0.5705 0.086 0.093 0 0.468 0.564 0.078 0.084 0 0.3545 0.3575 0.093 0.097 0 0.4405 0.406 0.099 0.098 0 0.506 0.3805 0.096 0.097 0 0.585 0.3925 0.066 0.067 0 0.6105 0.3285 0.103
70%|███████ | 145/206 [00:07<00:02, 23.17it/s]
0.105 0 0.5415 0.2385 0.085 0.089 0 0.531 0.0555 0.092 0.089 0 0.69 0.214 0.072 0.082 0 0.807 0.1685 0.08 0.081 0 0.9565 0.1755 0.087 0.105 0 0.8425 0.039 0.071 0.074 0 0.888 0.1355 0.064 0.063 0 0.788 0.133 0.074 0.068 0 0.685 0.074 0.09 0.076 0 0.6985 0.1615 0.097 0.093 0 0.7395 0.2305 0.075 0.069 0 0.609 0.143 0.078 0.084 0 0.5285 0.06 0.095 0.082 0 0.4195 0.1015 0.077 0.077 0 0.536 0.172 0.066 0.068 0 0.5045 0.3645 0.089 0.087 0 0.649 0.3555 0.082 0.073 0 0.7635 0.3935 0.065 0.061 0 0.8935 0.457 0.079 0.072 0 0.7365 0.4585 0.083 0.069 0 0.826 0.51 0.08 0.068 0 0.909 0.6095 0.062 0.053 0 0.828 0.612 0.062 0.06 0 0.713 0.6085 0.088 0.081 0 0.524 0.523 0.1 0.1 0 0.3035 0.501 0.089 0.082 0 0.214 0.5135 0.092 0.091 0 0.2095 0.6075 0.081 0.087 0 0.3215 0.6165 0.093 0.079 0 0.422 0.602 0.058 0.06 0 0.128 0.6685 0.06 0.055 0 0.2385 0.702 0.097 0.092 0 0.0995 0.7835 0.093 0.077 0 0.125 0.885 0.092 0.084 0 0.1495 0.9545 0.105 0.089 0 0.25 0.947 0.108 0.104 0 0.302 0.881 0.078 0.084 0 0.41 0.9375 0.11 0.107 0 0.4935 0.9425 0.089 0.099 0 0.549 0.906 0.074 0.084 0 0.621 0.94 0.062 0.058 0 0.836 0.913 0.096 0.088 0 0.3605 0.055 0.119 0.102 0 0.355 0.407 0.11 0.112 0 0.0475 0.4585 0.091 0.117 0 0.1705 0.453 0.099 0.088 0 0.097 0.592 0.104 0.104 0 0.1235 0.696 0.105 0.11 0 0.0465 0.895 0.091 0.102 0 0.1965 0.885 0.109 0.106 0 0.2825 0.908 0.095 0.102 0 0.248 0.7155 0.098 0.101 0 0.24 0.622 0.096 0.086 0 0.2335 0.526 0.099 0.092 0 0.328 0.587 0.092 0.09 0 0.356 0.71 0.114 0.108 0 0.5535 0.89 0.111 0.108 0 0.6685 0.8185 0.089 0.087 0 0.8435 0.686 0.081 0.082 0 0.962 0.7355 0.076 0.091 0 0.655 0.2395 0.096 0.097 0 0.8475 0.625 0.111 0.108 0 0.769 0.6765 0.106 0.101 0 0.5935 0.7355 0.107 0.091 0 0.3095 0.855 0.103 0.092 0 0.1995 0.883 0.099 0.094 0 0.0825 0.891 0.099 0.086 0 0.0915 0.963 0.097 0.074 0 0.0845 0.7115 0.101 0.095 0 0.192 0.6855 0.096 0.087 0 0.271 0.6355 0.092 0.085 0 0.165 0.5905 0.106 0.097 0 0.259 0.532 0.096 0.094 0 0.5425 0.6355 0.099 0.095 0 0.7605 0.221 0.113 0.104 0 0.6615 0.258 0.115 0.114 0 0.5975 0.5725 0.081 0.081 0 0.051 0.747 0.092 0.092 0 0.177 0.715 0.11 0.098 0 0.2705 0.708 0.113 0.112 0 0.367 0.7195 0.102 0.107 0 0.467 0.7175 0.1 0.093 0 0.5455 0.6925 0.095 0.113 0 0.6115 0.7275 0.091 0.107 0 0.6935 0.6995 0.097 0.109 0 0.067 0.8405 0.1 0.091 0 0.1405 0.8095 0.083 0.085 0 0.2535 0.8225 0.099 0.097 0 0.105 0.9385 0.114 0.095 0 0.218 0.9415 0.108 0.105 0 0.32 0.8655 0.108 0.107 0 0.2945 0.963 0.081 0.074 0 0.374 0.956 0.094 0.086 0 0.4335 0.8165 0.117 0.109 0 0.4915 0.892 0.109 0.108 0 0.5045 0.974 0.091 0.052 0 0.6 0.9475 0.108 0.097 0 0.587 0.8425 0.114 0.103 0 0.6865 0.9655 0.093 0.067 0 0.692 0.856 0.09 0.084 0 0.804 0.904 0.122 0.106 0 0.8335 0.819 0.105 0.088 0 0.9705 0.898 0.059 0.078 0 0.359 0.1915 0.102 0.095 0 0.8775 0.2995 0.111 0.109 0 0.0585 0.548 0.093 0.1 0 0.2045 0.5935 0.087 0.083 0 0.442 0.466 0.114 0.11 0 0.077 0.7515 0.13 0.113 0 0.311 0.8055 0.094 0.079 0 0.4935 0.6915 0.081 0.087 0 0.5805 0.6855 0.077 0.081 0 0.7735 0.6995 0.095 0.097 0 0.835 0.96 0.106 0.074 0 0.9375 0.9665
73%|███████▎ | 151/206 [00:08<00:02, 25.00it/s]
0.081 0.063 0 0.179 0.936 0.128 0.11 0 0.316 0.957 0.104 0.086 0 0.74 0.0725 0.074 0.077 0 0.3945 0.097 0.085 0.084 0 0.7155 0.1615 0.113 0.109 0 0.8205 0.1845 0.089 0.091 0 0.629 0.354 0.092 0.094 0 0.331 0.3855 0.092 0.101 0 0.0925 0.4375 0.097 0.095 0 0.452 0.4395 0.118 0.113 0 0.3225 0.5245 0.095 0.103 0 0.227 0.613 0.102 0.096 0 0.272 0.803 0.104 0.106 0 0.4775 0.606 0.093 0.096 0 0.625 0.5805 0.114 0.117 0 0.7395 0.5845 0.115 0.113 0 0.454 0.8105 0.102 0.107 0 0.558 0.852 0.108 0.114 0 0.613 0.7335 0.092 0.097 0 0.7095 0.719 0.103 0.096 0 0.816 0.706 0.106 0.108 0 0.826 0.8455 0.108 0.107 0 0.5485 0.9485 0.121 0.099 0 0.7825 0.866 0.103 0.096 0 0.535 0.8185 0.094 0.085 0 0.4125 0.795 0.119 0.118 0 0.3455 0.927 0.097 0.106 0 0.705 0.7435 0.1 0.105 0 0.542 0.68 0.102 0.092 0 0.7995 0.6205 0.107 0.109 0 0.6965 0.591 0.103 0.106 0 0.729 0.456 0.1 0.108 0 0.5305 0.459 0.105 0.104 0 0.3685 0.5335 0.103 0.109 0 0.4475 0.443 0.097 0.116 0 0.2605 0.765 0.101 0.1 0 0.181 0.6925 0.094 0.105 0 0.1195 0.6195 0.101 0.091 0 0.0475 0.531 0.089 0.098 0 0.132 0.448 0.112 0.102 0 0.192 0.3395 0.092 0.099 0 0.759 0.348 0.088 0.08 0 0.664 0.398 0.104 0.1 0 0.9225 0.261 0.121 0.12 0 0.7775 0.2665 0.095 0.087 0 0.6665 0.2495 0.099 0.103 0 0.555 0.3075 0.094 0.089 0 0.469 0.2975 0.09 0.091 0 0.371 0.313 0.102 0.106 0 0.2615 0.2335 0.115 0.101 0 0.1395 0.1875 0.121 0.111 0 0.215 0.123 0.096 0.09 0 0.376 0.195 0.108 0.106 0 0.3435 0.1015 0.103 0.105 0 0.1545 0.1085 0.073 0.073 0 0.3145 0.098 0.087 0.074 0 0.436 0.095 0.082 0.072 0 0.4865 0.2065 0.075 0.069 0 0.36 0.247 0.084 0.082 0 0.0345 0.4205 0.067 0.077 0 0.2165 0.4455 0.075 0.067 0 0.324 0.44 0.09 0.08 0 0.4445 0.417 0.081 0.082 0 0.717 0.128 0.098 0.096 0 0.9215 0.151 0.071 0.068 0 0.0475 0.5705 0.081 0.087 0 0.202 0.5805 0.094 0.097 0 0.323 0.5485 0.082 0.073 0 0.8885 0.3115 0.079 0.071 0 0.436 0.5495 0.078 0.065 0 0.283 0.6705 0.076 0.077 0 0.3 0.7955 0.08 0.079 0 0.427 0.802 0.07 0.076 0 0.3545 0.943 0.071 0.072 0 0.39 0.6525 0.064 0.075 0 0.562 0.603 0.074 0.074 0 0.5755 0.4855 0.083 0.077 0 0.047 0.0785 0.086 0.097 0 0.206 0.1815 0.084 0.085 0 0.0605 0.263 0.111 0.128 0 0.394 0.139 0.082 0.076 0 0.219 0.376 0.106 0.104 0 0.754 0.1535 0.084 0.087 0 0.965 0.3645 0.07 0.063 0 0.9605 0.531 0.077 0.086 0 0.0355 0.773 0.069 0.102 0 0.043 0.927 0.084 0.084 0 0.1735 0.7385 0.085 0.081 0 0.353 0.8385 0.088 0.087 0 0.597 0.927 0.094 0.094 0 0.523 0.835 0.082 0.08 0 0.5135 0.6975 0.113 0.107 0 0.9155 0.9425 0.099 0.101 0 0.0955 0.0995 0.083 0.083 0 0.2615 0.139 0.093 0.092 0 0.146 0.2595 0.096 0.093 0 0.045 0.369 0.084 0.09 0 0.138 0.419 0.092 0.082 0 0.3975 0.206 0.099 0.098 0 0.3505 0.3575 0.109 0.099 0 0.8605 0.0725 0.071 0.063 0 0.9525 0.561 0.085 0.092 0 0.962 0.702 0.076 0.086 0 0.866 0.7275 0.116 0.099 0 0.9415 0.905 0.097 0.1 0 0.8315 0.896 0.105 0.104 0 0.749 0.6005 0.106 0.101 0 0.833 0.546 0.114 0.1 0 0.8885 0.4905 0.079 0.073 0 0.2605 0.8845 0.071 0.077 0 0.396 0.766 0.104 0.12 0 0.516 0.6005 0.078 0.069 0 0.277 0.7745 0.09 0.071 0 0.901 0.039 0.102 0.076 0 0.965 0.058 0.06 0.072 0 0.9155 0.1125 0.099 0.091 0 0.9485 0.1935 0.097 0.117 0 0.8175 0.0915 0.093 0.103 0 0.8545 0.215 0.101 0.1 0 0.9375 0.2995 0.075
75%|███████▍ | 154/206 [00:08<00:02, 20.81it/s]
0.067 0 0.962 0.3665 0.076 0.097 0 0.9185 0.4575 0.121 0.123 0 0.878 0.5685 0.096 0.095 0 0.7155 0.1065 0.097 0.091 0 0.767 0.1855 0.086 0.089 0 0.6055 0.09 0.097 0.11 0 0.535 0.127 0.102 0.104 0 0.5815 0.249 0.105 0.12 0 0.589 0.384 0.114 0.12 0 0.585 0.498 0.114 0.102 0 0.735 0.4905 0.092 0.095 0 0.313 0.0765 0.1 0.083 0 0.207 0.083 0.084 0.084 0 0.0525 0.052 0.089 0.084 0 0.0545 0.22 0.093 0.114 0 0.1655 0.225 0.103 0.092 0 0.3495 0.1395 0.091 0.087 0 0.4075 0.0655 0.095 0.101 0 0.437 0.1775 0.09 0.101 0 0.4835 0.2185 0.095 0.095 0 0.3995 0.303 0.103 0.104 0 0.2095 0.3165 0.101 0.089 0 0.301 0.3945 0.092 0.089 0 0.407 0.394 0.116 0.094 0 0.307 0.543 0.108 0.1 0 0.0575 0.4535 0.111 0.127 0 0.134 0.567 0.092 0.076 0 0.1275 0.632 0.103 0.086 0 0.208 0.597 0.088 0.094 0 0.076 0.7865 0.08 0.079 0 0.189 0.744 0.088 0.092 0 0.497 0.566 0.078 0.08 0 0.429 0.584 0.086 0.09 0 0.334 0.7905 0.074 0.077 0 0.405 0.8745 0.082 0.079 0 0.5215 0.744 0.101 0.096 0 0.58 0.662 0.076 0.068 0 0.485 0.9135 0.072 0.071 0 0.5475 0.8855 0.097 0.093 0 0.576 0.837 0.072 0.074 0 0.613 0.9545 0.1 0.089 0 0.7165 0.887 0.123 0.108 0 0.773 0.767 0.082 0.092 0 0.9345 0.898 0.117 0.116 0 0.043 0.0755 0.084 0.083 0 0.154 0.072 0.092 0.094 0 0.0845 0.1805 0.095 0.097 0 0.193 0.173 0.084 0.08 0 0.257 0.0845 0.088 0.085 0 0.426 0.04 0.076 0.07 0 0.549 0.086 0.092 0.076 0 0.6735 0.101 0.091 0.094 0 0.917 0.0965 0.082 0.083 0 0.8245 0.1275 0.095 0.091 0 0.752 0.1545 0.08 0.081 0 0.961 0.218 0.078 0.1 0 0.907 0.299 0.094 0.084 0 0.95 0.382 0.074 0.074 0 0.8655 0.194 0.091 0.084 0 0.7525 0.2545 0.103 0.099 0 0.8015 0.41 0.095 0.098 0 0.8465 0.489 0.097 0.09 0 0.9135 0.647 0.069 0.076 0 0.0355 0.2995 0.067 0.079 0 0.039 0.3915 0.074 0.069 0 0.0365 0.472 0.071 0.074 0 0.16 0.304 0.088 0.082 0 0.284 0.2345 0.066 0.061 0 0.379 0.2095 0.072 0.071 0 0.2725 0.344 0.087 0.084 0 0.3865 0.349 0.091 0.094 0 0.4115 0.4595 0.085 0.085 0 0.455 0.2685 0.058 0.051 0 0.5255 0.332 0.077 0.088 0 0.5145 0.4455 0.093 0.093 0 0.5325 0.5375 0.089 0.087 0 0.491 0.6285 0.076 0.087 0 0.5855 0.6045 0.069 0.077 0 0.4525 0.785 0.071 0.076 0 0.6515 0.5925 0.063 0.069 0 0.7005 0.431 0.071 0.082 0 0.6225 0.823 0.061 0.066 0 0.6595 0.9245 0.069 0.065 0 0.735 0.9635 0.084 0.073 0 0.1 0.119 0.084 0.08 0 0.034 0.1635 0.066 0.091 0 0.3125 0.105 0.091 0.092 0 0.1335 0.313 0.139 0.158 0 0.238 0.456 0.106 0.102 0 0.073 0.5485 0.124 0.149 0 0.232 0.689 0.066 0.066 0 0.411 0.3255 0.1 0.103 0 0.555 0.363 0.112 0.11 0 0.683 0.3855 0.084 0.089 0 0.265 0.8385 0.11 0.113 0 0.2505 0.9465 0.121 0.101 0 0.0445 0.094 0.081 0.084 0 0.522 0.0395 0.106 0.075 0 0.4615 0.1175 0.093 0.083 0 0.4335 0.2225 0.075 0.077 0 0.533 0.207 0.084 0.072 0 0.4845 0.3575 0.075 0.069 0 0.267 0.4865 0.072 0.069 0 0.3015 0.581 0.065 0.058 0 0.326 0.6655 0.062 0.055 0 0.2575 0.764 0.087 0.086 0 0.127 0.861 0.08 0.076 0 0.0375 0.7705 0.073 0.089 0 0.371 0.907 0.09 0.082 0 0.528 0.698 0.074 0.068 0 0.5195 0.5435 0.101 0.105 0 0.654 0.121 0.098 0.104 0 0.7565 0.261 0.083 0.086 0 0.8665 0.3455 0.083 0.087 0 0.9015 0.4505 0.095 0.091 0 0.7885 0.4765 0.089 0.091 0 0.675 0.406 0.078 0.078 0 0.6105 0.3255 0.061 0.053 0 0.7 0.5335 0.086 0.081 0 0.807 0.618 0.062 0.058 0 0.853 0.7275 0.09 0.091 0 0.8385 0.9365 0.095 0.091 0 0.695 0.7355 0.076 0.071 0 0.6935 0.88 0.099 0.098
76%|███████▌ | 157/206 [00:08<00:02, 21.55it/s]
0 0.1975 0.0535 0.113 0.093 0 0.331 0.037 0.098 0.072 0 0.554 0.0405 0.09 0.079 0 0.646 0.0495 0.098 0.095 0 0.7565 0.0745 0.103 0.103 0 0.8785 0.058 0.091 0.084 0 0.888 0.155 0.104 0.088 0 0.947 0.21 0.066 0.06 0 0.753 0.205 0.1 0.1 0 0.632 0.1825 0.09 0.095 0 0.5545 0.206 0.089 0.09 0 0.5265 0.1225 0.089 0.077 0 0.4595 0.1715 0.081 0.077 0 0.3715 0.1615 0.089 0.091 0 0.2965 0.178 0.083 0.096 0 0.2305 0.1665 0.087 0.085 0 0.1545 0.1615 0.091 0.077 0 0.0795 0.1415 0.077 0.079 0 0.112 0.225 0.076 0.072 0 0.0945 0.301 0.091 0.078 0 0.047 0.502 0.09 0.088 0 0.0995 0.436 0.099 0.084 0 0.1265 0.521 0.063 0.06 0 0.2185 0.5135 0.089 0.091 0 0.291 0.459 0.094 0.09 0 0.3145 0.5395 0.089 0.075 0 0.364 0.3345 0.098 0.083 0 0.449 0.368 0.092 0.092 0 0.576 0.315 0.1 0.098 0 0.631 0.348 0.088 0.098 0 0.7385 0.3335 0.089 0.089 0 0.8565 0.361 0.093 0.092 0 0.3935 0.533 0.073 0.076 0 0.479 0.5075 0.078 0.081 0 0.593 0.5235 0.082 0.081 0 0.6875 0.4725 0.087 0.079 0 0.7665 0.5315 0.081 0.079 0 0.85 0.4935 0.094 0.079 0 0.962 0.495 0.076 0.072 0 0.104 0.846 0.122 0.116 0 0.4855 0.7815 0.095 0.095 0 0.887 0.8985 0.084 0.075 0 0.034 0.091 0.06 0.072 0 0.1095 0.097 0.085 0.094 0 0.0565 0.194 0.095 0.104 0 0.147 0.175 0.072 0.07 0 0.231 0.1645 0.098 0.093 0 0.302 0.0905 0.062 0.055 0 0.3085 0.174 0.079 0.078 0 0.155 0.267 0.094 0.092 0 0.1335 0.3485 0.071 0.069 0 0.043 0.385 0.082 0.1 0 0.247 0.2565 0.08 0.079 0 0.236 0.336 0.066 0.062 0 0.4685 0.0395 0.107 0.077 0 0.377 0.1365 0.068 0.065 0 0.4455 0.185 0.091 0.084 0 0.348 0.2645 0.086 0.095 0 0.673 0.0505 0.094 0.085 0 0.6245 0.1675 0.087 0.077 0 0.5395 0.1615 0.063 0.059 0 0.8585 0.0475 0.089 0.077 0 0.9045 0.1245 0.093 0.095 0 0.745 0.1795 0.1 0.095 0 0.8555 0.237 0.103 0.098 0 0.953 0.2475 0.092 0.091 0 0.8595 0.351 0.085 0.076 0 0.7635 0.3465 0.091 0.089 0 0.655 0.3345 0.088 0.089 0 0.5665 0.269 0.095 0.082 0 0.4295 0.335 0.085 0.082 0 0.421 0.414 0.094 0.08 0 0.04 0.6395 0.07 0.075 0 0.117 0.6255 0.092 0.091 0 0.1975 0.5845 0.081 0.073 0 0.298 0.533 0.076 0.086 0 0.0465 0.7445 0.083 0.077 0 0.1915 0.8705 0.061 0.069 0 0.087 0.9705 0.058 0.049 0 0.266 0.879 0.066 0.07 0 0.381 0.531 0.08 0.09 0 0.462 0.561 0.084 0.08 0 0.483 0.636 0.076 0.062 0 0.5635 0.554 0.109 0.118 0 0.632 0.51 0.094 0.102 0 0.6515 0.422 0.083 0.072 0 0.7565 0.469 0.059 0.066 0 0.6795 0.588 0.079 0.072 0 0.0755 0.0995 0.107 0.105 0 0.1725 0.097 0.093 0.092 0 0.278 0.08 0.098 0.088 0 0.122 0.218 0.104 0.1 0 0.0745 0.3275 0.107 0.105 0 0.1015 0.4685 0.107 0.093 0 0.1585 0.406 0.077 0.082 0 0.1775 0.3275 0.085 0.083 0 0.201 0.5065 0.08 0.081 0 0.291 0.4605 0.1 0.093 0 0.269 0.287 0.112 0.094 0 0.3295 0.344 0.075 0.074 0 0.2475 0.1905 0.095 0.083 0 0.3605 0.2045 0.083 0.079 0 0.4015 0.093 0.107 0.1 0 0.5225 0.077 0.103 0.09 0 0.515 0.175 0.11 0.106 0 0.394 0.329 0.066 0.068 0 0.506 0.333 0.092 0.098 0 0.4225 0.432 0.085 0.078 0 0.652 0.0745 0.098 0.087 0 0.6105 0.2135 0.093 0.095 0 0.6995 0.2055 0.099 0.097 0 0.5545 0.486 0.091 0.094 0 0.663 0.327 0.102 0.09 0 0.808 0.321 0.092 0.09 0 0.902 0.2655 0.098 0.085 0 0.163 0.1995 0.112 0.109 0 0.423 0.0975 0.128 0.115 0 0.6535 0.0735 0.075 0.063 0 0.5995 0.201 0.083 0.07 0 0.498 0.277 0.068 0.066 0 0.4365 0.354 0.113 0.11 0 0.614 0.459 0.128 0.126 0 0.911 0.218 0.114 0.114 0 0.8325 0.435 0.123 0.134 0 0.895 0.6785 0.124 0.125 0 0.7565 0.636 0.129 0.124 0 0.777 0.5595 0.072 0.061 0 0.5315 0.627 0.127 0.118 0 0.2745 0.55
79%|███████▉ | 163/206 [00:08<00:01, 22.10it/s]
0.099 0.092 0 0.051 0.1225 0.096 0.113 0 0.255 0.101 0.122 0.11 0 0.2985 0.0455 0.117 0.089 0 0.3865 0.0985 0.111 0.103 0 0.4485 0.157 0.099 0.112 0 0.1575 0.3065 0.125 0.111 0 0.0425 0.436 0.079 0.086 0 0.077 0.5245 0.096 0.095 0 0.1815 0.544 0.099 0.096 0 0.4015 0.464 0.103 0.086 0 0.4135 0.6945 0.099 0.105 0 0.508 0.6505 0.092 0.099 0 0.7105 0.534 0.075 0.068 0 0.6505 0.809 0.079 0.086 0 0.056 0.087 0.094 0.09 0 0.18 0.0755 0.106 0.091 0 0.0435 0.2625 0.079 0.087 0 0.1835 0.188 0.113 0.106 0 0.2965 0.1615 0.087 0.075 0 0.2365 0.268 0.083 0.076 0 0.143 0.347 0.082 0.082 0 0.2555 0.3585 0.075 0.071 0 0.1265 0.4835 0.089 0.085 0 0.2375 0.4545 0.107 0.091 0 0.106 0.6065 0.102 0.103 0 0.2425 0.59 0.087 0.092 0 0.086 0.737 0.078 0.076 0 0.155 0.8115 0.086 0.077 0 0.088 0.92 0.088 0.084 0 0.1995 0.958 0.101 0.084 0 0.267 0.842 0.098 0.1 0 0.206 0.6955 0.084 0.079 0 0.301 0.7595 0.096 0.095 0 0.4265 0.428 0.089 0.09 0 0.3615 0.4855 0.103 0.111 0 0.36 0.588 0.1 0.084 0 0.3965 0.768 0.101 0.124 0 0.387 0.8735 0.052 0.051 0 0.608 0.9265 0.098 0.093 0 0.5985 0.7175 0.073 0.075 0 0.563 0.565 0.066 0.054 0 0.5925 0.4355 0.115 0.111 0 0.7085 0.719 0.077 0.086 0 0.8575 0.76 0.091 0.09 0 0.825 0.884 0.08 0.086 0 0.9485 0.907 0.103 0.116 0 0.97 0.7945 0.06 0.091 0 0.0525 0.5375 0.103 0.119 0 0.2035 0.671 0.121 0.112 0 0.0375 0.9265 0.073 0.077 0 0.426 0.673 0.136 0.118 0 0.263 0.353 0.104 0.108 0 0.3815 0.4635 0.107 0.111 0 0.5125 0.524 0.111 0.102 0 0.6225 0.4785 0.119 0.111 0 0.589 0.3515 0.122 0.119 0 0.528 0.266 0.116 0.11 0 0.4795 0.1795 0.103 0.113 0 0.3915 0.214 0.115 0.106 0 0.3465 0.134 0.109 0.102 0 0.0685 0.3175 0.081 0.079 0 0.1595 0.304 0.077 0.076 0 0.0715 0.0935 0.081 0.071 0 0.2215 0.0335 0.093 0.065 0 0.441 0.0485 0.102 0.089 0 0.488 0.1495 0.088 0.081 0 0.2445 0.211 0.055 0.054 0 0.4135 0.184 0.067 0.06 0 0.5615 0.255 0.081 0.08 0 0.831 0.3095 0.086 0.077 0 0.677 0.381 0.104 0.108 0 0.5245 0.451 0.073 0.074 0 0.4415 0.544 0.059 0.06 0 0.5255 0.627 0.097 0.088 0 0.6495 0.4695 0.069 0.069 0 0.7945 0.464 0.093 0.092 0 0.904 0.536 0.088 0.094 0 0.479 0.0635 0.094 0.089 0 0.404 0.1405 0.078 0.081 0 0.5565 0.1845 0.089 0.087 0 0.633 0.2415 0.102 0.091 0 0.5095 0.3445 0.099 0.093 0 0.507 0.5095 0.092 0.089 0 0.6615 0.607 0.093 0.094 0 0.7065 0.39 0.087 0.076 0 0.819 0.6695 0.096 0.091 0 0.822 0.549 0.086 0.082 0 0.847 0.3675 0.076 0.079 0 0.812 0.1405 0.082 0.073 0 0.871 0.1465 0.058 0.061 0 0.9345 0.2505 0.095 0.079 0 0.944 0.451 0.078 0.086 0 0.9165 0.7205 0.095 0.089 0 0.9045 0.8295 0.101 0.097 0 0.249 0.5655 0.058 0.051
81%|████████ | 166/206 [00:08<00:01, 23.53it/s]
0 0.2975 0.0285 0.087 0.055 0 0.428 0.049 0.098 0.096 0 0.4785 0.1065 0.083 0.083 0 0.5895 0.129 0.093 0.09 0 0.66 0.1975 0.08 0.075 0 0.785 0.135 0.088 0.074 0 0.1565 0.519 0.097 0.086 0 0.26 0.488 0.094 0.082 0 0.34 0.4185 0.084 0.089 0 0.3415 0.5885 0.091 0.095 0 0.498 0.4895 0.108 0.107 0 0.7145 0.542 0.091 0.074 0 0.8135 0.4655 0.097 0.097 0 0.7855 0.3315 0.077 0.075 0 0.9645 0.461 0.071 0.106 0 0.8135 0.608 0.113 0.102 0 0.9625 0.6165 0.075 0.105 0 0.6425 0.8145 0.093 0.083 0 0.737 0.752 0.092 0.096 0 0.827 0.7185 0.1 0.111 0 0.9145 0.722 0.087 0.098 0 0.9695 0.7505 0.061 0.109 0 0.43 0.951 0.084 0.092 0 0.507 0.9495 0.108 0.091 0 0.722 0.915 0.112 0.112 0 0.7945 0.852 0.107 0.114 0 0.038 0.0415 0.074 0.077 0 0.111 0.0605 0.092 0.089 0 0.2245 0.0725 0.091 0.101 0 0.101 0.1515 0.104 0.093 0 0.205 0.184 0.09 0.09 0 0.044 0.237 0.078 0.086 0 0.0605 0.357 0.085 0.084 0 0.0375 0.437 0.071 0.076 0 0.1215 0.4065 0.087 0.083 0 0.2055 0.3885 0.087 0.087 0 0.1825 0.283 0.073 0.078 0 0.3085 0.19 0.071 0.084 0 0.279 0.325 0.088 0.074 0 0.439 0.053 0.088 0.08 0 0.4085 0.112 0.079 0.086 0 0.3925 0.197 0.089 0.084 0 0.42 0.2905 0.098 0.091 0 0.3905 0.437 0.079 0.078 0 0.3505 0.54 0.087 0.08 0 0.5105 0.152 0.091 0.09 0 0.593 0.0955 0.088 0.081 0 0.061 0.325 0.084 0.088 0 0.0805 0.56 0.093 0.092 0 0.143 0.483 0.094 0.09 0 0.1795 0.6035 0.067 0.069 0 0.251 0.327 0.088 0.082 0 0.339 0.1355 0.104 0.101 0 0.3775 0.2975 0.095 0.099 0 0.412 0.4405 0.104 0.099 0 0.474 0.318 0.084 0.084 0 0.5385 0.4245 0.081 0.079 0 0.607 0.556 0.096 0.088 0 0.738 0.5415 0.104 0.089 0 0.843 0.554 0.094 0.096 0 0.908 0.4785 0.094 0.093 0 0.8995 0.745 0.083 0.078 0 0.737 0.8435 0.08 0.089 0 0.7295 0.2685 0.075 0.079 0 0.512 0.1355 0.096 0.105 0 0.7235 0.097 0.111 0.102 0 0.8655 0.07 0.103 0.096 0 0.2365 0.2835 0.097 0.097 0 0.074 0.5305 0.096 0.099 0 0.18 0.602 0.108 0.106 0 0.119 0.7615 0.08 0.091 0 0.1975 0.7565 0.101 0.103 0 0.0955 0.8885 0.111 0.101 0 0.0995 0.956 0.095 0.082 0 0.2275 0.9095 0.093 0.093 0 0.3975 0.3675 0.081 0.075 0 0.478 0.381 0.086 0.086 0 0.4445 0.506 0.093 0.088 0 0.4075 0.675 0.099 0.086 0 0.606 0.4735 0.092 0.083 0 0.7255 0.465 0.071 0.072 0 0.5915 0.1235 0.075 0.071 0 0.685 0.0455 0.074 0.069 0 0.781 0.091 0.102 0.104 0 0.5435 0.5735 0.083 0.089 0 0.5025 0.6465 0.109 0.101 0 0.5475 0.704 0.089 0.086 0 0.4915 0.7765 0.097 0.105 0 0.432 0.845 0.078 0.062 0 0.428 0.9385 0.102 0.087 0 0.5925 0.7985 0.085 0.083 0 0.6445 0.7105 0.101 0.095 0 0.718 0.656 0.102 0.098 0 0.7155 0.7865 0.109 0.111 0 0.7395 0.9555
82%|████████▏ | 169/206 [00:09<00:01, 23.46it/s]
0.083 0.081 0 0.8005 0.8805 0.091 0.093 0 0.915 0.9065 0.094 0.083 0 0.8945 0.6575 0.093 0.083 0 0.139 0.033 0.096 0.064 0 0.043 0.083 0.084 0.078 0 0.1405 0.1175 0.105 0.093 0 0.132 0.2115 0.094 0.091 0 0.0765 0.281 0.077 0.084 0 0.0655 0.378 0.105 0.114 0 0.1455 0.2965 0.071 0.073 0 0.239 0.255 0.098 0.086 0 0.2225 0.159 0.095 0.092 0 0.25 0.076 0.07 0.064 0 0.1185 0.4905 0.079 0.077 0 0.0995 0.5815 0.101 0.095 0 0.0585 0.669 0.093 0.094 0 0.0675 0.7865 0.079 0.073 0 0.0395 0.8725 0.077 0.099 0 0.1225 0.9605 0.089 0.069 0 0.1385 0.88 0.093 0.09 0 0.152 0.7875 0.094 0.093 0 0.1685 0.664 0.095 0.096 0 0.236 0.741 0.096 0.088 0 0.273 0.8445 0.09 0.089 0 0.3495 0.9655 0.099 0.069 0 0.3485 0.9 0.091 0.076 0 0.4355 0.952 0.081 0.082 0 0.514 0.933 0.088 0.09 0 0.6095 0.9335 0.101 0.095 0 0.5635 0.828 0.103 0.098 0 0.6135 0.7765 0.099 0.091 0 0.2605 0.633 0.105 0.098 0 0.2305 0.5465 0.087 0.075 0 0.2 0.4255 0.104 0.107 0 0.281 0.359 0.1 0.1 0 0.292 0.4905 0.084 0.097 0 0.3595 0.6015 0.103 0.101 0 0.4595 0.6115 0.091 0.103 0 0.547 0.5955 0.086 0.089 0 0.6285 0.645 0.075 0.072 0 0.695 0.833 0.084 0.084 0 0.551 0.5005 0.1 0.097 0 0.4765 0.5245 0.083 0.089 0 0.4 0.499 0.084 0.082 0 0.3625 0.4285 0.101 0.091 0 0.397 0.3395 0.092 0.071 0 0.4725 0.412 0.093 0.094 0 0.6145 0.449 0.095 0.088 0 0.6515 0.36 0.083 0.092 0 0.548 0.3665 0.096 0.089 0 0.5705 0.306 0.109 0.084 0 0.486 0.267 0.098 0.092 0 0.394 0.2385 0.098 0.099 0 0.486 0.165 0.078 0.082 0 0.5635 0.212 0.101 0.096 0 0.549 0.1005 0.092 0.091 0 0.6145 0.0535 0.095 0.089 0 0.045 0.095 0.088 0.096 0 0.1425 0.071 0.103 0.094 0 0.216 0.0345 0.08 0.067 0 0.4825 0.046 0.103 0.084 0 0.318 0.106 0.088 0.088 0 0.231 0.116 0.096 0.098 0 0.0485 0.1855 0.095 0.095 0 0.1125 0.24 0.101 0.092 0 0.331 0.2135 0.094 0.089 0 0.4645 0.2175 0.093 0.087 0 0.717 0.194 0.094 0.09 0 0.852 0.146 0.078 0.068 0 0.875 0.2125 0.082 0.071 0 0.083 0.411 0.094 0.078 0 0.1755 0.545 0.085 0.09 0 0.035 0.7095 0.064 0.065 0 0.275 0.629 0.074 0.064 0 0.1195 0.7275 0.101 0.105 0 0.4555 0.6565 0.121 0.111 0 0.3695 0.7565 0.095 0.097 0 0.9705 0.7475 0.059 0.073 0 0.3435 0.031 0.073 0.06 0 0.252 0.113 0.13 0.132 0 0.377 0.1135 0.116 0.105 0 0.4665 0.152 0.063 0.072 0 0.2975 0.18 0.107 0.1 0 0.2615 0.3835 0.091 0.085 0 0.425 0.3235 0.108 0.103 0 0.5045 0.23 0.089 0.088 0 0.5435 0.387 0.099 0.102 0 0.4805 0.5545 0.101 0.099 0 0.49 0.699 0.1 0.106 0 0.413 0.6745 0.098 0.105 0 0.2875 0.67 0.075 0.06 0 0.1365 0.736 0.087 0.082 0 0.1055 0.893 0.117 0.11 0 0.113 0.971 0.088 0.058 0 0.2635 0.8925 0.127 0.117 0 0.416 0.86 0.11 0.104 0 0.494 0.8085 0.1 0.097 0 0.63 0.8545 0.096 0.091 0 0.5465 0.933 0.083 0.08 0 0.4155 0.952 0.103 0.09 0 0.895 0.0475 0.09 0.083 0 0.9405 0.112 0.071 0.068 0 0.9605 0.2415 0.079 0.083 0 0.8765 0.178 0.079 0.076 0 0.778 0.087 0.084 0.086 0 0.6695 0.0565 0.095 0.095 0 0.459 0.1075 0.108 0.105 0 0.188 0.0415 0.086 0.079 0 0.566 0.182 0.072 0.072 0 0.632 0.212 0.098 0.096 0 0.707 0.155 0.078 0.084 0 0.7945 0.234 0.073 0.078 0 0.912 0.3385 0.074 0.079 0 0.964 0.4195 0.072 0.087 0 0.8585 0.4215 0.093 0.083 0 0.876 0.4945 0.114 0.103 0 0.962 0.5295 0.072 0.077 0 0.854 0.5835 0.072 0.063 0 0.834 0.6735 0.114 0.105 0 0.8375 0.8125 0.099 0.091 0 0.7675 0.737 0.099 0.09 0 0.9325 0.918 0.073 0.074 0 0.83 0.966 0.07 0.068 0 0.724 0.9195 0.126 0.117 0 0.601 0.9055 0.082 0.077 0 0.6495 0.8585 0.093 0.087 0 0.6655 0.785 0.079 0.074 0 0.6815 0.653 0.091 0.088 0 0.742 0.5465 0.088 0.085 0 0.7385 0.442 0.095 0.1 0 0.7325 0.3445 0.089 0.077 0 0.5785 0.295 0.095 0.092 0 0.5175 0.33 0.105 0.096 0 0.5725 0.436 0.087 0.084 0 0.629 0.4905 0.094 0.095 0 0.6255 0.5735 0.089 0.089 0 0.575 0.7435 0.09 0.079 0 0.5125 0.8175 0.097 0.097 0 0.447 0.8845 0.092 0.081 0 0.498 0.949 0.062 0.06 0 0.3415 0.8365 0.099 0.087 0 0.487 0.633 0.078 0.07 0 0.498 0.56 0.11 0.09 0 0.387 0.6745 0.088 0.087 0 0.478 0.485 0.084 0.072 0 0.2335 0.762 0.057 0.058 0 0.3865 0.409 0.091 0.084
84%|████████▍ | 173/206 [00:09<00:01, 20.77it/s]
0 0.0385 0.042 0.075 0.082 0 0.1365 0.0765 0.085 0.077 0
85%|████████▌ | 176/206 [00:09<00:01, 19.41it/s]
0.229 0.142 0.094 0.092 0 0.1535 0.21 0.089 0.09 0 0.0525 0.2645 0.091 0.091 0 0.1155 0.3315 0.097 0.093 0 0.0555 0.4715 0.083 0.085 0 0.209 0.4025 0.096 0.093 0 0.197 0.286 0.078 0.074 0 0.2735 0.271 0.081 0.082 0 0.354 0.0595 0.098 0.091 0 0.362 0.168 0.094 0.088 0 0.4385 0.1315 0.075 0.085 0 0.6145 0.0855 0.085 0.083 0 0.5965 0.1855 0.079 0.079 0 0.527 0.099 0.084 0.078 0 0.4295 0.269 0.083 0.094 0 0.5155 0.255 0.083 0.092 0 0.6 0.279 0.08 0.078 0 0.562 0.36 0.086 0.078 0 0.3675 0.426 0.069 0.07 0 0.2975 0.4615 0.093 0.087 0 0.2665 0.542 0.095 0.086 0 0.2115 0.598 0.099 0.094 0 0.215 0.724 0.124 0.11 0 0.1035 0.818 0.065 0.058 0 0.136 0.925 0.078 0.072 0 0.208 0.826 0.092 0.08 0 0.2785 0.8895 0.059 0.051 0 0.396 0.8205 0.098 0.093 0 0.503 0.914 0.108 0.092 0 0.515 0.858 0.062 0.056 0 0.425 0.705 0.082 0.08 0 0.501 0.768 0.112 0.098 0 0.544 0.69 0.096 0.088 0 0.288 0.633 0.062 0.07 0 0.4325 0.502 0.091 0.094 0 0.5245 0.5565 0.087 0.089 0 0.6305 0.6465 0.093 0.077 0 0.8535 0.863 0.077 0.07 0 0.916 0.7445 0.108 0.099 0 0.9585 0.846 0.079 0.08 0 0.654 0.5775 0.09 0.077 0 0.664 0.5035 0.092 0.089 0 0.707 0.294 0.088 0.092 0 0.765 0.385 0.076 0.08 0 0.6815 0.3755 0.079 0.081 0 0.7895 0.4575 0.069 0.073 0 0.9155 0.5885 0.079 0.075 0 0.8995 0.644 0.065 0.068 0 0.0675 0.288 0.085 0.082 0 0.161 0.301 0.08 0.068 0 0.1135 0.4215 0.077 0.077 0 0.082 0.5085 0.08 0.073 0 0.0715 0.6275 0.087 0.093 0 0.1745 0.5055 0.093 0.093 0 0.1395 0.772 0.087 0.082 0 0.0625 0.877 0.083 0.092 0 0.0635 0.9665 0.069 0.067 0 0.147 0.848 0.072 0.064 0 0.2395 0.814 0.079 0.076 0 0.2565 0.687 0.083 0.08 0 0.2915 0.752 0.081 0.066 0 0.3065 0.898 0.083 0.082 0 0.3895 0.949 0.083 0.074 0 0.461 0.889 0.098 0.09 0 0.5085 0.9445 0.121 0.105 0 0.5835 0.8475 0.083 0.071 0 0.438 0.6525 0.094 0.089 0 0.333 0.482 0.084 0.078 0 0.355 0.39 0.086 0.088 0 0.424 0.3845 0.096 0.089 0 0.543 0.334 0.084 0.08 0 0.532 0.4525 0.072 0.063 0 0.531 0.566 0.086 0.088 0 0.578 0.6505 0.086 0.079 0 0.635 0.611 0.082 0.078 0 0.8155 0.9655 0.079 0.063 0 0.9225 0.844 0.079 0.074 0 0.645 0.4485 0.086 0.073 0 0.703 0.3845 0.08 0.075 0 0.627 0.221 0.084 0.078 0 0.7465 0.302 0.093 0.094 0 0.852 0.1425 0.076 0.071 0 0.8025 0.2445 0.069 0.073 0 0.929 0.323 0.098 0.09 0 0.8875 0.236 0.073 0.074 0 0.0675 0.052 0.083 0.08 0 0.0945 0.1295 0.103 0.083 0 0.0485 0.1945 0.093 0.087 0 0.225 0.1105 0.074 0.071 0 0.159 0.2045 0.082 0.071 0 0.11 0.2845 0.08 0.089 0 0.177 0.3155 0.066 0.063 0 0.2965 0.1805 0.079 0.077 0 0.26 0.254 0.104 0.094 0 0.3675 0.261 0.091 0.098 0 0.1425 0.3885 0.087 0.089 0 0.227 0.568 0.11 0.106 0 0.3845 0.454 0.113 0.114 0 0.0785 0.735 0.085 0.086 0 0.1855 0.69 0.083 0.086 0 0.31 0.6655 0.116 0.099 0 0.6425 0.12 0.097 0.092 0 0.639 0.2 0.084 0.082 0 0.939 0.3535 0.078 0.085 0 0.91 0.4235 0.102 0.099 0 0.575 0.6705 0.074 0.075 0 0.6505 0.7045 0.095 0.101 0 0.7785 0.648 0.087 0.088 0 0.8435 0.6305 0.057 0.053 0 0.8265 0.708 0.101 0.094 0 0.9045 0.688 0.107 0.1 0 0.8995 0.7895 0.091 0.089 0 0.9415 0.855 0.087 0.074 0 0.9425 0.943 0.101 0.098 0 0.834 0.8945 0.104 0.101 0 0.799 0.96 0.092 0.074 0 0.6865 0.8515 0.099 0.099 0 0.2775 0.169 0.085 0.082 0 0.0895 0.3385 0.087 0.087 0 0.043 0.546 0.084 0.098 0 0.1395 0.484 0.081 0.082 0 0.203 0.5525 0.098 0.095 0 0.2155 0.6415 0.083 0.083 0 0.1355 0.7145 0.079 0.073 0 0.227 0.749 0.086 0.096 0 0.4085 0.594 0.079 0.078 0 0.4355 0.6975 0.091 0.093 0 0.403 0.7925 0.096 0.095 0 0.2435 0.852 0.081 0.088 0 0.088 0.8935 0.106 0.111 0 0.057 0.9625 0.112 0.075 0 0.2005 0.93 0.099 0.09 0 0.34 0.8625 0.104 0.095 0 0.3435 0.946 0.081 0.072 0 0.4735 0.9205 0.117
87%|████████▋ | 179/206 [00:09<00:01, 19.05it/s]
0.117 0 0.5885 0.8825 0.113 0.095 0 0.697 0.8915 0.102 0.101 0 0.684 0.783 0.08 0.078 0 0.77 0.8225 0.08 0.083 0 0.9565 0.9585 0.087 0.079 0 0.883 0.938 0.086 0.084 0 0.2645 0.1595 0.057 0.069 0 0.778 0.142 0.072 0.074 0 0.4985 0.2395 0.071 0.079 0 0.2725 0.326 0.087 0.094 0 0.1495 0.4195 0.083 0.085 0 0.095 0.5715 0.08 0.083 0 0.3815 0.3675 0.099 0.087 0 0.2695 0.4525 0.103 0.093 0 0.2045 0.5965 0.093 0.095 0 0.3565 0.457 0.093 0.1 0 0.439 0.455 0.088 0.098 0 0.5435 0.4685 0.087 0.075 0 0.655 0.474 0.072 0.068 0 0.45 0.5725 0.104 0.101 0 0.6045 0.5865 0.091 0.095 0 0.342 0.6695 0.096 0.091 0 0.2 0.7 0.1 0.1 0 0.0445 0.7995 0.083 0.095 0 0.0655 0.8915 0.101 0.095 0 0.172 0.9025 0.114 0.115 0 0.2495 0.783 0.101 0.096 0 0.2815 0.8735 0.109 0.095 0 0.2545 0.9635 0.103 0.073 0 0.4285 0.784 0.091 0.096 0 0.3905 0.9075 0.093 0.097 0 0.532 0.9575 0.096 0.081 0 0.6395 0.918 0.089 0.09 0 0.7145 0.929 0.087 0.094 0 0.575 0.777 0.08 0.078 0 0.0595 0.5595 0.077 0.083 0 0.0465 0.6905 0.087 0.097 0 0.2425 0.5855 0.097 0.089 0 0.299 0.4985 0.082 0.081 0 0.402 0.5535 0.096 0.097 0 0.2755 0.795 0.083 0.078 0 0.4965 0.539 0.085 0.09 0 0.4855 0.6755 0.093 0.097 0 0.3895 0.665 0.081 0.092 0 0.392 0.738 0.108 0.086 0 0.349 0.864 0.078 0.076 0 0.349 0.9445 0.096 0.095 0 0.4295 0.957 0.085 0.084 0 0.4475 0.82 0.125 0.116 0 0.5385 0.788 0.105 0.106 0 0.6155 0.731 0.073 0.072 0 0.622 0.856 0.082 0.082 0 0.564 0.9355 0.1 0.091 0 0.668 0.885 0.106 0.108 0 0.658 0.574 0.07 0.08 0 0.773 0.5855 0.066 0.059 0 0.8015 0.707 0.117 0.122 0 0.958 0.789 0.084 0.09 0 0.9425 0.884 0.109 0.112 0 0.9335 0.4545 0.091 0.093 0 0.8215 0.4735 0.127 0.111 0 0.867 0.355 0.076 0.076 0 0.5185 0.335 0.057 0.052 0 0.638 0.308 0.064 0.06 0 0.748 0.3 0.074 0.072 0 0.7965 0.238 0.077 0.074 0 0.8595 0.182 0.061 0.056 0 0.7825 0.161 0.069 0.07 0 0.692 0.1285 0.084 0.075 0 0.7065 0.067 0.089 0.078 0 0.595 0.054 0.076 0.076 0 0.1655 0.3295 0.085 0.083 0 0.303 0.329 0.082 0.078 0 0.3465 0.3915 0.111 0.105 0 0.225 0.415 0.112 0.096 0 0.2 0.4655 0.072 0.063 0 0.2195 0.5185 0.113 0.091 0 0.129 0.653 0.098 0.088 0 0.132 0.782 0.104 0.098 0 0.317 0.474 0.08 0.072 0 0.332 0.5615 0.084 0.075 0 0.4075 0.491 0.099 0.102 0 0.485 0.398 0.08 0.094 0 0.6375 0.318 0.089 0.088 0 0.5105 0.5315 0.087 0.095 0 0.596 0.5295 0.072 0.093 0 0.4965 0.6355 0.083 0.073 0 0.57 0.6755 0.102 0.101 0 0.7185 0.4905 0.111 0.089 0 0.7645 0.3865 0.081 0.073 0 0.8315 0.508 0.087 0.094 0 0.9125 0.5355 0.081 0.077 0 0.1485 0.2185 0.065 0.051 0 0.27 0.2705 0.056 0.053 0 0.361 0.25 0.082 0.078 0 0.712 0.1975 0.06 0.057 0 0.047 0.6185 0.068 0.065 0 0.0845 0.7385 0.089 0.083 0 0.1885 0.67 0.075 0.072 0 0.277 0.703 0.064 0.064 0 0.2055 0.7545 0.085 0.083 0 0.074 0.878 0.08 0.072 0 0.2265 0.9685 0.079 0.061 0 0.494 0.557 0.072 0.072 0 0.645 0.4755 0.09 0.093 0 0.7835 0.517 0.077 0.068 0 0.9645 0.535 0.071 0.086 0 0.7705 0.651 0.093 0.086 0
90%|████████▉ | 185/206 [00:09<00:00, 22.78it/s]
0.551 0.718 0.082 0.08 0 0.508 0.7735 0.088 0.081 0 0.503 0.8495 0.078 0.073 0 0.497 0.973 0.068 0.054 0 0.6445 0.7145 0.095 0.093 0 0.713 0.682 0.076 0.078 0 0.7235 0.762 0.095 0.088 0 0.658 0.893 0.08 0.076 0 0.697 0.825 0.094 0.094 0 0.7325 0.9565 0.083 0.075 0 0.8505 0.9065 0.085 0.083 0 0.773 0.8585 0.096 0.093 0 0.786 0.7945 0.078 0.073 0 0.8625 0.8225 0.081 0.083 0 0.8965 0.747 0.079 0.076 0 0.809 0.7205 0.088 0.085 0 0.9335 0.662 0.077 0.076 0 0.1295 0.317 0.067 0.074 0 0.1465 0.4605 0.079 0.077 0 0.0595 0.5935 0.085 0.093 0 0.2615 0.313 0.075 0.068 0 0.2655 0.4975 0.077 0.075 0 0.2925 0.601 0.083 0.08 0 0.4245 0.616 0.077 0.076 0 0.4465 0.4855 0.071 0.075 0 0.4805 0.343 0.093 0.066 0 0.453 0.263 0.068 0.068 0 0.6455 0.3615 0.085 0.085 0 0.6035 0.48 0.063 0.06 0 0.6265 0.6815 0.069 0.069 0 0.669 0.7805 0.076 0.067 0 0.759 0.6625 0.066 0.061 0 0.7755 0.5645 0.075 0.069 0 0.8605 0.4365 0.079 0.071 0 0.8075 0.3145 0.087 0.079 0 0.965 0.3535 0.07 0.075 0 0.971 0.2425 0.058 0.071 0 0.837 0.197 0.082 0.076 0 0.796 0.118 0.052 0.058 0 0.862 0.0475 0.084 0.083 0 0.1875 0.0605 0.107 0.093 0 0.2995 0.103 0.083 0.08 0 0.2035 0.1615 0.091 0.091 0 0.2135 0.41 0.109 0.098 0 0.4265 0.898 0.101 0.102 0 0.8905 0.954 0.131 0.092 0 0.5835 0.7465 0.133 0.127 0 0.4665 0.6935 0.109 0.103 0 0.8395 0.539 0.115 0.11 0 0.92 0.47 0.118 0.12 0 0.955 0.3265 0.09 0.095 0 0.838 0.361 0.094 0.094 0 0.51 0.305 0.136 0.126 0 0.573 0.182 0.128 0.114 0 0.631 0.2615 0.102 0.109 0 0.564 0.0455 0.09 0.079 0 0.655 0.049 0.092 0.096 0 0.7415 0.0735 0.079 0.075 0 0.7345 0.1775 0.087 0.083 0 0.891 0.052 0.1 0.094 0 0.9495 0.1875 0.093 0.103 0 0.8555 0.2435 0.103 0.107 0 0.156 0.2285 0.076 0.067 0 0.1195 0.3415 0.095 0.093 0 0.1975 0.414 0.095 0.1 0 0.279 0.358 0.098 0.098 0 0.3655 0.381 0.095 0.096 0 0.5165 0.3145 0.119 0.115 0 0.469 0.167 0.106 0.088 0 0.395 0.0265 0.06 0.051 0 0.761 0.1725 0.1 0.099 0 0.787 0.2775 0.084 0.083 0 0.8365 0.129 0.077 0.076 0 0.0865 0.734 0.077 0.068 0 0.2755 0.7845 0.085 0.085 0 0.498 0.8595 0.06 0.063 0 0.8035 0.872 0.081 0.088 0 0.8395 0.741 0.095 0.1 0 0.942 0.804 0.112 0.12 0 0.0635 0.097 0.069 0.076 0 0.1875 0.107 0.079 0.078 0 0.423 0.0975 0.07 0.069 0 0.527 0.0945 0.062 0.061 0 0.2675 0.2395 0.071 0.071 0 0.324 0.258 0.066 0.07 0 0.408 0.2295 0.074 0.079 0 0.502 0.203 0.07 0.07 0 0.5325 0.307 0.079 0.08 0 0.423 0.3195 0.08 0.071 0 0.3305 0.353 0.095 0.096 0 0.25 0.336 0.074 0.076 0 0.3105 0.423 0.065 0.058 0 0.469 0.4315 0.084 0.075 0 0.5575 0.4005 0.081 0.069 0 0.8095 0.393 0.075 0.072 0 0.2025 0.5 0.065 0.066 0 0.2975 0.5245 0.067 0.067 0 0.087 0.717 0.064 0.064 0 0.1805 0.7515 0.071 0.067 0 0.2235 0.9055 0.067 0.065 0 0.6665 0.8655 0.077 0.073 0 0.166 0.0635 0.1 0.089 0 0.213 0.1035 0.07 0.069 0 0.321 0.0865 0.082 0.069 0 0.5435 0.09 0.095 0.082 0 0.638 0.09 0.086 0.08 0 0.803 0.037 0.11 0.072 0 0.513 0.1915 0.08 0.087 0 0.669 0.2345 0.072 0.069 0 0.2665 0.351 0.071 0.078 0 0.3545 0.293 0.079 0.074 0 0.467 0.285 0.09 0.082 0 0.5815 0.3005 0.085 0.081 0 0.33 0.3905 0.08 0.069 0 0.4005 0.4235 0.089 0.083 0 0.5145 0.406 0.085 0.084 0 0.614 0.4015 0.08 0.081 0 0.5535 0.492 0.071 0.076 0 0.7 0.4875 0.06 0.053 0 0.374 0.5865 0.1 0.079 0 0.595 0.637 0.084 0.078 0 0.3495 0.72 0.091 0.092 0 0.479 0.705 0.082 0.078 0 0.4495 0.7685 0.075 0.073 0 0.5675 0.7295 0.089 0.097 0 0.3515 0.832 0.097 0.084 0 0.2955 0.907 0.079 0.084 0 0.3815 0.935 0.083 0.082 0 0.465 0.8465 0.082 0.079 0 0.522 0.9065 0.088 0.087 0 0.6465 0.8705 0.077
91%|█████████▏| 188/206 [00:09<00:00, 22.76it/s]
0.079 0 0.579 0.818 0.084 0.076 0 0.726 0.8835 0.086 0.083 0 0.799 0.8425 0.094 0.097 0 0.96 0.7955 0.08 0.087 0 0.0555 0.067 0.105 0.1 0 0.088 0.1925 0.09 0.081 0 0.1895 0.1745 0.107 0.103 0 0.189 0.286 0.112 0.104 0 0.2425 0.48 0.129 0.134 0 0.507 0.323 0.096 0.096 0 0.6425 0.302 0.111 0.106 0 0.7215 0.2455 0.113 0.109 0 0.8585 0.312 0.119 0.124 0 0.9555 0.2785 0.089 0.093 0 0.9265 0.3965 0.117 0.117 0 0.9285 0.4965 0.105 0.095 0 0.5845 0.398 0.105 0.1 0 0.708 0.409 0.122 0.116 0 0.8245 0.5395 0.111 0.111 0 0.7025 0.5215 0.101 0.101 0 0.6015 0.568 0.121 0.12 0 0.4855 0.581 0.115 0.114 0 0.156 0.731 0.074 0.076 0 0.2585 0.7165 0.115 0.103 0 0.362 0.7415 0.096 0.093 0 0.397 0.6465 0.106 0.103 0 0.478 0.681 0.114 0.092 0 0.6035 0.674 0.101 0.078 0 0.6765 0.73 0.105 0.084 0 0.7045 0.6435 0.095 0.089 0 0.815 0.734 0.11 0.1 0 0.9145 0.682 0.099 0.102 0 0.0575 0.1655 0.079 0.081 0 0.1775 0.046 0.075 0.074 0 0.194 0.152 0.078 0.074 0 0.2625 0.251 0.083 0.086 0 0.3525 0.2205 0.089 0.085 0 0.381 0.098 0.102 0.1 0 0.458 0.202 0.122 0.126 0 0.432 0.3265 0.096 0.099 0 0.3175 0.357 0.095 0.096 0 0.258 0.4545 0.084 0.079 0 0.1515 0.5555 0.071 0.077 0 0.512 0.5045 0.082 0.089 0 0.425 0.5265 0.076 0.077 0 0.323 0.631 0.108 0.094 0 0.195 0.7075 0.076 0.071 0 0.0685 0.2385 0.083 0.087 0 0.1335 0.2915 0.091 0.079 0 0.1025 0.3825 0.095 0.099 0 0.2075 0.3505 0.095 0.091 0 0.2 0.449 0.1 0.114 0 0.139 0.534 0.106 0.092 0 0.135 0.6095 0.104 0.089 0 0.0415 0.6175 0.077 0.113 0 0.249 0.6045 0.092 0.093 0 0.299 0.5375 0.062 0.071 0 0.2005 0.862 0.113 0.128 0 0.2615 0.7915 0.091 0.097 0 0.38 0.6225 0.094 0.093 0 0.4385 0.697 0.095 0.094 0 0.4095 0.8135 0.089 0.091 0 0.514 0.8365 0.08 0.079 0 0.7735 0.904 0.121 0.122 0 0.922 0.9195 0.078 0.079 0 0.8585 0.685 0.113 0.112 0 0.626 0.61 0.088 0.084 0 0.7445 0.57 0.091 0.086 0 0.2705 0.182 0.089 0.088 0 0.395 0.1575 0.104 0.111 0 0.4605 0.077 0.089 0.094 0 0.575 0.1605 0.094 0.095 0 0.637 0.235 0.09 0.086 0 0.7655 0.1685 0.073 0.073 0 0.892 0.11 0.078 0.07 0 0.123 0.0875 0.102 0.087 0 0.206 0.281 0.114 0.116 0 0.4225 0.17 0.105 0.108 0 0.335 0.3095 0.09 0.099 0 0.1825 0.4495 0.097 0.089 0 0.306 0.6005 0.114 0.101 0 0.293 0.719 0.086 0.088 0 0.8285 0.053 0.107 0.096 0 0.7425 0.0985 0.057 0.061 0 0.7465 0.2195 0.093 0.093 0 0.6155 0.2355 0.107 0.113 0 0.6285 0.34 0.101 0.104 0 0.4895 0.437 0.109 0.112 0 0.648 0.4885 0.102 0.113 0 0.676 0.686 0.096 0.1 0 0.495 0.6835 0.096 0.097 0 0.443 0.7625 0.092 0.089 0 0.708 0.908 0.118 0.108 0 0.751 0.778 0.1 0.1 0 0.113 0.148 0.102 0.102 0 0.319 0.061 0.078 0.076 0 0.2945 0.1785 0.079 0.069 0 0.2295 0.291 0.091 0.09 0 0.5845 0.103 0.087 0.084 0 0.581 0.219 0.092 0.094 0 0.368 0.3145 0.112 0.109 0 0.534 0.355 0.074 0.078 0 0.6945 0.344 0.093 0.096 0 0.8025 0.258 0.073 0.07 0 0.0645 0.3895 0.071 0.083 0 0.163 0.413 0.062 0.064 0 0.347 0.407 0.086 0.078 0 0.248 0.491 0.08 0.082 0 0.0395 0.549 0.077 0.09 0 0.5355 0.4915 0.093 0.089 0 0.685 0.472 0.102 0.098 0 0.8245 0.4545 0.091 0.093 0 0.3335 0.6195 0.077 0.077 0 0.2235 0.8345 0.079 0.087 0 0.37 0.864 0.108 0.104 0 0.831 0.8525 0.098 0.093 0 0.7855 0.9485 0.091 0.079
94%|█████████▍| 194/206 [00:10<00:00, 24.55it/s]
0 0.2345 0.122 0.101 0.088 0 0.0405 0.3285 0.077 0.103 0 0.2165 0.377 0.089 0.088 0 0.1155 0.6875 0.071 0.083 0 0.2625 0.6955 0.093 0.079 0 0.4265 0.661 0.071 0.07 0 0.5045 0.6755 0.055 0.059 0 0.6445 0.652 0.047 0.042 0 0.562 0.7625 0.104 0.095 0 0.3825 0.9295 0.093 0.087 0 0.2795 0.899 0.103 0.096 0 0.8795 0.2205 0.109 0.085 0 0.3285 0.1145 0.061 0.065 0 0.236 0.1365 0.068 0.081 0 0.2025 0.2275 0.081 0.075 0 0.1725 0.358 0.083 0.082 0 0.2375 0.404 0.081 0.08 0 0.287 0.4875 0.08 0.081 0 0.5445 0.1295 0.055 0.065 0 0.4475 0.2915 0.077 0.085 0 0.5555 0.283 0.081 0.078 0 0.5705 0.4155 0.085 0.089 0 0.5205 0.5325 0.089 0.083 0 0.2225 0.655 0.081 0.078 0 0.065 0.753 0.1 0.094 0 0.114 0.8335 0.08 0.077 0 0.172 0.7645 0.078 0.081 0 0.2765 0.9055 0.081 0.083 0 0.3145 0.8505 0.079 0.085 0 0.395 0.794 0.076 0.094 0 0.3775 0.6495 0.089 0.087 0 0.493 0.6915 0.088 0.081 0 0.4975 0.612 0.081 0.078 0 0.647 0.558 0.088 0.078 0 0.731 0.6335 0.08 0.085 0 0.772 0.742 0.094 0.082 0 0.846 0.643 0.088 0.092 0 0.833 0.954 0.092 0.088 0 0.868 0.8035 0.084 0.083 0 0.917 0.541 0.094 0.096 0 0.9115 0.4295 0.083 0.087 0 0.8705 0.3465 0.083 0.085 0 0.743 0.35 0.076 0.08 0 0.64 0.3605 0.06 0.059 0 0.971 0.044 0.058 0.062 0 0.063 0.236 0.092 0.088 0 0.2445 0.1325 0.095 0.089 0 0.4305 0.1125 0.099 0.091 0 0.373 0.1535 0.096 0.089 0 0.3325 0.2325 0.099 0.097 0 0.238 0.3045 0.09 0.095 0 0.28 0.4215 0.092 0.089 0 0.0515 0.594 0.085 0.092 0 0.0715 0.705 0.081 0.088 0 0.2515 0.615 0.079 0.074 0 0.374 0.6425 0.068 0.059 0 0.2825 0.7985 0.069 0.069 0 0.484 0.699 0.096 0.1 0 0.469 0.5335 0.088 0.083 0 0.486 0.959 0.106 0.082 0 0.714 0.8605 0.09 0.093 0 0.4615 0.4205 0.085 0.087 0 0.54 0.4625 0.088 0.091 0 0.58 0.3795 0.078 0.081 0 0.531 0.3025 0.09 0.087 0 0.5485 0.193 0.105 0.1 0 0.744 0.2765 0.074 0.089 0 0.941 0.3535 0.088 0.085 0 0.0515 0.2265 0.095 0.103 0 0.2225 0.4065 0.065 0.067 0 0.2425 0.294 0.087 0.088 0 0.2695 0.214 0.085 0.076 0 0.423 0.1205 0.096 0.103 0 0.5035 0.1375 0.091 0.091 0 0.5275 0.0435 0.071 0.071 0 0.903 0.1265 0.08 0.071 0 0.9505 0.384 0.085 0.098 0 0.5535 0.3455 0.089 0.087 0 0.6575 0.451 0.075 0.076 0 0.435 0.512 0.078 0.078 0 0.338 0.4275 0.078 0.079 0 0.3595 0.6945 0.065 0.061 0 0.4185 0.886 0.081 0.08 0 0.5275 0.942 0.083 0.082 0 0.044 0.047 0.086 0.092 0 0.197 0.0495 0.102 0.095 0 0.1645 0.0865 0.067 0.069 0 0.032 0.3695 0.06 0.059 0 0.129 0.362 0.066 0.072 0 0.243 0.362 0.07 0.074 0 0.263 0.189 0.09 0.088 0 0.3535 0.215 0.089 0.086 0 0.328 0.1065 0.076 0.085 0 0.4035 0.1245 0.085 0.099 0 0.453 0.211 0.092 0.088 0 0.5385 0.0425 0.091 0.081 0 0.573 0.216 0.09 0.096 0 0.627 0.153 0.074 0.08 0 0.787 0.195 0.09 0.082 0 0.873 0.186 0.09 0.09 0 0.958 0.269 0.08 0.082 0 0.812 0.304 0.084 0.086 0 0.677 0.3195 0.098 0.097 0 0.7685 0.381 0.087 0.086 0 0.708 0.443 0.094 0.09 0 0.613 0.3805 0.084 0.073 0 0.534 0.4325 0.084 0.079 0 0.473 0.512 0.07 0.068 0 0.5355 0.5565 0.081 0.079 0 0.739 0.5345 0.08 0.073 0 0.205 0.453 0.078 0.076 0 0.21 0.1475 0.096 0.081 0 0.297 0.2515 0.096 0.093 0 0.3335 0.3555 0.095 0.085 0 0.121 0.4485 0.09 0.093 0 0.239 0.4635 0.098 0.103 0 0.3135 0.53 0.087 0.094 0 0.3975 0.499 0.087 0.082 0 0.4175 0.647 0.071 0.068 0 0.462 0.3015 0.084 0.089 0 0.468 0.171 0.104 0.088 0 0.466 0.0805 0.104 0.091 0 0.7105 0.1035 0.089 0.093 0 0.8115 0.1315 0.091 0.087 0 0.58 0.2995 0.114 0.113 0 0.6905 0.2825 0.091 0.089 0 0.6835 0.4665 0.105 0.099 0 0.6925 0.6005 0.097 0.097 0 0.8355 0.5685 0.085 0.083 0 0.849 0.4365 0.09 0.087 0 0.4275 0.8425 0.085 0.085 0 0.6725 0.8275 0.095 0.089
98%|█████████▊| 201/206 [00:10<00:00, 28.91it/s]
0 0.2305 0.182 0.097 0.098 0 0.21 0.4215 0.074 0.065 0 0.2145 0.599 0.085 0.078 0 0.402 0.1785 0.058 0.057 0 0.555 0.2225 0.076 0.073 0 0.4805 0.422 0.083 0.082 0 0.4725 0.6065 0.083 0.083 0 0.2495 0.8635 0.073 0.067 0 0.382 0.852 0.106 0.1 0 0.4235 0.9595 0.099 0.077 0 0.568 0.9145 0.064 0.063 0 0.6585 0.8335 0.087 0.087 0 0.7515 0.8825 0.105 0.107 0 0.8625 0.8145 0.083 0.081 0 0.628 0.735 0.084 0.082 0 0.8975 0.697 0.065 0.06 0 0.6635 0.6255 0.055 0.049 0 0.859 0.5625 0.068 0.057 0 0.72 0.5125 0.092 0.079 0 0.8155 0.423 0.103 0.098 0 0.637 0.364 0.1 0.098 0 0.8105 0.3015 0.093 0.089 0 0.8955 0.196 0.087 0.084 0 0.1345 0.542 0.111 0.108 0 0.17 0.631 0.112 0.094 0 0.0925 0.881 0.083 0.082 0 0.307 0.7305 0.082 0.073 0 0.295 0.859 0.126 0.106 0 0.414 0.8525 0.092 0.091 0 0.5025 0.881 0.103 0.098 0 0.685 0.6615 0.114 0.115 0 0.9085 0.42 0.097 0.092 0 0.836 0.5175 0.092 0.101 0 0.8065 0.625 0.115 0.104 0 0.8495 0.7395 0.135 0.125 0 0.744 0.8445 0.088 0.089 0 0.9495 0.959 0.085 0.082 0 0.048 0.121 0.092 0.084 0 0.076 0.748 0.118 0.128 0 0.111 0.8935 0.1 0.097 0 0.175 0.716 0.12 0.12 0 0.4315 0.696 0.111 0.116 0 0.437 0.585 0.108 0.106 0 0.2755 0.4815 0.063 0.059 0 0.5095 0.778 0.119 0.114 0 0.702 0.835 0.098 0.102 0 0.56 0.408 0.078 0.07 0 0.481 0.277 0.1 0.106 0 0.582 0.303 0.104 0.096 0 0.8865 0.7725 0.107 0.111 0 0.84 0.6335 0.1 0.099 0 0.7185 0.388 0.081 0.066 0 0.7015 0.311 0.107 0.094 0 0.7935 0.2305 0.063 0.063 0 0.7145 0.2135 0.101 0.105 0 0.6205 0.1765 0.079 0.073 0 0.638 0.093 0.106 0.1 0 0.535 0.0535 0.122 0.103 0 0.4065 0.89 0.079 0.088 0 0.158 0.658 0.086 0.096 0 0.139 0.332 0.088 0.082 0 0.322 0.649 0.104 0.106 0 0.401 0.6015 0.108 0.109 0 0.4445 0.504 0.095 0.084 0 0.5135 0.797 0.087 0.092 0 0.551 0.895 0.08 0.086 0 0.637 0.919 0.08 0.082 0 0.6105 0.7375 0.095 0.103 0 0.547 0.677 0.09 0.104 0 0.66 0.569 0.08 0.092 0 0.7795 0.5765 0.109 0.115 0 0.824 0.6505 0.09 0.097 0 0.888 0.606 0.09 0.086 0 0.959 0.646 0.082 0.114 0 0.9105 0.5475 0.073 0.065 0 0.929 0.4785 0.082 0.091 0 0.866 0.445 0.082 0.078 0 0.7135 0.3135 0.077 0.077 0 0.6655 0.25 0.127 0.12 0 0.96 0.089 0.08 0.1 0 0.054 0.1785 0.098 0.095 0 0.0515 0.3755 0.099 0.107 0 0.0355 0.5775 0.069 0.079 0 0.179 0.3045 0.108 0.107 0 0.1765 0.1565 0.089 0.087 0 0.224 0.453 0.104 0.112 0 0.1835 0.705 0.093 0.092 0 0.3025 0.7455 0.075 0.073 0 0.3825 0.8095 0.071 0.071 0 0.322 0.5835 0.09 0.095 0 0.4885 0.312 0.079 0.068 0 0.3755 0.216 0.081 0.082 0 0.518 0.1755 0.078 0.083 0 0.6415 0.3765 0.099 0.095 0 0.6665 0.515 0.107 0.1 0 0.4995 0.4495 0.103 0.105 0 0.644 0.1345 0.094 0.087 0 0.754 0.0505 0.1 0.089 0 0.891 0.109 0.08 0.08 0 0.9625 0.2775 0.075 0.093 0 0.8175 0.276 0.099 0.102 0 0.954 0.42 0.086 0.094 0 0.6945 0.9575 0.091 0.079 0 0.4485 0.071 0.091 0.096 0 0.1495 0.177 0.105 0.096 0 0.0795 0.2285 0.103 0.097 0 0.19 0.264 0.086 0.072 0 0.3695 0.2 0.077 0.07 0 0.435 0.2325 0.088 0.083 0 0.3895 0.338 0.087 0.086 0 0.791 0.0695 0.084 0.079 0 0.878 0.09 0.088 0.088 0 0.8285 0.1915 0.079 0.081 0 0.9125 0.2165 0.109 0.109 0 0.751 0.2345 0.076 0.073 0 0.924 0.314 0.094 0.08 0 0.7235 0.363 0.103 0.106 0 0.8495 0.4025 0.083 0.075 0 0.614 0.4015 0.112 0.111 0 0.603 0.504 0.092 0.086 0 0.4645 0.4885 0.091 0.085 0 0.37 0.5125 0.07 0.073 0 0.282 0.5875 0.098 0.091 0 0.051 0.635 0.078 0.084 0 0.114 0.6175 0.066 0.063 0 0.27 0.6835 0.08 0.075 0 0.3525 0.668 0.085 0.068 0 0.435 0.6065 0.088 0.077 0 0.3185 0.7635 0.091 0.089 0 0.199 0.9025 0.096 0.093 0 0.403 0.866 0.104 0.112 0 0.438 0.7175 0.078 0.059 0 0.6135 0.745 0.103 0.096 0 0.581 0.586 0.088 0.084 0 0.6705 0.588 0.099 0.092 0 0.742 0.601 0.07 0.074 0 0.8125 0.658 0.087 0.088 0 0.9135 0.6445 0.071 0.071 0 0.942 0.721 0.076 0.07 0 0.1175 0.0795 0.091 0.091 0 0.035 0.111 0.068 0.08 0 0.04 0.0315 0.078 0.061 0 0.0855 0.173 0.083 0.08 0 0.1115 0.2435 0.093 0.093 0 0.0375 0.388 0.073 0.096 0 0.0945 0.3525 0.091 0.091 0 0.1795 0.32 0.085 0.076 0 0.0495 0.4895 0.091 0.091 0 0.156 0.478 0.078 0.07 0 0.2635 0.4825 0.095 0.095 0 0.331 0.557 0.092 0.086 0 0.418 0.5355
100%|██████████| 206/206 [00:10<00:00, 19.52it/s]
0.094 0.089 0 0.41 0.443 0.114 0.096 0 0.3165 0.384 0.093 0.1 0 0.4925 0.361 0.075 0.088 0 0.593 0.395 0.082 0.082 0 0.0785 0.6425 0.069 0.069 0 0.093 0.7435 0.08 0.075 0 0.232 0.7195 0.068 0.059 0 0.208 0.6345 0.064 0.055 0 0.1885 0.172 0.089 0.086 0 0.278 0.172 0.086 0.088 0 0.2745 0.095 0.087 0.074 0 0.227 0.043 0.112 0.082 0 0.4185 0.0365 0.093 0.071 0 0.4735 0.1315 0.087 0.085 0 0.462 0.258 0.08 0.084 0 0.634 0.312 0.082 0.08 0 0.588 0.2145 0.068 0.063 0 0.5645 0.104 0.091 0.076 0 0.5475 0.0335 0.097 0.065 0 0.677 0.077 0.09 0.09 0 0.6585 0.187 0.067 0.076 0 0.759 0.0915 0.082 0.081 0 0.8655 0.0515 0.093 0.087 0 0.7885 0.1955 0.079 0.077 0 0.7675 0.3265 0.065 0.073 0 0.906 0.432 0.054 0.052 0 0.901 0.781 0.07 0.066 0 0.794 0.49 0.06 0.05 0 0.0405 0.1175 0.075 0.075 0 0.1765 0.0885 0.087 0.081 0 0.135 0.1945 0.084 0.089 0 0.087 0.281 0.074 0.062 0 0.1215 0.3705 0.095 0.087 0 0.281 0.17 0.096 0.092 0 0.3725 0.2855 0.063 0.055 0 0.2505 0.494 0.093 0.088 0 0.2945 0.5945 0.099 0.093 0 0.378 0.383 0.058 0.052 0 0.5005 0.328 0.095 0.102 0 0.6315 0.0395 0.099 0.077 0 0.7425 0.047 0.083 0.074 0 0.668 0.19 0.096 0.088 0 0.6545 0.302 0.093 0.09 0 0.558 0.438 0.066 0.068 0 0.465 0.671 0.076 0.076 0 0.5805 0.6775 0.105 0.105 0 0.775 0.6 0.114 0.102 0 0.7865 0.0555 0.109 0.109 0 0.6765 0.0795 0.089 0.093 0 0.9115 0.2515 0.107 0.115 0 0.786 0.3375 0.082 0.085 0 0.648 0.3415 0.078 0.075 0 0.5835 0.4885 0.119 0.109 0 0.602 0.597 0.086 0.076 0 0.834 0.551 0.086 0.082 0 0.9605 0.5405 0.079 0.083 0 0.8465 0.6735 0.105 0.101 0 0.7105 0.6945 0.113 0.109 0 0.057 0.8815 0.1 0.095 0 0.516 0.8285 0.09 0.089
f = open('/content/yolov7/plant_data/labels/train/'+os.listdir("/content/yolov7/plant_data/labels/train/")[0])
print(f.name)
for l in f:
print(l)
/content/yolov7/plant_data/labels/train/tonga_292.txt 0 0.709500 0.956000 0.085000 0.080000 0 0.748500 0.850500 0.063000 0.063000 0 0.648500 0.829000 0.073000 0.080000 0 0.351500 0.920000 0.079000 0.076000 0 0.244500 0.932500 0.075000 0.073000 0 0.409000 0.820000 0.084000 0.092000 0 0.197000 0.828500 0.078000 0.087000 0 0.237000 0.749000 0.072000 0.080000 0 0.153500 0.732000 0.063000 0.070000 0 0.092500 0.669500 0.087000 0.087000 0 0.168000 0.636500 0.072000 0.073000 0 0.125500 0.549000 0.077000 0.084000 0 0.250500 0.490000 0.071000 0.064000 0 0.810500 0.670500 0.087000 0.085000 0 0.718000 0.666000 0.070000 0.080000 0 0.618500 0.603500 0.071000 0.083000 0 0.453000 0.528500 0.076000 0.077000 0 0.393500 0.555000 0.073000 0.074000 0 0.889000 0.577000 0.066000 0.064000 0 0.758500 0.545500 0.075000 0.075000 0 0.645000 0.497500 0.080000 0.077000 0 0.498000 0.430000 0.068000 0.072000 0 0.418000 0.424000 0.072000 0.070000 0 0.921000 0.473500 0.056000 0.055000 0 0.798000 0.432000 0.072000 0.064000 0 0.695500 0.390000 0.081000 0.082000 0 0.515500 0.332500 0.073000 0.079000 0 0.303500 0.299000 0.083000 0.082000 0 0.254500 0.231500 0.065000 0.067000 0 0.065500 0.282000 0.055000 0.056000 0 0.179000 0.098500 0.084000 0.075000 0 0.311500 0.042000 0.085000 0.080000 0 0.385000 0.090000 0.072000 0.072000 0 0.490500 0.102500 0.085000 0.079000 0 0.617500 0.061000 0.071000 0.064000 0 0.599000 0.135500 0.070000 0.063000 0 0.569000 0.231500 0.070000 0.067000 0 0.845000 0.333000 0.074000 0.070000 0 0.884000 0.212500 0.062000 0.061000 0 0.758000 0.068000 0.076000 0.068000
Now let's configure some yolov7 files:
%cd yolov7
/content/yolov7
First we create the yaml with information like image paths, class number and class names.
%%writefile plant.yaml
train: plant_data/images/train
val: plant_data/images/validation
nc: 1
names: ['plant']
Writing plant.yaml
And we can also create a file with the identification names:
%%writefile data/plant.names
plant
Writing data/plant.names
Before running the training, we will replace the loss.py file so that we can run it here in colab with this version of pytorch.
shutil.copyfile(
'/content/drive/MyDrive/Datasets/Mastertheis/MasterThesis-master/loss.py',
'/content/yolov7/utils/loss.py')
'/content/yolov7/utils/loss.py'
To train the model with our data, we pass some information such as image size, bath_size, the yaml file with the information, and the number of epochs:
!python train.py --workers 8 --device 0 --batch-size 8 --data plant.yaml --img 1000 1000 --cfg cfg/training/yolov7.yaml --weights '' --name plant_result --epochs 20
YOLOR 🚀 v0.1-116-g8c0bf3f torch 1.13.0+cu116 CUDA:0 (Tesla T4, 15109.75MB) Namespace(adam=False, artifact_alias='latest', batch_size=8, bbox_interval=-1, bucket='', cache_images=False, cfg='cfg/training/yolov7.yaml', data='plant.yaml', device='0', entity=None, epochs=20, evolve=False, exist_ok=False, freeze=[0], global_rank=-1, hyp='data/hyp.scratch.p5.yaml', image_weights=False, img_size=[1000, 1000], label_smoothing=0.0, linear_lr=False, local_rank=-1, multi_scale=False, name='plant_result', noautoanchor=False, nosave=False, notest=False, project='runs/train', quad=False, rect=False, resume=False, save_dir='runs/train/plant_result3', save_period=-1, single_cls=False, sync_bn=False, total_batch_size=8, upload_dataset=False, v5_metric=False, weights='', workers=8, world_size=1) tensorboard: Start with 'tensorboard --logdir runs/train', view at http://localhost:6006/ hyperparameters: lr0=0.01, lrf=0.1, momentum=0.937, weight_decay=0.0005, warmup_epochs=3.0, warmup_momentum=0.8, warmup_bias_lr=0.1, box=0.05, cls=0.3, cls_pw=1.0, obj=0.7, obj_pw=1.0, iou_t=0.2, anchor_t=4.0, fl_gamma=0.0, hsv_h=0.015, hsv_s=0.7, hsv_v=0.4, degrees=0.0, translate=0.2, scale=0.9, shear=0.0, perspective=0.0, flipud=0.0, fliplr=0.5, mosaic=1.0, mixup=0.15, copy_paste=0.0, paste_in=0.15, loss_ota=1 wandb: Install Weights & Biases for YOLOR logging with 'pip install wandb' (recommended) Overriding model.yaml nc=80 with nc=1 from n params module arguments 0 -1 1 928 models.common.Conv [3, 32, 3, 1] 1 -1 1 18560 models.common.Conv [32, 64, 3, 2] 2 -1 1 36992 models.common.Conv [64, 64, 3, 1] 3 -1 1 73984 models.common.Conv [64, 128, 3, 2] 4 -1 1 8320 models.common.Conv [128, 64, 1, 1] 5 -2 1 8320 models.common.Conv [128, 64, 1, 1] 6 -1 1 36992 models.common.Conv [64, 64, 3, 1] 7 -1 1 36992 models.common.Conv [64, 64, 3, 1] 8 -1 1 36992 models.common.Conv [64, 64, 3, 1] 9 -1 1 36992 models.common.Conv [64, 64, 3, 1] 10 [-1, -3, -5, -6] 1 0 models.common.Concat [1] 11 -1 1 66048 models.common.Conv [256, 256, 1, 1] 12 -1 1 0 models.common.MP [] 13 -1 1 33024 models.common.Conv [256, 128, 1, 1] 14 -3 1 33024 models.common.Conv [256, 128, 1, 1] 15 -1 1 147712 models.common.Conv [128, 128, 3, 2] 16 [-1, -3] 1 0 models.common.Concat [1] 17 -1 1 33024 models.common.Conv [256, 128, 1, 1] 18 -2 1 33024 models.common.Conv [256, 128, 1, 1] 19 -1 1 147712 models.common.Conv [128, 128, 3, 1] 20 -1 1 147712 models.common.Conv [128, 128, 3, 1] 21 -1 1 147712 models.common.Conv [128, 128, 3, 1] 22 -1 1 147712 models.common.Conv [128, 128, 3, 1] 23 [-1, -3, -5, -6] 1 0 models.common.Concat [1] 24 -1 1 263168 models.common.Conv [512, 512, 1, 1] 25 -1 1 0 models.common.MP [] 26 -1 1 131584 models.common.Conv [512, 256, 1, 1] 27 -3 1 131584 models.common.Conv [512, 256, 1, 1] 28 -1 1 590336 models.common.Conv [256, 256, 3, 2] 29 [-1, -3] 1 0 models.common.Concat [1] 30 -1 1 131584 models.common.Conv [512, 256, 1, 1] 31 -2 1 131584 models.common.Conv [512, 256, 1, 1] 32 -1 1 590336 models.common.Conv [256, 256, 3, 1] 33 -1 1 590336 models.common.Conv [256, 256, 3, 1] 34 -1 1 590336 models.common.Conv [256, 256, 3, 1] 35 -1 1 590336 models.common.Conv [256, 256, 3, 1] 36 [-1, -3, -5, -6] 1 0 models.common.Concat [1] 37 -1 1 1050624 models.common.Conv [1024, 1024, 1, 1] 38 -1 1 0 models.common.MP [] 39 -1 1 525312 models.common.Conv [1024, 512, 1, 1] 40 -3 1 525312 models.common.Conv [1024, 512, 1, 1] 41 -1 1 2360320 models.common.Conv [512, 512, 3, 2] 42 [-1, -3] 1 0 models.common.Concat [1] 43 -1 1 262656 models.common.Conv [1024, 256, 1, 1] 44 -2 1 262656 models.common.Conv [1024, 256, 1, 1] 45 -1 1 590336 models.common.Conv [256, 256, 3, 1] 46 -1 1 590336 models.common.Conv [256, 256, 3, 1] 47 -1 1 590336 models.common.Conv [256, 256, 3, 1] 48 -1 1 590336 models.common.Conv [256, 256, 3, 1] 49 [-1, -3, -5, -6] 1 0 models.common.Concat [1] 50 -1 1 1050624 models.common.Conv [1024, 1024, 1, 1] 51 -1 1 7609344 models.common.SPPCSPC [1024, 512, 1] 52 -1 1 131584 models.common.Conv [512, 256, 1, 1] 53 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] 54 37 1 262656 models.common.Conv [1024, 256, 1, 1] 55 [-1, -2] 1 0 models.common.Concat [1] 56 -1 1 131584 models.common.Conv [512, 256, 1, 1] 57 -2 1 131584 models.common.Conv [512, 256, 1, 1] 58 -1 1 295168 models.common.Conv [256, 128, 3, 1] 59 -1 1 147712 models.common.Conv [128, 128, 3, 1] 60 -1 1 147712 models.common.Conv [128, 128, 3, 1] 61 -1 1 147712 models.common.Conv [128, 128, 3, 1] 62[-1, -2, -3, -4, -5, -6] 1 0 models.common.Concat [1] 63 -1 1 262656 models.common.Conv [1024, 256, 1, 1] 64 -1 1 33024 models.common.Conv [256, 128, 1, 1] 65 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] 66 24 1 65792 models.common.Conv [512, 128, 1, 1] 67 [-1, -2] 1 0 models.common.Concat [1] 68 -1 1 33024 models.common.Conv [256, 128, 1, 1] 69 -2 1 33024 models.common.Conv [256, 128, 1, 1] 70 -1 1 73856 models.common.Conv [128, 64, 3, 1] 71 -1 1 36992 models.common.Conv [64, 64, 3, 1] 72 -1 1 36992 models.common.Conv [64, 64, 3, 1] 73 -1 1 36992 models.common.Conv [64, 64, 3, 1] 74[-1, -2, -3, -4, -5, -6] 1 0 models.common.Concat [1] 75 -1 1 65792 models.common.Conv [512, 128, 1, 1] 76 -1 1 0 models.common.MP [] 77 -1 1 16640 models.common.Conv [128, 128, 1, 1] 78 -3 1 16640 models.common.Conv [128, 128, 1, 1] 79 -1 1 147712 models.common.Conv [128, 128, 3, 2] 80 [-1, -3, 63] 1 0 models.common.Concat [1] 81 -1 1 131584 models.common.Conv [512, 256, 1, 1] 82 -2 1 131584 models.common.Conv [512, 256, 1, 1] 83 -1 1 295168 models.common.Conv [256, 128, 3, 1] 84 -1 1 147712 models.common.Conv [128, 128, 3, 1] 85 -1 1 147712 models.common.Conv [128, 128, 3, 1] 86 -1 1 147712 models.common.Conv [128, 128, 3, 1] 87[-1, -2, -3, -4, -5, -6] 1 0 models.common.Concat [1] 88 -1 1 262656 models.common.Conv [1024, 256, 1, 1] 89 -1 1 0 models.common.MP [] 90 -1 1 66048 models.common.Conv [256, 256, 1, 1] 91 -3 1 66048 models.common.Conv [256, 256, 1, 1] 92 -1 1 590336 models.common.Conv [256, 256, 3, 2] 93 [-1, -3, 51] 1 0 models.common.Concat [1] 94 -1 1 525312 models.common.Conv [1024, 512, 1, 1] 95 -2 1 525312 models.common.Conv [1024, 512, 1, 1] 96 -1 1 1180160 models.common.Conv [512, 256, 3, 1] 97 -1 1 590336 models.common.Conv [256, 256, 3, 1] 98 -1 1 590336 models.common.Conv [256, 256, 3, 1] 99 -1 1 590336 models.common.Conv [256, 256, 3, 1] 100[-1, -2, -3, -4, -5, -6] 1 0 models.common.Concat [1] 101 -1 1 1049600 models.common.Conv [2048, 512, 1, 1] 102 75 1 328704 models.common.RepConv [128, 256, 3, 1] 103 88 1 1312768 models.common.RepConv [256, 512, 3, 1] 104 101 1 5246976 models.common.RepConv [512, 1024, 3, 1] 105 [102, 103, 104] 1 34156 models.yolo.IDetect [1, [[12, 16, 19, 36, 40, 28], [36, 75, 76, 55, 72, 146], [142, 110, 192, 243, 459, 401]], [256, 512, 1024]] /usr/local/lib/python3.8/dist-packages/torch/functional.py:504: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at ../aten/src/ATen/native/TensorShape.cpp:3190.) return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined] Model Summary: 415 layers, 37196556 parameters, 37196556 gradients, 105.1 GFLOPS Scaled weight_decay = 0.0005 Optimizer groups: 95 .bias, 95 conv.weight, 98 other WARNING: --img-size 1000 must be multiple of max stride 32, updating to 1024 WARNING: --img-size 1000 must be multiple of max stride 32, updating to 1024 train: Scanning 'plant_data/labels/train.cache' images and labels... 486 found, 0 missing, 0 empty, 5 corrupted: 100% 486/486 [00:00<?, ?it/s] val: Scanning 'plant_data/labels/validation.cache' images and labels... 206 found, 0 missing, 0 empty, 0 corrupted: 100% 206/206 [00:00<?, ?it/s] autoanchor: Analyzing anchors... anchors/target = 6.22, Best Possible Recall (BPR) = 1.0000 Image sizes 1024 train, 1024 test Using 4 dataloader workers Logging results to runs/train/plant_result3 Starting training for 20 epochs... Epoch gpu_mem box obj cls total labels img_size 0/19 12.8G 0.06802 0.1223 0 0.1903 7 1024: 100% 61/61 [01:27<00:00, 1.44s/it] Class Images Labels P R mAP@.5 mAP@.5:.95: 100% 13/13 [00:32<00:00, 2.48s/it] all 206 6564 0.0206 0.194 0.00439 0.00068 Epoch gpu_mem box obj cls total labels img_size 1/19 13.3G 0.06317 0.1345 0 0.1977 34 1024: 100% 61/61 [00:56<00:00, 1.08it/s] Class Images Labels P R mAP@.5 mAP@.5:.95: 100% 13/13 [00:18<00:00, 1.41s/it] all 206 6564 0.0262 0.247 0.00679 0.00122 Epoch gpu_mem box obj cls total labels img_size 2/19 13.3G 0.06345 0.1415 0 0.2049 183 1024: 100% 61/61 [00:57<00:00, 1.07it/s] Class Images Labels P R mAP@.5 mAP@.5:.95: 100% 13/13 [00:18<00:00, 1.42s/it] all 206 6564 0.0248 0.233 0.00672 0.00113 Epoch gpu_mem box obj cls total labels img_size 3/19 13.3G 0.06246 0.1285 0 0.191 36 1024: 100% 61/61 [00:56<00:00, 1.08it/s] Class Images Labels P R mAP@.5 mAP@.5:.95: 100% 13/13 [00:18<00:00, 1.41s/it] all 206 6564 0.0255 0.24 0.00662 0.00103 Epoch gpu_mem box obj cls total labels img_size 4/19 13.3G 0.06014 0.1466 0 0.2068 12 1024: 100% 61/61 [00:56<00:00, 1.09it/s] Class Images Labels P R mAP@.5 mAP@.5:.95: 100% 13/13 [00:18<00:00, 1.45s/it] all 206 6564 0.0346 0.326 0.0122 0.00192 Epoch gpu_mem box obj cls total labels img_size 5/19 13.3G 0.0623 0.1383 0 0.2006 9 1024: 100% 61/61 [00:56<00:00, 1.09it/s] Class Images Labels P R mAP@.5 mAP@.5:.95: 100% 13/13 [00:18<00:00, 1.43s/it] all 206 6564 0.0339 0.319 0.0129 0.00211 Epoch gpu_mem box obj cls total labels img_size 6/19 13.3G 0.06015 0.1372 0 0.1974 22 1024: 100% 61/61 [00:55<00:00, 1.09it/s] Class Images Labels P R mAP@.5 mAP@.5:.95: 100% 13/13 [00:17<00:00, 1.38s/it] all 206 6564 0.0444 0.417 0.0197 0.00353 Epoch gpu_mem box obj cls total labels img_size 7/19 13.3G 0.05948 0.1283 0 0.1878 65 1024: 100% 61/61 [00:55<00:00, 1.09it/s] Class Images Labels P R mAP@.5 mAP@.5:.95: 100% 13/13 [00:17<00:00, 1.31s/it] all 206 6564 0.0496 0.366 0.0224 0.00379 Epoch gpu_mem box obj cls total labels img_size 8/19 13.3G 0.05824 0.1288 0 0.187 11 1024: 100% 61/61 [00:56<00:00, 1.08it/s] Class Images Labels P R mAP@.5 mAP@.5:.95: 100% 13/13 [00:18<00:00, 1.43s/it] all 206 6564 0.0391 0.119 0.0115 0.00233 Epoch gpu_mem box obj cls total labels img_size 9/19 13.3G 0.05578 0.1187 0 0.1745 31 1024: 100% 61/61 [00:56<00:00, 1.09it/s] Class Images Labels P R mAP@.5 mAP@.5:.95: 100% 13/13 [00:17<00:00, 1.34s/it] all 206 6564 0.116 0.316 0.0806 0.0179 Epoch gpu_mem box obj cls total labels img_size 10/19 13.3G 0.05593 0.1215 0 0.1774 58 1024: 100% 61/61 [00:56<00:00, 1.08it/s] Class Images Labels P R mAP@.5 mAP@.5:.95: 100% 13/13 [00:20<00:00, 1.54s/it] all 206 6564 0.333 0.298 0.197 0.0563 Epoch gpu_mem box obj cls total labels img_size 11/19 13.3G 0.05515 0.1133 0 0.1685 47 1024: 100% 61/61 [00:56<00:00, 1.08it/s] Class Images Labels P R mAP@.5 mAP@.5:.95: 100% 13/13 [00:11<00:00, 1.12it/s] all 206 6564 0.19 0.574 0.164 0.0366 Epoch gpu_mem box obj cls total labels img_size 12/19 13.3G 0.05454 0.1097 0 0.1643 46 1024: 100% 61/61 [00:56<00:00, 1.09it/s] Class Images Labels P R mAP@.5 mAP@.5:.95: 100% 13/13 [00:17<00:00, 1.32s/it] all 206 6564 0.357 0.689 0.376 0.0918 Epoch gpu_mem box obj cls total labels img_size 13/19 13.3G 0.05289 0.1075 0 0.1603 27 1024: 100% 61/61 [00:56<00:00, 1.08it/s] Class Images Labels P R mAP@.5 mAP@.5:.95: 100% 13/13 [00:12<00:00, 1.05it/s] all 206 6564 0.486 0.615 0.51 0.14 Epoch gpu_mem box obj cls total labels img_size 14/19 13.3G 0.05 0.1028 0 0.1528 28 1024: 100% 61/61 [00:56<00:00, 1.09it/s] Class Images Labels P R mAP@.5 mAP@.5:.95: 100% 13/13 [00:09<00:00, 1.33it/s] all 206 6564 0.561 0.652 0.624 0.236 Epoch gpu_mem box obj cls total labels img_size 15/19 13.3G 0.048 0.1041 0 0.1521 112 1024: 100% 61/61 [00:55<00:00, 1.09it/s] Class Images Labels P R mAP@.5 mAP@.5:.95: 100% 13/13 [00:09<00:00, 1.35it/s] all 206 6564 0.632 0.765 0.69 0.253 Epoch gpu_mem box obj cls total labels img_size 16/19 13.3G 0.0458 0.09595 0 0.1418 20 1024: 100% 61/61 [00:55<00:00, 1.09it/s] Class Images Labels P R mAP@.5 mAP@.5:.95: 100% 13/13 [00:09<00:00, 1.39it/s] all 206 6564 0.832 0.853 0.891 0.402 Epoch gpu_mem box obj cls total labels img_size 17/19 13.3G 0.0456 0.0974 0 0.143 72 1024: 100% 61/61 [00:56<00:00, 1.08it/s] Class Images Labels P R mAP@.5 mAP@.5:.95: 100% 13/13 [00:10<00:00, 1.28it/s] all 206 6564 0.839 0.905 0.905 0.436 Epoch gpu_mem box obj cls total labels img_size 18/19 13.3G 0.04305 0.09042 0 0.1335 13 1024: 100% 61/61 [00:56<00:00, 1.09it/s] Class Images Labels P R mAP@.5 mAP@.5:.95: 100% 13/13 [00:09<00:00, 1.33it/s] all 206 6564 0.845 0.909 0.898 0.432 Epoch gpu_mem box obj cls total labels img_size 19/19 13.3G 0.04079 0.0856 0 0.1264 63 1024: 100% 61/61 [00:55<00:00, 1.09it/s] Class Images Labels P R mAP@.5 mAP@.5:.95: 100% 13/13 [00:12<00:00, 1.08it/s] all 206 6564 0.863 0.926 0.935 0.51 20 epochs completed in 0.421 hours. Optimizer stripped from runs/train/plant_result3/weights/last.pt, 74.9MB Optimizer stripped from runs/train/plant_result3/weights/best.pt, 74.9MB
After finishing the training we can see some metrics:
from IPython.display import Image, display
Image(filename='/content/yolov7/runs/train/plant_result3/confusion_matrix.png', width=900)
Image(filename='/content/yolov7/runs/train/plant_result3/results.png', width=900)
It is also possible to plot the images used per training batch:
Image(filename='/content/yolov7/runs/train/plant_result3/train_batch0.jpg', width=900)
Finally, we can detect our target object in the validation images in order to compare the results and see how the predictions turned out:
!python detect.py --weights runs/train/plant_result3/weights/best.pt --device 0 --source /content/validation
Namespace(agnostic_nms=False, augment=False, classes=None, conf_thres=0.25, device='0', exist_ok=False, img_size=640, iou_thres=0.45, name='exp', no_trace=False, nosave=False, project='runs/detect', save_conf=False, save_txt=False, source='/content/validation', update=False, view_img=False, weights=['runs/train/plant_result3/weights/best.pt']) YOLOR 🚀 v0.1-116-g8c0bf3f torch 1.13.0+cu116 CUDA:0 (Tesla T4, 15109.75MB) Fusing layers... RepConv.fuse_repvgg_block RepConv.fuse_repvgg_block RepConv.fuse_repvgg_block IDetect.fuse /usr/local/lib/python3.8/dist-packages/torch/functional.py:504: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at ../aten/src/ATen/native/TensorShape.cpp:3190.) return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined] Model Summary: 314 layers, 36481772 parameters, 6194944 gradients, 103.2 GFLOPS Convert model to Traced-model... traced_script_module saved! model is traced! 129 plants, Done. (23.1ms) Inference, (1.5ms) NMS The image with the result is saved in: runs/detect/exp/IMG_2361_12.jpg 81 plants, Done. (23.1ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp/IMG_2361_2.jpg 92 plants, Done. (23.3ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/IMG_2361_6.jpg 31 plants, Done. (23.2ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/IMG_2361_9.jpg 68 plants, Done. (23.2ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/IMG_2367_4.jpg 101 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/IMG_2371_2.jpg 104 plants, Done. (23.2ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/IMG_2371_4.jpg 68 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/IMG_2371_5.jpg 57 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/IMG_2392_11.jpg 89 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/IMG_2395_10.jpg 76 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/IMG_2395_5.jpg 62 plants, Done. (23.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/IMG_2402_7.jpg 70 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_10.jpg 75 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_101.jpg 39 plants, Done. (23.1ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp/tonga_109.jpg 19 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_110.jpg 42 plants, Done. (23.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/tonga_115.jpg 20 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_120.jpg 33 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_132.jpg 29 plants, Done. (23.2ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/tonga_133.jpg 35 plants, Done. (23.2ms) Inference, (1.4ms) NMS The image with the result is saved in: runs/detect/exp/tonga_134.jpg 42 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_137.jpg 42 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_14.jpg 54 plants, Done. (23.2ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp/tonga_153.jpg 56 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_165.jpg 22 plants, Done. (23.1ms) Inference, (1.5ms) NMS The image with the result is saved in: runs/detect/exp/tonga_166.jpg 42 plants, Done. (23.1ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp/tonga_170.jpg 38 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_185.jpg 61 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_189.jpg 37 plants, Done. (23.2ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp/tonga_192.jpg 52 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_20.jpg 46 plants, Done. (23.2ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_205.jpg 46 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_209.jpg 33 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_212.jpg 27 plants, Done. (23.2ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_217.jpg 46 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_22.jpg 22 plants, Done. (23.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/tonga_221.jpg 18 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_230.jpg 42 plants, Done. (23.2ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp/tonga_24.jpg 40 plants, Done. (23.2ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_244.jpg 44 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_256.jpg 27 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_263.jpg 67 plants, Done. (23.2ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_273.jpg 50 plants, Done. (23.1ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp/tonga_275.jpg 42 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_276.jpg 60 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_29.jpg 16 plants, Done. (23.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/tonga_290.jpg 71 plants, Done. (23.2ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp/tonga_296.jpg 59 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_30.jpg 56 plants, Done. (23.1ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp/tonga_308.jpg 60 plants, Done. (23.2ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp/tonga_31.jpg 22 plants, Done. (23.2ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_311.jpg 56 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_315.jpg 24 plants, Done. (23.2ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_33.jpg 44 plants, Done. (23.2ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_330.jpg 38 plants, Done. (23.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/tonga_331.jpg 52 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_345.jpg 18 plants, Done. (23.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/tonga_350.jpg 22 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_352.jpg 16 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_364.jpg 92 plants, Done. (23.1ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp/tonga_380.jpg 63 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_381.jpg 21 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_385.jpg 34 plants, Done. (23.1ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp/tonga_39.jpg 46 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_4.jpg 55 plants, Done. (23.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/tonga_40.jpg 39 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_402.jpg 35 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_415.jpg 52 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_417.jpg 15 plants, Done. (23.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/tonga_421.jpg 42 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_425.jpg 47 plants, Done. (23.3ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_437.jpg 62 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_438.jpg 42 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_442.jpg 27 plants, Done. (23.2ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_444.jpg 55 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_46.jpg 28 plants, Done. (23.2ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp/tonga_49.jpg 22 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_55.jpg 62 plants, Done. (23.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/tonga_60.jpg 57 plants, Done. (23.1ms) Inference, (1.4ms) NMS The image with the result is saved in: runs/detect/exp/tonga_61.jpg 27 plants, Done. (23.2ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_62.jpg 35 plants, Done. (23.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/tonga_63.jpg 52 plants, Done. (23.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/tonga_66.jpg 44 plants, Done. (23.2ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_75.jpg 47 plants, Done. (23.2ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/tonga_78.jpg 42 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_79.jpg 50 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_91.jpg 63 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/tonga_97.jpg 52 plants, Done. (23.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_1188.jpg 28 plants, Done. (23.1ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_1202.jpg 26 plants, Done. (23.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_1203.jpg 35 plants, Done. (23.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_1264.jpg 54 plants, Done. (23.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_1280.jpg 29 plants, Done. (23.2ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_1286.jpg 26 plants, Done. (22.8ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_13.jpg 17 plants, Done. (21.5ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_1398.jpg 26 plants, Done. (21.5ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_1414.jpg 19 plants, Done. (21.4ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_1438.jpg 22 plants, Done. (21.4ms) Inference, (1.4ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_1491.jpg 69 plants, Done. (21.4ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_1499.jpg 41 plants, Done. (21.5ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_1500.jpg 31 plants, Done. (21.5ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_1552.jpg 43 plants, Done. (21.5ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_1553.jpg 19 plants, Done. (21.5ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_1557.jpg 44 plants, Done. (21.4ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_162.jpg 66 plants, Done. (21.0ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_1631.jpg 37 plants, Done. (21.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_1634.jpg 68 plants, Done. (21.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_1635.jpg 55 plants, Done. (21.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_188.jpg 40 plants, Done. (21.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_191.jpg 19 plants, Done. (21.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_282.jpg 33 plants, Done. (21.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_292.jpg 31 plants, Done. (21.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_293.jpg 14 plants, Done. (21.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_359.jpg 24 plants, Done. (21.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_360.jpg 27 plants, Done. (19.8ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_362.jpg 24 plants, Done. (19.8ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_379.jpg 36 plants, Done. (19.8ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_381.jpg 44 plants, Done. (19.8ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_382.jpg 34 plants, Done. (19.8ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_400.jpg 23 plants, Done. (19.8ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_402.jpg 55 plants, Done. (19.8ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_421.jpg 23 plants, Done. (19.5ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_465.jpg 33 plants, Done. (19.5ms) Inference, (1.4ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_467.jpg 20 plants, Done. (19.5ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_478.jpg 44 plants, Done. (19.5ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_500.jpg 20 plants, Done. (19.5ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_502.jpg 31 plants, Done. (19.5ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_505.jpg 36 plants, Done. (19.5ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_539.jpg 39 plants, Done. (19.5ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_540.jpg 46 plants, Done. (19.5ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_563.jpg 32 plants, Done. (19.5ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_580.jpg 41 plants, Done. (19.5ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_594.jpg 37 plants, Done. (19.5ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_595.jpg 51 plants, Done. (19.6ms) Inference, (1.4ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_6.jpg 51 plants, Done. (19.6ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_642.jpg 36 plants, Done. (19.5ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_648.jpg 38 plants, Done. (19.6ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_674.jpg 21 plants, Done. (19.5ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_736.jpg 30 plants, Done. (19.5ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_737.jpg 23 plants, Done. (19.6ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_738.jpg 44 plants, Done. (19.5ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_839.jpg 41 plants, Done. (19.5ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_84.jpg 25 plants, Done. (19.2ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_847.jpg 24 plants, Done. (19.2ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_848.jpg 33 plants, Done. (19.3ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_86.jpg 15 plants, Done. (19.2ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_87.jpg 29 plants, Done. (19.2ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_929.jpg 46 plants, Done. (19.2ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_930.jpg 34 plants, Done. (19.2ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_944.jpg 21 plants, Done. (19.2ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_986.jpg 31 plants, Done. (19.2ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_989.jpg 68 plants, Done. (19.3ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar1_994.jpg 46 plants, Done. (19.2ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_1013.jpg 15 plants, Done. (19.2ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_1034.jpg 38 plants, Done. (19.3ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_1062.jpg 53 plants, Done. (19.2ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_116.jpg 48 plants, Done. (19.2ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_1162.jpg 40 plants, Done. (19.2ms) Inference, (1.4ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_118.jpg 23 plants, Done. (19.3ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_1180.jpg 18 plants, Done. (19.3ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_120.jpg 49 plants, Done. (19.2ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_1215.jpg 15 plants, Done. (19.2ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_1254.jpg 25 plants, Done. (19.3ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_1257.jpg 26 plants, Done. (19.2ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_1288.jpg 34 plants, Done. (19.3ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_137.jpg 41 plants, Done. (19.2ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_139.jpg 26 plants, Done. (19.3ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_1402.jpg 38 plants, Done. (19.2ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_1414.jpg 77 plants, Done. (19.3ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_1417.jpg 28 plants, Done. (19.3ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_145.jpg 32 plants, Done. (19.3ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_1476.jpg 61 plants, Done. (19.2ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_1510.jpg 60 plants, Done. (19.2ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_1511.jpg 47 plants, Done. (19.8ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_153.jpg 36 plants, Done. (19.8ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_1531.jpg 29 plants, Done. (19.8ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_1532.jpg 34 plants, Done. (20.0ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_1533.jpg 40 plants, Done. (20.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_155.jpg 30 plants, Done. (20.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_18.jpg 36 plants, Done. (20.1ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_341.jpg 26 plants, Done. (20.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_342.jpg 37 plants, Done. (20.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_36.jpg 24 plants, Done. (20.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_368.jpg 23 plants, Done. (20.3ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_415.jpg 37 plants, Done. (20.4ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_417.jpg 34 plants, Done. (20.4ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_43.jpg 28 plants, Done. (20.4ms) Inference, (1.7ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_430.jpg 49 plants, Done. (20.4ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_459.jpg 26 plants, Done. (20.5ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_476.jpg 34 plants, Done. (20.4ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_479.jpg 14 plants, Done. (20.4ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_48.jpg 43 plants, Done. (20.4ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_564.jpg 34 plants, Done. (20.4ms) Inference, (1.4ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_587.jpg 24 plants, Done. (20.4ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_591.jpg 45 plants, Done. (20.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_682.jpg 27 plants, Done. (20.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_698.jpg 26 plants, Done. (20.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_699.jpg 32 plants, Done. (20.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_72.jpg 37 plants, Done. (20.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_73.jpg 35 plants, Done. (20.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_831.jpg 33 plants, Done. (20.1ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_862.jpg 40 plants, Done. (19.5ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_867.jpg 48 plants, Done. (19.6ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_978.jpg 22 plants, Done. (19.5ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_994.jpg 23 plants, Done. (19.5ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp/zanzibar2_996.jpg Done. (13.050s)
print(sorted(os.listdir('/content/yolov7/runs/detect/exp/')))
['IMG_2361_12.jpg', 'IMG_2361_2.jpg', 'IMG_2361_6.jpg', 'IMG_2361_9.jpg', 'IMG_2367_4.jpg', 'IMG_2371_2.jpg', 'IMG_2371_4.jpg', 'IMG_2371_5.jpg', 'IMG_2392_11.jpg', 'IMG_2395_10.jpg', 'IMG_2395_5.jpg', 'IMG_2402_7.jpg', 'tonga_10.jpg', 'tonga_101.jpg', 'tonga_109.jpg', 'tonga_110.jpg', 'tonga_115.jpg', 'tonga_120.jpg', 'tonga_132.jpg', 'tonga_133.jpg', 'tonga_134.jpg', 'tonga_137.jpg', 'tonga_14.jpg', 'tonga_153.jpg', 'tonga_165.jpg', 'tonga_166.jpg', 'tonga_170.jpg', 'tonga_185.jpg', 'tonga_189.jpg', 'tonga_192.jpg', 'tonga_20.jpg', 'tonga_205.jpg', 'tonga_209.jpg', 'tonga_212.jpg', 'tonga_217.jpg', 'tonga_22.jpg', 'tonga_221.jpg', 'tonga_230.jpg', 'tonga_24.jpg', 'tonga_244.jpg', 'tonga_256.jpg', 'tonga_263.jpg', 'tonga_273.jpg', 'tonga_275.jpg', 'tonga_276.jpg', 'tonga_29.jpg', 'tonga_290.jpg', 'tonga_296.jpg', 'tonga_30.jpg', 'tonga_308.jpg', 'tonga_31.jpg', 'tonga_311.jpg', 'tonga_315.jpg', 'tonga_33.jpg', 'tonga_330.jpg', 'tonga_331.jpg', 'tonga_345.jpg', 'tonga_350.jpg', 'tonga_352.jpg', 'tonga_364.jpg', 'tonga_380.jpg', 'tonga_381.jpg', 'tonga_385.jpg', 'tonga_39.jpg', 'tonga_4.jpg', 'tonga_40.jpg', 'tonga_402.jpg', 'tonga_415.jpg', 'tonga_417.jpg', 'tonga_421.jpg', 'tonga_425.jpg', 'tonga_437.jpg', 'tonga_438.jpg', 'tonga_442.jpg', 'tonga_444.jpg', 'tonga_46.jpg', 'tonga_49.jpg', 'tonga_55.jpg', 'tonga_60.jpg', 'tonga_61.jpg', 'tonga_62.jpg', 'tonga_63.jpg', 'tonga_66.jpg', 'tonga_75.jpg', 'tonga_78.jpg', 'tonga_79.jpg', 'tonga_91.jpg', 'tonga_97.jpg', 'zanzibar1_1188.jpg', 'zanzibar1_1202.jpg', 'zanzibar1_1203.jpg', 'zanzibar1_1264.jpg', 'zanzibar1_1280.jpg', 'zanzibar1_1286.jpg', 'zanzibar1_13.jpg', 'zanzibar1_1398.jpg', 'zanzibar1_1414.jpg', 'zanzibar1_1438.jpg', 'zanzibar1_1491.jpg', 'zanzibar1_1499.jpg', 'zanzibar1_1500.jpg', 'zanzibar1_1552.jpg', 'zanzibar1_1553.jpg', 'zanzibar1_1557.jpg', 'zanzibar1_162.jpg', 'zanzibar1_1631.jpg', 'zanzibar1_1634.jpg', 'zanzibar1_1635.jpg', 'zanzibar1_188.jpg', 'zanzibar1_191.jpg', 'zanzibar1_282.jpg', 'zanzibar1_292.jpg', 'zanzibar1_293.jpg', 'zanzibar1_359.jpg', 'zanzibar1_360.jpg', 'zanzibar1_362.jpg', 'zanzibar1_379.jpg', 'zanzibar1_381.jpg', 'zanzibar1_382.jpg', 'zanzibar1_400.jpg', 'zanzibar1_402.jpg', 'zanzibar1_421.jpg', 'zanzibar1_465.jpg', 'zanzibar1_467.jpg', 'zanzibar1_478.jpg', 'zanzibar1_500.jpg', 'zanzibar1_502.jpg', 'zanzibar1_505.jpg', 'zanzibar1_539.jpg', 'zanzibar1_540.jpg', 'zanzibar1_563.jpg', 'zanzibar1_580.jpg', 'zanzibar1_594.jpg', 'zanzibar1_595.jpg', 'zanzibar1_6.jpg', 'zanzibar1_642.jpg', 'zanzibar1_648.jpg', 'zanzibar1_674.jpg', 'zanzibar1_736.jpg', 'zanzibar1_737.jpg', 'zanzibar1_738.jpg', 'zanzibar1_839.jpg', 'zanzibar1_84.jpg', 'zanzibar1_847.jpg', 'zanzibar1_848.jpg', 'zanzibar1_86.jpg', 'zanzibar1_87.jpg', 'zanzibar1_929.jpg', 'zanzibar1_930.jpg', 'zanzibar1_944.jpg', 'zanzibar1_986.jpg', 'zanzibar1_989.jpg', 'zanzibar1_994.jpg', 'zanzibar2_1013.jpg', 'zanzibar2_1034.jpg', 'zanzibar2_1062.jpg', 'zanzibar2_116.jpg', 'zanzibar2_1162.jpg', 'zanzibar2_118.jpg', 'zanzibar2_1180.jpg', 'zanzibar2_120.jpg', 'zanzibar2_1215.jpg', 'zanzibar2_1254.jpg', 'zanzibar2_1257.jpg', 'zanzibar2_1288.jpg', 'zanzibar2_137.jpg', 'zanzibar2_139.jpg', 'zanzibar2_1402.jpg', 'zanzibar2_1414.jpg', 'zanzibar2_1417.jpg', 'zanzibar2_145.jpg', 'zanzibar2_1476.jpg', 'zanzibar2_1510.jpg', 'zanzibar2_1511.jpg', 'zanzibar2_153.jpg', 'zanzibar2_1531.jpg', 'zanzibar2_1532.jpg', 'zanzibar2_1533.jpg', 'zanzibar2_155.jpg', 'zanzibar2_18.jpg', 'zanzibar2_341.jpg', 'zanzibar2_342.jpg', 'zanzibar2_36.jpg', 'zanzibar2_368.jpg', 'zanzibar2_415.jpg', 'zanzibar2_417.jpg', 'zanzibar2_43.jpg', 'zanzibar2_430.jpg', 'zanzibar2_459.jpg', 'zanzibar2_476.jpg', 'zanzibar2_479.jpg', 'zanzibar2_48.jpg', 'zanzibar2_564.jpg', 'zanzibar2_587.jpg', 'zanzibar2_591.jpg', 'zanzibar2_682.jpg', 'zanzibar2_698.jpg', 'zanzibar2_699.jpg', 'zanzibar2_72.jpg', 'zanzibar2_73.jpg', 'zanzibar2_831.jpg', 'zanzibar2_862.jpg', 'zanzibar2_867.jpg', 'zanzibar2_978.jpg', 'zanzibar2_994.jpg', 'zanzibar2_996.jpg']
And so we can plot some images as an example:
for images in glob.glob('/content/yolov7/runs/detect/exp/*.jpg')[0:5]:
display(Image(filename=images))
Now that we have our trained model we can apply it to a complete image. Let's partition this image, perform the detections and then convert these detections to geolocated points:
We start by setting the image path and opening it:
path_img = '/content/drive/MyDrive/Datasets/Mastertheis/MasterThesis-master/kolovai_rep.tif'
src_img = rasterio.open(path_img)
img = src_img.read()
img.shape
(3, 24459, 18618)
img = img.transpose([1,2,0])
plt.figure(figsize=[16,16])
plt.imshow(img)
plt.axis('off')
(-0.5, 18617.5, 24458.5, -0.5)
Now let's divide the image into sizes equal to those we trained on:
if not os.path.isdir('/content/Predict'):
os.mkdir('/content/Predict')
qtd = 0
out_meta = src_img.meta.copy()
for n in range((src_img.meta['width']//1000)):
for m in range((src_img.meta['height']//1000)):
x = (n*1000)
y = (m*1000)
window = Window(x,y,1000,1000)
win_transform = src_img.window_transform(window)
arr_win = src_img.read(window=window)
arr_win = arr_win[0:3,:,:]
if (arr_win.max() != 0) and (arr_win.shape[1] == 1000) and (arr_win.shape[2] == 1000):
qtd = qtd + 1
path_exp = '/content/Predict/img_' + str(qtd) + '.tif'
out_meta.update({"driver": "GTiff","height": 1000,"width": 1000, "transform":win_transform})
with rasterio.open(path_exp, 'w', **out_meta) as dst:
for i, layer in enumerate(arr_win, start=1):
dst.write_band(i, layer.reshape(-1, layer.shape[-1]))
del arr_win
print(qtd)
432
Now we open each of the generated images and save a copy in .JPG format:
if not os.path.isdir('/content/Predict_jpg'):
os.mkdir('/content/Predict_jpg')
path_data_pred = '/content/Predict_jpg'
imgs_to_pred = os.listdir('/content/Predict')
for images in imgs_to_pred:
src = rasterio.open('/content/Predict/' + images)
raster = src.read()
raster = raster.transpose([1,2,0])
raster = raster[:,:,0:3]
imsave(os.path.join(path_data_pred,images.split('.')[0] + '.jpg'), raster)
img = io.imread('/content/Predict_jpg/img_100.jpg')
plt.figure(figsize=(12,12))
plt.imshow(img)
plt.axis('off')
plt.show()
And then we apply predict by passing the path of the .jpg images folder. The result of the detections are .txt files with the boundboxes.
!python detect.py --weights runs/train/plant_result3/weights/best.pt --device 0 --source /content/Predict_jpg --save-txt --conf 0.45
Namespace(agnostic_nms=False, augment=False, classes=None, conf_thres=0.45, device='0', exist_ok=False, img_size=640, iou_thres=0.45, name='exp', no_trace=False, nosave=False, project='runs/detect', save_conf=False, save_txt=True, source='/content/Predict_jpg', update=False, view_img=False, weights=['runs/train/plant_result3/weights/best.pt']) YOLOR 🚀 v0.1-116-g8c0bf3f torch 1.13.0+cu116 CUDA:0 (Tesla T4, 15109.75MB) Fusing layers... RepConv.fuse_repvgg_block RepConv.fuse_repvgg_block RepConv.fuse_repvgg_block IDetect.fuse /usr/local/lib/python3.8/dist-packages/torch/functional.py:504: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at ../aten/src/ATen/native/TensorShape.cpp:3190.) return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined] Model Summary: 314 layers, 36481772 parameters, 6194944 gradients, 103.2 GFLOPS Convert model to Traced-model... traced_script_module saved! model is traced! 34 plants, Done. (22.9ms) Inference, (1.5ms) NMS The image with the result is saved in: runs/detect/exp5/img_1.jpg 52 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_10.jpg 48 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_100.jpg 33 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_101.jpg 45 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_102.jpg 47 plants, Done. (23.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_103.jpg 25 plants, Done. (23.0ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_104.jpg 35 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_105.jpg 16 plants, Done. (23.0ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_106.jpg 26 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_107.jpg 26 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_108.jpg 21 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_109.jpg 26 plants, Done. (23.0ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_11.jpg 44 plants, Done. (23.0ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_110.jpg 49 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_111.jpg 44 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_112.jpg 29 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_113.jpg 22 plants, Done. (23.0ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_114.jpg 59 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_115.jpg 57 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_116.jpg 27 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_117.jpg 38 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_118.jpg 26 plants, Done. (23.0ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp5/img_119.jpg 19 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_12.jpg 21 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_120.jpg 33 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_121.jpg 31 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_122.jpg 62 plants, Done. (23.0ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp5/img_123.jpg 41 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_124.jpg 37 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_125.jpg 53 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_126.jpg 33 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_127.jpg 30 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_128.jpg 41 plants, Done. (23.0ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_129.jpg 21 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_13.jpg 38 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_130.jpg 51 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_131.jpg 29 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_132.jpg 35 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_133.jpg 45 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_134.jpg 27 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_135.jpg 43 plants, Done. (23.0ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp5/img_136.jpg 47 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_137.jpg 24 plants, Done. (23.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_138.jpg 55 plants, Done. (23.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_139.jpg 21 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_14.jpg 26 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_140.jpg 31 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_141.jpg 30 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_142.jpg 34 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_143.jpg 40 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_144.jpg 42 plants, Done. (23.1ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_145.jpg 42 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_146.jpg 26 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_147.jpg 50 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_148.jpg 38 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_149.jpg 26 plants, Done. (23.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_15.jpg 55 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_150.jpg 23 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_151.jpg 23 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_152.jpg 25 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_153.jpg 14 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_154.jpg 37 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_155.jpg 36 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_156.jpg 15 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_157.jpg 19 plants, Done. (23.0ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_158.jpg 23 plants, Done. (23.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_159.jpg 28 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_16.jpg 38 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_160.jpg 50 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_161.jpg 43 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_162.jpg 25 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_163.jpg 18 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_164.jpg 32 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_165.jpg 24 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_166.jpg 15 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_167.jpg 32 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_168.jpg 42 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_169.jpg 46 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_17.jpg 39 plants, Done. (23.1ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_170.jpg 27 plants, Done. (23.0ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_171.jpg 33 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_172.jpg 35 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_173.jpg 58 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_174.jpg 42 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_175.jpg 27 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_176.jpg 20 plants, Done. (22.9ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_177.jpg 32 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_178.jpg 44 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_179.jpg 48 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_18.jpg 24 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_180.jpg 16 plants, Done. (22.9ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_181.jpg 1 plant, Done. (23.0ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_182.jpg 24 plants, Done. (23.0ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_183.jpg 41 plants, Done. (23.1ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_184.jpg 61 plants, Done. (23.1ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_185.jpg 20 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_186.jpg 13 plants, Done. (23.0ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_187.jpg 23 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_188.jpg 13 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_189.jpg 38 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_19.jpg Done. (23.0ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_190.jpg Done. (23.0ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_191.jpg 6 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_192.jpg 66 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_193.jpg 59 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_194.jpg 35 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_195.jpg 21 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_196.jpg 29 plants, Done. (23.0ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp5/img_197.jpg 34 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_198.jpg 36 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_199.jpg 30 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_2.jpg 39 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_20.jpg 41 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_200.jpg 37 plants, Done. (23.1ms) Inference, (1.4ms) NMS The image with the result is saved in: runs/detect/exp5/img_201.jpg 33 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_202.jpg 55 plants, Done. (23.1ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_203.jpg 37 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_204.jpg 24 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_205.jpg 33 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_206.jpg 51 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_207.jpg 61 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_208.jpg 61 plants, Done. (22.9ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_209.jpg 9 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_21.jpg 32 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_210.jpg 7 plants, Done. (23.1ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_211.jpg 19 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_212.jpg 12 plants, Done. (23.0ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_213.jpg Done. (23.0ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_214.jpg 1 plant, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_215.jpg 6 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_216.jpg 73 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_217.jpg 64 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_218.jpg 46 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_219.jpg 55 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_22.jpg 52 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_220.jpg 27 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_221.jpg 40 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_222.jpg 39 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_223.jpg 27 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_224.jpg 47 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_225.jpg 32 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_226.jpg 40 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_227.jpg 40 plants, Done. (23.0ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_228.jpg 19 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_229.jpg 32 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_23.jpg 33 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_230.jpg 43 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_231.jpg 39 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_232.jpg 50 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_233.jpg 51 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_234.jpg 31 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_235.jpg 22 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_236.jpg 4 plants, Done. (23.0ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_237.jpg 2 plants, Done. (23.0ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_238.jpg 4 plants, Done. (23.0ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_239.jpg 27 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_24.jpg 16 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_240.jpg 45 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_241.jpg 61 plants, Done. (22.9ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_242.jpg 38 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_243.jpg 24 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_244.jpg 63 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_245.jpg 63 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_246.jpg 29 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_247.jpg 40 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_248.jpg 28 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_249.jpg 48 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_25.jpg 30 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_250.jpg 61 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_251.jpg 44 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_252.jpg 15 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_253.jpg 23 plants, Done. (23.1ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_254.jpg 42 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_255.jpg 7 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_256.jpg 10 plants, Done. (23.0ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_257.jpg 18 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_258.jpg 2 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_259.jpg 46 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_26.jpg 9 plants, Done. (21.4ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_260.jpg 8 plants, Done. (21.3ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_261.jpg 2 plants, Done. (21.3ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_262.jpg 16 plants, Done. (21.3ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_263.jpg 43 plants, Done. (21.3ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp5/img_264.jpg 39 plants, Done. (21.4ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_265.jpg 52 plants, Done. (21.4ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_266.jpg 31 plants, Done. (21.4ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_267.jpg 25 plants, Done. (21.3ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_268.jpg 65 plants, Done. (21.4ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_269.jpg 47 plants, Done. (21.3ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_27.jpg 62 plants, Done. (21.3ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_270.jpg 34 plants, Done. (21.2ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_271.jpg 13 plants, Done. (21.3ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_272.jpg 14 plants, Done. (21.3ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_273.jpg 30 plants, Done. (21.3ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_274.jpg 34 plants, Done. (21.4ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_275.jpg 21 plants, Done. (21.4ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_276.jpg 27 plants, Done. (21.3ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_277.jpg 17 plants, Done. (21.3ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_278.jpg 4 plants, Done. (21.3ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_279.jpg 26 plants, Done. (21.3ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_28.jpg 1 plant, Done. (21.3ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_280.jpg Done. (21.3ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_281.jpg 1 plant, Done. (21.3ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_282.jpg 3 plants, Done. (21.3ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_283.jpg 2 plants, Done. (21.3ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_284.jpg 4 plants, Done. (20.3ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_285.jpg 3 plants, Done. (20.3ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_286.jpg 2 plants, Done. (20.3ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_287.jpg 37 plants, Done. (20.3ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_288.jpg 41 plants, Done. (20.3ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_289.jpg 27 plants, Done. (20.3ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_29.jpg 62 plants, Done. (20.3ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_290.jpg 26 plants, Done. (20.3ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_291.jpg 56 plants, Done. (20.4ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp5/img_292.jpg 54 plants, Done. (20.4ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_293.jpg 42 plants, Done. (20.2ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_294.jpg 4 plants, Done. (20.3ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_295.jpg Done. (20.2ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_296.jpg 3 plants, Done. (20.3ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_297.jpg 6 plants, Done. (20.2ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_298.jpg 23 plants, Done. (20.3ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_299.jpg 29 plants, Done. (20.2ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_3.jpg 36 plants, Done. (20.3ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_30.jpg 23 plants, Done. (20.3ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_300.jpg 20 plants, Done. (20.2ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_301.jpg 15 plants, Done. (20.3ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_302.jpg 2 plants, Done. (20.3ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_303.jpg 1 plant, Done. (20.3ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_304.jpg 5 plants, Done. (20.2ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_305.jpg 10 plants, Done. (20.2ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_306.jpg 9 plants, Done. (20.0ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_307.jpg 1 plant, Done. (19.9ms) Inference, (0.8ms) NMS The image with the result is saved in: runs/detect/exp5/img_308.jpg 6 plants, Done. (19.9ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_309.jpg 16 plants, Done. (20.1ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_31.jpg 3 plants, Done. (19.9ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_310.jpg Done. (19.9ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_311.jpg 3 plants, Done. (19.9ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_312.jpg 47 plants, Done. (20.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_313.jpg 39 plants, Done. (19.9ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_314.jpg 7 plants, Done. (19.9ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_315.jpg 21 plants, Done. (20.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_316.jpg 5 plants, Done. (19.9ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_317.jpg 1 plant, Done. (20.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_318.jpg Done. (20.0ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_319.jpg 11 plants, Done. (20.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_32.jpg 1 plant, Done. (19.9ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_320.jpg 1 plant, Done. (20.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_321.jpg Done. (19.9ms) Inference, (0.3ms) NMS The image with the result is saved in: runs/detect/exp5/img_322.jpg 18 plants, Done. (20.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_323.jpg 8 plants, Done. (19.9ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_324.jpg 5 plants, Done. (19.9ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_325.jpg 7 plants, Done. (20.0ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_326.jpg 2 plants, Done. (19.9ms) Inference, (0.8ms) NMS The image with the result is saved in: runs/detect/exp5/img_327.jpg 3 plants, Done. (19.9ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_328.jpg Done. (19.9ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_329.jpg 16 plants, Done. (19.6ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_33.jpg Done. (19.6ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_330.jpg 2 plants, Done. (19.6ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_331.jpg 3 plants, Done. (19.7ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_332.jpg Done. (19.6ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_333.jpg 4 plants, Done. (19.6ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_334.jpg 2 plants, Done. (19.6ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_335.jpg 1 plant, Done. (19.7ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_336.jpg 30 plants, Done. (19.7ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_337.jpg 4 plants, Done. (19.7ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_338.jpg 2 plants, Done. (19.7ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_339.jpg 59 plants, Done. (19.7ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_34.jpg Done. (19.7ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_340.jpg 1 plant, Done. (19.7ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_341.jpg 2 plants, Done. (19.7ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_342.jpg 1 plant, Done. (19.6ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_343.jpg 8 plants, Done. (19.6ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_344.jpg 1 plant, Done. (19.7ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_345.jpg Done. (19.7ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_346.jpg 13 plants, Done. (19.6ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_347.jpg 13 plants, Done. (19.7ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_348.jpg 13 plants, Done. (19.6ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_349.jpg 44 plants, Done. (19.6ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_35.jpg 7 plants, Done. (19.6ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_350.jpg 6 plants, Done. (19.7ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_351.jpg 1 plant, Done. (19.7ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_352.jpg 1 plant, Done. (19.6ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_353.jpg 1 plant, Done. (19.7ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_354.jpg 4 plants, Done. (19.6ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_355.jpg Done. (19.6ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_356.jpg 1 plant, Done. (19.6ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_357.jpg 4 plants, Done. (19.6ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_358.jpg 1 plant, Done. (20.3ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp5/img_359.jpg 30 plants, Done. (20.3ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_36.jpg Done. (20.3ms) Inference, (0.3ms) NMS The image with the result is saved in: runs/detect/exp5/img_360.jpg 50 plants, Done. (20.2ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_361.jpg 13 plants, Done. (19.6ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_362.jpg Done. (19.7ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_363.jpg Done. (19.6ms) Inference, (0.3ms) NMS The image with the result is saved in: runs/detect/exp5/img_364.jpg Done. (19.7ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_365.jpg Done. (19.6ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_366.jpg Done. (19.6ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_367.jpg Done. (19.6ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_368.jpg Done. (19.6ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_369.jpg 42 plants, Done. (19.6ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_37.jpg Done. (19.7ms) Inference, (0.3ms) NMS The image with the result is saved in: runs/detect/exp5/img_370.jpg Done. (19.6ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_371.jpg Done. (19.7ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_372.jpg Done. (19.6ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_373.jpg 1 plant, Done. (19.7ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_374.jpg Done. (19.7ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_375.jpg Done. (19.6ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_376.jpg Done. (19.7ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_377.jpg 1 plant, Done. (19.6ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_378.jpg 1 plant, Done. (19.6ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_379.jpg 39 plants, Done. (19.7ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_38.jpg 5 plants, Done. (19.7ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_380.jpg 1 plant, Done. (19.7ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_381.jpg 4 plants, Done. (19.6ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_382.jpg 4 plants, Done. (19.6ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_383.jpg 2 plants, Done. (19.7ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_384.jpg Done. (19.7ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_385.jpg Done. (19.7ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_386.jpg Done. (19.7ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_387.jpg Done. (19.7ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_388.jpg Done. (19.6ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_389.jpg 13 plants, Done. (19.6ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_39.jpg Done. (19.6ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_390.jpg Done. (19.7ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_391.jpg 1 plant, Done. (19.7ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_392.jpg Done. (19.6ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_393.jpg Done. (19.7ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_394.jpg Done. (19.6ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_395.jpg Done. (19.6ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_396.jpg Done. (19.6ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_397.jpg Done. (19.6ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_398.jpg 1 plant, Done. (19.6ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_399.jpg 17 plants, Done. (19.7ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_4.jpg 35 plants, Done. (19.7ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_40.jpg Done. (19.7ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_400.jpg Done. (20.0ms) Inference, (0.3ms) NMS The image with the result is saved in: runs/detect/exp5/img_401.jpg Done. (19.9ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_402.jpg Done. (20.0ms) Inference, (0.3ms) NMS The image with the result is saved in: runs/detect/exp5/img_403.jpg 1 plant, Done. (20.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_404.jpg Done. (20.0ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_405.jpg Done. (19.9ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_406.jpg Done. (19.9ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_407.jpg Done. (20.0ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_408.jpg Done. (20.0ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_409.jpg 13 plants, Done. (19.9ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_41.jpg Done. (20.0ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_410.jpg Done. (19.9ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_411.jpg Done. (19.9ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_412.jpg Done. (19.9ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_413.jpg 1 plant, Done. (19.9ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_414.jpg Done. (20.0ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_415.jpg Done. (20.2ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_416.jpg Done. (20.3ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_417.jpg Done. (20.3ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_418.jpg Done. (20.4ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_419.jpg 72 plants, Done. (20.3ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_42.jpg Done. (20.4ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_420.jpg Done. (20.3ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_421.jpg Done. (20.3ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_422.jpg Done. (20.2ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_423.jpg Done. (20.3ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_424.jpg Done. (20.2ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_425.jpg Done. (19.9ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_426.jpg Done. (19.9ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_427.jpg Done. (19.9ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_428.jpg Done. (20.0ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_429.jpg 51 plants, Done. (19.9ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_43.jpg Done. (20.0ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_430.jpg Done. (19.9ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_431.jpg Done. (20.0ms) Inference, (0.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_432.jpg 26 plants, Done. (20.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_44.jpg 88 plants, Done. (20.0ms) Inference, (1.2ms) NMS The image with the result is saved in: runs/detect/exp5/img_45.jpg 66 plants, Done. (20.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_46.jpg 46 plants, Done. (20.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_47.jpg 34 plants, Done. (20.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_48.jpg 36 plants, Done. (20.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_49.jpg 18 plants, Done. (20.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_5.jpg 34 plants, Done. (19.9ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_50.jpg 21 plants, Done. (20.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_51.jpg 46 plants, Done. (19.9ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_52.jpg 40 plants, Done. (20.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_53.jpg 48 plants, Done. (20.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_54.jpg 15 plants, Done. (20.0ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_55.jpg 7 plants, Done. (19.9ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_56.jpg 24 plants, Done. (20.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_57.jpg 55 plants, Done. (20.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_58.jpg 62 plants, Done. (20.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_59.jpg 45 plants, Done. (20.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_6.jpg 36 plants, Done. (20.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_60.jpg 47 plants, Done. (20.4ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_61.jpg 73 plants, Done. (23.0ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp5/img_62.jpg 47 plants, Done. (23.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_63.jpg 51 plants, Done. (23.0ms) Inference, (1.4ms) NMS The image with the result is saved in: runs/detect/exp5/img_64.jpg 35 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_65.jpg 77 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_66.jpg 43 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_67.jpg 39 plants, Done. (23.0ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp5/img_68.jpg 65 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_69.jpg 31 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_7.jpg 58 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_70.jpg 38 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_71.jpg 45 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_72.jpg 34 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_73.jpg 29 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_74.jpg 43 plants, Done. (23.1ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_75.jpg 37 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_76.jpg 53 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_77.jpg 62 plants, Done. (23.0ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp5/img_78.jpg 30 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_79.jpg 25 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_8.jpg 28 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_80.jpg 19 plants, Done. (23.0ms) Inference, (0.9ms) NMS The image with the result is saved in: runs/detect/exp5/img_81.jpg 27 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_82.jpg 7 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_83.jpg 9 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_84.jpg 22 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_85.jpg 39 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_86.jpg 40 plants, Done. (23.0ms) Inference, (1.4ms) NMS The image with the result is saved in: runs/detect/exp5/img_87.jpg 52 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_88.jpg 31 plants, Done. (23.0ms) Inference, (1.3ms) NMS The image with the result is saved in: runs/detect/exp5/img_89.jpg 45 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_9.jpg 74 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_90.jpg 39 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_91.jpg 25 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_92.jpg 9 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_93.jpg 39 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_94.jpg 36 plants, Done. (23.0ms) Inference, (1.0ms) NMS The image with the result is saved in: runs/detect/exp5/img_95.jpg 36 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_96.jpg 33 plants, Done. (23.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_97.jpg 38 plants, Done. (23.1ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_98.jpg 60 plants, Done. (23.0ms) Inference, (1.1ms) NMS The image with the result is saved in: runs/detect/exp5/img_99.jpg Done. (28.405s)
Some results:
for images in glob.glob('/content/yolov7/runs/detect/exp5/*.jpg')[0:5]:
display(Image(filename=images))
We list all the .txt files and with the help of rasterio we convert the x and y positions into latitude and longitude values:
ls_x = []
ls_y = []
imgs_to_pred = [f for f in os.listdir('/content/yolov7/runs/detect/exp5/labels/') if f.endswith('.txt')]
for images in imgs_to_pred:
filename = images.split('.')[0]
src = rasterio.open('/content/Predict/' + filename + '.tif')
path = f'/content/yolov7/runs/detect/exp5/labels/'+filename+'.txt'
cols = ['class', 'x-center', 'y-center', 'x_extend', 'y_extend']
df = pd.read_csv(path, sep=" ", header=None)
df.columns = cols
df['x-center'] = np.round(df['x-center'] * 1000)
df['y-center'] = np.round(df['y-center'] * 1000)
for i,row in df.iterrows():
xs, ys = rasterio.transform.xy(src.transform, row['y-center'], row['x-center'])
ls_x.append(xs)
ls_y.append(ys)
df_xy = pd.DataFrame([])
df_xy['x'] = ls_x
df_xy['y'] = ls_y
We created a geodataframe with the central points of the detections:
gdf = gpd.GeoDataFrame(df_xy, geometry=gpd.points_from_xy(df_xy['x'], df_xy['y']))
src_img.crs
CRS.from_epsg(4326)
gdf = gdf.set_crs(src_img.crs.to_dict()['init'])
So we can plot the points together with the original image:
fig, ax = plt.subplots(figsize=(20, 20))
show((src_img), ax=ax)
gdf.plot(ax=ax, marker='o', color='red', markersize=15)
<matplotlib.axes._subplots.AxesSubplot at 0x7f4377984a90>
YOLOv8¶
YOLOv8 is the latest state-of-the-art YOLO model that can be used for object detection, image classification, and instance segmentation tasks. YOLOv8 was developed by Ultralytics, who also created the influential and industry-defining YOLOv5 model. YOLOv8 includes numerous architectural and developer experience changes and improvements over YOLOv5.
Versions¶
YOLOv8 offers multiple model sizes to suit different deployment scenarios. These models include YOLOv8n, YOLOv8s, YOLOv8m, YOLOv8l, and YOLOv8x. For example, if the model is being deployed to edge devices, YOLOv8n can be chosen.
YOLOv8 Network Architecture and Design¶
Anchor Free Detection¶
YOLOv8 is an anchor-less model. This means that it directly predicts the center of an object, rather than the offset from a known anchor box.
Anchor boxes are a predefined set of boxes with specific heights and widths, used to detect object classes with the desired scale and aspect ratio. They are chosen based on the size of the objects in the training dataset and are tiled in the image during detection.
The network generates probability and attributes such as background, IoU, and offsets for each tiled box, which are used to adjust the anchor boxes. Multiple anchor boxes can be defined for different object sizes, serving as fixed starting points for boundary box estimations.
The advantage of anchorless detection is that it is more flexible and efficient as it does not require manually specifying anchor boxes, which can be difficult to choose and can lead to suboptimal results in previous YOLO models such as v1 and v2.
Anchorless detection reduces the number of box predictions, which speeds up non-maximum suppression (NMS), a complicated post-processing step that analyzes candidate detections after inference.
New Convolutions¶
The first 6x6 conv of the stem was replaced by 3x3, the main building block was changed and C2f replaced C3 . The module is summarized in the figure below, where “f” is the number of features, “e” is the expansion rate and CBS is a block composed of a Conv, a BatchNorm and a SiLU later.
In C2f, all the outputs of the Bottleneck (a fancy name for two 3x3 conversions with residual connections) are concatenated. While in C3 only the output of the last Bottleneck was used.
The bottleneck is the same as in YOLOv5, but the first conversion kernel size has been changed from 1x1 to 3x3. From this information, we can see that YOLOv8 is starting to revert to the ResNet block defined in 2015.
In Neck, features are concatenated directly without forcing the same channel dimensions. This reduces the parameter count and the overall size of the tensors.
Mosaic Data Augmentation¶
Deep learning research tends to focus on the model architecture, but the training routine in YOLOv5 and YOLOv8 is a critical part of their success.
YOLOv8 augments images during online training. In each epoch, the model sees a slightly different variation of the images it was fed.
Mosaic data augmentation was first introduced in YOLOv4 and is an improvement over CutMix data augmentation.
During training, YOLOv8 performs several augmentations on the training images. One such augmentation is mosaic data augmentation. Mosaic data augmentation is a simple augmentation technique in which four different images are stitched together and fed into the model as input. This allows the model to learn about real objects in different positions and in partial occlusion.
Running mosaic data augmentation has been shown to reduce performance, so it has been changed for the last 10 epochs.
Comparison¶
YOLOv8 Implementation¶
Let's start by connecting Google Drive and importing the necessary libraries:
from google.colab import drive
drive.mount('/content/drive')
Mounted at /content/drive
import numpy as np
from matplotlib import pyplot as plt
import cv2
import os
import json
import math
import pandas as pd
from skimage import io
from skimage.io import imsave
from sklearn import model_selection
import os
import shutil
import json
import ast
import numpy as np
from tqdm import tqdm
import pandas as pd
import seaborn as sns
import xml.etree.ElementTree as ET
Let's define the image paths and labels for training, validation and testing:
path_imgs_train = '/content/drive/MyDrive/Datasets/SolarPanelDefects/train/images'
path_labels_train = '/content/drive/MyDrive/Datasets/SolarPanelDefects/train/labels'
path_imgs_test = '/content/drive/MyDrive/Datasets/SolarPanelDefects/test/images'
path_labels_test = '/content/drive/MyDrive/Datasets/SolarPanelDefects/test/labels'
path_imgs_valid = '/content/drive/MyDrive/Datasets/SolarPanelDefects/valid/images'
path_labels_valid = '/content/drive/MyDrive/Datasets/SolarPanelDefects/valid/labels'
Now, we list the training images and plot an example:
images_files = [f for f in os.listdir(path_imgs_train)]
len(images_files)
335
os.path.splitext(images_files[0])
('20220526_125751_R_jpg.rf.e71eca6c2cb9fd0f3bfb4c99139b1351', '.jpg')
i = 3
image_path = os.path.join(path_imgs_train,images_files[i])
filename = os.path.splitext(images_files[i])[0]
label_path = os.path.join(path_labels_train,filename + '.txt')
img = cv2.imread(image_path)
dh, dw, _ = img.shape
img = (img[:,:,2] * 0.3) + (img[:,:,1] * 0.59) + (img[:,:,0] * 0.11)
fl = open(label_path, 'r')
data = fl.readlines()
fl.close()
for dt in data:
# Split string to float
_, x, y, w, h = map(float, dt.split(' '))
l = int((x - w / 2) * dw)
r = int((x + w / 2) * dw)
t = int((y - h / 2) * dh)
b = int((y + h / 2) * dh)
if l < 0:
l = 0
if r > dw - 1:
r = dw - 1
if t < 0:
t = 0
if b > dh - 1:
b = dh - 1
cv2.rectangle(img, (l, t), (r, b), (0, 0, 0), 2)
plt.imshow(img, cmap='magma')
plt.show()
After preparing the data, we will create the folder structure where we will organize the images and labels for running YOLOv8:
!mkdir letuce_data
%cd letuce_data
/content/letuce_data
We create the root directory, and then create the training and validation directories for the images and labels:
!mkdir train
!mkdir valid
%cd train
!mkdir images
!mkdir labels
%cd ..
%cd valid
!mkdir images
!mkdir labels
%cd ..
%cd ..
/content/letuce_data/train /content/letuce_data /content/letuce_data/valid /content/letuce_data /content
Now we will copy the data to these directories:
OUTPUT_PATH = '/content/letuce_data/train/images'
for image_file in os.listdir(path_imgs_train):
shutil.copyfile(
os.path.join(path_imgs_train,image_file),
os.path.join(OUTPUT_PATH,image_file)
)
OUTPUT_PATH = '/content/letuce_data/train/labels'
for txt_file in os.listdir(path_labels_train):
shutil.copyfile(
os.path.join(path_labels_train,txt_file),
os.path.join(OUTPUT_PATH,txt_file)
)
OUTPUT_PATH = '/content/letuce_data/valid/images'
for image_file in os.listdir(path_imgs_valid):
shutil.copyfile(
os.path.join(path_imgs_valid,image_file),
os.path.join(OUTPUT_PATH,image_file)
)
OUTPUT_PATH = '/content/letuce_data/valid/labels'
for txt_file in os.listdir(path_labels_valid):
shutil.copyfile(
os.path.join(path_labels_valid,txt_file),
os.path.join(OUTPUT_PATH,txt_file)
)
f = open('/content/letuce_data/train/labels/'+os.listdir("/content/letuce_data/train/labels/")[0])
print(f.name)
for l in f:
print(l)
/content/letuce_data/train/labels/20220526_125637_R_jpg.rf.3335e7c1891be9fc128414a28840d79d.txt 1 0.97265625 0.734375 0.0546875 0.040865384615384616 1 0.373046875 0.8509615384615384 0.07073974609375 0.048001802884615384 1 0.97265625 0.7992788461538461 0.0546875 0.036057692307692304 1 0.765625 0.9831730769230769 0.0859375 0.03365384615384615
YOLOv8 is implemented in the ultralytics library, so we just need to install that library:
!pip install ultralytics
Collecting ultralytics
Downloading ultralytics-8.0.202-py3-none-any.whl (644 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/644.8 kB ? eta -:--:--
━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 194.6/644.8 kB 6.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 634.9/644.8 kB 9.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 644.8/644.8 kB 8.9 MB/s eta 0:00:00
Requirement already satisfied: matplotlib>=3.3.0 in /usr/local/lib/python3.10/dist-packages (from ultralytics) (3.7.1)
Requirement already satisfied: numpy>=1.22.2 in /usr/local/lib/python3.10/dist-packages (from ultralytics) (1.23.5)
Requirement already satisfied: opencv-python>=4.6.0 in /usr/local/lib/python3.10/dist-packages (from ultralytics) (4.8.0.76)
Requirement already satisfied: pillow>=7.1.2 in /usr/local/lib/python3.10/dist-packages (from ultralytics) (9.4.0)
Requirement already satisfied: pyyaml>=5.3.1 in /usr/local/lib/python3.10/dist-packages (from ultralytics) (6.0.1)
Requirement already satisfied: requests>=2.23.0 in /usr/local/lib/python3.10/dist-packages (from ultralytics) (2.31.0)
Requirement already satisfied: scipy>=1.4.1 in /usr/local/lib/python3.10/dist-packages (from ultralytics) (1.11.3)
Requirement already satisfied: torch>=1.8.0 in /usr/local/lib/python3.10/dist-packages (from ultralytics) (2.1.0+cu118)
Requirement already satisfied: torchvision>=0.9.0 in /usr/local/lib/python3.10/dist-packages (from ultralytics) (0.16.0+cu118)
Requirement already satisfied: tqdm>=4.64.0 in /usr/local/lib/python3.10/dist-packages (from ultralytics) (4.66.1)
Requirement already satisfied: pandas>=1.1.4 in /usr/local/lib/python3.10/dist-packages (from ultralytics) (1.5.3)
Requirement already satisfied: seaborn>=0.11.0 in /usr/local/lib/python3.10/dist-packages (from ultralytics) (0.12.2)
Requirement already satisfied: psutil in /usr/local/lib/python3.10/dist-packages (from ultralytics) (5.9.5)
Requirement already satisfied: py-cpuinfo in /usr/local/lib/python3.10/dist-packages (from ultralytics) (9.0.0)
Collecting thop>=0.1.1 (from ultralytics)
Downloading thop-0.1.1.post2209072238-py3-none-any.whl (15 kB)
Requirement already satisfied: contourpy>=1.0.1 in /usr/local/lib/python3.10/dist-packages (from matplotlib>=3.3.0->ultralytics) (1.1.1)
Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.10/dist-packages (from matplotlib>=3.3.0->ultralytics) (0.12.1)
Requirement already satisfied: fonttools>=4.22.0 in /usr/local/lib/python3.10/dist-packages (from matplotlib>=3.3.0->ultralytics) (4.43.1)
Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.10/dist-packages (from matplotlib>=3.3.0->ultralytics) (1.4.5)
Requirement already satisfied: packaging>=20.0 in /usr/local/lib/python3.10/dist-packages (from matplotlib>=3.3.0->ultralytics) (23.2)
Requirement already satisfied: pyparsing>=2.3.1 in /usr/local/lib/python3.10/dist-packages (from matplotlib>=3.3.0->ultralytics) (3.1.1)
Requirement already satisfied: python-dateutil>=2.7 in /usr/local/lib/python3.10/dist-packages (from matplotlib>=3.3.0->ultralytics) (2.8.2)
Requirement already satisfied: pytz>=2020.1 in /usr/local/lib/python3.10/dist-packages (from pandas>=1.1.4->ultralytics) (2023.3.post1)
Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.10/dist-packages (from requests>=2.23.0->ultralytics) (3.3.1)
Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.10/dist-packages (from requests>=2.23.0->ultralytics) (3.4)
Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.10/dist-packages (from requests>=2.23.0->ultralytics) (2.0.7)
Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.10/dist-packages (from requests>=2.23.0->ultralytics) (2023.7.22)
Requirement already satisfied: filelock in /usr/local/lib/python3.10/dist-packages (from torch>=1.8.0->ultralytics) (3.12.4)
Requirement already satisfied: typing-extensions in /usr/local/lib/python3.10/dist-packages (from torch>=1.8.0->ultralytics) (4.5.0)
Requirement already satisfied: sympy in /usr/local/lib/python3.10/dist-packages (from torch>=1.8.0->ultralytics) (1.12)
Requirement already satisfied: networkx in /usr/local/lib/python3.10/dist-packages (from torch>=1.8.0->ultralytics) (3.2)
Requirement already satisfied: jinja2 in /usr/local/lib/python3.10/dist-packages (from torch>=1.8.0->ultralytics) (3.1.2)
Requirement already satisfied: fsspec in /usr/local/lib/python3.10/dist-packages (from torch>=1.8.0->ultralytics) (2023.6.0)
Requirement already satisfied: triton==2.1.0 in /usr/local/lib/python3.10/dist-packages (from torch>=1.8.0->ultralytics) (2.1.0)
Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.10/dist-packages (from python-dateutil>=2.7->matplotlib>=3.3.0->ultralytics) (1.16.0)
Requirement already satisfied: MarkupSafe>=2.0 in /usr/local/lib/python3.10/dist-packages (from jinja2->torch>=1.8.0->ultralytics) (2.1.3)
Requirement already satisfied: mpmath>=0.19 in /usr/local/lib/python3.10/dist-packages (from sympy->torch>=1.8.0->ultralytics) (1.3.0)
Installing collected packages: thop, ultralytics
Successfully installed thop-0.1.1.post2209072238 ultralytics-8.0.202
We define the yaml with the data paths and classes we have:
%%writefile /content/letuce_data/Letuce_detection.yaml
path: /content/letuce_data # dataset root dir
train: train/images/ # train images (relative to 'path')
val: valid/images/ # val images (relative to 'path')
nc: 3
names: ['ByPass_Diode', 'Dark_hot_spot', 'Light_hot_spot']
Writing /content/letuce_data/Letuce_detection.yaml
And we can then import YOLOv8 and train it for 50 epochs:
from ultralytics import YOLO
# Load a model
# model = YOLO("yolov8m.yaml") # build a new model from scratch
model = YOLO("yolov8x.pt") # load a pretrained model (recommended for training)
# Use the model
results = model.train(data="/content/letuce_data/Letuce_detection.yaml", epochs=50, imgsz=512)
Downloading https://github.com/ultralytics/assets/releases/download/v0.0.0/yolov8x.pt to 'yolov8x.pt'... 100%|██████████| 131M/131M [00:00<00:00, 176MB/s] Ultralytics YOLOv8.0.202 🚀 Python-3.10.12 torch-2.1.0+cu118 CUDA:0 (Tesla V100-SXM2-16GB, 16151MiB) engine/trainer: task=detect, mode=train, model=yolov8x.pt, data=/content/letuce_data/Letuce_detection.yaml, epochs=50, patience=50, batch=16, imgsz=512, save=True, save_period=-1, cache=False, device=None, workers=8, project=None, name=train, exist_ok=False, pretrained=True, optimizer=auto, verbose=True, seed=0, deterministic=True, single_cls=False, rect=False, cos_lr=False, close_mosaic=10, resume=False, amp=True, fraction=1.0, profile=False, freeze=None, overlap_mask=True, mask_ratio=4, dropout=0.0, val=True, split=val, save_json=False, save_hybrid=False, conf=None, iou=0.7, max_det=300, half=False, dnn=False, plots=True, source=None, show=False, save_txt=False, save_conf=False, save_crop=False, show_labels=True, show_conf=True, vid_stride=1, stream_buffer=False, line_width=None, visualize=False, augment=False, agnostic_nms=False, classes=None, retina_masks=False, boxes=True, format=torchscript, keras=False, optimize=False, int8=False, dynamic=False, simplify=False, opset=None, workspace=4, nms=False, lr0=0.01, lrf=0.01, momentum=0.937, weight_decay=0.0005, warmup_epochs=3.0, warmup_momentum=0.8, warmup_bias_lr=0.1, box=7.5, cls=0.5, dfl=1.5, pose=12.0, kobj=1.0, label_smoothing=0.0, nbs=64, hsv_h=0.015, hsv_s=0.7, hsv_v=0.4, degrees=0.0, translate=0.1, scale=0.5, shear=0.0, perspective=0.0, flipud=0.0, fliplr=0.5, mosaic=1.0, mixup=0.0, copy_paste=0.0, cfg=None, tracker=botsort.yaml, save_dir=runs/detect/train Downloading https://ultralytics.com/assets/Arial.ttf to '/root/.config/Ultralytics/Arial.ttf'... 100%|██████████| 755k/755k [00:00<00:00, 43.9MB/s] Overriding model.yaml nc=80 with nc=3 from n params module arguments 0 -1 1 2320 ultralytics.nn.modules.conv.Conv [3, 80, 3, 2] 1 -1 1 115520 ultralytics.nn.modules.conv.Conv [80, 160, 3, 2] 2 -1 3 436800 ultralytics.nn.modules.block.C2f [160, 160, 3, True] 3 -1 1 461440 ultralytics.nn.modules.conv.Conv [160, 320, 3, 2] 4 -1 6 3281920 ultralytics.nn.modules.block.C2f [320, 320, 6, True] 5 -1 1 1844480 ultralytics.nn.modules.conv.Conv [320, 640, 3, 2] 6 -1 6 13117440 ultralytics.nn.modules.block.C2f [640, 640, 6, True] 7 -1 1 3687680 ultralytics.nn.modules.conv.Conv [640, 640, 3, 2] 8 -1 3 6969600 ultralytics.nn.modules.block.C2f [640, 640, 3, True] 9 -1 1 1025920 ultralytics.nn.modules.block.SPPF [640, 640, 5] 10 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] 11 [-1, 6] 1 0 ultralytics.nn.modules.conv.Concat [1] 12 -1 3 7379200 ultralytics.nn.modules.block.C2f [1280, 640, 3] 13 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] 14 [-1, 4] 1 0 ultralytics.nn.modules.conv.Concat [1] 15 -1 3 1948800 ultralytics.nn.modules.block.C2f [960, 320, 3] 16 -1 1 922240 ultralytics.nn.modules.conv.Conv [320, 320, 3, 2] 17 [-1, 12] 1 0 ultralytics.nn.modules.conv.Concat [1] 18 -1 3 7174400 ultralytics.nn.modules.block.C2f [960, 640, 3] 19 -1 1 3687680 ultralytics.nn.modules.conv.Conv [640, 640, 3, 2] 20 [-1, 9] 1 0 ultralytics.nn.modules.conv.Concat [1] 21 -1 3 7379200 ultralytics.nn.modules.block.C2f [1280, 640, 3] 22 [15, 18, 21] 1 8720857 ultralytics.nn.modules.head.Detect [3, [320, 640, 640]] Model summary: 365 layers, 68155497 parameters, 68155481 gradients, 258.1 GFLOPs Transferred 589/595 items from pretrained weights TensorBoard: Start with 'tensorboard --logdir runs/detect/train', view at http://localhost:6006/ Freezing layer 'model.22.dfl.conv.weight' AMP: running Automatic Mixed Precision (AMP) checks with YOLOv8n... Downloading https://github.com/ultralytics/assets/releases/download/v0.0.0/yolov8n.pt to 'yolov8n.pt'... 100%|██████████| 6.23M/6.23M [00:00<00:00, 146MB/s] AMP: checks passed ✅ train: Scanning /content/letuce_data/train/labels... 335 images, 8 backgrounds, 0 corrupt: 100%|██████████| 335/335 [00:00<00:00, 1261.29it/s] train: New cache created: /content/letuce_data/train/labels.cache albumentations: Blur(p=0.01, blur_limit=(3, 7)), MedianBlur(p=0.01, blur_limit=(3, 7)), ToGray(p=0.01), CLAHE(p=0.01, clip_limit=(1, 4.0), tile_grid_size=(8, 8)) val: Scanning /content/letuce_data/valid/labels... 19 images, 0 backgrounds, 0 corrupt: 100%|██████████| 19/19 [00:00<00:00, 762.02it/s] val: New cache created: /content/letuce_data/valid/labels.cache Plotting labels to runs/detect/train/labels.jpg... optimizer: 'optimizer=auto' found, ignoring 'lr0=0.01' and 'momentum=0.937' and determining best 'optimizer', 'lr0' and 'momentum' automatically... optimizer: AdamW(lr=0.001429, momentum=0.9) with parameter groups 97 weight(decay=0.0), 104 weight(decay=0.0005), 103 bias(decay=0.0) Image sizes 512 train, 512 val Using 8 dataloader workers Logging results to runs/detect/train Starting training for 50 epochs... Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 1/50 8.56G 1.598 3.547 0.9456 107 512: 100%|██████████| 21/21 [00:08<00:00, 2.45it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:01<00:00, 1.23s/it] all 19 34 9.88e-05 0.167 0.000123 1.23e-05 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 2/50 9.08G 1.017 1.241 0.8334 66 512: 100%|██████████| 21/21 [00:05<00:00, 3.57it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 9.03it/s] all 19 34 9.88e-05 0.167 0.000123 1.23e-05 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 3/50 9.11G 0.9991 1.098 0.8338 57 512: 100%|██████████| 21/21 [00:05<00:00, 3.62it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.46it/s] all 19 34 9.88e-05 0.167 0.000123 1.23e-05 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 4/50 9.1G 0.9725 0.9096 0.8417 73 512: 100%|██████████| 21/21 [00:05<00:00, 3.65it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.26it/s] all 19 34 0.00119 0.184 0.0113 0.00114 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 5/50 9.08G 0.9661 0.9011 0.8337 95 512: 100%|██████████| 21/21 [00:05<00:00, 3.70it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.55it/s] all 19 34 0.00119 0.184 0.0113 0.00114 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 6/50 9.13G 0.9704 0.857 0.8443 81 512: 100%|██████████| 21/21 [00:05<00:00, 3.72it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.08it/s] all 19 34 0.00119 0.184 0.0113 0.00114 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 7/50 9.22G 0.9793 0.8301 0.8437 53 512: 100%|██████████| 21/21 [00:05<00:00, 3.70it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.41it/s] all 19 34 0.00119 0.184 0.0113 0.00114 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 8/50 9.24G 0.9961 0.7921 0.8344 60 512: 100%|██████████| 21/21 [00:05<00:00, 3.69it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.24it/s] all 19 34 8.04e-05 0.0175 3.79e-05 1.14e-05 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 9/50 9.11G 0.8606 0.7232 0.8189 64 512: 100%|██████████| 21/21 [00:05<00:00, 3.70it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.42it/s] all 19 34 8.04e-05 0.0175 3.79e-05 1.14e-05 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 10/50 9.09G 0.854 0.6858 0.8295 104 512: 100%|██████████| 21/21 [00:05<00:00, 3.72it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.38it/s] all 19 34 8.04e-05 0.0175 3.79e-05 1.14e-05 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 11/50 9.18G 0.8446 0.678 0.8212 53 512: 100%|██████████| 21/21 [00:05<00:00, 3.73it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.20it/s] all 19 34 8.04e-05 0.0175 3.79e-05 1.14e-05 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 12/50 9.21G 0.8809 0.7437 0.82 88 512: 100%|██████████| 21/21 [00:05<00:00, 3.70it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.52it/s] all 19 34 0.00476 0.0526 0.00305 0.000305 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 13/50 9.11G 0.8464 0.6945 0.8172 72 512: 100%|██████████| 21/21 [00:05<00:00, 3.71it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.45it/s] all 19 34 0.674 0.0351 0.00275 0.000764 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 14/50 9.12G 0.8601 0.6493 0.8149 81 512: 100%|██████████| 21/21 [00:05<00:00, 3.71it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.49it/s] all 19 34 0.674 0.0351 0.00275 0.000764 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 15/50 9.18G 0.8147 0.6121 0.8051 69 512: 100%|██████████| 21/21 [00:05<00:00, 3.72it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.48it/s] all 19 34 0.121 0.123 0.0803 0.0259 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 16/50 9.25G 0.7883 0.6369 0.8154 77 512: 100%|██████████| 21/21 [00:05<00:00, 3.68it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.67it/s] all 19 34 0.0309 0.202 0.0394 0.0066 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 17/50 9.1G 0.7838 0.6431 0.8132 70 512: 100%|██████████| 21/21 [00:05<00:00, 3.72it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.40it/s] all 19 34 0.859 0.0526 0.0801 0.0386 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 18/50 9.12G 0.733 0.5813 0.8073 54 512: 100%|██████████| 21/21 [00:05<00:00, 3.72it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.51it/s] all 19 34 0.127 0.14 0.141 0.0354 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 19/50 9.22G 0.7469 0.5796 0.8059 77 512: 100%|██████████| 21/21 [00:05<00:00, 3.73it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.57it/s] all 19 34 9.77e-05 0.0175 5.59e-05 3.92e-05 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 20/50 9.23G 0.7581 0.6327 0.8116 70 512: 100%|██████████| 21/21 [00:05<00:00, 3.71it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 8.52it/s] all 19 34 9.77e-05 0.0175 5.59e-05 3.92e-05 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 21/50 9.11G 0.7439 0.5461 0.8041 78 512: 100%|██████████| 21/21 [00:05<00:00, 3.70it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.75it/s] all 19 34 0.0159 0.0256 0.0109 0.00219 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 22/50 9.11G 0.7088 0.553 0.7932 53 512: 100%|██████████| 21/21 [00:05<00:00, 3.71it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 7.10it/s] all 19 34 0.33 0.254 0.343 0.0749 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 23/50 9.19G 0.7206 0.5896 0.7988 99 512: 100%|██████████| 21/21 [00:05<00:00, 3.73it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.92it/s] all 19 34 0.0617 0.0877 0.0478 0.0154 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 24/50 9.21G 0.7549 0.5647 0.8061 57 512: 100%|██████████| 21/21 [00:05<00:00, 3.71it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.59it/s] all 19 34 0.0192 0.0877 0.0269 0.0072 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 25/50 9.11G 0.7416 0.5588 0.8065 47 512: 100%|██████████| 21/21 [00:05<00:00, 3.72it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 5.88it/s] all 19 34 0.00966 0.0351 0.00724 0.00176 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 26/50 9.11G 0.6843 0.5016 0.7973 77 512: 100%|██████████| 21/21 [00:05<00:00, 3.75it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.75it/s] all 19 34 0.342 0.423 0.218 0.042 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 27/50 9.18G 0.6703 0.5505 0.7952 65 512: 100%|██████████| 21/21 [00:05<00:00, 3.72it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 7.68it/s] all 19 34 0.146 0.421 0.174 0.0575 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 28/50 9.25G 0.643 0.5215 0.7942 48 512: 100%|██████████| 21/21 [00:05<00:00, 3.73it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 8.68it/s] all 19 34 0.133 0.0351 0.0737 0.0361 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 29/50 9.11G 0.6723 0.5101 0.8028 45 512: 100%|██████████| 21/21 [00:05<00:00, 3.71it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 7.65it/s] all 19 34 0.0714 0.0526 0.0566 0.0222 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 30/50 9.13G 0.6595 0.5101 0.794 61 512: 100%|██████████| 21/21 [00:05<00:00, 3.73it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.51it/s] all 19 34 0.158 0.298 0.164 0.05 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 31/50 9.21G 0.6701 0.4711 0.8002 83 512: 100%|██████████| 21/21 [00:05<00:00, 3.73it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 7.04it/s] all 19 34 0.648 0.105 0.158 0.0525 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 32/50 9.25G 0.6818 0.4952 0.7978 81 512: 100%|██████████| 21/21 [00:05<00:00, 3.70it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.54it/s] all 19 34 0.304 0.161 0.199 0.0767 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 33/50 9.1G 0.6191 0.4809 0.7953 100 512: 100%|██████████| 21/21 [00:05<00:00, 3.69it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 7.02it/s] all 19 34 0.247 0.385 0.245 0.088 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 34/50 9.15G 0.6246 0.4653 0.7925 76 512: 100%|██████████| 21/21 [00:05<00:00, 3.72it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 5.97it/s] all 19 34 0.259 0.123 0.198 0.0797 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 35/50 9.2G 0.6424 0.5237 0.7955 76 512: 100%|██████████| 21/21 [00:05<00:00, 3.70it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.71it/s] all 19 34 0.0833 0.14 0.0995 0.0244 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 36/50 9.23G 0.6097 0.4405 0.7875 64 512: 100%|██████████| 21/21 [00:05<00:00, 3.71it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.62it/s] all 19 34 0.229 0.158 0.193 0.0619 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 37/50 9.1G 0.6187 0.4489 0.7944 62 512: 100%|██████████| 21/21 [00:05<00:00, 3.69it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.75it/s] all 19 34 0.333 0.12 0.185 0.0771 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 38/50 9.12G 0.5857 0.4321 0.7979 39 512: 100%|██████████| 21/21 [00:05<00:00, 3.70it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 7.38it/s] all 19 34 0.256 0.117 0.155 0.0696 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 39/50 9.21G 0.6224 0.4291 0.7906 63 512: 100%|██████████| 21/21 [00:05<00:00, 3.71it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 7.66it/s] all 19 34 0.133 0.105 0.117 0.0545 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 40/50 9.23G 0.6204 0.4494 0.7887 93 512: 100%|██████████| 21/21 [00:05<00:00, 3.69it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.35it/s] all 19 34 0.229 0.078 0.123 0.0522 Closing dataloader mosaic albumentations: Blur(p=0.01, blur_limit=(3, 7)), MedianBlur(p=0.01, blur_limit=(3, 7)), ToGray(p=0.01), CLAHE(p=0.01, clip_limit=(1, 4.0), tile_grid_size=(8, 8)) Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 41/50 9.11G 0.5534 0.4143 0.7891 36 512: 100%|██████████| 21/21 [00:06<00:00, 3.14it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 5.80it/s] all 19 34 0.192 0.0351 0.0666 0.0267 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 42/50 9.12G 0.5576 0.393 0.8007 31 512: 100%|██████████| 21/21 [00:05<00:00, 3.71it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.83it/s] all 19 34 0.0885 0.307 0.135 0.0434 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 43/50 9.22G 0.5489 0.42 0.7885 36 512: 100%|██████████| 21/21 [00:05<00:00, 3.72it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.73it/s] all 19 34 0.556 0.106 0.191 0.0699 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 44/50 9.26G 0.5439 0.3997 0.7929 62 512: 100%|██████████| 21/21 [00:05<00:00, 3.70it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 7.34it/s] all 19 34 0.143 0.0526 0.0989 0.0377 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 45/50 9.1G 0.5261 0.3758 0.7878 35 512: 100%|██████████| 21/21 [00:05<00:00, 3.72it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.71it/s] all 19 34 0.14 0.113 0.149 0.0424 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 46/50 9.11G 0.5166 0.351 0.7945 39 512: 100%|██████████| 21/21 [00:05<00:00, 3.74it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 6.37it/s] all 19 34 0.554 0.105 0.132 0.0634 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 47/50 9.2G 0.5093 0.3635 0.7792 44 512: 100%|██████████| 21/21 [00:05<00:00, 3.71it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 7.30it/s] all 19 34 0.223 0.158 0.221 0.0849 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 48/50 9.25G 0.4917 0.3553 0.7837 41 512: 100%|██████████| 21/21 [00:05<00:00, 3.67it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 7.66it/s] all 19 34 0.278 0.201 0.269 0.0938 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 49/50 9.1G 0.5111 0.3501 0.7729 37 512: 100%|██████████| 21/21 [00:05<00:00, 3.70it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 7.44it/s] all 19 34 0.317 0.184 0.262 0.0887 Epoch GPU_mem box_loss cls_loss dfl_loss Instances Size 50/50 9.13G 0.4994 0.3367 0.7868 66 512: 100%|██████████| 21/21 [00:05<00:00, 3.75it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 7.67it/s] all 19 34 0.306 0.184 0.252 0.0805 50 epochs completed in 0.116 hours. Optimizer stripped from runs/detect/train/weights/last.pt, 136.7MB Optimizer stripped from runs/detect/train/weights/best.pt, 136.7MB Validating runs/detect/train/weights/best.pt... Ultralytics YOLOv8.0.202 🚀 Python-3.10.12 torch-2.1.0+cu118 CUDA:0 (Tesla V100-SXM2-16GB, 16151MiB) Model summary (fused): 268 layers, 68126457 parameters, 0 gradients, 257.4 GFLOPs Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 1/1 [00:00<00:00, 7.50it/s] all 19 34 0.278 0.201 0.271 0.0946 ByPass_Diode 19 19 0.667 0.526 0.66 0.269 Dark_hot_spot 19 2 0 0 0 0 Light_hot_spot 19 13 0.167 0.0769 0.152 0.0152 Speed: 0.1ms preprocess, 4.3ms inference, 0.0ms loss, 0.6ms postprocess per image Results saved to runs/detect/train
We will apply model validation:
results = model.val()
Ultralytics YOLOv8.0.202 🚀 Python-3.10.12 torch-2.1.0+cu118 CUDA:0 (Tesla V100-SXM2-16GB, 16151MiB) Model summary (fused): 268 layers, 68126457 parameters, 0 gradients, 257.4 GFLOPs val: Scanning /content/letuce_data/valid/labels.cache... 19 images, 0 backgrounds, 0 corrupt: 100%|██████████| 19/19 [00:00<?, ?it/s] Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 2/2 [00:00<00:00, 2.61it/s] all 19 34 0.278 0.201 0.271 0.098 ByPass_Diode 19 19 0.667 0.526 0.66 0.279 Dark_hot_spot 19 2 0 0 0 0 Light_hot_spot 19 13 0.167 0.0769 0.152 0.0152 Speed: 0.2ms preprocess, 17.0ms inference, 0.0ms loss, 14.0ms postprocess per image Results saved to runs/detect/train2
So we can see some metrics:
from IPython.display import Image
from IPython.display import display
x = Image(filename='runs/detect/train/F1_curve.png')
y = Image(filename='runs/detect/train/PR_curve.png')
z = Image(filename='runs/detect/train/confusion_matrix.png')
display(x, y,z)
Let's look at the images used in the first training batch:
Image(filename=f'/content/runs/detect/train/train_batch0.jpg', width=600)
Once trained, we can apply the weights to make predictions:
import locale
locale.getpreferredencoding = lambda: "UTF-8"
!ls
drive letuce_data runs sample_data yolov8n.pt yolov8x.pt
!yolo task=detect mode=predict model="/content/runs/detect/train/weights/best.pt" conf=0.10 source= "/content/letuce_data/valid/images" save=True save_txt=True
Ultralytics YOLOv8.0.202 🚀 Python-3.10.12 torch-2.1.0+cu118 CUDA:0 (Tesla V100-SXM2-16GB, 16151MiB)
Model summary (fused): 268 layers, 68126457 parameters, 0 gradients, 257.4 GFLOPs
image 1/19 /content/letuce_data/valid/images/20220526_125545_R_jpg.rf.09c235fe2c5b806ccc8a95459cf6963e.jpg: 416x512 1 ByPass_Diode, 1 Dark_hot_spot, 54.0ms
image 2/19 /content/letuce_data/valid/images/20220526_125552_R_jpg.rf.a9ca09313a509bc37b6f8ae20b1a52f6.jpg: 416x512 (no detections), 13.4ms
image 3/19 /content/letuce_data/valid/images/20220526_125555_R_jpg.rf.6945bdbb094f21ee45ac957c73e41ce9.jpg: 416x512 2 ByPass_Diodes, 13.2ms
image 4/19 /content/letuce_data/valid/images/20220526_125601_R_jpg.rf.84e5e7ea8d840f7cb332eb41cbf49e36.jpg: 416x512 (no detections), 13.3ms
image 5/19 /content/letuce_data/valid/images/20220526_125626_R_jpg.rf.5d315dd9d2171eec3cbc7c78078b6df4.jpg: 416x512 1 Dark_hot_spot, 13.3ms
image 6/19 /content/letuce_data/valid/images/20220526_125629_R_jpg.rf.bbee714cf024eafdaeab6a1ee8944539.jpg: 416x512 (no detections), 13.3ms
image 7/19 /content/letuce_data/valid/images/20220526_125641_R_jpg.rf.af9224c80a64f7048c6d8e7a16c4f9fc.jpg: 416x512 1 ByPass_Diode, 13.2ms
image 8/19 /content/letuce_data/valid/images/20220526_125649_R_jpg.rf.acc43dae7d7b4608d8e0ce62d7faddf1.jpg: 416x512 (no detections), 12.3ms
image 9/19 /content/letuce_data/valid/images/20220526_125714_R_jpg.rf.8a23da0d363c94ce437d3aa3f7ec54aa.jpg: 416x512 (no detections), 11.7ms
image 10/19 /content/letuce_data/valid/images/20220526_125737_R_jpg.rf.f10b2ae5ee7ebaed78e58c60115e43f5.jpg: 416x512 (no detections), 11.7ms
image 11/19 /content/letuce_data/valid/images/20220526_125758_R_jpg.rf.d5844fac0f011501e2f7061bda01a455.jpg: 416x512 2 ByPass_Diodes, 11.7ms
image 12/19 /content/letuce_data/valid/images/20220526_125808_R_jpg.rf.a076ecefd6750cb879b2f2cd7707f342.jpg: 416x512 (no detections), 11.6ms
image 13/19 /content/letuce_data/valid/images/20220526_125812_R_jpg.rf.d362642d0a2702f45849adcde0017789.jpg: 416x512 (no detections), 11.6ms
image 14/19 /content/letuce_data/valid/images/20220526_125832_R_jpg.rf.d3dd508fb98cda671215a07ce47c6748.jpg: 416x512 (no detections), 11.6ms
image 15/19 /content/letuce_data/valid/images/20220526_125901_R_jpg.rf.918a4058ac5ac4a79ce4345affe0d9d3.jpg: 416x512 (no detections), 11.6ms
image 16/19 /content/letuce_data/valid/images/20220526_125918_R_jpg.rf.5c17c384122fccd21af24294a54b8ac6.jpg: 416x512 (no detections), 11.7ms
image 17/19 /content/letuce_data/valid/images/20220526_125921_R_jpg.rf.5beadad69e2e1ccf1b7f80643e3da142.jpg: 416x512 (no detections), 11.6ms
image 18/19 /content/letuce_data/valid/images/20220526_125924_R_jpg.rf.82de65e745d42e3833666415b6c43a90.jpg: 416x512 (no detections), 11.6ms
image 19/19 /content/letuce_data/valid/images/20220526_125934_R_jpg.rf.57238a25d0606f785dda7c2dc497bfe5.jpg: 416x512 1 ByPass_Diode, 11.6ms
Speed: 0.9ms preprocess, 14.4ms inference, 5.0ms postprocess per image at shape (1, 3, 416, 512)
Results saved to runs/detect/predict
6 labels saved to runs/detect/predict/labels
💡 Learn more at https://docs.ultralytics.com/modes/predict
Let's see the results:
import glob
from IPython.display import Image, display
for image_path in glob.glob(f'/content/runs/detect/predict/*.jpg')[:18]:
display(Image(filename=image_path, width=600))
print("\n")