Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License.
While building a good performing model is important, for it to be useful, it needs to be accessible. In this notebook, we will learn how to make this possible by deploying our model onto Azure. We will more particularly see how to:
For this notebook to run properly on our machine, an Azure workspace is required. If we don't have one, we need to first run through the short 20_azure_workspace_setup.ipynb notebook to create it.
Throughout this notebook, we will be using a variety of libraries. We are listing them here for better readibility.
# For automatic reloading of modified libraries
%reload_ext autoreload
%autoreload 2
# Regular python libraries
import os
import sys
# fast.ai
from fastai.vision import models
# Azure
import azureml.core
from azureml.core import Experiment, Workspace
from azureml.core.image import ContainerImage
from azureml.core.model import Model
from azureml.core.webservice import AciWebservice, Webservice
from azureml.exceptions import WebserviceException
# Computer Vision repository
sys.path.extend([".", "../.."])
# This "sys.path.extend()" statement allows us to move up the directory hierarchy
# and access the utils_cv package
from utils_cv.common.deployment import generate_yaml
from utils_cv.common.data import root_path
from utils_cv.classification.model import IMAGENET_IM_SIZE, model_to_learner
# Check core SDK version number
print(f"Azure ML SDK Version: {azureml.core.VERSION}")
Azure ML SDK Version: 1.0.85
For demonstration purposes, we will use here a ResNet18 model, pretrained on ImageNet. The following steps would be the same if we had trained a model locally (cf. 01_training_introduction.ipynb notebook for details).
Let's first retrieve the model.
learn = model_to_learner(models.resnet18(pretrained=True), IMAGENET_IM_SIZE)
To be able to use this model, we need to export it to our local machine. We store it in an outputs/
subfolder.
output_folder = os.path.join(os.getcwd(), 'outputs')
model_name = 'im_classif_resnet18' # Name we will give our model both locally and on Azure
pickled_model_name = f'{model_name}.pkl'
os.makedirs(output_folder, exist_ok=True)
learn.export(os.path.join(output_folder, pickled_model_name))
To create or access an Azure ML Workspace, you will need the following information. If you are coming from previous notebook you can retreive existing workspace, or create a new one if you are just starting with this notebook.
subscription_id = "YOUR_SUBSCRIPTION_ID"
resource_group = "YOUR_RESOURCE_GROUP_NAME"
workspace_name = "YOUR_WORKSPACE_NAME"
workspace_region = "YOUR_WORKSPACE_REGION" #Possible values eastus, eastus2 and so on.
In prior notebook notebook, we created a workspace. This is a critical object from which we will build all the pieces we need to deploy our model as a web service. Let's start by retrieving it.
# A util method that creates a workspace or retrieves one if it exists, also takes care of Azure Authentication
from utils_cv.common.azureml import get_or_create_workspace
ws = get_or_create_workspace(
subscription_id,
resource_group,
workspace_name,
workspace_region)
# Print the workspace attributes
print('Workspace name: ' + ws.name,
'Workspace region: ' + ws.location,
'Subscription id: ' + ws.subscription_id,
'Resource group: ' + ws.resource_group, sep = '\n')
Our final goal is to deploy our model as a web service. To do so, we need to first register it in our workspace, i.e. place it in our workspace's model registry. We can do this in 2 ways:
The advantage of the first method is that it does not require the setup of an experiment or of any runs. The advantage of the second fashion is that we can keep track of the models that we used or trained in a given experiment, and understand where the ones we ended up registering come from.
The cells below show each of the methods.
We leverage the register
method from the Azure ML Model
object. For that, we just need the location of the model we saved on our local machine, its name and our workspace object.
model = Model.register(
model_path = os.path.join('outputs', pickled_model_name),
model_name = model_name,
tags = {"Model": "Pretrained ResNet18"},
description = "Image classifier",
workspace = ws
)
Registering model im_classif_resnet18
An experiment contains a series of trials called Runs
. A run typically contains some tasks, such as training a model, etc. Through a run's methods, we can log several metrics such as training and test loss and accuracy, and even tag our run. The full description of the run class is available here. In our case, however, we just need the run to attach our model file to our workspace and experiment.
We do this by using run.upload_file()
and run.register_model()
, which takes:
model_name
that represents what our model doesmodel_path
relative to the run.Using run.upload_file()
and specifying the outputs/
folder allows us to check the presence of the uploaded model on the Azure portal. This is especially convenient when we want to try different versions of a model, or even different models entirely, and keep track of them all, even if we end up registering only the best performing one.
Let's first create a new experiment. If an experiment with the same name already exists in our workspace, the run we will generate will be recorded under that already existing experiment.
# Create a new/Retrieve an existing experiment
experiment_name = 'image-classifier-webservice'
experiment = Experiment(workspace=ws, name=experiment_name)
print(f"New/Existing experiment:\n \
--> Name: {experiment.name}\n \
--> Workspace name: {experiment.workspace.name}")
# Initialize the run
run = experiment.start_logging(snapshot_directory=None)
# "snapshot_directory=None" prevents a snapshot from being saved -- this helps keep the amount of storage used low
Now that we have launched our run, we can see our experiment on the Azure portal, under Experiments
(in the left-hand side list).
We can now attach our local model to our workspace and experiment.
# Upload the model (.pkl) file to Azure
run.upload_file(
name=os.path.join('outputs', pickled_model_name),
path_or_stream=os.path.join(os.getcwd(), 'outputs', pickled_model_name)
)
<azureml._restclient.models.batch_artifact_content_information_dto.BatchArtifactContentInformationDto at 0x1c35293b470>
# Register the model with the workspace
model = run.register_model(
model_name=model_name,
model_path=os.path.join('outputs', pickled_model_name),
tags = {"Model": "Pretrained ResNet18"},
)
# !!! We need to make sure that the model name we use here is the same as in the scoring script below !!!
Now that the model is uploaded and registered, we can see it on the Azure platform, under Outputs
and Models
We can also check that it is programatically accessible
print(f"Model:\n --> Name: {model.name}\n \
--> ID: {model.id}\n \
--> Path:{model._get_model_path_remote(model.name, model.version, ws)}")
Model: --> Name: im_classif_resnet18 --> ID: im_classif_resnet18:11 --> Path:azureml-models\im_classif_resnet18\11\im_classif_resnet18.pkl
run.get_file_names()
['outputs/im_classif_resnet18.pkl']
If we are also interested in verifying which model we uploaded, we can download it to our local machine
model.download(exist_ok=True)
'im_classif_resnet18.pkl'
Note: If we ran the cells in both the "with an experiment" and "without experiment" sections, we got 2 iterations of the same model registered on Azure. This is not a problem as any operation that we perform on the "model" object, later on, will be associated with the latest version of the model that we registered. To clean things up, we can go to the portal, select the model we do not want and click the "Delete" button. In general, we would register the model using only one of these 2 methods.
We are all done with our model registration, so we can close our run.
# Close the run
run.complete()
# Access the portal
run
For the web service to return predictions on a given input image, we need to provide it with instructions on how to use the model we just registered. These instructions are stored in the scoring script.
This script must contain two required functions, init()
and run(input_data)
:
init()
function, we typically load the model into a global object. This function is executed only once when the Docker container is started.run(input_data)
function, the model is used to predict a value based on the input data. The input and output of run
typically use JSON as serialization and de-serialization format but we are not limited to that.Note: The "run()" function here is different from the "run" object we created in our experiment
This file must also be stored in the current directory.
scoring_script = "score.py"
%%writefile $scoring_script
# Copyright (c) Microsoft. All rights reserved.
# Licensed under the MIT license.
import os
import json
from base64 import b64decode
from io import BytesIO
from azureml.core.model import Model
from fastai.vision import load_learner, open_image
def init():
global model
model_path = Model.get_model_path(model_name='im_classif_resnet18')
# ! We cannot use the *model_name* variable here otherwise the execution on Azure will fail !
model_dir_path, model_filename = os.path.split(model_path)
model = load_learner(model_dir_path, model_filename)
def run(raw_data):
# Expects raw_data to be a list within a json file
result = []
for im_string in json.loads(raw_data)['data']:
im_bytes = b64decode(im_string)
try:
im = open_image(BytesIO(im_bytes))
pred_class, pred_idx, outputs = model.predict(im)
result.append({"label": str(pred_class), "probability": str(outputs[pred_idx].item())})
except Exception as e:
result.append({"label": str(e), "probability": ''})
return result
Overwriting score.py
azureml.core.environment
to build the docker image and for deployment ¶Azure Machine Learning provides an easy way to manage environments through azureml.core.environment in the AzureML Python SDK.
Environments
provide a way to manage software dependencies so that controlled environments are reproducible with minimal manual configuration as you move between local and distributed cloud development environments.
Most importantly, it allows users to encapsulate the various software settings and dependencies in a reproducible manner through the use of containerization and package management tools such as conda, a popular open-source, cross-platform, language-agnostic package management tool.
In order to make predictions on the Azure platform, it is important to create an environment as similar as possible to the one in which the model was trained. Here, we use a fast.ai pretrained model that also requires pytorch and a few other libraries. To re-create this environment, we use a Docker container. We configure it via a yaml file that will contain all the conda dependencies needed by the model. This yaml file is a subset of <repo_root>/classification/environment.yml
.
# Create a deployment-specific yaml file from classification/environment.yml
try:
generate_yaml(
directory=os.path.join(root_path()),
ref_filename='environment.yml',
needed_libraries=['pytorch', 'spacy', 'fastai', 'dataclasses'],
conda_filename='myenv.yml'
)
# Note: Take a look at the generate_yaml() function for details on how to create your yaml file from scratch
except FileNotFoundError:
raise FileNotFoundError("The *environment.yml* file is missing - Please make sure to retrieve it from the github repository")
# Conda environment specification. The dependencies defined in this file will # be automatically provisioned for runs with userManagedDependencies=False. # Details about the Conda environment file format: # https://conda.io/docs/user-guide/tasks/manage-environments.html#create-env-file-manually name: project_environment dependencies: # The python interpreter version. # Currently Azure ML only supports 3.5.2 and later. - python=3.6.2 - pip: # Required packages for AzureML execution, history, and data preparation. - azureml-defaults - pytorch==1.2.0 - fastai==1.0.57 - spacy - dataclasses channels: - conda-forge - defaults - pytorch - fastai
We will now use the generated conda dependencies yaml file named myenv.yml
to create an AzureML Environment
object from it using the azureml.core.environment
class.
Then, we will specify a base dockerfile to use to build the docker image that we will be using for deployment, which adds specific packages that are required for inferencing.
Finally, we will register the generated Environment
object to our workspace with AzureML Environment Management Service (EMS) so that we can retrieve it for reuse throughout Azure Machine Learning Services.
We will be able to retrieve the environment by using the name that we specified (im_classif_resnet18
) and the workspace that we created. Then we can use the same environment to deploy to other compute targets such as AKS and Azure App Services.
To learn more about how to retrieve and reuse environments in AzureML services, please refer to the documentation page
from azureml.core import Environment
from azureml.core.environment import DEFAULT_CPU_IMAGE
cv_test_env = Environment.from_conda_specification(name="im_classif_resnet18", file_path="myenv.yml")
# specifying the latest required inferencing stack to be used for deployment
cv_test_env.inferencing_stack_version="latest"
# We will be using the default CPU image for Azure Machine Learning as the base image
# and will add required packages for inferencing
cv_test_env.docker.base_dockerfile="""FROM {}
RUN apt-get update && \
apt-get install -y libssl-dev build-essential libgl1-mesa-glx
""".format(DEFAULT_CPU_IMAGE)
# setting docker.base_image to None to use the base_dockerfile specified above to build the image
cv_test_env.docker.base_image=None
# Now, let's try registering the environment.
# You'll be able to see the specified environment printed out.
cv_test_env.register(ws)
{ "name": "im_classif_resnet18", "version": "1", "environmentVariables": { "EXAMPLE_ENV_VAR": "EXAMPLE_VALUE" }, "python": { "userManagedDependencies": false, "interpreterPath": "python", "condaDependenciesFile": null, "baseCondaEnvironment": null, "condaDependencies": { "channels": [ "conda-forge", "defaults", "pytorch", "fastai" ], "dependencies": [ "python=3.6.2", { "pip": [ "azureml-defaults" ] }, "pytorch==1.2.0", "fastai==1.0.57", "spacy", "dataclasses" ], "name": "azureml_53f7459b2d11a780edbefaa1f46263fa" } }, "docker": { "enabled": false, "baseImage": null, "baseDockerfile": "FROM mcr.microsoft.com/azureml/base:intelmpi2018.3-ubuntu16.04\nRUN apt-get update && apt-get install -y libssl-dev build-essential libgl1-mesa-glx\n", "sharedVolumes": true, "shmSize": null, "arguments": [], "baseImageRegistry": { "address": null, "username": null, "password": null } }, "spark": { "repositories": [], "packages": [], "precachePackages": true }, "databricks": { "mavenLibraries": [], "pypiLibraries": [], "rcranLibraries": [], "jarLibraries": [], "eggLibraries": [] }, "inferencingStackVersion": "latest" }
# Since building the docker image for the first time requires a few minutes, let's start building the image
# that we'll be using for deployment now and monitor the build through the streamed logs.
cv_test_env.build(ws).wait_for_completion(show_output=True)
Image Build Status: Running 2020/04/09 20:31:52 Downloading source code... 2020/04/09 20:31:53 Finished downloading source code 2020/04/09 20:31:54 Creating Docker network: acb_default_network, driver: 'bridge' 2020/04/09 20:31:54 Successfully set up Docker network: acb_default_network 2020/04/09 20:31:54 Setting up Docker configuration... 2020/04/09 20:31:55 Successfully set up Docker configuration 2020/04/09 20:31:55 Logging in to registry: cvwsbbd59dea.azurecr.io 2020/04/09 20:31:56 Successfully logged into cvwsbbd59dea.azurecr.io 2020/04/09 20:31:56 Executing step ID: acb_step_0. Timeout(sec): 5400, Working directory: '', Network: 'acb_default_network' 2020/04/09 20:31:56 Scanning for dependencies... 2020/04/09 20:31:57 Successfully scanned dependencies 2020/04/09 20:31:57 Launching container with name: acb_step_0 Sending build context to Docker daemon 61.44kB Step 1/22 : FROM mcr.microsoft.com/azureml/o16n-base/python-assets:latest AS inferencing-assets latest: Pulling from azureml/o16n-base/python-assets 8f62c0f3bb41: Pulling fs layer 8f62c0f3bb41: Verifying Checksum 8f62c0f3bb41: Download complete 8f62c0f3bb41: Pull complete Digest: sha256:065414379a261e7931bd91518c83113085848ba19890ef75e8f5e6ffd62c6b86 Status: Downloaded newer image for mcr.microsoft.com/azureml/o16n-base/python-assets:latest ---> e1154c54d388 Step 2/22 : FROM mcr.microsoft.com/azureml/base:intelmpi2018.3-ubuntu16.04 intelmpi2018.3-ubuntu16.04: Pulling from azureml/base Digest: sha256:a1b514f3ba884b9a7695cbba5638933ddaf222e8ce3e8c81e8cdf861679abb05 Status: Downloaded newer image for mcr.microsoft.com/azureml/base:intelmpi2018.3-ubuntu16.04 ---> 93a72e6bd1ce Step 3/22 : RUN apt-get update && apt-get install -y libssl-dev build-essential libgl1-mesa-glx ---> Running in 9fd23d97599d Get:1 http://security.ubuntu.com/ubuntu xenial-security InRelease [109 kB] Get:2 http://ppa.launchpad.net/adiscon/v8-stable/ubuntu xenial InRelease [17.5 kB] Get:3 http://archive.ubuntu.com/ubuntu xenial InRelease [247 kB] Get:4 http://ppa.launchpad.net/adiscon/v8-stable/ubuntu xenial/main amd64 Packages [7381 B] Get:5 http://security.ubuntu.com/ubuntu xenial-security/main amd64 Packages [1087 kB] Get:6 http://archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB] Get:7 http://archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB] Get:8 http://archive.ubuntu.com/ubuntu xenial/main amd64 Packages [1558 kB] Get:9 http://security.ubuntu.com/ubuntu xenial-security/restricted amd64 Packages [12.7 kB] Get:10 http://security.ubuntu.com/ubuntu xenial-security/universe amd64 Packages [623 kB] Get:11 http://security.ubuntu.com/ubuntu xenial-security/multiverse amd64 Packages [6282 B] Get:12 http://archive.ubuntu.com/ubuntu xenial/restricted amd64 Packages [14.1 kB] Get:13 http://archive.ubuntu.com/ubuntu xenial/universe amd64 Packages [9827 kB] Get:14 http://archive.ubuntu.com/ubuntu xenial/multiverse amd64 Packages [176 kB] Get:15 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages [1456 kB] Get:16 http://archive.ubuntu.com/ubuntu xenial-updates/restricted amd64 Packages [13.1 kB] Get:17 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 Packages [1028 kB] Get:18 http://archive.ubuntu.com/ubuntu xenial-updates/multiverse amd64 Packages [19.3 kB] Get:19 http://archive.ubuntu.com/ubuntu xenial-backports/main amd64 Packages [7942 B] Get:20 http://archive.ubuntu.com/ubuntu xenial-backports/universe amd64 Packages [8807 B] Fetched 16.4 MB in 2s (6600 kB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... build-essential is already the newest version (12.1ubuntu2). The following packages were automatically installed and are no longer required: dh-python distro-info-data file gir1.2-glib-2.0 iso-codes libapt-inst2.0 libdbus-glib-1-2 libgirepository-1.0-1 libmagic1 libmpdec2 libpython3-stdlib libpython3.5-minimal libpython3.5-stdlib lsb-release mime-support powermgmt-base python-apt-common python3 python3-apt python3-dbus python3-gi python3-minimal python3-pycurl python3-software-properties python3.5 python3.5-minimal unattended-upgrades Use 'apt autoremove' to remove them. The following additional packages will be installed: libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libgl1-mesa-dri libglapi-mesa libllvm6.0 libpciaccess0 libsensors4 libssl-doc libtxc-dxtn-s2tc0 libx11-xcb1 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-sync1 libxdamage1 libxfixes3 libxshmfence1 libxxf86vm1 zlib1g zlib1g-dev Suggested packages: pciutils lm-sensors The following NEW packages will be installed: libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libgl1-mesa-dri libgl1-mesa-glx libglapi-mesa libllvm6.0 libpciaccess0 libsensors4 libssl-dev libssl-doc libtxc-dxtn-s2tc0 libx11-xcb1 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-sync1 libxdamage1 libxfixes3 libxshmfence1 libxxf86vm1 zlib1g-dev The following packages will be upgraded: zlib1g 1 upgraded, 27 newly installed, 0 to remove and 62 not upgraded. Need to get 23.5 MB of archives. After this operation, 216 MB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxdamage1 amd64 1:1.1.4-2 [6946 B] Get:2 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxfixes3 amd64 1:5.0.1-2 [11.1 kB] Get:3 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxshmfence1 amd64 1.2-1 [5042 B] Get:4 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxxf86vm1 amd64 1:1.1.4-1 [10.6 kB] Get:5 http://archive.ubuntu.com/ubuntu xenial/main amd64 libtxc-dxtn-s2tc0 amd64 0~git20131104-1.1 [51.8 kB] Get:6 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 zlib1g amd64 1:1.2.8.dfsg-2ubuntu4.3 [51.2 kB] Get:7 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libdrm-common all 2.4.91-2~16.04.1 [4764 B] Get:8 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libdrm2 amd64 2.4.91-2~16.04.1 [30.8 kB] Get:9 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libelf1 amd64 0.165-3ubuntu1.2 [43.5 kB] Get:10 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libdrm-amdgpu1 amd64 2.4.91-2~16.04.1 [18.9 kB] Get:11 http://archive.ubuntu.com/ubuntu xenial/main amd64 libpciaccess0 amd64 0.13.4-1 [18.1 kB] Get:12 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libdrm-intel1 amd64 2.4.91-2~16.04.1 [59.9 kB] Get:13 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libdrm-nouveau2 amd64 2.4.91-2~16.04.1 [16.3 kB] Get:14 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libdrm-radeon1 amd64 2.4.91-2~16.04.1 [21.5 kB] Get:15 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libglapi-mesa amd64 18.0.5-0ubuntu0~16.04.1 [23.4 kB] Get:16 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libllvm6.0 amd64 1:6.0-1ubuntu2~16.04.1 [14.3 MB] Get:17 http://archive.ubuntu.com/ubuntu xenial/main amd64 libsensors4 amd64 1:3.4.0-2 [28.4 kB] Get:18 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgl1-mesa-dri amd64 18.0.5-0ubuntu0~16.04.1 [6080 kB] Get:19 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libx11-xcb1 amd64 2:1.6.3-1ubuntu2.1 [9044 B] Get:20 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-dri2-0 amd64 1.11.1-1ubuntu1 [6882 B] Get:21 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-dri3-0 amd64 1.11.1-1ubuntu1 [5218 B] Get:22 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-glx0 amd64 1.11.1-1ubuntu1 [20.9 kB] Get:23 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-present0 amd64 1.11.1-1ubuntu1 [5218 B] Get:24 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-sync1 amd64 1.11.1-1ubuntu1 [8324 B] Get:25 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgl1-mesa-glx amd64 18.0.5-0ubuntu0~16.04.1 [132 kB] Get:26 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 zlib1g-dev amd64 1:1.2.8.dfsg-2ubuntu4.3 [167 kB] Get:27 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libssl-dev amd64 1.0.2g-1ubuntu4.15 [1344 kB] Get:28 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libssl-doc all 1.0.2g-1ubuntu4.15 [1077 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 23.5 MB in 1s (17.2 MB/s) Selecting previously unselected package libxdamage1:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 17863 files and directories currently installed.) Preparing to unpack .../libxdamage1_1%3a1.1.4-2_amd64.deb ... Unpacking libxdamage1:amd64 (1:1.1.4-2) ... Selecting previously unselected package libxfixes3:amd64. Preparing to unpack .../libxfixes3_1%3a5.0.1-2_amd64.deb ... Unpacking libxfixes3:amd64 (1:5.0.1-2) ... Selecting previously unselected package libxshmfence1:amd64. Preparing to unpack .../libxshmfence1_1.2-1_amd64.deb ... Unpacking libxshmfence1:amd64 (1.2-1) ... Selecting previously unselected package libxxf86vm1:amd64. Preparing to unpack .../libxxf86vm1_1%3a1.1.4-1_amd64.deb ... Unpacking libxxf86vm1:amd64 (1:1.1.4-1) ... Selecting previously unselected package libtxc-dxtn-s2tc0:amd64. Preparing to unpack .../libtxc-dxtn-s2tc0_0~git20131104-1.1_amd64.deb ... Unpacking libtxc-dxtn-s2tc0:amd64 (0~git20131104-1.1) ... Preparing to unpack .../zlib1g_1%3a1.2.8.dfsg-2ubuntu4.3_amd64.deb ... Unpacking zlib1g:amd64 (1:1.2.8.dfsg-2ubuntu4.3) over (1:1.2.8.dfsg-2ubuntu4.1) ... Processing triggers for libc-bin (2.23-0ubuntu11) ... Setting up zlib1g:amd64 (1:1.2.8.dfsg-2ubuntu4.3) ... Processing triggers for libc-bin (2.23-0ubuntu11) ... Selecting previously unselected package libdrm-common. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 17889 files and directories currently installed.) Preparing to unpack .../libdrm-common_2.4.91-2~16.04.1_all.deb ... Unpacking libdrm-common (2.4.91-2~16.04.1) ... Selecting previously unselected package libdrm2:amd64. Preparing to unpack .../libdrm2_2.4.91-2~16.04.1_amd64.deb ... Unpacking libdrm2:amd64 (2.4.91-2~16.04.1) ... Selecting previously unselected package libelf1:amd64. Preparing to unpack .../libelf1_0.165-3ubuntu1.2_amd64.deb ... Unpacking libelf1:amd64 (0.165-3ubuntu1.2) ... Selecting previously unselected package libdrm-amdgpu1:amd64. Preparing to unpack .../libdrm-amdgpu1_2.4.91-2~16.04.1_amd64.deb ... Unpacking libdrm-amdgpu1:amd64 (2.4.91-2~16.04.1) ... Selecting previously unselected package libpciaccess0:amd64. Preparing to unpack .../libpciaccess0_0.13.4-1_amd64.deb ... Unpacking libpciaccess0:amd64 (0.13.4-1) ... Selecting previously unselected package libdrm-intel1:amd64. Preparing to unpack .../libdrm-intel1_2.4.91-2~16.04.1_amd64.deb ... Unpacking libdrm-intel1:amd64 (2.4.91-2~16.04.1) ... Selecting previously unselected package libdrm-nouveau2:amd64. Preparing to unpack .../libdrm-nouveau2_2.4.91-2~16.04.1_amd64.deb ... Unpacking libdrm-nouveau2:amd64 (2.4.91-2~16.04.1) ... Selecting previously unselected package libdrm-radeon1:amd64. Preparing to unpack .../libdrm-radeon1_2.4.91-2~16.04.1_amd64.deb ... Unpacking libdrm-radeon1:amd64 (2.4.91-2~16.04.1) ... Selecting previously unselected package libglapi-mesa:amd64. Preparing to unpack .../libglapi-mesa_18.0.5-0ubuntu0~16.04.1_amd64.deb ... Unpacking libglapi-mesa:amd64 (18.0.5-0ubuntu0~16.04.1) ... Selecting previously unselected package libllvm6.0:amd64. Preparing to unpack .../libllvm6.0_1%3a6.0-1ubuntu2~16.04.1_amd64.deb ... Unpacking libllvm6.0:amd64 (1:6.0-1ubuntu2~16.04.1) ... Selecting previously unselected package libsensors4:amd64. Preparing to unpack .../libsensors4_1%3a3.4.0-2_amd64.deb ... Unpacking libsensors4:amd64 (1:3.4.0-2) ... Selecting previously unselected package libgl1-mesa-dri:amd64. Preparing to unpack .../libgl1-mesa-dri_18.0.5-0ubuntu0~16.04.1_amd64.deb ... Unpacking libgl1-mesa-dri:amd64 (18.0.5-0ubuntu0~16.04.1) ... Selecting previously unselected package libx11-xcb1:amd64. Preparing to unpack .../libx11-xcb1_2%3a1.6.3-1ubuntu2.1_amd64.deb ... Unpacking libx11-xcb1:amd64 (2:1.6.3-1ubuntu2.1) ... Selecting previously unselected package libxcb-dri2-0:amd64. Preparing to unpack .../libxcb-dri2-0_1.11.1-1ubuntu1_amd64.deb ... Unpacking libxcb-dri2-0:amd64 (1.11.1-1ubuntu1) ... Selecting previously unselected package libxcb-dri3-0:amd64. Preparing to unpack .../libxcb-dri3-0_1.11.1-1ubuntu1_amd64.deb ... Unpacking libxcb-dri3-0:amd64 (1.11.1-1ubuntu1) ... Selecting previously unselected package libxcb-glx0:amd64. Preparing to unpack .../libxcb-glx0_1.11.1-1ubuntu1_amd64.deb ... Unpacking libxcb-glx0:amd64 (1.11.1-1ubuntu1) ... Selecting previously unselected package libxcb-present0:amd64. Preparing to unpack .../libxcb-present0_1.11.1-1ubuntu1_amd64.deb ... Unpacking libxcb-present0:amd64 (1.11.1-1ubuntu1) ... Selecting previously unselected package libxcb-sync1:amd64. Preparing to unpack .../libxcb-sync1_1.11.1-1ubuntu1_amd64.deb ... Unpacking libxcb-sync1:amd64 (1.11.1-1ubuntu1) ... Selecting previously unselected package libgl1-mesa-glx:amd64. Preparing to unpack .../libgl1-mesa-glx_18.0.5-0ubuntu0~16.04.1_amd64.deb ... Unpacking libgl1-mesa-glx:amd64 (18.0.5-0ubuntu0~16.04.1) ... Selecting previously unselected package zlib1g-dev:amd64. Preparing to unpack .../zlib1g-dev_1%3a1.2.8.dfsg-2ubuntu4.3_amd64.deb ... Unpacking zlib1g-dev:amd64 (1:1.2.8.dfsg-2ubuntu4.3) ... Selecting previously unselected package libssl-dev:amd64. Preparing to unpack .../libssl-dev_1.0.2g-1ubuntu4.15_amd64.deb ... Unpacking libssl-dev:amd64 (1.0.2g-1ubuntu4.15) ... Selecting previously unselected package libssl-doc. Preparing to unpack .../libssl-doc_1.0.2g-1ubuntu4.15_all.deb ... Unpacking libssl-doc (1.0.2g-1ubuntu4.15) ... Processing triggers for libc-bin (2.23-0ubuntu11) ... Setting up libxdamage1:amd64 (1:1.1.4-2) ... Setting up libxfixes3:amd64 (1:5.0.1-2) ... Setting up libxshmfence1:amd64 (1.2-1) ... Setting up libxxf86vm1:amd64 (1:1.1.4-1) ... Setting up libtxc-dxtn-s2tc0:amd64 (0~git20131104-1.1) ... update-alternatives: using /usr/lib/x86_64-linux-gnu/libtxc_dxtn_s2tc.so.0 to provide /usr/lib/x86_64-linux-gnu/libtxc_dxtn.so (libtxc-dxtn-x86_64-linux-gnu) in auto mode Setting up libdrm-common (2.4.91-2~16.04.1) ... Setting up libdrm2:amd64 (2.4.91-2~16.04.1) ... Setting up libelf1:amd64 (0.165-3ubuntu1.2) ... Setting up libdrm-amdgpu1:amd64 (2.4.91-2~16.04.1) ... Setting up libpciaccess0:amd64 (0.13.4-1) ... Setting up libdrm-intel1:amd64 (2.4.91-2~16.04.1) ... Setting up libdrm-nouveau2:amd64 (2.4.91-2~16.04.1) ... Setting up libdrm-radeon1:amd64 (2.4.91-2~16.04.1) ... Setting up libglapi-mesa:amd64 (18.0.5-0ubuntu0~16.04.1) ... Setting up libllvm6.0:amd64 (1:6.0-1ubuntu2~16.04.1) ... Setting up libsensors4:amd64 (1:3.4.0-2) ... Setting up libgl1-mesa-dri:amd64 (18.0.5-0ubuntu0~16.04.1) ... Setting up libx11-xcb1:amd64 (2:1.6.3-1ubuntu2.1) ... Setting up libxcb-dri2-0:amd64 (1.11.1-1ubuntu1) ... Setting up libxcb-dri3-0:amd64 (1.11.1-1ubuntu1) ... Setting up libxcb-glx0:amd64 (1.11.1-1ubuntu1) ... Setting up libxcb-present0:amd64 (1.11.1-1ubuntu1) ... Setting up libxcb-sync1:amd64 (1.11.1-1ubuntu1) ... Setting up libgl1-mesa-glx:amd64 (18.0.5-0ubuntu0~16.04.1) ... update-alternatives: using /usr/lib/x86_64-linux-gnu/mesa/ld.so.conf to provide /etc/ld.so.conf.d/x86_64-linux-gnu_GL.conf (x86_64-linux-gnu_gl_conf) in auto mode Setting up zlib1g-dev:amd64 (1:1.2.8.dfsg-2ubuntu4.3) ... Setting up libssl-dev:amd64 (1.0.2g-1ubuntu4.15) ... Setting up libssl-doc (1.0.2g-1ubuntu4.15) ... Processing triggers for libc-bin (2.23-0ubuntu11) ... Removing intermediate container 9fd23d97599d ---> 16b7bf8dda16 Step 4/22 : USER root ---> Running in 8daa09df465a Removing intermediate container 8daa09df465a ---> bc88c429f63a Step 5/22 : RUN mkdir -p $HOME/.cache ---> Running in cc0440374190 Removing intermediate container cc0440374190 ---> 01e74db48950 Step 6/22 : WORKDIR / ---> Running in 0584cdeb02d1 Removing intermediate container 0584cdeb02d1 ---> 4e747421c053 Step 7/22 : COPY azureml-environment-setup/99brokenproxy /etc/apt/apt.conf.d/ ---> 7e187040d634 Step 8/22 : COPY --from=inferencing-assets /artifacts /var/ ---> 5da008640a78 Step 9/22 : RUN /var/requirements/install_system_requirements.sh ---> Running in 6335cbc173b2 Hit:1 http://security.ubuntu.com/ubuntu xenial-security InRelease Hit:2 http://ppa.launchpad.net/adiscon/v8-stable/ubuntu xenial InRelease Hit:3 http://archive.ubuntu.com/ubuntu xenial InRelease Hit:4 http://archive.ubuntu.com/ubuntu xenial-updates InRelease Hit:5 http://archive.ubuntu.com/ubuntu xenial-backports InRelease Reading package lists... Reading package lists... Building dependency tree... Reading state information... The following NEW packages will be installed: software-properties-common 0 upgraded, 1 newly installed, 0 to remove and 62 not upgraded. Need to get 9452 B of archives. After this operation, 193 kB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 software-properties-common all 0.96.20.9 [9452 B] debconf: delaying package configuration, since apt-utils is not installed Fetched 9452 B in 0s (37.4 kB/s) Selecting previously unselected package software-properties-common. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 19812 files and directories currently installed.) Preparing to unpack .../software-properties-common_0.96.20.9_all.deb ... Unpacking software-properties-common (0.96.20.9) ... Processing triggers for dbus (1.10.6-1ubuntu3.4) ... Setting up software-properties-common (0.96.20.9) ... Processing triggers for dbus (1.10.6-1ubuntu3.4) ... gpg: keyring `/tmp/tmpvhm3l443/secring.gpg' created gpg: keyring `/tmp/tmpvhm3l443/pubring.gpg' created gpg: requesting key 5234BF2B from hkp server keyserver.ubuntu.com gpg: /tmp/tmpvhm3l443/trustdb.gpg: trustdb created gpg: key 5234BF2B: public key "Launchpad PPA for Adiscon" imported gpg: Total number processed: 1 gpg: imported: 1 (RSA: 1) OK Reading package lists... Building dependency tree... Reading state information... The following packages were automatically installed and are no longer required: dh-python distro-info-data file gir1.2-glib-2.0 iso-codes libapt-inst2.0 libdbus-glib-1-2 libgirepository-1.0-1 libmagic1 libmpdec2 libpython3-stdlib libpython3.5-minimal libpython3.5-stdlib lsb-release mime-support powermgmt-base python-apt-common python3 python3-apt python3-dbus python3-gi python3-minimal python3-pycurl python3-software-properties python3.5 python3.5-minimal unattended-upgrades Use 'apt autoremove' to remove them. The following packages will be REMOVED: software-properties-common* 0 upgraded, 0 newly installed, 1 to remove and 62 not upgraded. After this operation, 193 kB disk space will be freed. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 19827 files and directories currently installed.) Removing software-properties-common (0.96.20.9) ... Purging configuration files for software-properties-common (0.96.20.9) ... Processing triggers for dbus (1.10.6-1ubuntu3.4) ... Hit:1 http://security.ubuntu.com/ubuntu xenial-security InRelease Hit:2 http://ppa.launchpad.net/adiscon/v8-stable/ubuntu xenial InRelease Hit:3 http://archive.ubuntu.com/ubuntu xenial InRelease Hit:4 http://archive.ubuntu.com/ubuntu xenial-updates InRelease Hit:5 http://archive.ubuntu.com/ubuntu xenial-backports InRelease Reading package lists... Reading package lists... Building dependency tree... Reading state information... libunwind8 is already the newest version (1.1-4.1). unzip is already the newest version (6.0-20ubuntu1). liblttng-ust0 is already the newest version (2.7.1-1). libxml++2.6-2v5 is already the newest version (2.40.1-1). runit is already the newest version (2.1.2-3ubuntu1). libcurl3 is already the newest version (7.47.0-1ubuntu2.14). psmisc is already the newest version (22.21-2.1ubuntu0.1). wget is already the newest version (1.17.1-1ubuntu1.5). The following packages were automatically installed and are no longer required: dh-python distro-info-data file gir1.2-glib-2.0 iso-codes libapt-inst2.0 libdbus-glib-1-2 libgirepository-1.0-1 libmagic1 libmpdec2 libpython3-stdlib libpython3.5-minimal libpython3.5-stdlib lsb-release mime-support powermgmt-base python-apt-common python3 python3-apt python3-dbus python3-gi python3-minimal python3-pycurl python3-software-properties python3.5 python3.5-minimal unattended-upgrades Use 'apt autoremove' to remove them. The following additional packages will be installed: nginx-common Suggested packages: fcgiwrap nginx-doc ssl-cert rsyslog-mysql | rsyslog-pgsql rsyslog-doc rsyslog-relp rsyslog-elasticsearch rsyslog-mmjsonparse rsyslog-imptcp rsyslog-gnutls rsyslog-openssl rsyslog-udpspoof rsyslog-mmrm1stspace rsyslog-mmutf8fix rsyslog-kafka rsyslog-omstdout apparmor The following packages will be upgraded: nginx-common nginx-light rsyslog 3 upgraded, 0 newly installed, 0 to remove and 59 not upgraded. Need to get 1001 kB of archives. After this operation, 14.3 kB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 nginx-common all 1.10.3-0ubuntu0.16.04.5 [26.9 kB] Get:2 http://ppa.launchpad.net/adiscon/v8-stable/ubuntu xenial/main amd64 rsyslog amd64 8.2002.0-0adiscon1xenial1 [659 kB] Get:3 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 nginx-light amd64 1.10.3-0ubuntu0.16.04.5 [315 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 1001 kB in 0s (1420 kB/s) (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 19811 files and directories currently installed.) Preparing to unpack .../rsyslog_8.2002.0-0adiscon1xenial1_amd64.deb ... Unpacking rsyslog (8.2002.0-0adiscon1xenial1) over (8.1910.0-0adiscon1xenial1) ... Preparing to unpack .../nginx-common_1.10.3-0ubuntu0.16.04.5_all.deb ... Unpacking nginx-common (1.10.3-0ubuntu0.16.04.5) over (1.10.3-0ubuntu0.16.04.4) ... Preparing to unpack .../nginx-light_1.10.3-0ubuntu0.16.04.5_amd64.deb ... Unpacking nginx-light (1.10.3-0ubuntu0.16.04.5) over (1.10.3-0ubuntu0.16.04.4) ... Processing triggers for systemd (229-4ubuntu21.22) ... Setting up rsyslog (8.2002.0-0adiscon1xenial1) ... invoke-rc.d: could not determine current runlevel invoke-rc.d: policy-rc.d denied execution of restart. Setting up nginx-common (1.10.3-0ubuntu0.16.04.5) ... Setting up nginx-light (1.10.3-0ubuntu0.16.04.5) ... invoke-rc.d: could not determine current runlevel invoke-rc.d: policy-rc.d denied execution of start. Removing intermediate container 6335cbc173b2 ---> e32d0930801a Step 10/22 : RUN cp /var/configuration/rsyslog.conf /etc/rsyslog.conf && cp /var/configuration/nginx.conf /etc/nginx/sites-available/app && ln -sf /etc/nginx/sites-available/app /etc/nginx/sites-enabled/app && rm -f /etc/nginx/sites-enabled/default ---> Running in 82ff3cae599d Removing intermediate container 82ff3cae599d ---> 0678c489145a Step 11/22 : ENV SVDIR=/var/runit ---> Running in 4b6464c39ff3 Removing intermediate container 4b6464c39ff3 ---> ca4081440317 Step 12/22 : RUN if dpkg --compare-versions `conda --version | grep -oE '[^ ]+$'` lt 4.4.11; then conda install conda==4.4.11; fi ---> Running in 78f72f98eda4 Removing intermediate container 78f72f98eda4 ---> e45caa4c9c16 Step 13/22 : COPY azureml-environment-setup/mutated_conda_dependencies.yml azureml-environment-setup/mutated_conda_dependencies.yml ---> 1110ada5d507 Step 14/22 : RUN ldconfig /usr/local/cuda/lib64/stubs && conda env create -p /azureml-envs/azureml_53f7459b2d11a780edbefaa1f46263fa -f azureml-environment-setup/mutated_conda_dependencies.yml && rm -rf "$HOME/.cache/pip" && conda clean -aqy && CONDA_ROOT_DIR=$(conda info --root) && rm -rf "$CONDA_ROOT_DIR/pkgs" && find "$CONDA_ROOT_DIR" -type d -name __pycache__ -exec rm -rf {} + && ldconfig ---> Running in 1da2c76e922f Solving environment: ...working... done ==> WARNING: A newer version of conda exists. <== current version: 4.5.11 latest version: 4.8.3 Please update conda by running $ conda update -n base -c defaults conda libxml2-2.9.9 | 1.3 MB | | 0% libxml2-2.9.9 | 1.3 MB | ######## | 80% libxml2-2.9.9 | 1.3 MB | ########## | 100% requests-2.23.0 | 47 KB | | 0% requests-2.23.0 | 47 KB | ########## | 100% _libgcc_mutex-0.1 | 3 KB | | 0% _libgcc_mutex-0.1 | 3 KB | #######5 | 75% _libgcc_mutex-0.1 | 3 KB | ########## | 100% pyqt-5.6.0 | 5.4 MB | | 0% pyqt-5.6.0 | 5.4 MB | ###3 | 34% pyqt-5.6.0 | 5.4 MB | #######6 | 76% pyqt-5.6.0 | 5.4 MB | #########5 | 96% pyqt-5.6.0 | 5.4 MB | ########## | 100% ncurses-6.0 | 920 KB | | 0% ncurses-6.0 | 920 KB | #######9 | 79% ncurses-6.0 | 920 KB | ########9 | 90% ncurses-6.0 | 920 KB | #########9 | 100% ncurses-6.0 | 920 KB | ########## | 100% packaging-20.1 | 31 KB | | 0% packaging-20.1 | 31 KB | ########## | 100% zstd-1.4.4 | 982 KB | | 0% zstd-1.4.4 | 982 KB | ########3 | 84% zstd-1.4.4 | 982 KB | ########## | 100% wasabi-0.6.0 | 20 KB | | 0% wasabi-0.6.0 | 20 KB | ########## | 100% python-dateutil-2.8. | 220 KB | | 0% python-dateutil-2.8. | 220 KB | ########## | 100% cycler-0.10.0 | 9 KB | | 0% cycler-0.10.0 | 9 KB | ########## | 100% attrs-19.3.0 | 35 KB | | 0% attrs-19.3.0 | 35 KB | ########## | 100% llvm-openmp-9.0.1 | 782 KB | | 0% llvm-openmp-9.0.1 | 782 KB | ########6 | 86% llvm-openmp-9.0.1 | 782 KB | ########## | 100% libwebp-base-1.1.0 | 845 KB | | 0% libwebp-base-1.1.0 | 845 KB | ########5 | 85% libwebp-base-1.1.0 | 845 KB | ########## | 100% preshed-3.0.2 | 122 KB | | 0% preshed-3.0.2 | 122 KB | ########## | 100% cymem-2.0.3 | 41 KB | | 0% cymem-2.0.3 | 41 KB | ########## | 100% jsonschema-3.2.0 | 89 KB | | 0% jsonschema-3.2.0 | 89 KB | ########## | 100% fastai-1.0.57 | 173 KB | | 0% fastai-1.0.57 | 173 KB | 6 | 7% fastai-1.0.57 | 173 KB | ########## | 100% cudatoolkit-10.0.130 | 380.0 MB | | 0% cudatoolkit-10.0.130 | 380.0 MB | | 0% cudatoolkit-10.0.130 | 380.0 MB | 1 | 2% cudatoolkit-10.0.130 | 380.0 MB | 3 | 3% cudatoolkit-10.0.130 | 380.0 MB | 5 | 5% cudatoolkit-10.0.130 | 380.0 MB | 6 | 7% cudatoolkit-10.0.130 | 380.0 MB | 8 | 9% cudatoolkit-10.0.130 | 380.0 MB | # | 11% cudatoolkit-10.0.130 | 380.0 MB | #2 | 13% cudatoolkit-10.0.130 | 380.0 MB | #4 | 15% cudatoolkit-10.0.130 | 380.0 MB | #6 | 16% cudatoolkit-10.0.130 | 380.0 MB | #8 | 18% cudatoolkit-10.0.130 | 380.0 MB | ## | 20% cudatoolkit-10.0.130 | 380.0 MB | ##2 | 22% cudatoolkit-10.0.130 | 380.0 MB | ##4 | 24% cudatoolkit-10.0.130 | 380.0 MB | ##5 | 26% cudatoolkit-10.0.130 | 380.0 MB | ##7 | 28% cudatoolkit-10.0.130 | 380.0 MB | ##9 | 30% cudatoolkit-10.0.130 | 380.0 MB | ###1 | 32% cudatoolkit-10.0.130 | 380.0 MB | ###3 | 34% cudatoolkit-10.0.130 | 380.0 MB | ###5 | 36% cudatoolkit-10.0.130 | 380.0 MB | ###7 | 38% cudatoolkit-10.0.130 | 380.0 MB | ###9 | 40% cudatoolkit-10.0.130 | 380.0 MB | ####1 | 42% cudatoolkit-10.0.130 | 380.0 MB | ####3 | 44% cudatoolkit-10.0.130 | 380.0 MB | ####5 | 46% cudatoolkit-10.0.130 | 380.0 MB | ####7 | 48% cudatoolkit-10.0.130 | 380.0 MB | ####9 | 50% cudatoolkit-10.0.130 | 380.0 MB | #####1 | 52% cudatoolkit-10.0.130 | 380.0 MB | #####4 | 54% cudatoolkit-10.0.130 | 380.0 MB | #####6 | 56% cudatoolkit-10.0.130 | 380.0 MB | #####8 | 58% cudatoolkit-10.0.130 | 380.0 MB | ###### | 60% cudatoolkit-10.0.130 | 380.0 MB | ######2 | 62% cudatoolkit-10.0.130 | 380.0 MB | ######3 | 64% cudatoolkit-10.0.130 | 380.0 MB | ######5 | 66% cudatoolkit-10.0.130 | 380.0 MB | ######7 | 68% cudatoolkit-10.0.130 | 380.0 MB | ######9 | 70% cudatoolkit-10.0.130 | 380.0 MB | #######1 | 72% cudatoolkit-10.0.130 | 380.0 MB | #######3 | 74% cudatoolkit-10.0.130 | 380.0 MB | #######5 | 76% cudatoolkit-10.0.130 | 380.0 MB | #######7 | 77% cudatoolkit-10.0.130 | 380.0 MB | #######8 | 78% cudatoolkit-10.0.130 | 380.0 MB | #######8 | 79% cudatoolkit-10.0.130 | 380.0 MB | #######9 | 80% cudatoolkit-10.0.130 | 380.0 MB | #######9 | 80% cudatoolkit-10.0.130 | 380.0 MB | ######## | 80% cudatoolkit-10.0.130 | 380.0 MB | ######## | 80% cudatoolkit-10.0.130 | 380.0 MB | ######## | 81% cudatoolkit-10.0.130 | 380.0 MB | ######## | 81% cudatoolkit-10.0.130 | 380.0 MB | ######## | 81% cudatoolkit-10.0.130 | 380.0 MB | ######## | 81% cudatoolkit-10.0.130 | 380.0 MB | ######## | 81% cudatoolkit-10.0.130 | 380.0 MB | ######## | 81% cudatoolkit-10.0.130 | 380.0 MB | ########1 | 81% cudatoolkit-10.0.130 | 380.0 MB | ########1 | 81% cudatoolkit-10.0.130 | 380.0 MB | ########1 | 81% cudatoolkit-10.0.130 | 380.0 MB | ########1 | 81% cudatoolkit-10.0.130 | 380.0 MB | ########1 | 81% cudatoolkit-10.0.130 | 380.0 MB | ########1 | 81% cudatoolkit-10.0.130 | 380.0 MB | ########1 | 81% cudatoolkit-10.0.130 | 380.0 MB | ########1 | 81% cudatoolkit-10.0.130 | 380.0 MB | ########1 | 81% cudatoolkit-10.0.130 | 380.0 MB | ########1 | 81% cudatoolkit-10.0.130 | 380.0 MB | ########1 | 82% cudatoolkit-10.0.130 | 380.0 MB | ########1 | 82% cudatoolkit-10.0.130 | 380.0 MB | ########1 | 82% cudatoolkit-10.0.130 | 380.0 MB | ########1 | 82% cudatoolkit-10.0.130 | 380.0 MB | ########1 | 82% cudatoolkit-10.0.130 | 380.0 MB | ########1 | 82% cudatoolkit-10.0.130 | 380.0 MB | ########1 | 82% cudatoolkit-10.0.130 | 380.0 MB | ########1 | 82% cudatoolkit-10.0.130 | 380.0 MB | ########1 | 82% cudatoolkit-10.0.130 | 380.0 MB | ########1 | 82% cudatoolkit-10.0.130 | 380.0 MB | ########2 | 82% cudatoolkit-10.0.130 | 380.0 MB | ########2 | 82% cudatoolkit-10.0.130 | 380.0 MB | ########2 | 82% cudatoolkit-10.0.130 | 380.0 MB | ########2 | 82% cudatoolkit-10.0.130 | 380.0 MB | ########2 | 82% cudatoolkit-10.0.130 | 380.0 MB | ########2 | 82% cudatoolkit-10.0.130 | 380.0 MB | ########2 | 82% cudatoolkit-10.0.130 | 380.0 MB | ########2 | 82% cudatoolkit-10.0.130 | 380.0 MB | ########2 | 82% cudatoolkit-10.0.130 | 380.0 MB | ########2 | 82% cudatoolkit-10.0.130 | 380.0 MB | ########2 | 82% cudatoolkit-10.0.130 | 380.0 MB | ########2 | 82% cudatoolkit-10.0.130 | 380.0 MB | ########2 | 83% cudatoolkit-10.0.130 | 380.0 MB | ########2 | 83% cudatoolkit-10.0.130 | 380.0 MB | ########2 | 83% cudatoolkit-10.0.130 | 380.0 MB | ########2 | 83% cudatoolkit-10.0.130 | 380.0 MB | ########2 | 83% cudatoolkit-10.0.130 | 380.0 MB | ########2 | 83% cudatoolkit-10.0.130 | 380.0 MB | ########2 | 83% cudatoolkit-10.0.130 | 380.0 MB | ########2 | 83% cudatoolkit-10.0.130 | 380.0 MB | ########2 | 83% cudatoolkit-10.0.130 | 380.0 MB | ########2 | 83% cudatoolkit-10.0.130 | 380.0 MB | ########2 | 83% cudatoolkit-10.0.130 | 380.0 MB | ########3 | 83% cudatoolkit-10.0.130 | 380.0 MB | ########3 | 83% cudatoolkit-10.0.130 | 380.0 MB | ########3 | 83% cudatoolkit-10.0.130 | 380.0 MB | ########3 | 83% cudatoolkit-10.0.130 | 380.0 MB | ########3 | 83% cudatoolkit-10.0.130 | 380.0 MB | ########3 | 83% cudatoolkit-10.0.130 | 380.0 MB | ########3 | 83% cudatoolkit-10.0.130 | 380.0 MB | ########3 | 83% cudatoolkit-10.0.130 | 380.0 MB | ########3 | 83% cudatoolkit-10.0.130 | 380.0 MB | ########3 | 83% cudatoolkit-10.0.130 | 380.0 MB | ########3 | 84% cudatoolkit-10.0.130 | 380.0 MB | ########3 | 84% cudatoolkit-10.0.130 | 380.0 MB | ########3 | 84% cudatoolkit-10.0.130 | 380.0 MB | ########3 | 84% cudatoolkit-10.0.130 | 380.0 MB | ########3 | 84% cudatoolkit-10.0.130 | 380.0 MB | ########3 | 84% cudatoolkit-10.0.130 | 380.0 MB | ########3 | 84% cudatoolkit-10.0.130 | 380.0 MB | ########3 | 84% cudatoolkit-10.0.130 | 380.0 MB | ########3 | 84% cudatoolkit-10.0.130 | 380.0 MB | ########4 | 84% cudatoolkit-10.0.130 | 380.0 MB | ########4 | 84% cudatoolkit-10.0.130 | 380.0 MB | ########4 | 84% cudatoolkit-10.0.130 | 380.0 MB | ########4 | 84% cudatoolkit-10.0.130 | 380.0 MB | ########4 | 84% cudatoolkit-10.0.130 | 380.0 MB | ########4 | 84% cudatoolkit-10.0.130 | 380.0 MB | ########4 | 84% cudatoolkit-10.0.130 | 380.0 MB | ########4 | 84% cudatoolkit-10.0.130 | 380.0 MB | ########4 | 84% cudatoolkit-10.0.130 | 380.0 MB | ########4 | 84% cudatoolkit-10.0.130 | 380.0 MB | ########4 | 85% cudatoolkit-10.0.130 | 380.0 MB | ########4 | 85% cudatoolkit-10.0.130 | 380.0 MB | ########4 | 85% cudatoolkit-10.0.130 | 380.0 MB | ########4 | 85% cudatoolkit-10.0.130 | 380.0 MB | ########4 | 85% cudatoolkit-10.0.130 | 380.0 MB | ########4 | 85% cudatoolkit-10.0.130 | 380.0 MB | ########4 | 85% cudatoolkit-10.0.130 | 380.0 MB | ########4 | 85% cudatoolkit-10.0.130 | 380.0 MB | ########4 | 85% cudatoolkit-10.0.130 | 380.0 MB | ########4 | 85% cudatoolkit-10.0.130 | 380.0 MB | ########5 | 85% cudatoolkit-10.0.130 | 380.0 MB | ########5 | 85% cudatoolkit-10.0.130 | 380.0 MB | ########5 | 85% cudatoolkit-10.0.130 | 380.0 MB | ########5 | 85% cudatoolkit-10.0.130 | 380.0 MB | ########5 | 85% cudatoolkit-10.0.130 | 380.0 MB | ########5 | 85% cudatoolkit-10.0.130 | 380.0 MB | ########5 | 85% cudatoolkit-10.0.130 | 380.0 MB | ########5 | 85% cudatoolkit-10.0.130 | 380.0 MB | ########5 | 85% cudatoolkit-10.0.130 | 380.0 MB | ########5 | 86% cudatoolkit-10.0.130 | 380.0 MB | ########5 | 86% cudatoolkit-10.0.130 | 380.0 MB | ########5 | 86% cudatoolkit-10.0.130 | 380.0 MB | ########5 | 86% cudatoolkit-10.0.130 | 380.0 MB | ########5 | 86% cudatoolkit-10.0.130 | 380.0 MB | ########5 | 86% cudatoolkit-10.0.130 | 380.0 MB | ########5 | 86% cudatoolkit-10.0.130 | 380.0 MB | ########5 | 86% cudatoolkit-10.0.130 | 380.0 MB | ########5 | 86% cudatoolkit-10.0.130 | 380.0 MB | ########5 | 86% cudatoolkit-10.0.130 | 380.0 MB | ########5 | 86% cudatoolkit-10.0.130 | 380.0 MB | ########6 | 86% cudatoolkit-10.0.130 | 380.0 MB | ########6 | 86% cudatoolkit-10.0.130 | 380.0 MB | ########6 | 86% cudatoolkit-10.0.130 | 380.0 MB | ########6 | 86% cudatoolkit-10.0.130 | 380.0 MB | ########6 | 86% cudatoolkit-10.0.130 | 380.0 MB | ########6 | 86% cudatoolkit-10.0.130 | 380.0 MB | ########6 | 86% cudatoolkit-10.0.130 | 380.0 MB | ########6 | 86% cudatoolkit-10.0.130 | 380.0 MB | ########6 | 86% cudatoolkit-10.0.130 | 380.0 MB | ########6 | 86% cudatoolkit-10.0.130 | 380.0 MB | ########6 | 86% cudatoolkit-10.0.130 | 380.0 MB | ########6 | 87% cudatoolkit-10.0.130 | 380.0 MB | ########6 | 87% cudatoolkit-10.0.130 | 380.0 MB | ########6 | 87% cudatoolkit-10.0.130 | 380.0 MB | ########6 | 87% cudatoolkit-10.0.130 | 380.0 MB | ########6 | 87% cudatoolkit-10.0.130 | 380.0 MB | ########6 | 87% cudatoolkit-10.0.130 | 380.0 MB | ########6 | 87% cudatoolkit-10.0.130 | 380.0 MB | ########6 | 87% cudatoolkit-10.0.130 | 380.0 MB | ########6 | 87% cudatoolkit-10.0.130 | 380.0 MB | ########6 | 87% cudatoolkit-10.0.130 | 380.0 MB | ########7 | 87% cudatoolkit-10.0.130 | 380.0 MB | ########7 | 87% cudatoolkit-10.0.130 | 380.0 MB | ########7 | 87% cudatoolkit-10.0.130 | 380.0 MB | ########7 | 87% cudatoolkit-10.0.130 | 380.0 MB | ########7 | 87% cudatoolkit-10.0.130 | 380.0 MB | ########7 | 87% cudatoolkit-10.0.130 | 380.0 MB | ########7 | 87% cudatoolkit-10.0.130 | 380.0 MB | ########7 | 87% cudatoolkit-10.0.130 | 380.0 MB | ########7 | 87% cudatoolkit-10.0.130 | 380.0 MB | ########7 | 87% cudatoolkit-10.0.130 | 380.0 MB | ########7 | 88% cudatoolkit-10.0.130 | 380.0 MB | ########7 | 88% cudatoolkit-10.0.130 | 380.0 MB | ########7 | 88% cudatoolkit-10.0.130 | 380.0 MB | ########7 | 88% cudatoolkit-10.0.130 | 380.0 MB | ########7 | 88% cudatoolkit-10.0.130 | 380.0 MB | ########7 | 88% cudatoolkit-10.0.130 | 380.0 MB | ########7 | 88% cudatoolkit-10.0.130 | 380.0 MB | ########7 | 88% cudatoolkit-10.0.130 | 380.0 MB | ########7 | 88% cudatoolkit-10.0.130 | 380.0 MB | ########7 | 88% cudatoolkit-10.0.130 | 380.0 MB | ########8 | 88% cudatoolkit-10.0.130 | 380.0 MB | ########8 | 88% cudatoolkit-10.0.130 | 380.0 MB | ########8 | 88% cudatoolkit-10.0.130 | 380.0 MB | ########8 | 88% cudatoolkit-10.0.130 | 380.0 MB | ########8 | 88% cudatoolkit-10.0.130 | 380.0 MB | ########8 | 88% cudatoolkit-10.0.130 | 380.0 MB | ########8 | 88% cudatoolkit-10.0.130 | 380.0 MB | ########8 | 88% cudatoolkit-10.0.130 | 380.0 MB | ########8 | 89% cudatoolkit-10.0.130 | 380.0 MB | ########8 | 89% cudatoolkit-10.0.130 | 380.0 MB | ########8 | 89% cudatoolkit-10.0.130 | 380.0 MB | ########8 | 89% cudatoolkit-10.0.130 | 380.0 MB | ########8 | 89% cudatoolkit-10.0.130 | 380.0 MB | ########8 | 89% cudatoolkit-10.0.130 | 380.0 MB | ########8 | 89% cudatoolkit-10.0.130 | 380.0 MB | ########8 | 89% cudatoolkit-10.0.130 | 380.0 MB | ########9 | 89% cudatoolkit-10.0.130 | 380.0 MB | ########9 | 89% cudatoolkit-10.0.130 | 380.0 MB | ########9 | 89% cudatoolkit-10.0.130 | 380.0 MB | ########9 | 89% cudatoolkit-10.0.130 | 380.0 MB | ########9 | 89% cudatoolkit-10.0.130 | 380.0 MB | ########9 | 89% cudatoolkit-10.0.130 | 380.0 MB | ########9 | 89% cudatoolkit-10.0.130 | 380.0 MB | ########9 | 89% cudatoolkit-10.0.130 | 380.0 MB | ########9 | 89% cudatoolkit-10.0.130 | 380.0 MB | ########9 | 90% cudatoolkit-10.0.130 | 380.0 MB | ########9 | 90% cudatoolkit-10.0.130 | 380.0 MB | ########9 | 90% cudatoolkit-10.0.130 | 380.0 MB | ########9 | 90% cudatoolkit-10.0.130 | 380.0 MB | ########9 | 90% cudatoolkit-10.0.130 | 380.0 MB | ########9 | 90% cudatoolkit-10.0.130 | 380.0 MB | ########9 | 90% cudatoolkit-10.0.130 | 380.0 MB | ########9 | 90% cudatoolkit-10.0.130 | 380.0 MB | ########9 | 90% cudatoolkit-10.0.130 | 380.0 MB | ########9 | 90% cudatoolkit-10.0.130 | 380.0 MB | ########9 | 90% cudatoolkit-10.0.130 | 380.0 MB | ######### | 90% cudatoolkit-10.0.130 | 380.0 MB | ######### | 90% cudatoolkit-10.0.130 | 380.0 MB | ######### | 90% cudatoolkit-10.0.130 | 380.0 MB | ######### | 90% cudatoolkit-10.0.130 | 380.0 MB | ######### | 90% cudatoolkit-10.0.130 | 380.0 MB | ######### | 90% cudatoolkit-10.0.130 | 380.0 MB | ######### | 90% cudatoolkit-10.0.130 | 380.0 MB | ######### | 90% cudatoolkit-10.0.130 | 380.0 MB | ######### | 91% cudatoolkit-10.0.130 | 380.0 MB | ######### | 91% cudatoolkit-10.0.130 | 380.0 MB | ######### | 91% cudatoolkit-10.0.130 | 380.0 MB | ######### | 91% cudatoolkit-10.0.130 | 380.0 MB | ######### | 91% cudatoolkit-10.0.130 | 380.0 MB | ######### | 91% cudatoolkit-10.0.130 | 380.0 MB | ######### | 91% cudatoolkit-10.0.130 | 380.0 MB | ######### | 91% cudatoolkit-10.0.130 | 380.0 MB | ######### | 91% cudatoolkit-10.0.130 | 380.0 MB | #########1 | 91% cudatoolkit-10.0.130 | 380.0 MB | #########1 | 91% cudatoolkit-10.0.130 | 380.0 MB | #########1 | 91% cudatoolkit-10.0.130 | 380.0 MB | #########1 | 91% cudatoolkit-10.0.130 | 380.0 MB | #########1 | 91% cudatoolkit-10.0.130 | 380.0 MB | #########1 | 91% cudatoolkit-10.0.130 | 380.0 MB | #########1 | 91% cudatoolkit-10.0.130 | 380.0 MB | #########1 | 91% cudatoolkit-10.0.130 | 380.0 MB | #########1 | 91% cudatoolkit-10.0.130 | 380.0 MB | #########1 | 91% cudatoolkit-10.0.130 | 380.0 MB | #########1 | 92% cudatoolkit-10.0.130 | 380.0 MB | #########1 | 92% cudatoolkit-10.0.130 | 380.0 MB | #########1 | 92% cudatoolkit-10.0.130 | 380.0 MB | #########1 | 92% cudatoolkit-10.0.130 | 380.0 MB | #########1 | 92% cudatoolkit-10.0.130 | 380.0 MB | #########1 | 92% cudatoolkit-10.0.130 | 380.0 MB | #########1 | 92% cudatoolkit-10.0.130 | 380.0 MB | #########1 | 92% cudatoolkit-10.0.130 | 380.0 MB | #########1 | 92% cudatoolkit-10.0.130 | 380.0 MB | #########2 | 92% cudatoolkit-10.0.130 | 380.0 MB | #########2 | 92% cudatoolkit-10.0.130 | 380.0 MB | #########2 | 92% cudatoolkit-10.0.130 | 380.0 MB | #########2 | 92% cudatoolkit-10.0.130 | 380.0 MB | #########2 | 92% cudatoolkit-10.0.130 | 380.0 MB | #########2 | 92% cudatoolkit-10.0.130 | 380.0 MB | #########2 | 92% cudatoolkit-10.0.130 | 380.0 MB | #########2 | 92% cudatoolkit-10.0.130 | 380.0 MB | #########2 | 92% cudatoolkit-10.0.130 | 380.0 MB | #########2 | 92% cudatoolkit-10.0.130 | 380.0 MB | #########2 | 92% cudatoolkit-10.0.130 | 380.0 MB | #########2 | 93% cudatoolkit-10.0.130 | 380.0 MB | #########2 | 93% cudatoolkit-10.0.130 | 380.0 MB | #########2 | 93% cudatoolkit-10.0.130 | 380.0 MB | #########2 | 93% cudatoolkit-10.0.130 | 380.0 MB | #########2 | 93% cudatoolkit-10.0.130 | 380.0 MB | #########2 | 93% cudatoolkit-10.0.130 | 380.0 MB | #########2 | 93% cudatoolkit-10.0.130 | 380.0 MB | #########2 | 93% cudatoolkit-10.0.130 | 380.0 MB | #########2 | 93% cudatoolkit-10.0.130 | 380.0 MB | #########2 | 93% cudatoolkit-10.0.130 | 380.0 MB | #########2 | 93% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 93% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 93% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 93% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 93% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 93% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 93% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 93% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 93% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 93% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 93% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########3 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########4 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########4 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########4 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########4 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########4 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########4 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########4 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########4 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########4 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########4 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########4 | 94% cudatoolkit-10.0.130 | 380.0 MB | #########4 | 95% cudatoolkit-10.0.130 | 380.0 MB | #########4 | 95% cudatoolkit-10.0.130 | 380.0 MB | #########4 | 95% cudatoolkit-10.0.130 | 380.0 MB | #########4 | 95% cudatoolkit-10.0.130 | 380.0 MB | #########4 | 95% cudatoolkit-10.0.130 | 380.0 MB | #########4 | 95% cudatoolkit-10.0.130 | 380.0 MB | #########4 | 95% cudatoolkit-10.0.130 | 380.0 MB | #########4 | 95% cudatoolkit-10.0.130 | 380.0 MB | #########4 | 95% cudatoolkit-10.0.130 | 380.0 MB | #########4 | 95% cudatoolkit-10.0.130 | 380.0 MB | #########5 | 95% cudatoolkit-10.0.130 | 380.0 MB | #########5 | 95% cudatoolkit-10.0.130 | 380.0 MB | #########5 | 95% cudatoolkit-10.0.130 | 380.0 MB | #########5 | 95% cudatoolkit-10.0.130 | 380.0 MB | #########5 | 95% cudatoolkit-10.0.130 | 380.0 MB | #########5 | 95% cudatoolkit-10.0.130 | 380.0 MB | #########5 | 95% cudatoolkit-10.0.130 | 380.0 MB | #########5 | 95% cudatoolkit-10.0.130 | 380.0 MB | #########5 | 95% cudatoolkit-10.0.130 | 380.0 MB | #########5 | 96% cudatoolkit-10.0.130 | 380.0 MB | #########5 | 96% cudatoolkit-10.0.130 | 380.0 MB | #########5 | 96% cudatoolkit-10.0.130 | 380.0 MB | #########5 | 96% cudatoolkit-10.0.130 | 380.0 MB | #########5 | 96% cudatoolkit-10.0.130 | 380.0 MB | #########5 | 96% cudatoolkit-10.0.130 | 380.0 MB | #########5 | 96% cudatoolkit-10.0.130 | 380.0 MB | #########5 | 96% cudatoolkit-10.0.130 | 380.0 MB | #########5 | 96% cudatoolkit-10.0.130 | 380.0 MB | #########5 | 96% cudatoolkit-10.0.130 | 380.0 MB | #########6 | 96% cudatoolkit-10.0.130 | 380.0 MB | #########6 | 96% cudatoolkit-10.0.130 | 380.0 MB | #########6 | 96% cudatoolkit-10.0.130 | 380.0 MB | #########6 | 96% cudatoolkit-10.0.130 | 380.0 MB | #########6 | 96% cudatoolkit-10.0.130 | 380.0 MB | #########6 | 96% cudatoolkit-10.0.130 | 380.0 MB | #########6 | 96% cudatoolkit-10.0.130 | 380.0 MB | #########6 | 96% cudatoolkit-10.0.130 | 380.0 MB | #########6 | 96% cudatoolkit-10.0.130 | 380.0 MB | #########6 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########6 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########6 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########6 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########6 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########6 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########6 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########6 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########6 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########6 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########6 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########6 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########6 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 97% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 98% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 98% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 98% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 98% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 98% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 98% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 98% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 98% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 98% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 98% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 98% cudatoolkit-10.0.130 | 380.0 MB | #########7 | 98% cudatoolkit-10.0.130 | 380.0 MB | #########8 | 98% cudatoolkit-10.0.130 | 380.0 MB | #########8 | 98% cudatoolkit-10.0.130 | 380.0 MB | #########8 | 98% cudatoolkit-10.0.130 | 380.0 MB | #########8 | 98% cudatoolkit-10.0.130 | 380.0 MB | #########8 | 98% cudatoolkit-10.0.130 | 380.0 MB | #########8 | 98% cudatoolkit-10.0.130 | 380.0 MB | #########8 | 98% cudatoolkit-10.0.130 | 380.0 MB | #########8 | 98% cudatoolkit-10.0.130 | 380.0 MB | #########8 | 98% cudatoolkit-10.0.130 | 380.0 MB | #########8 | 99% cudatoolkit-10.0.130 | 380.0 MB | #########8 | 99% cudatoolkit-10.0.130 | 380.0 MB | #########8 | 99% cudatoolkit-10.0.130 | 380.0 MB | #########8 | 99% cudatoolkit-10.0.130 | 380.0 MB | #########8 | 99% cudatoolkit-10.0.130 | 380.0 MB | #########8 | 99% cudatoolkit-10.0.130 | 380.0 MB | #########8 | 99% cudatoolkit-10.0.130 | 380.0 MB | #########8 | 99% cudatoolkit-10.0.130 | 380.0 MB | #########8 | 99% cudatoolkit-10.0.130 | 380.0 MB | #########9 | 99% cudatoolkit-10.0.130 | 380.0 MB | #########9 | 99% cudatoolkit-10.0.130 | 380.0 MB | #########9 | 99% cudatoolkit-10.0.130 | 380.0 MB | #########9 | 99% cudatoolkit-10.0.130 | 380.0 MB | #########9 | 99% cudatoolkit-10.0.130 | 380.0 MB | #########9 | 99% cudatoolkit-10.0.130 | 380.0 MB | #########9 | 99% cudatoolkit-10.0.130 | 380.0 MB | #########9 | 99% cudatoolkit-10.0.130 | 380.0 MB | #########9 | 99% cudatoolkit-10.0.130 | 380.0 MB | #########9 | 100% cudatoolkit-10.0.130 | 380.0 MB | #########9 | 100% cudatoolkit-10.0.130 | 380.0 MB | #########9 | 100% cudatoolkit-10.0.130 | 380.0 MB | #########9 | 100% cudatoolkit-10.0.130 | 380.0 MB | #########9 | 100% cudatoolkit-10.0.130 | 380.0 MB | #########9 | 100% cudatoolkit-10.0.130 | 380.0 MB | #########9 | 100% cudatoolkit-10.0.130 | 380.0 MB | #########9 | 100% cudatoolkit-10.0.130 | 380.0 MB | #########9 | 100% cudatoolkit-10.0.130 | 380.0 MB | #########9 | 100% cudatoolkit-10.0.130 | 380.0 MB | ########## | 100% numpy-1.18.1 | 5 KB | | 0% numpy-1.18.1 | 5 KB | ########## | 100% importlib_metadata-1 | 3 KB | | 0% importlib_metadata-1 | 3 KB | #######5 | 75% importlib_metadata-1 | 3 KB | ########## | 100% pysocks-1.7.1 | 27 KB | | 0% pysocks-1.7.1 | 27 KB | ########## | 100% libiconv-1.15 | 2.0 MB | | 0% libiconv-1.15 | 2.0 MB | #######8 | 79% libiconv-1.15 | 2.0 MB | ########## | 100% cryptography-2.5 | 645 KB | | 0% cryptography-2.5 | 645 KB | ######## | 81% cryptography-2.5 | 645 KB | #########8 | 98% cryptography-2.5 | 645 KB | ########## | 100% gettext-0.19.8.1 | 3.6 MB | | 0% gettext-0.19.8.1 | 3.6 MB | #######6 | 76% gettext-0.19.8.1 | 3.6 MB | #########8 | 99% gettext-0.19.8.1 | 3.6 MB | ########## | 100% chardet-3.0.4 | 188 KB | | 0% chardet-3.0.4 | 188 KB | #########7 | 97% chardet-3.0.4 | 188 KB | ########## | 100% tornado-6.0.4 | 639 KB | | 0% tornado-6.0.4 | 639 KB | ########1 | 82% tornado-6.0.4 | 639 KB | ########## | 100% fontconfig-2.13.0 | 284 KB | | 0% fontconfig-2.13.0 | 284 KB | #########6 | 96% fontconfig-2.13.0 | 284 KB | ########## | 100% ca-certificates-2020 | 146 KB | | 0% ca-certificates-2020 | 146 KB | ########## | 100% pip-20.0.2 | 1.0 MB | | 0% pip-20.0.2 | 1.0 MB | #######9 | 80% pip-20.0.2 | 1.0 MB | #########2 | 93% pip-20.0.2 | 1.0 MB | ########## | 100% fastprogress-0.2.3 | 15 KB | | 0% fastprogress-0.2.3 | 15 KB | ########## | 100% libtiff-4.1.0 | 668 KB | | 0% libtiff-4.1.0 | 668 KB | ########7 | 87% libtiff-4.1.0 | 668 KB | ########## | 100% matplotlib-2.2.2 | 6.6 MB | | 0% matplotlib-2.2.2 | 6.6 MB | #######5 | 75% matplotlib-2.2.2 | 6.6 MB | #########7 | 98% matplotlib-2.2.2 | 6.6 MB | ########## | 100% jpeg-9c | 251 KB | | 0% jpeg-9c | 251 KB | ########## | 100% pcre-8.44 | 261 KB | | 0% pcre-8.44 | 261 KB | #########8 | 99% pcre-8.44 | 261 KB | ########## | 100% sip-4.18.1 | 277 KB | | 0% sip-4.18.1 | 277 KB | ########## | 100% idna-2.9 | 52 KB | | 0% idna-2.9 | 52 KB | ########## | 100% wheel-0.34.2 | 24 KB | | 0% wheel-0.34.2 | 24 KB | ########## | 100% six-1.14.0 | 13 KB | | 0% six-1.14.0 | 13 KB | ########## | 100% tqdm-4.45.0 | 48 KB | | 0% tqdm-4.45.0 | 48 KB | ########## | 100% pytorch-1.2.0 | 302.3 MB | | 0% pytorch-1.2.0 | 302.3 MB | | 1% pytorch-1.2.0 | 302.3 MB | 2 | 3% pytorch-1.2.0 | 302.3 MB | 4 | 5% pytorch-1.2.0 | 302.3 MB | 7 | 7% pytorch-1.2.0 | 302.3 MB | 9 | 10% pytorch-1.2.0 | 302.3 MB | #2 | 12% pytorch-1.2.0 | 302.3 MB | #4 | 15% pytorch-1.2.0 | 302.3 MB | #7 | 17% pytorch-1.2.0 | 302.3 MB | #9 | 19% pytorch-1.2.0 | 302.3 MB | ##1 | 22% pytorch-1.2.0 | 302.3 MB | ##3 | 24% pytorch-1.2.0 | 302.3 MB | ##6 | 26% pytorch-1.2.0 | 302.3 MB | ##8 | 29% pytorch-1.2.0 | 302.3 MB | ### | 31% pytorch-1.2.0 | 302.3 MB | ###2 | 33% pytorch-1.2.0 | 302.3 MB | ###5 | 35% pytorch-1.2.0 | 302.3 MB | ###7 | 37% pytorch-1.2.0 | 302.3 MB | ###9 | 39% pytorch-1.2.0 | 302.3 MB | ####1 | 42% pytorch-1.2.0 | 302.3 MB | ####3 | 44% pytorch-1.2.0 | 302.3 MB | ####5 | 46% pytorch-1.2.0 | 302.3 MB | ####7 | 48% pytorch-1.2.0 | 302.3 MB | ####9 | 50% pytorch-1.2.0 | 302.3 MB | #####1 | 52% pytorch-1.2.0 | 302.3 MB | #####4 | 54% pytorch-1.2.0 | 302.3 MB | #####6 | 57% pytorch-1.2.0 | 302.3 MB | #####9 | 59% pytorch-1.2.0 | 302.3 MB | ######1 | 62% pytorch-1.2.0 | 302.3 MB | ######3 | 64% pytorch-1.2.0 | 302.3 MB | ######6 | 66% pytorch-1.2.0 | 302.3 MB | ######8 | 68% pytorch-1.2.0 | 302.3 MB | ####### | 71% pytorch-1.2.0 | 302.3 MB | #######2 | 73% pytorch-1.2.0 | 302.3 MB | #######5 | 75% pytorch-1.2.0 | 302.3 MB | #######7 | 77% pytorch-1.2.0 | 302.3 MB | #######8 | 79% pytorch-1.2.0 | 302.3 MB | #######9 | 80% pytorch-1.2.0 | 302.3 MB | ######## | 80% pytorch-1.2.0 | 302.3 MB | ######## | 81% pytorch-1.2.0 | 302.3 MB | ########1 | 81% pytorch-1.2.0 | 302.3 MB | ########1 | 82% pytorch-1.2.0 | 302.3 MB | ########1 | 82% pytorch-1.2.0 | 302.3 MB | ########2 | 82% pytorch-1.2.0 | 302.3 MB | ########2 | 82% pytorch-1.2.0 | 302.3 MB | ########2 | 82% pytorch-1.2.0 | 302.3 MB | ########2 | 82% pytorch-1.2.0 | 302.3 MB | ########2 | 83% pytorch-1.2.0 | 302.3 MB | ########2 | 83% pytorch-1.2.0 | 302.3 MB | ########2 | 83% pytorch-1.2.0 | 302.3 MB | ########2 | 83% pytorch-1.2.0 | 302.3 MB | ########2 | 83% pytorch-1.2.0 | 302.3 MB | ########2 | 83% pytorch-1.2.0 | 302.3 MB | ########2 | 83% pytorch-1.2.0 | 302.3 MB | ########3 | 83% pytorch-1.2.0 | 302.3 MB | ########3 | 83% pytorch-1.2.0 | 302.3 MB | ########3 | 83% pytorch-1.2.0 | 302.3 MB | ########3 | 83% pytorch-1.2.0 | 302.3 MB | ########3 | 83% pytorch-1.2.0 | 302.3 MB | ########3 | 83% pytorch-1.2.0 | 302.3 MB | ########3 | 83% pytorch-1.2.0 | 302.3 MB | ########3 | 83% pytorch-1.2.0 | 302.3 MB | ########3 | 84% pytorch-1.2.0 | 302.3 MB | ########3 | 84% pytorch-1.2.0 | 302.3 MB | ########3 | 84% pytorch-1.2.0 | 302.3 MB | ########3 | 84% pytorch-1.2.0 | 302.3 MB | ########3 | 84% pytorch-1.2.0 | 302.3 MB | ########3 | 84% pytorch-1.2.0 | 302.3 MB | ########3 | 84% pytorch-1.2.0 | 302.3 MB | ########4 | 84% pytorch-1.2.0 | 302.3 MB | ########4 | 84% pytorch-1.2.0 | 302.3 MB | ########4 | 84% pytorch-1.2.0 | 302.3 MB | ########4 | 84% pytorch-1.2.0 | 302.3 MB | ########4 | 84% pytorch-1.2.0 | 302.3 MB | ########4 | 84% pytorch-1.2.0 | 302.3 MB | ########4 | 84% pytorch-1.2.0 | 302.3 MB | ########4 | 84% pytorch-1.2.0 | 302.3 MB | ########4 | 85% pytorch-1.2.0 | 302.3 MB | ########4 | 85% pytorch-1.2.0 | 302.3 MB | ########4 | 85% pytorch-1.2.0 | 302.3 MB | ########4 | 85% pytorch-1.2.0 | 302.3 MB | ########4 | 85% pytorch-1.2.0 | 302.3 MB | ########4 | 85% pytorch-1.2.0 | 302.3 MB | ########4 | 85% pytorch-1.2.0 | 302.3 MB | ########5 | 85% pytorch-1.2.0 | 302.3 MB | ########5 | 85% pytorch-1.2.0 | 302.3 MB | ########5 | 85% pytorch-1.2.0 | 302.3 MB | ########5 | 85% pytorch-1.2.0 | 302.3 MB | ########5 | 85% pytorch-1.2.0 | 302.3 MB | ########5 | 85% pytorch-1.2.0 | 302.3 MB | ########5 | 85% pytorch-1.2.0 | 302.3 MB | ########5 | 86% pytorch-1.2.0 | 302.3 MB | ########5 | 86% pytorch-1.2.0 | 302.3 MB | ########5 | 86% pytorch-1.2.0 | 302.3 MB | ########5 | 86% pytorch-1.2.0 | 302.3 MB | ########5 | 86% pytorch-1.2.0 | 302.3 MB | ########5 | 86% pytorch-1.2.0 | 302.3 MB | ########5 | 86% pytorch-1.2.0 | 302.3 MB | ########5 | 86% pytorch-1.2.0 | 302.3 MB | ########6 | 86% pytorch-1.2.0 | 302.3 MB | ########6 | 86% pytorch-1.2.0 | 302.3 MB | ########6 | 86% pytorch-1.2.0 | 302.3 MB | ########6 | 86% pytorch-1.2.0 | 302.3 MB | ########6 | 86% pytorch-1.2.0 | 302.3 MB | ########6 | 86% pytorch-1.2.0 | 302.3 MB | ########6 | 86% pytorch-1.2.0 | 302.3 MB | ########6 | 87% pytorch-1.2.0 | 302.3 MB | ########6 | 87% pytorch-1.2.0 | 302.3 MB | ########6 | 87% pytorch-1.2.0 | 302.3 MB | ########6 | 87% pytorch-1.2.0 | 302.3 MB | ########6 | 87% pytorch-1.2.0 | 302.3 MB | ########6 | 87% pytorch-1.2.0 | 302.3 MB | ########6 | 87% pytorch-1.2.0 | 302.3 MB | ########7 | 87% pytorch-1.2.0 | 302.3 MB | ########7 | 87% pytorch-1.2.0 | 302.3 MB | ########7 | 87% pytorch-1.2.0 | 302.3 MB | ########7 | 87% pytorch-1.2.0 | 302.3 MB | ########7 | 87% pytorch-1.2.0 | 302.3 MB | ########7 | 87% pytorch-1.2.0 | 302.3 MB | ########7 | 87% pytorch-1.2.0 | 302.3 MB | ########7 | 88% pytorch-1.2.0 | 302.3 MB | ########7 | 88% pytorch-1.2.0 | 302.3 MB | ########7 | 88% pytorch-1.2.0 | 302.3 MB | ########7 | 88% pytorch-1.2.0 | 302.3 MB | ########7 | 88% pytorch-1.2.0 | 302.3 MB | ########7 | 88% pytorch-1.2.0 | 302.3 MB | ########7 | 88% pytorch-1.2.0 | 302.3 MB | ########8 | 88% pytorch-1.2.0 | 302.3 MB | ########8 | 88% pytorch-1.2.0 | 302.3 MB | ########8 | 88% pytorch-1.2.0 | 302.3 MB | ########8 | 88% pytorch-1.2.0 | 302.3 MB | ########8 | 88% pytorch-1.2.0 | 302.3 MB | ########8 | 88% pytorch-1.2.0 | 302.3 MB | ########8 | 88% pytorch-1.2.0 | 302.3 MB | ########8 | 88% pytorch-1.2.0 | 302.3 MB | ########8 | 89% pytorch-1.2.0 | 302.3 MB | ########8 | 89% pytorch-1.2.0 | 302.3 MB | ########8 | 89% pytorch-1.2.0 | 302.3 MB | ########8 | 89% pytorch-1.2.0 | 302.3 MB | ########8 | 89% pytorch-1.2.0 | 302.3 MB | ########8 | 89% pytorch-1.2.0 | 302.3 MB | ########8 | 89% pytorch-1.2.0 | 302.3 MB | ########9 | 89% pytorch-1.2.0 | 302.3 MB | ########9 | 89% pytorch-1.2.0 | 302.3 MB | ########9 | 89% pytorch-1.2.0 | 302.3 MB | ########9 | 89% pytorch-1.2.0 | 302.3 MB | ########9 | 89% pytorch-1.2.0 | 302.3 MB | ########9 | 89% pytorch-1.2.0 | 302.3 MB | ########9 | 89% pytorch-1.2.0 | 302.3 MB | ########9 | 89% pytorch-1.2.0 | 302.3 MB | ########9 | 90% pytorch-1.2.0 | 302.3 MB | ########9 | 90% pytorch-1.2.0 | 302.3 MB | ########9 | 90% pytorch-1.2.0 | 302.3 MB | ########9 | 90% pytorch-1.2.0 | 302.3 MB | ########9 | 90% pytorch-1.2.0 | 302.3 MB | ########9 | 90% pytorch-1.2.0 | 302.3 MB | ########9 | 90% pytorch-1.2.0 | 302.3 MB | ########9 | 90% pytorch-1.2.0 | 302.3 MB | ######### | 90% pytorch-1.2.0 | 302.3 MB | ######### | 90% pytorch-1.2.0 | 302.3 MB | ######### | 90% pytorch-1.2.0 | 302.3 MB | ######### | 90% pytorch-1.2.0 | 302.3 MB | ######### | 90% pytorch-1.2.0 | 302.3 MB | ######### | 90% pytorch-1.2.0 | 302.3 MB | ######### | 90% pytorch-1.2.0 | 302.3 MB | ######### | 90% pytorch-1.2.0 | 302.3 MB | ######### | 91% pytorch-1.2.0 | 302.3 MB | ######### | 91% pytorch-1.2.0 | 302.3 MB | ######### | 91% pytorch-1.2.0 | 302.3 MB | ######### | 91% pytorch-1.2.0 | 302.3 MB | ######### | 91% pytorch-1.2.0 | 302.3 MB | ######### | 91% pytorch-1.2.0 | 302.3 MB | ######### | 91% pytorch-1.2.0 | 302.3 MB | #########1 | 91% pytorch-1.2.0 | 302.3 MB | #########1 | 91% pytorch-1.2.0 | 302.3 MB | #########1 | 91% pytorch-1.2.0 | 302.3 MB | #########1 | 91% pytorch-1.2.0 | 302.3 MB | #########1 | 91% pytorch-1.2.0 | 302.3 MB | #########1 | 91% pytorch-1.2.0 | 302.3 MB | #########1 | 91% pytorch-1.2.0 | 302.3 MB | #########1 | 92% pytorch-1.2.0 | 302.3 MB | #########1 | 92% pytorch-1.2.0 | 302.3 MB | #########1 | 92% pytorch-1.2.0 | 302.3 MB | #########1 | 92% pytorch-1.2.0 | 302.3 MB | #########1 | 92% pytorch-1.2.0 | 302.3 MB | #########1 | 92% pytorch-1.2.0 | 302.3 MB | #########1 | 92% pytorch-1.2.0 | 302.3 MB | #########1 | 92% pytorch-1.2.0 | 302.3 MB | #########2 | 92% pytorch-1.2.0 | 302.3 MB | #########2 | 92% pytorch-1.2.0 | 302.3 MB | #########2 | 92% pytorch-1.2.0 | 302.3 MB | #########2 | 92% pytorch-1.2.0 | 302.3 MB | #########2 | 92% pytorch-1.2.0 | 302.3 MB | #########2 | 92% pytorch-1.2.0 | 302.3 MB | #########2 | 92% pytorch-1.2.0 | 302.3 MB | #########2 | 93% pytorch-1.2.0 | 302.3 MB | #########2 | 93% pytorch-1.2.0 | 302.3 MB | #########2 | 93% pytorch-1.2.0 | 302.3 MB | #########2 | 93% pytorch-1.2.0 | 302.3 MB | #########2 | 93% pytorch-1.2.0 | 302.3 MB | #########2 | 93% pytorch-1.2.0 | 302.3 MB | #########2 | 93% pytorch-1.2.0 | 302.3 MB | #########2 | 93% pytorch-1.2.0 | 302.3 MB | #########3 | 93% pytorch-1.2.0 | 302.3 MB | #########3 | 93% pytorch-1.2.0 | 302.3 MB | #########3 | 93% pytorch-1.2.0 | 302.3 MB | #########3 | 93% pytorch-1.2.0 | 302.3 MB | #########3 | 93% pytorch-1.2.0 | 302.3 MB | #########3 | 93% pytorch-1.2.0 | 302.3 MB | #########3 | 93% pytorch-1.2.0 | 302.3 MB | #########3 | 94% pytorch-1.2.0 | 302.3 MB | #########3 | 94% pytorch-1.2.0 | 302.3 MB | #########3 | 94% pytorch-1.2.0 | 302.3 MB | #########3 | 94% pytorch-1.2.0 | 302.3 MB | #########3 | 94% pytorch-1.2.0 | 302.3 MB | #########3 | 94% pytorch-1.2.0 | 302.3 MB | #########3 | 94% pytorch-1.2.0 | 302.3 MB | #########4 | 94% pytorch-1.2.0 | 302.3 MB | #########4 | 94% pytorch-1.2.0 | 302.3 MB | #########4 | 94% pytorch-1.2.0 | 302.3 MB | #########4 | 94% pytorch-1.2.0 | 302.3 MB | #########4 | 94% pytorch-1.2.0 | 302.3 MB | #########4 | 94% pytorch-1.2.0 | 302.3 MB | #########4 | 94% pytorch-1.2.0 | 302.3 MB | #########4 | 95% pytorch-1.2.0 | 302.3 MB | #########4 | 95% pytorch-1.2.0 | 302.3 MB | #########4 | 95% pytorch-1.2.0 | 302.3 MB | #########4 | 95% pytorch-1.2.0 | 302.3 MB | #########4 | 95% pytorch-1.2.0 | 302.3 MB | #########4 | 95% pytorch-1.2.0 | 302.3 MB | #########4 | 95% pytorch-1.2.0 | 302.3 MB | #########4 | 95% pytorch-1.2.0 | 302.3 MB | #########5 | 95% pytorch-1.2.0 | 302.3 MB | #########5 | 95% pytorch-1.2.0 | 302.3 MB | #########5 | 95% pytorch-1.2.0 | 302.3 MB | #########5 | 95% pytorch-1.2.0 | 302.3 MB | #########5 | 95% pytorch-1.2.0 | 302.3 MB | #########5 | 95% pytorch-1.2.0 | 302.3 MB | #########5 | 95% pytorch-1.2.0 | 302.3 MB | #########5 | 95% pytorch-1.2.0 | 302.3 MB | #########5 | 96% pytorch-1.2.0 | 302.3 MB | #########5 | 96% pytorch-1.2.0 | 302.3 MB | #########5 | 96% pytorch-1.2.0 | 302.3 MB | #########5 | 96% pytorch-1.2.0 | 302.3 MB | #########5 | 96% pytorch-1.2.0 | 302.3 MB | #########5 | 96% pytorch-1.2.0 | 302.3 MB | #########5 | 96% pytorch-1.2.0 | 302.3 MB | #########5 | 96% pytorch-1.2.0 | 302.3 MB | #########6 | 96% pytorch-1.2.0 | 302.3 MB | #########6 | 96% pytorch-1.2.0 | 302.3 MB | #########6 | 96% pytorch-1.2.0 | 302.3 MB | #########6 | 96% pytorch-1.2.0 | 302.3 MB | #########6 | 96% pytorch-1.2.0 | 302.3 MB | #########6 | 96% pytorch-1.2.0 | 302.3 MB | #########6 | 96% pytorch-1.2.0 | 302.3 MB | #########6 | 96% pytorch-1.2.0 | 302.3 MB | #########6 | 97% pytorch-1.2.0 | 302.3 MB | #########6 | 97% pytorch-1.2.0 | 302.3 MB | #########6 | 97% pytorch-1.2.0 | 302.3 MB | #########6 | 97% pytorch-1.2.0 | 302.3 MB | #########6 | 97% pytorch-1.2.0 | 302.3 MB | #########6 | 97% pytorch-1.2.0 | 302.3 MB | #########6 | 97% pytorch-1.2.0 | 302.3 MB | #########7 | 97% pytorch-1.2.0 | 302.3 MB | #########7 | 97% pytorch-1.2.0 | 302.3 MB | #########7 | 97% pytorch-1.2.0 | 302.3 MB | #########7 | 97% pytorch-1.2.0 | 302.3 MB | #########7 | 97% pytorch-1.2.0 | 302.3 MB | #########7 | 97% pytorch-1.2.0 | 302.3 MB | #########7 | 97% pytorch-1.2.0 | 302.3 MB | #########7 | 97% pytorch-1.2.0 | 302.3 MB | #########7 | 98% pytorch-1.2.0 | 302.3 MB | #########7 | 98% pytorch-1.2.0 | 302.3 MB | #########7 | 98% pytorch-1.2.0 | 302.3 MB | #########7 | 98% pytorch-1.2.0 | 302.3 MB | #########7 | 98% pytorch-1.2.0 | 302.3 MB | #########7 | 98% pytorch-1.2.0 | 302.3 MB | #########7 | 98% pytorch-1.2.0 | 302.3 MB | #########7 | 98% pytorch-1.2.0 | 302.3 MB | #########7 | 98% pytorch-1.2.0 | 302.3 MB | #########8 | 98% pytorch-1.2.0 | 302.3 MB | #########8 | 98% pytorch-1.2.0 | 302.3 MB | #########8 | 98% pytorch-1.2.0 | 302.3 MB | #########8 | 98% pytorch-1.2.0 | 302.3 MB | #########8 | 98% pytorch-1.2.0 | 302.3 MB | #########8 | 98% pytorch-1.2.0 | 302.3 MB | #########8 | 98% pytorch-1.2.0 | 302.3 MB | #########8 | 99% pytorch-1.2.0 | 302.3 MB | #########8 | 99% pytorch-1.2.0 | 302.3 MB | #########8 | 99% pytorch-1.2.0 | 302.3 MB | #########8 | 99% pytorch-1.2.0 | 302.3 MB | #########8 | 99% pytorch-1.2.0 | 302.3 MB | #########8 | 99% pytorch-1.2.0 | 302.3 MB | #########8 | 99% pytorch-1.2.0 | 302.3 MB | #########8 | 99% pytorch-1.2.0 | 302.3 MB | #########9 | 99% pytorch-1.2.0 | 302.3 MB | #########9 | 99% pytorch-1.2.0 | 302.3 MB | #########9 | 99% pytorch-1.2.0 | 302.3 MB | #########9 | 99% pytorch-1.2.0 | 302.3 MB | #########9 | 99% pytorch-1.2.0 | 302.3 MB | #########9 | 99% pytorch-1.2.0 | 302.3 MB | #########9 | 99% pytorch-1.2.0 | 302.3 MB | #########9 | 99% pytorch-1.2.0 | 302.3 MB | #########9 | 100% pytorch-1.2.0 | 302.3 MB | #########9 | 100% pytorch-1.2.0 | 302.3 MB | #########9 | 100% pytorch-1.2.0 | 302.3 MB | #########9 | 100% pytorch-1.2.0 | 302.3 MB | #########9 | 100% pytorch-1.2.0 | 302.3 MB | #########9 | 100% pytorch-1.2.0 | 302.3 MB | #########9 | 100% pytorch-1.2.0 | 302.3 MB | #########9 | 100% pytorch-1.2.0 | 302.3 MB | #########9 | 100% pytorch-1.2.0 | 302.3 MB | #########9 | 100% pytorch-1.2.0 | 302.3 MB | #########9 | 100% pytorch-1.2.0 | 302.3 MB | #########9 | 100% pytorch-1.2.0 | 302.3 MB | ########## | 100% thinc-7.3.0 | 1.7 MB | | 0% thinc-7.3.0 | 1.7 MB | #######7 | 78% thinc-7.3.0 | 1.7 MB | ########9 | 90% thinc-7.3.0 | 1.7 MB | #########9 | 99% thinc-7.3.0 | 1.7 MB | ########## | 100% zlib-1.2.11 | 105 KB | | 0% zlib-1.2.11 | 105 KB | ########## | 100% dataclasses-0.7 | 28 KB | | 0% dataclasses-0.7 | 28 KB | ########## | 100% olefile-0.46 | 31 KB | | 0% olefile-0.46 | 31 KB | ########## | 100% pandas-1.0.3 | 11.1 MB | | 0% pandas-1.0.3 | 11.1 MB | ###5 | 36% pandas-1.0.3 | 11.1 MB | #######5 | 75% pandas-1.0.3 | 11.1 MB | #########4 | 95% pandas-1.0.3 | 11.1 MB | ########## | 100% mkl_random-1.1.0 | 366 KB | | 0% mkl_random-1.1.0 | 366 KB | #########6 | 96% mkl_random-1.1.0 | 366 KB | ########## | 100% cffi-1.14.0 | 221 KB | | 0% cffi-1.14.0 | 221 KB | ########## | 100% tk-8.6.10 | 3.2 MB | | 0% tk-8.6.10 | 3.2 MB | #######6 | 77% tk-8.6.10 | 3.2 MB | #########1 | 92% tk-8.6.10 | 3.2 MB | ########## | 100% ninja-1.10.0 | 1.9 MB | | 0% ninja-1.10.0 | 1.9 MB | ######## | 81% ninja-1.10.0 | 1.9 MB | ########## | 100% icu-58.2 | 22.6 MB | | 0% icu-58.2 | 22.6 MB | #5 | 16% icu-58.2 | 22.6 MB | ###8 | 39% icu-58.2 | 22.6 MB | ###### | 61% icu-58.2 | 22.6 MB | #######5 | 75% icu-58.2 | 22.6 MB | ########8 | 89% icu-58.2 | 22.6 MB | #########8 | 98% icu-58.2 | 22.6 MB | ########## | 100% urllib3-1.25.7 | 160 KB | | 0% urllib3-1.25.7 | 160 KB | 7 | 8% urllib3-1.25.7 | 160 KB | ########## | 100% freetype-2.8.1 | 789 KB | | 0% freetype-2.8.1 | 789 KB | ######## | 81% freetype-2.8.1 | 789 KB | ########## | 100% importlib-metadata-1 | 43 KB | | 0% importlib-metadata-1 | 43 KB | ########## | 100% srsly-1.0.0 | 213 KB | | 0% srsly-1.0.0 | 213 KB | ########## | 100% catalogue-1.0.0 | 10 KB | | 0% catalogue-1.0.0 | 10 KB | ########## | 100% certifi-2020.4.5.1 | 151 KB | | 0% certifi-2020.4.5.1 | 151 KB | ########## | 100% pyrsistent-0.16.0 | 89 KB | | 0% pyrsistent-0.16.0 | 89 KB | ########## | 100% openssl-1.0.2u | 3.2 MB | | 0% openssl-1.0.2u | 3.2 MB | #######6 | 76% openssl-1.0.2u | 3.2 MB | #########3 | 94% openssl-1.0.2u | 3.2 MB | ########## | 100% pillow-5.2.0 | 1005 KB | | 0% pillow-5.2.0 | 1005 KB | ######## | 81% pillow-5.2.0 | 1005 KB | #########6 | 96% pillow-5.2.0 | 1005 KB | ########## | 100% blas-1.0 | 6 KB | | 0% blas-1.0 | 6 KB | ########## | 100% xz-5.2.5 | 430 KB | | 0% xz-5.2.5 | 430 KB | #########2 | 92% xz-5.2.5 | 430 KB | ########## | 100% cython-blis-0.4.1 | 4.3 MB | | 0% cython-blis-0.4.1 | 4.3 MB | #######6 | 76% cython-blis-0.4.1 | 4.3 MB | #########8 | 99% cython-blis-0.4.1 | 4.3 MB | ########## | 100% typing-3.6.4 | 45 KB | | 0% typing-3.6.4 | 45 KB | ########## | 100% pyopenssl-19.0.0 | 81 KB | | 0% pyopenssl-19.0.0 | 81 KB | ########## | 100% soupsieve-1.9.4 | 58 KB | | 0% soupsieve-1.9.4 | 58 KB | ########## | 100% pyparsing-2.4.7 | 60 KB | | 0% pyparsing-2.4.7 | 60 KB | ########## | 100% _pytorch_select-0.2 | 2 KB | | 0% _pytorch_select-0.2 | 2 KB | ########## | 100% lz4-c-1.8.3 | 187 KB | | 0% lz4-c-1.8.3 | 187 KB | ########## | 100% asn1crypto-1.3.0 | 159 KB | | 0% asn1crypto-1.3.0 | 159 KB | ########## | 100% libgcc-ng-9.2.0 | 8.2 MB | | 0% libgcc-ng-9.2.0 | 8.2 MB | #####3 | 53% libgcc-ng-9.2.0 | 8.2 MB | #######7 | 77% libgcc-ng-9.2.0 | 8.2 MB | #########5 | 95% libgcc-ng-9.2.0 | 8.2 MB | ########## | 100% libpng-1.6.37 | 308 KB | | 0% libpng-1.6.37 | 308 KB | #########6 | 96% libpng-1.6.37 | 308 KB | ########## | 100% nvidia-ml-py3-7.352. | 22 KB | | 0% nvidia-ml-py3-7.352. | 22 KB | #####4 | 54% nvidia-ml-py3-7.352. | 22 KB | ########## | 100% spacy-2.2.3 | 9.2 MB | | 0% spacy-2.2.3 | 9.2 MB | #####5 | 55% spacy-2.2.3 | 9.2 MB | #######5 | 75% spacy-2.2.3 | 9.2 MB | #########1 | 91% spacy-2.2.3 | 9.2 MB | ########## | 100% python-3.6.2 | 27.0 MB | | 0% python-3.6.2 | 27.0 MB | #6 | 17% python-3.6.2 | 27.0 MB | #### | 41% python-3.6.2 | 27.0 MB | ######4 | 64% python-3.6.2 | 27.0 MB | #######9 | 79% python-3.6.2 | 27.0 MB | ########9 | 90% python-3.6.2 | 27.0 MB | #########7 | 97% python-3.6.2 | 27.0 MB | ########## | 100% readline-7.0 | 1.1 MB | | 0% readline-7.0 | 1.1 MB | ########1 | 81% readline-7.0 | 1.1 MB | ########## | 100% python_abi-3.6 | 4 KB | | 0% python_abi-3.6 | 4 KB | ########## | 100% gst-plugins-base-1.1 | 4.9 MB | | 0% gst-plugins-base-1.1 | 4.9 MB | #######5 | 76% gst-plugins-base-1.1 | 4.9 MB | #########8 | 98% gst-plugins-base-1.1 | 4.9 MB | ########## | 100% kiwisolver-1.2.0 | 87 KB | | 0% kiwisolver-1.2.0 | 87 KB | ########## | 100% plac-0.9.6 | 18 KB | | 0% plac-0.9.6 | 18 KB | ########## | 100% glib-2.56.2 | 4.7 MB | | 0% glib-2.56.2 | 4.7 MB | #######5 | 75% glib-2.56.2 | 4.7 MB | #########7 | 98% glib-2.56.2 | 4.7 MB | ########## | 100% pyyaml-5.3.1 | 186 KB | | 0% pyyaml-5.3.1 | 186 KB | ########## | 100% numpy-base-1.18.1 | 5.2 MB | | 0% numpy-base-1.18.1 | 5.2 MB | #######6 | 76% numpy-base-1.18.1 | 5.2 MB | #########1 | 91% numpy-base-1.18.1 | 5.2 MB | ########## | 100% libffi-3.2.1 | 47 KB | | 0% libffi-3.2.1 | 47 KB | ########## | 100% dbus-1.13.0 | 558 KB | | 0% dbus-1.13.0 | 558 KB | ######### | 91% dbus-1.13.0 | 558 KB | ########## | 100% xorg-libxdmcp-1.1.3 | 18 KB | | 0% xorg-libxdmcp-1.1.3 | 18 KB | ########## | 100% libgfortran-ng-7.3.0 | 1.7 MB | | 0% libgfortran-ng-7.3.0 | 1.7 MB | #######8 | 78% libgfortran-ng-7.3.0 | 1.7 MB | #########8 | 99% libgfortran-ng-7.3.0 | 1.7 MB | ########## | 100% libuuid-2.32.1 | 26 KB | | 0% libuuid-2.32.1 | 26 KB | ########## | 100% pytz-2019.3 | 237 KB | | 0% pytz-2019.3 | 237 KB | #########4 | 94% pytz-2019.3 | 237 KB | ########## | 100% gstreamer-1.12.5 | 3.7 MB | | 0% gstreamer-1.12.5 | 3.7 MB | #####6 | 56% gstreamer-1.12.5 | 3.7 MB | #######6 | 76% gstreamer-1.12.5 | 3.7 MB | #########2 | 92% gstreamer-1.12.5 | 3.7 MB | ########## | 100% numexpr-2.7.1 | 197 KB | | 0% numexpr-2.7.1 | 197 KB | ########## | 100% qt-5.6.2 | 44.5 MB | | 0% qt-5.6.2 | 44.5 MB | # | 11% qt-5.6.2 | 44.5 MB | ##5 | 26% qt-5.6.2 | 44.5 MB | ###9 | 40% qt-5.6.2 | 44.5 MB | #####3 | 53% qt-5.6.2 | 44.5 MB | ######8 | 68% qt-5.6.2 | 44.5 MB | #######9 | 80% qt-5.6.2 | 44.5 MB | ########7 | 88% qt-5.6.2 | 44.5 MB | #########3 | 94% qt-5.6.2 | 44.5 MB | #########7 | 98% qt-5.6.2 | 44.5 MB | ########## | 100% mkl_fft-1.1.0 | 173 KB | | 0% mkl_fft-1.1.0 | 173 KB | ########## | 100% _openmp_mutex-4.5 | 5 KB | | 0% _openmp_mutex-4.5 | 5 KB | ########## | 100% xorg-libxau-1.0.9 | 13 KB | | 0% xorg-libxau-1.0.9 | 13 KB | ########## | 100% torchvision-0.4.0 | 2.8 MB | | 0% torchvision-0.4.0 | 2.8 MB | #######7 | 77% torchvision-0.4.0 | 2.8 MB | #########8 | 99% torchvision-0.4.0 | 2.8 MB | ########## | 100% scipy-1.4.1 | 18.9 MB | | 0% scipy-1.4.1 | 18.9 MB | ##7 | 27% scipy-1.4.1 | 18.9 MB | ######3 | 64% scipy-1.4.1 | 18.9 MB | ######## | 80% scipy-1.4.1 | 18.9 MB | #########2 | 93% scipy-1.4.1 | 18.9 MB | ########## | 100% yaml-0.2.2 | 82 KB | | 0% yaml-0.2.2 | 82 KB | ########## | 100% beautifulsoup4-4.9.0 | 160 KB | | 0% beautifulsoup4-4.9.0 | 160 KB | ########## | 100% bottleneck-1.3.2 | 131 KB | | 0% bottleneck-1.3.2 | 131 KB | ########## | 100% sqlite-3.20.1 | 1.3 MB | | 0% sqlite-3.20.1 | 1.3 MB | ########1 | 82% sqlite-3.20.1 | 1.3 MB | ########## | 100% zipp-3.1.0 | 10 KB | | 0% zipp-3.1.0 | 10 KB | ########## | 100% cudnn-7.6.5 | 226.4 MB | | 0% cudnn-7.6.5 | 226.4 MB | 1 | 2% cudnn-7.6.5 | 226.4 MB | 4 | 4% cudnn-7.6.5 | 226.4 MB | 7 | 7% cudnn-7.6.5 | 226.4 MB | # | 10% cudnn-7.6.5 | 226.4 MB | #2 | 13% cudnn-7.6.5 | 226.4 MB | #5 | 15% cudnn-7.6.5 | 226.4 MB | #7 | 18% cudnn-7.6.5 | 226.4 MB | ## | 20% cudnn-7.6.5 | 226.4 MB | ##3 | 23% cudnn-7.6.5 | 226.4 MB | ##5 | 26% cudnn-7.6.5 | 226.4 MB | ##8 | 28% cudnn-7.6.5 | 226.4 MB | ### | 30% cudnn-7.6.5 | 226.4 MB | ###2 | 32% cudnn-7.6.5 | 226.4 MB | ###4 | 34% cudnn-7.6.5 | 226.4 MB | ###6 | 36% cudnn-7.6.5 | 226.4 MB | ###8 | 38% cudnn-7.6.5 | 226.4 MB | #### | 41% cudnn-7.6.5 | 226.4 MB | ####3 | 43% cudnn-7.6.5 | 226.4 MB | ####5 | 45% cudnn-7.6.5 | 226.4 MB | ####7 | 47% cudnn-7.6.5 | 226.4 MB | ####9 | 50% cudnn-7.6.5 | 226.4 MB | #####2 | 52% cudnn-7.6.5 | 226.4 MB | #####5 | 55% cudnn-7.6.5 | 226.4 MB | #####7 | 58% cudnn-7.6.5 | 226.4 MB | ###### | 60% cudnn-7.6.5 | 226.4 MB | ######2 | 63% cudnn-7.6.5 | 226.4 MB | ######5 | 65% cudnn-7.6.5 | 226.4 MB | ######7 | 68% cudnn-7.6.5 | 226.4 MB | ######9 | 70% cudnn-7.6.5 | 226.4 MB | #######2 | 72% cudnn-7.6.5 | 226.4 MB | #######4 | 75% cudnn-7.6.5 | 226.4 MB | #######6 | 77% cudnn-7.6.5 | 226.4 MB | #######8 | 78% cudnn-7.6.5 | 226.4 MB | #######9 | 79% cudnn-7.6.5 | 226.4 MB | ######## | 80% cudnn-7.6.5 | 226.4 MB | ######## | 81% cudnn-7.6.5 | 226.4 MB | ########1 | 81% cudnn-7.6.5 | 226.4 MB | ########1 | 81% cudnn-7.6.5 | 226.4 MB | ########1 | 82% cudnn-7.6.5 | 226.4 MB | ########1 | 82% cudnn-7.6.5 | 226.4 MB | ########2 | 82% cudnn-7.6.5 | 226.4 MB | ########2 | 82% cudnn-7.6.5 | 226.4 MB | ########2 | 82% cudnn-7.6.5 | 226.4 MB | ########2 | 82% cudnn-7.6.5 | 226.4 MB | ########2 | 83% cudnn-7.6.5 | 226.4 MB | ########2 | 83% cudnn-7.6.5 | 226.4 MB | ########2 | 83% cudnn-7.6.5 | 226.4 MB | ########2 | 83% cudnn-7.6.5 | 226.4 MB | ########2 | 83% cudnn-7.6.5 | 226.4 MB | ########3 | 83% cudnn-7.6.5 | 226.4 MB | ########3 | 83% cudnn-7.6.5 | 226.4 MB | ########3 | 83% cudnn-7.6.5 | 226.4 MB | ########3 | 83% cudnn-7.6.5 | 226.4 MB | ########3 | 83% cudnn-7.6.5 | 226.4 MB | ########3 | 83% cudnn-7.6.5 | 226.4 MB | ########3 | 84% cudnn-7.6.5 | 226.4 MB | ########3 | 84% cudnn-7.6.5 | 226.4 MB | ########3 | 84% cudnn-7.6.5 | 226.4 MB | ########3 | 84% cudnn-7.6.5 | 226.4 MB | ########3 | 84% cudnn-7.6.5 | 226.4 MB | ########3 | 84% cudnn-7.6.5 | 226.4 MB | ########4 | 84% cudnn-7.6.5 | 226.4 MB | ########4 | 84% cudnn-7.6.5 | 226.4 MB | ########4 | 84% cudnn-7.6.5 | 226.4 MB | ########4 | 84% cudnn-7.6.5 | 226.4 MB | ########4 | 84% cudnn-7.6.5 | 226.4 MB | ########4 | 84% cudnn-7.6.5 | 226.4 MB | ########4 | 85% cudnn-7.6.5 | 226.4 MB | ########4 | 85% cudnn-7.6.5 | 226.4 MB | ########4 | 85% cudnn-7.6.5 | 226.4 MB | ########4 | 85% cudnn-7.6.5 | 226.4 MB | ########4 | 85% cudnn-7.6.5 | 226.4 MB | ########4 | 85% cudnn-7.6.5 | 226.4 MB | ########5 | 85% cudnn-7.6.5 | 226.4 MB | ########5 | 85% cudnn-7.6.5 | 226.4 MB | ########5 | 85% cudnn-7.6.5 | 226.4 MB | ########5 | 85% cudnn-7.6.5 | 226.4 MB | ########5 | 85% cudnn-7.6.5 | 226.4 MB | ########5 | 86% cudnn-7.6.5 | 226.4 MB | ########5 | 86% cudnn-7.6.5 | 226.4 MB | ########5 | 86% cudnn-7.6.5 | 226.4 MB | ########5 | 86% cudnn-7.6.5 | 226.4 MB | ########5 | 86% cudnn-7.6.5 | 226.4 MB | ########5 | 86% cudnn-7.6.5 | 226.4 MB | ########6 | 86% cudnn-7.6.5 | 226.4 MB | ########6 | 86% cudnn-7.6.5 | 226.4 MB | ########6 | 86% cudnn-7.6.5 | 226.4 MB | ########6 | 86% cudnn-7.6.5 | 226.4 MB | ########6 | 86% cudnn-7.6.5 | 226.4 MB | ########6 | 87% cudnn-7.6.5 | 226.4 MB | ########6 | 87% cudnn-7.6.5 | 226.4 MB | ########6 | 87% cudnn-7.6.5 | 226.4 MB | ########6 | 87% cudnn-7.6.5 | 226.4 MB | ########6 | 87% cudnn-7.6.5 | 226.4 MB | ########6 | 87% cudnn-7.6.5 | 226.4 MB | ########7 | 87% cudnn-7.6.5 | 226.4 MB | ########7 | 87% cudnn-7.6.5 | 226.4 MB | ########7 | 87% cudnn-7.6.5 | 226.4 MB | ########7 | 87% cudnn-7.6.5 | 226.4 MB | ########7 | 87% cudnn-7.6.5 | 226.4 MB | ########7 | 87% cudnn-7.6.5 | 226.4 MB | ########7 | 88% cudnn-7.6.5 | 226.4 MB | ########7 | 88% cudnn-7.6.5 | 226.4 MB | ########7 | 88% cudnn-7.6.5 | 226.4 MB | ########7 | 88% cudnn-7.6.5 | 226.4 MB | ########7 | 88% cudnn-7.6.5 | 226.4 MB | ########7 | 88% cudnn-7.6.5 | 226.4 MB | ########8 | 88% cudnn-7.6.5 | 226.4 MB | ########8 | 88% cudnn-7.6.5 | 226.4 MB | ########8 | 88% cudnn-7.6.5 | 226.4 MB | ########8 | 88% cudnn-7.6.5 | 226.4 MB | ########8 | 88% cudnn-7.6.5 | 226.4 MB | ########8 | 89% cudnn-7.6.5 | 226.4 MB | ########8 | 89% cudnn-7.6.5 | 226.4 MB | ########8 | 89% cudnn-7.6.5 | 226.4 MB | ########8 | 89% cudnn-7.6.5 | 226.4 MB | ########8 | 89% cudnn-7.6.5 | 226.4 MB | ########8 | 89% cudnn-7.6.5 | 226.4 MB | ########9 | 89% cudnn-7.6.5 | 226.4 MB | ########9 | 89% cudnn-7.6.5 | 226.4 MB | ########9 | 89% cudnn-7.6.5 | 226.4 MB | ########9 | 89% cudnn-7.6.5 | 226.4 MB | ########9 | 89% cudnn-7.6.5 | 226.4 MB | ########9 | 89% cudnn-7.6.5 | 226.4 MB | ########9 | 90% cudnn-7.6.5 | 226.4 MB | ########9 | 90% cudnn-7.6.5 | 226.4 MB | ########9 | 90% cudnn-7.6.5 | 226.4 MB | ########9 | 90% cudnn-7.6.5 | 226.4 MB | ########9 | 90% cudnn-7.6.5 | 226.4 MB | ######### | 90% cudnn-7.6.5 | 226.4 MB | ######### | 90% cudnn-7.6.5 | 226.4 MB | ######### | 90% cudnn-7.6.5 | 226.4 MB | ######### | 90% cudnn-7.6.5 | 226.4 MB | ######### | 90% cudnn-7.6.5 | 226.4 MB | ######### | 90% cudnn-7.6.5 | 226.4 MB | ######### | 91% cudnn-7.6.5 | 226.4 MB | ######### | 91% cudnn-7.6.5 | 226.4 MB | ######### | 91% cudnn-7.6.5 | 226.4 MB | ######### | 91% cudnn-7.6.5 | 226.4 MB | ######### | 91% cudnn-7.6.5 | 226.4 MB | #########1 | 91% cudnn-7.6.5 | 226.4 MB | #########1 | 91% cudnn-7.6.5 | 226.4 MB | #########1 | 91% cudnn-7.6.5 | 226.4 MB | #########1 | 91% cudnn-7.6.5 | 226.4 MB | #########1 | 91% cudnn-7.6.5 | 226.4 MB | #########1 | 91% cudnn-7.6.5 | 226.4 MB | #########1 | 92% cudnn-7.6.5 | 226.4 MB | #########1 | 92% cudnn-7.6.5 | 226.4 MB | #########1 | 92% cudnn-7.6.5 | 226.4 MB | #########1 | 92% cudnn-7.6.5 | 226.4 MB | #########1 | 92% cudnn-7.6.5 | 226.4 MB | #########1 | 92% cudnn-7.6.5 | 226.4 MB | #########2 | 92% cudnn-7.6.5 | 226.4 MB | #########2 | 92% cudnn-7.6.5 | 226.4 MB | #########2 | 92% cudnn-7.6.5 | 226.4 MB | #########2 | 92% cudnn-7.6.5 | 226.4 MB | #########2 | 92% cudnn-7.6.5 | 226.4 MB | #########2 | 93% cudnn-7.6.5 | 226.4 MB | #########2 | 93% cudnn-7.6.5 | 226.4 MB | #########2 | 93% cudnn-7.6.5 | 226.4 MB | #########2 | 93% cudnn-7.6.5 | 226.4 MB | #########2 | 93% cudnn-7.6.5 | 226.4 MB | #########2 | 93% cudnn-7.6.5 | 226.4 MB | #########3 | 93% cudnn-7.6.5 | 226.4 MB | #########3 | 93% cudnn-7.6.5 | 226.4 MB | #########3 | 93% cudnn-7.6.5 | 226.4 MB | #########3 | 93% cudnn-7.6.5 | 226.4 MB | #########3 | 93% cudnn-7.6.5 | 226.4 MB | #########3 | 94% cudnn-7.6.5 | 226.4 MB | #########3 | 94% cudnn-7.6.5 | 226.4 MB | #########3 | 94% cudnn-7.6.5 | 226.4 MB | #########3 | 94% cudnn-7.6.5 | 226.4 MB | #########3 | 94% cudnn-7.6.5 | 226.4 MB | #########3 | 94% cudnn-7.6.5 | 226.4 MB | #########4 | 94% cudnn-7.6.5 | 226.4 MB | #########4 | 94% cudnn-7.6.5 | 226.4 MB | #########4 | 94% cudnn-7.6.5 | 226.4 MB | #########4 | 94% cudnn-7.6.5 | 226.4 MB | #########4 | 94% cudnn-7.6.5 | 226.4 MB | #########4 | 95% cudnn-7.6.5 | 226.4 MB | #########4 | 95% cudnn-7.6.5 | 226.4 MB | #########4 | 95% cudnn-7.6.5 | 226.4 MB | #########4 | 95% cudnn-7.6.5 | 226.4 MB | #########4 | 95% cudnn-7.6.5 | 226.4 MB | #########5 | 95% cudnn-7.6.5 | 226.4 MB | #########5 | 95% cudnn-7.6.5 | 226.4 MB | #########5 | 95% cudnn-7.6.5 | 226.4 MB | #########5 | 95% cudnn-7.6.5 | 226.4 MB | #########5 | 95% cudnn-7.6.5 | 226.4 MB | #########5 | 95% cudnn-7.6.5 | 226.4 MB | #########5 | 96% cudnn-7.6.5 | 226.4 MB | #########5 | 96% cudnn-7.6.5 | 226.4 MB | #########5 | 96% cudnn-7.6.5 | 226.4 MB | #########5 | 96% cudnn-7.6.5 | 226.4 MB | #########5 | 96% cudnn-7.6.5 | 226.4 MB | #########6 | 96% cudnn-7.6.5 | 226.4 MB | #########6 | 96% cudnn-7.6.5 | 226.4 MB | #########6 | 96% cudnn-7.6.5 | 226.4 MB | #########6 | 96% cudnn-7.6.5 | 226.4 MB | #########6 | 96% cudnn-7.6.5 | 226.4 MB | #########6 | 96% cudnn-7.6.5 | 226.4 MB | #########6 | 97% cudnn-7.6.5 | 226.4 MB | #########6 | 97% cudnn-7.6.5 | 226.4 MB | #########6 | 97% cudnn-7.6.5 | 226.4 MB | #########6 | 97% cudnn-7.6.5 | 226.4 MB | #########6 | 97% cudnn-7.6.5 | 226.4 MB | #########6 | 97% cudnn-7.6.5 | 226.4 MB | #########7 | 97% cudnn-7.6.5 | 226.4 MB | #########7 | 97% cudnn-7.6.5 | 226.4 MB | #########7 | 97% cudnn-7.6.5 | 226.4 MB | #########7 | 97% cudnn-7.6.5 | 226.4 MB | #########7 | 97% cudnn-7.6.5 | 226.4 MB | #########7 | 98% cudnn-7.6.5 | 226.4 MB | #########7 | 98% cudnn-7.6.5 | 226.4 MB | #########7 | 98% cudnn-7.6.5 | 226.4 MB | #########7 | 98% cudnn-7.6.5 | 226.4 MB | #########7 | 98% cudnn-7.6.5 | 226.4 MB | #########7 | 98% cudnn-7.6.5 | 226.4 MB | #########8 | 98% cudnn-7.6.5 | 226.4 MB | #########8 | 98% cudnn-7.6.5 | 226.4 MB | #########8 | 98% cudnn-7.6.5 | 226.4 MB | #########8 | 98% cudnn-7.6.5 | 226.4 MB | #########8 | 98% cudnn-7.6.5 | 226.4 MB | #########8 | 99% cudnn-7.6.5 | 226.4 MB | #########8 | 99% cudnn-7.6.5 | 226.4 MB | #########8 | 99% cudnn-7.6.5 | 226.4 MB | #########8 | 99% cudnn-7.6.5 | 226.4 MB | #########8 | 99% cudnn-7.6.5 | 226.4 MB | #########8 | 99% cudnn-7.6.5 | 226.4 MB | #########9 | 99% cudnn-7.6.5 | 226.4 MB | #########9 | 99% cudnn-7.6.5 | 226.4 MB | #########9 | 99% cudnn-7.6.5 | 226.4 MB | #########9 | 99% cudnn-7.6.5 | 226.4 MB | #########9 | 99% cudnn-7.6.5 | 226.4 MB | #########9 | 100% cudnn-7.6.5 | 226.4 MB | #########9 | 100% cudnn-7.6.5 | 226.4 MB | #########9 | 100% cudnn-7.6.5 | 226.4 MB | #########9 | 100% cudnn-7.6.5 | 226.4 MB | #########9 | 100% cudnn-7.6.5 | 226.4 MB | #########9 | 100% cudnn-7.6.5 | 226.4 MB | ########## | 100% murmurhash-1.0.0 | 16 KB | | 0% murmurhash-1.0.0 | 16 KB | ########## | 100% pycparser-2.20 | 89 KB | | 0% pycparser-2.20 | 89 KB | ########## | 100% libxcb-1.13 | 396 KB | | 0% libxcb-1.13 | 396 KB | ########2 | 83% libxcb-1.13 | 396 KB | ########## | 100% libstdcxx-ng-9.2.0 | 4.5 MB | | 0% libstdcxx-ng-9.2.0 | 4.5 MB | #######7 | 77% libstdcxx-ng-9.2.0 | 4.5 MB | ########## | 100% setuptools-46.1.3 | 653 KB | | 0% setuptools-46.1.3 | 653 KB | #######9 | 80% setuptools-46.1.3 | 653 KB | ########## | 100% mkl-service-2.3.0 | 64 KB | | 0% mkl-service-2.3.0 | 64 KB | ########## | 100% pthread-stubs-0.4 | 5 KB | | 0% pthread-stubs-0.4 | 5 KB | ########## | 100% mkl-2019.5 | 205.2 MB | | 0% mkl-2019.5 | 205.2 MB | 1 | 2% mkl-2019.5 | 205.2 MB | 2 | 3% mkl-2019.5 | 205.2 MB | 6 | 6% mkl-2019.5 | 205.2 MB | 9 | 10% mkl-2019.5 | 205.2 MB | #2 | 13% mkl-2019.5 | 205.2 MB | #5 | 16% mkl-2019.5 | 205.2 MB | #8 | 18% mkl-2019.5 | 205.2 MB | ##1 | 22% mkl-2019.5 | 205.2 MB | ##4 | 25% mkl-2019.5 | 205.2 MB | ##8 | 28% mkl-2019.5 | 205.2 MB | ###1 | 31% mkl-2019.5 | 205.2 MB | ###4 | 34% mkl-2019.5 | 205.2 MB | ###7 | 38% mkl-2019.5 | 205.2 MB | #### | 41% mkl-2019.5 | 205.2 MB | ####3 | 44% mkl-2019.5 | 205.2 MB | ####7 | 47% mkl-2019.5 | 205.2 MB | ##### | 50% mkl-2019.5 | 205.2 MB | #####3 | 53% mkl-2019.5 | 205.2 MB | #####6 | 57% mkl-2019.5 | 205.2 MB | ###### | 60% mkl-2019.5 | 205.2 MB | ######3 | 63% mkl-2019.5 | 205.2 MB | ######6 | 67% mkl-2019.5 | 205.2 MB | ####### | 70% mkl-2019.5 | 205.2 MB | #######3 | 73% mkl-2019.5 | 205.2 MB | #######6 | 76% mkl-2019.5 | 205.2 MB | #######8 | 78% mkl-2019.5 | 205.2 MB | ######## | 80% mkl-2019.5 | 205.2 MB | ########1 | 81% mkl-2019.5 | 205.2 MB | ########1 | 82% mkl-2019.5 | 205.2 MB | ########2 | 82% mkl-2019.5 | 205.2 MB | ########2 | 83% mkl-2019.5 | 205.2 MB | ########3 | 83% mkl-2019.5 | 205.2 MB | ########3 | 83% mkl-2019.5 | 205.2 MB | ########3 | 84% mkl-2019.5 | 205.2 MB | ########3 | 84% mkl-2019.5 | 205.2 MB | ########3 | 84% mkl-2019.5 | 205.2 MB | ########4 | 84% mkl-2019.5 | 205.2 MB | ########4 | 84% mkl-2019.5 | 205.2 MB | ########4 | 84% mkl-2019.5 | 205.2 MB | ########4 | 84% mkl-2019.5 | 205.2 MB | ########4 | 84% mkl-2019.5 | 205.2 MB | ########4 | 84% mkl-2019.5 | 205.2 MB | ########4 | 85% mkl-2019.5 | 205.2 MB | ########4 | 85% mkl-2019.5 | 205.2 MB | ########4 | 85% mkl-2019.5 | 205.2 MB | ########4 | 85% mkl-2019.5 | 205.2 MB | ########4 | 85% mkl-2019.5 | 205.2 MB | ########4 | 85% mkl-2019.5 | 205.2 MB | ########4 | 85% mkl-2019.5 | 205.2 MB | ########4 | 85% mkl-2019.5 | 205.2 MB | ########5 | 85% mkl-2019.5 | 205.2 MB | ########5 | 85% mkl-2019.5 | 205.2 MB | ########5 | 85% mkl-2019.5 | 205.2 MB | ########5 | 85% mkl-2019.5 | 205.2 MB | ########5 | 85% mkl-2019.5 | 205.2 MB | ########5 | 85% mkl-2019.5 | 205.2 MB | ########5 | 85% mkl-2019.5 | 205.2 MB | ########5 | 85% mkl-2019.5 | 205.2 MB | ########5 | 86% mkl-2019.5 | 205.2 MB | ########5 | 86% mkl-2019.5 | 205.2 MB | ########5 | 86% mkl-2019.5 | 205.2 MB | ########5 | 86% mkl-2019.5 | 205.2 MB | ########5 | 86% mkl-2019.5 | 205.2 MB | ########5 | 86% mkl-2019.5 | 205.2 MB | ########5 | 86% mkl-2019.5 | 205.2 MB | ########6 | 86% mkl-2019.5 | 205.2 MB | ########6 | 86% mkl-2019.5 | 205.2 MB | ########6 | 86% mkl-2019.5 | 205.2 MB | ########6 | 86% mkl-2019.5 | 205.2 MB | ########6 | 86% mkl-2019.5 | 205.2 MB | ########6 | 86% mkl-2019.5 | 205.2 MB | ########6 | 86% mkl-2019.5 | 205.2 MB | ########6 | 87% mkl-2019.5 | 205.2 MB | ########6 | 87% mkl-2019.5 | 205.2 MB | ########6 | 87% mkl-2019.5 | 205.2 MB | ########6 | 87% mkl-2019.5 | 205.2 MB | ########6 | 87% mkl-2019.5 | 205.2 MB | ########6 | 87% mkl-2019.5 | 205.2 MB | ########6 | 87% mkl-2019.5 | 205.2 MB | ########6 | 87% mkl-2019.5 | 205.2 MB | ########7 | 87% mkl-2019.5 | 205.2 MB | ########7 | 87% mkl-2019.5 | 205.2 MB | ########7 | 87% mkl-2019.5 | 205.2 MB | ########7 | 87% mkl-2019.5 | 205.2 MB | ########7 | 87% mkl-2019.5 | 205.2 MB | ########7 | 87% mkl-2019.5 | 205.2 MB | ########7 | 87% mkl-2019.5 | 205.2 MB | ########7 | 88% mkl-2019.5 | 205.2 MB | ########7 | 88% mkl-2019.5 | 205.2 MB | ########7 | 88% mkl-2019.5 | 205.2 MB | ########7 | 88% mkl-2019.5 | 205.2 MB | ########7 | 88% mkl-2019.5 | 205.2 MB | ########7 | 88% mkl-2019.5 | 205.2 MB | ########7 | 88% mkl-2019.5 | 205.2 MB | ########8 | 88% mkl-2019.5 | 205.2 MB | ########8 | 88% mkl-2019.5 | 205.2 MB | ########8 | 88% mkl-2019.5 | 205.2 MB | ########8 | 88% mkl-2019.5 | 205.2 MB | ########8 | 88% mkl-2019.5 | 205.2 MB | ########8 | 88% mkl-2019.5 | 205.2 MB | ########8 | 88% mkl-2019.5 | 205.2 MB | ########8 | 89% mkl-2019.5 | 205.2 MB | ########8 | 89% mkl-2019.5 | 205.2 MB | ########8 | 89% mkl-2019.5 | 205.2 MB | ########8 | 89% mkl-2019.5 | 205.2 MB | ########8 | 89% mkl-2019.5 | 205.2 MB | ########8 | 89% mkl-2019.5 | 205.2 MB | ########8 | 89% mkl-2019.5 | 205.2 MB | ########8 | 89% mkl-2019.5 | 205.2 MB | ########9 | 89% mkl-2019.5 | 205.2 MB | ########9 | 89% mkl-2019.5 | 205.2 MB | ########9 | 89% mkl-2019.5 | 205.2 MB | ########9 | 89% mkl-2019.5 | 205.2 MB | ########9 | 89% mkl-2019.5 | 205.2 MB | ########9 | 89% mkl-2019.5 | 205.2 MB | ########9 | 89% mkl-2019.5 | 205.2 MB | ########9 | 89% mkl-2019.5 | 205.2 MB | ########9 | 90% mkl-2019.5 | 205.2 MB | ########9 | 90% mkl-2019.5 | 205.2 MB | ########9 | 90% mkl-2019.5 | 205.2 MB | ########9 | 90% mkl-2019.5 | 205.2 MB | ########9 | 90% mkl-2019.5 | 205.2 MB | ########9 | 90% mkl-2019.5 | 205.2 MB | ########9 | 90% mkl-2019.5 | 205.2 MB | ######### | 90% mkl-2019.5 | 205.2 MB | ######### | 90% mkl-2019.5 | 205.2 MB | ######### | 90% mkl-2019.5 | 205.2 MB | ######### | 90% mkl-2019.5 | 205.2 MB | ######### | 90% mkl-2019.5 | 205.2 MB | ######### | 90% mkl-2019.5 | 205.2 MB | ######### | 90% mkl-2019.5 | 205.2 MB | ######### | 91% mkl-2019.5 | 205.2 MB | ######### | 91% mkl-2019.5 | 205.2 MB | ######### | 91% mkl-2019.5 | 205.2 MB | ######### | 91% mkl-2019.5 | 205.2 MB | ######### | 91% mkl-2019.5 | 205.2 MB | ######### | 91% mkl-2019.5 | 205.2 MB | ######### | 91% mkl-2019.5 | 205.2 MB | #########1 | 91% mkl-2019.5 | 205.2 MB | #########1 | 91% mkl-2019.5 | 205.2 MB | #########1 | 91% mkl-2019.5 | 205.2 MB | #########1 | 91% mkl-2019.5 | 205.2 MB | #########1 | 91% mkl-2019.5 | 205.2 MB | #########1 | 91% mkl-2019.5 | 205.2 MB | #########1 | 91% mkl-2019.5 | 205.2 MB | #########1 | 92% mkl-2019.5 | 205.2 MB | #########1 | 92% mkl-2019.5 | 205.2 MB | #########1 | 92% mkl-2019.5 | 205.2 MB | #########1 | 92% mkl-2019.5 | 205.2 MB | #########1 | 92% mkl-2019.5 | 205.2 MB | #########1 | 92% mkl-2019.5 | 205.2 MB | #########1 | 92% mkl-2019.5 | 205.2 MB | #########2 | 92% mkl-2019.5 | 205.2 MB | #########2 | 92% mkl-2019.5 | 205.2 MB | #########2 | 92% mkl-2019.5 | 205.2 MB | #########2 | 92% mkl-2019.5 | 205.2 MB | #########2 | 92% mkl-2019.5 | 205.2 MB | #########2 | 92% mkl-2019.5 | 205.2 MB | #########2 | 92% mkl-2019.5 | 205.2 MB | #########2 | 93% mkl-2019.5 | 205.2 MB | #########2 | 93% mkl-2019.5 | 205.2 MB | #########2 | 93% mkl-2019.5 | 205.2 MB | #########2 | 93% mkl-2019.5 | 205.2 MB | #########2 | 93% mkl-2019.5 | 205.2 MB | #########2 | 93% mkl-2019.5 | 205.2 MB | #########2 | 93% mkl-2019.5 | 205.2 MB | #########3 | 93% mkl-2019.5 | 205.2 MB | #########3 | 93% mkl-2019.5 | 205.2 MB | #########3 | 93% mkl-2019.5 | 205.2 MB | #########3 | 93% mkl-2019.5 | 205.2 MB | #########3 | 93% mkl-2019.5 | 205.2 MB | #########3 | 93% mkl-2019.5 | 205.2 MB | #########3 | 93% mkl-2019.5 | 205.2 MB | #########3 | 93% mkl-2019.5 | 205.2 MB | #########3 | 94% mkl-2019.5 | 205.2 MB | #########3 | 94% mkl-2019.5 | 205.2 MB | #########3 | 94% mkl-2019.5 | 205.2 MB | #########3 | 94% mkl-2019.5 | 205.2 MB | #########3 | 94% mkl-2019.5 | 205.2 MB | #########3 | 94% mkl-2019.5 | 205.2 MB | #########3 | 94% mkl-2019.5 | 205.2 MB | #########4 | 94% mkl-2019.5 | 205.2 MB | #########4 | 94% mkl-2019.5 | 205.2 MB | #########4 | 94% mkl-2019.5 | 205.2 MB | #########4 | 94% mkl-2019.5 | 205.2 MB | #########4 | 94% mkl-2019.5 | 205.2 MB | #########4 | 94% mkl-2019.5 | 205.2 MB | #########4 | 94% mkl-2019.5 | 205.2 MB | #########4 | 94% mkl-2019.5 | 205.2 MB | #########4 | 95% mkl-2019.5 | 205.2 MB | #########4 | 95% mkl-2019.5 | 205.2 MB | #########4 | 95% mkl-2019.5 | 205.2 MB | #########4 | 95% mkl-2019.5 | 205.2 MB | #########4 | 95% mkl-2019.5 | 205.2 MB | #########4 | 95% mkl-2019.5 | 205.2 MB | #########4 | 95% mkl-2019.5 | 205.2 MB | #########5 | 95% mkl-2019.5 | 205.2 MB | #########5 | 95% mkl-2019.5 | 205.2 MB | #########5 | 95% mkl-2019.5 | 205.2 MB | #########5 | 95% mkl-2019.5 | 205.2 MB | #########5 | 95% mkl-2019.5 | 205.2 MB | #########5 | 95% mkl-2019.5 | 205.2 MB | #########5 | 95% mkl-2019.5 | 205.2 MB | #########5 | 96% mkl-2019.5 | 205.2 MB | #########5 | 96% mkl-2019.5 | 205.2 MB | #########5 | 96% mkl-2019.5 | 205.2 MB | #########5 | 96% mkl-2019.5 | 205.2 MB | #########5 | 96% mkl-2019.5 | 205.2 MB | #########5 | 96% mkl-2019.5 | 205.2 MB | #########5 | 96% mkl-2019.5 | 205.2 MB | #########6 | 96% mkl-2019.5 | 205.2 MB | #########6 | 96% mkl-2019.5 | 205.2 MB | #########6 | 96% mkl-2019.5 | 205.2 MB | #########6 | 96% mkl-2019.5 | 205.2 MB | #########6 | 96% mkl-2019.5 | 205.2 MB | #########6 | 96% mkl-2019.5 | 205.2 MB | #########6 | 96% mkl-2019.5 | 205.2 MB | #########6 | 97% mkl-2019.5 | 205.2 MB | #########6 | 97% mkl-2019.5 | 205.2 MB | #########6 | 97% mkl-2019.5 | 205.2 MB | #########6 | 97% mkl-2019.5 | 205.2 MB | #########6 | 97% mkl-2019.5 | 205.2 MB | #########6 | 97% mkl-2019.5 | 205.2 MB | #########6 | 97% mkl-2019.5 | 205.2 MB | #########7 | 97% mkl-2019.5 | 205.2 MB | #########7 | 97% mkl-2019.5 | 205.2 MB | #########7 | 97% mkl-2019.5 | 205.2 MB | #########7 | 97% mkl-2019.5 | 205.2 MB | #########7 | 97% mkl-2019.5 | 205.2 MB | #########7 | 97% mkl-2019.5 | 205.2 MB | #########7 | 97% mkl-2019.5 | 205.2 MB | #########7 | 97% mkl-2019.5 | 205.2 MB | #########7 | 98% mkl-2019.5 | 205.2 MB | #########7 | 98% mkl-2019.5 | 205.2 MB | #########7 | 98% mkl-2019.5 | 205.2 MB | #########7 | 98% mkl-2019.5 | 205.2 MB | #########7 | 98% mkl-2019.5 | 205.2 MB | #########7 | 98% mkl-2019.5 | 205.2 MB | #########7 | 98% mkl-2019.5 | 205.2 MB | #########8 | 98% mkl-2019.5 | 205.2 MB | #########8 | 98% mkl-2019.5 | 205.2 MB | #########8 | 98% mkl-2019.5 | 205.2 MB | #########8 | 98% mkl-2019.5 | 205.2 MB | #########8 | 98% mkl-2019.5 | 205.2 MB | #########8 | 98% mkl-2019.5 | 205.2 MB | #########8 | 98% mkl-2019.5 | 205.2 MB | #########8 | 98% mkl-2019.5 | 205.2 MB | #########8 | 99% mkl-2019.5 | 205.2 MB | #########8 | 99% mkl-2019.5 | 205.2 MB | #########8 | 99% mkl-2019.5 | 205.2 MB | #########8 | 99% mkl-2019.5 | 205.2 MB | #########8 | 99% mkl-2019.5 | 205.2 MB | #########8 | 99% mkl-2019.5 | 205.2 MB | #########8 | 99% mkl-2019.5 | 205.2 MB | #########9 | 99% mkl-2019.5 | 205.2 MB | #########9 | 99% mkl-2019.5 | 205.2 MB | #########9 | 99% mkl-2019.5 | 205.2 MB | #########9 | 99% mkl-2019.5 | 205.2 MB | #########9 | 99% mkl-2019.5 | 205.2 MB | #########9 | 99% mkl-2019.5 | 205.2 MB | #########9 | 99% mkl-2019.5 | 205.2 MB | #########9 | 100% mkl-2019.5 | 205.2 MB | #########9 | 100% mkl-2019.5 | 205.2 MB | #########9 | 100% mkl-2019.5 | 205.2 MB | #########9 | 100% mkl-2019.5 | 205.2 MB | #########9 | 100% mkl-2019.5 | 205.2 MB | #########9 | 100% mkl-2019.5 | 205.2 MB | #########9 | 100% mkl-2019.5 | 205.2 MB | ########## | 100% expat-2.2.9 | 191 KB | | 0% expat-2.2.9 | 191 KB | ########## | 100% Downloading and Extracting Packages Preparing transaction: ...working... done Verifying transaction: ...working... done Executing transaction: ...working... done Collecting azureml-defaults Downloading azureml_defaults-1.2.0-py3-none-any.whl (3.0 kB) Collecting azureml-model-management-sdk==1.0.1b6.post1 Downloading azureml_model_management_sdk-1.0.1b6.post1-py2.py3-none-any.whl (130 kB) Collecting json-logging-py==0.2 Downloading json-logging-py-0.2.tar.gz (3.6 kB) Collecting configparser==3.7.4 Downloading configparser-3.7.4-py2.py3-none-any.whl (22 kB) Collecting werkzeug==0.16.1 Downloading Werkzeug-0.16.1-py2.py3-none-any.whl (327 kB) Collecting gunicorn==19.9.0 Downloading gunicorn-19.9.0-py2.py3-none-any.whl (112 kB) Collecting applicationinsights>=0.11.7 Downloading applicationinsights-0.11.9-py2.py3-none-any.whl (58 kB) Collecting azureml-dataprep[fuse]<1.4.0a,>=1.3.5 Downloading azureml_dataprep-1.3.6-py3-none-any.whl (26.6 MB) Collecting azureml-core~=1.2.0 Downloading azureml_core-1.2.0.post2-py3-none-any.whl (1.2 MB) Collecting flask==1.0.3 Downloading Flask-1.0.3-py2.py3-none-any.whl (92 kB) Requirement already satisfied: python-dateutil>=2.5.3 in /azureml-envs/azureml_53f7459b2d11a780edbefaa1f46263fa/lib/python3.6/site-packages (from azureml-model-management-sdk==1.0.1b6.post1->azureml-defaults->-r /azureml-environment-setup/condaenv.vjhm1qhc.requirements.txt (line 1)) (2.8.1) Requirement already satisfied: pytz>=2017.2 in /azureml-envs/azureml_53f7459b2d11a780edbefaa1f46263fa/lib/python3.6/site-packages (from azureml-model-management-sdk==1.0.1b6.post1->azureml-defaults->-r /azureml-environment-setup/condaenv.vjhm1qhc.requirements.txt (line 1)) (2019.3) Collecting liac-arff>=2.1.1 Downloading liac-arff-2.4.0.tar.gz (15 kB) Requirement already satisfied: pandas>=0.20.2 in /azureml-envs/azureml_53f7459b2d11a780edbefaa1f46263fa/lib/python3.6/site-packages (from azureml-model-management-sdk==1.0.1b6.post1->azureml-defaults->-r /azureml-environment-setup/condaenv.vjhm1qhc.requirements.txt (line 1)) (1.0.3) Collecting dill>=0.2.7.1 Downloading dill-0.3.1.1.tar.gz (151 kB) Requirement already satisfied: six>=1.10 in /azureml-envs/azureml_53f7459b2d11a780edbefaa1f46263fa/lib/python3.6/site-packages (from azureml-model-management-sdk==1.0.1b6.post1->azureml-defaults->-r /azureml-environment-setup/condaenv.vjhm1qhc.requirements.txt (line 1)) (1.14.0) Requirement already satisfied: requests>=2.17.3 in /azureml-envs/azureml_53f7459b2d11a780edbefaa1f46263fa/lib/python3.6/site-packages (from azureml-model-management-sdk==1.0.1b6.post1->azureml-defaults->-r /azureml-environment-setup/condaenv.vjhm1qhc.requirements.txt (line 1)) (2.23.0) Requirement already satisfied: numpy>=1.13.0 in /azureml-envs/azureml_53f7459b2d11a780edbefaa1f46263fa/lib/python3.6/site-packages (from azureml-model-management-sdk==1.0.1b6.post1->azureml-defaults->-r /azureml-environment-setup/condaenv.vjhm1qhc.requirements.txt (line 1)) (1.18.1) Collecting adal>=0.4.5 Downloading adal-1.2.2-py2.py3-none-any.whl (53 kB) Collecting azureml-dataprep-native<15.0.0,>=14.1.0 Downloading azureml_dataprep_native-14.1.0-cp36-cp36m-manylinux1_x86_64.whl (1.3 MB) Collecting azure-identity>=1.2.0 Downloading azure_identity-1.3.1-py2.py3-none-any.whl (61 kB) Collecting dotnetcore2>=2.1.13 Downloading dotnetcore2-2.1.13-py3-none-manylinux1_x86_64.whl (29.3 MB) Collecting cloudpickle>=1.1.0 Downloading cloudpickle-1.3.0-py2.py3-none-any.whl (26 kB) Collecting fusepy>=3.0.1; extra == "fuse" Downloading fusepy-3.0.1.tar.gz (11 kB) Collecting ruamel.yaml<=0.15.89,>=0.15.35 Downloading ruamel.yaml-0.15.89-cp36-cp36m-manylinux1_x86_64.whl (651 kB) Collecting azure-mgmt-resource<9.0.0,>=1.2.1 Downloading azure_mgmt_resource-8.0.1-py2.py3-none-any.whl (758 kB) Collecting msrest>=0.5.1 Downloading msrest-0.6.13-py2.py3-none-any.whl (83 kB) Collecting azure-mgmt-authorization>=0.40.0 Downloading azure_mgmt_authorization-0.60.0-py2.py3-none-any.whl (82 kB) Collecting jmespath Downloading jmespath-0.9.5-py2.py3-none-any.whl (24 kB) Collecting azure-mgmt-containerregistry>=2.0.0 Downloading azure_mgmt_containerregistry-2.8.0-py2.py3-none-any.whl (718 kB) Collecting azure-mgmt-keyvault>=0.40.0 Downloading azure_mgmt_keyvault-2.2.0-py2.py3-none-any.whl (89 kB) Collecting PyJWT Downloading PyJWT-1.7.1-py2.py3-none-any.whl (18 kB) Collecting azure-mgmt-storage>=1.5.0 Downloading azure_mgmt_storage-9.0.0-py2.py3-none-any.whl (525 kB) Collecting azure-graphrbac>=0.40.0 Downloading azure_graphrbac-0.61.1-py2.py3-none-any.whl (141 kB) Requirement already satisfied: urllib3>=1.23 in /azureml-envs/azureml_53f7459b2d11a780edbefaa1f46263fa/lib/python3.6/site-packages (from azureml-core~=1.2.0->azureml-defaults->-r /azureml-environment-setup/condaenv.vjhm1qhc.requirements.txt (line 1)) (1.25.7) Collecting SecretStorage Downloading SecretStorage-3.1.2-py3-none-any.whl (14 kB) Collecting contextlib2 Downloading contextlib2-0.6.0.post1-py2.py3-none-any.whl (9.8 kB) Requirement already satisfied: pyopenssl in /azureml-envs/azureml_53f7459b2d11a780edbefaa1f46263fa/lib/python3.6/site-packages (from azureml-core~=1.2.0->azureml-defaults->-r /azureml-environment-setup/condaenv.vjhm1qhc.requirements.txt (line 1)) (19.0.0) Collecting azure-common>=1.1.12 Downloading azure_common-1.1.25-py2.py3-none-any.whl (12 kB) Collecting jsonpickle Downloading jsonpickle-1.3-py2.py3-none-any.whl (32 kB) Collecting msrestazure>=0.4.33 Downloading msrestazure-0.6.3-py2.py3-none-any.whl (40 kB) Collecting backports.tempfile Downloading backports.tempfile-1.0-py2.py3-none-any.whl (4.4 kB) Collecting ndg-httpsclient Downloading ndg_httpsclient-0.5.1-py3-none-any.whl (34 kB) Requirement already satisfied: cryptography!=1.9,!=2.0.*,!=2.1.*,!=2.2.* in /azureml-envs/azureml_53f7459b2d11a780edbefaa1f46263fa/lib/python3.6/site-packages (from azureml-core~=1.2.0->azureml-defaults->-r /azureml-environment-setup/condaenv.vjhm1qhc.requirements.txt (line 1)) (2.5) Collecting pathspec Downloading pathspec-0.8.0-py2.py3-none-any.whl (28 kB) Collecting docker Downloading docker-4.2.0-py2.py3-none-any.whl (143 kB) Collecting itsdangerous>=0.24 Downloading itsdangerous-1.1.0-py2.py3-none-any.whl (16 kB) Collecting click>=5.1 Downloading click-7.1.1-py2.py3-none-any.whl (82 kB) Collecting Jinja2>=2.10 Downloading Jinja2-2.11.1-py2.py3-none-any.whl (126 kB) Requirement already satisfied: certifi>=2017.4.17 in /azureml-envs/azureml_53f7459b2d11a780edbefaa1f46263fa/lib/python3.6/site-packages (from requests>=2.17.3->azureml-model-management-sdk==1.0.1b6.post1->azureml-defaults->-r /azureml-environment-setup/condaenv.vjhm1qhc.requirements.txt (line 1)) (2020.4.5.1) Requirement already satisfied: idna<3,>=2.5 in /azureml-envs/azureml_53f7459b2d11a780edbefaa1f46263fa/lib/python3.6/site-packages (from requests>=2.17.3->azureml-model-management-sdk==1.0.1b6.post1->azureml-defaults->-r /azureml-environment-setup/condaenv.vjhm1qhc.requirements.txt (line 1)) (2.9) Requirement already satisfied: chardet<4,>=3.0.2 in /azureml-envs/azureml_53f7459b2d11a780edbefaa1f46263fa/lib/python3.6/site-packages (from requests>=2.17.3->azureml-model-management-sdk==1.0.1b6.post1->azureml-defaults->-r /azureml-environment-setup/condaenv.vjhm1qhc.requirements.txt (line 1)) (3.0.4) Collecting msal<2.0.0,>=1.0.0 Downloading msal-1.2.0-py2.py3-none-any.whl (46 kB) Collecting msal-extensions~=0.1.3 Downloading msal_extensions-0.1.3-py2.py3-none-any.whl (9.0 kB) Collecting azure-core<2.0.0,>=1.0.0 Downloading azure_core-1.4.0-py2.py3-none-any.whl (114 kB) Collecting distro>=1.2.0 Downloading distro-1.5.0-py2.py3-none-any.whl (18 kB) Collecting requests-oauthlib>=0.5.0 Downloading requests_oauthlib-1.3.0-py2.py3-none-any.whl (23 kB) Collecting isodate>=0.6.0 Downloading isodate-0.6.0-py2.py3-none-any.whl (45 kB) Collecting jeepney>=0.4.2 Downloading jeepney-0.4.3-py3-none-any.whl (21 kB) Collecting backports.weakref Downloading backports.weakref-1.0.post1-py2.py3-none-any.whl (5.2 kB) Collecting pyasn1>=0.1.1 Downloading pyasn1-0.4.8-py2.py3-none-any.whl (77 kB) Requirement already satisfied: asn1crypto>=0.21.0 in /azureml-envs/azureml_53f7459b2d11a780edbefaa1f46263fa/lib/python3.6/site-packages (from cryptography!=1.9,!=2.0.*,!=2.1.*,!=2.2.*->azureml-core~=1.2.0->azureml-defaults->-r /azureml-environment-setup/condaenv.vjhm1qhc.requirements.txt (line 1)) (1.3.0) Requirement already satisfied: cffi!=1.11.3,>=1.8 in /azureml-envs/azureml_53f7459b2d11a780edbefaa1f46263fa/lib/python3.6/site-packages (from cryptography!=1.9,!=2.0.*,!=2.1.*,!=2.2.*->azureml-core~=1.2.0->azureml-defaults->-r /azureml-environment-setup/condaenv.vjhm1qhc.requirements.txt (line 1)) (1.14.0) Collecting websocket-client>=0.32.0 Downloading websocket_client-0.57.0-py2.py3-none-any.whl (200 kB) Collecting MarkupSafe>=0.23 Downloading MarkupSafe-1.1.1-cp36-cp36m-manylinux1_x86_64.whl (27 kB) Collecting portalocker~=1.0 Downloading portalocker-1.6.0-py2.py3-none-any.whl (14 kB) Collecting oauthlib>=3.0.0 Downloading oauthlib-3.1.0-py2.py3-none-any.whl (147 kB) Requirement already satisfied: pycparser in /azureml-envs/azureml_53f7459b2d11a780edbefaa1f46263fa/lib/python3.6/site-packages (from cffi!=1.11.3,>=1.8->cryptography!=1.9,!=2.0.*,!=2.1.*,!=2.2.*->azureml-core~=1.2.0->azureml-defaults->-r /azureml-environment-setup/condaenv.vjhm1qhc.requirements.txt (line 1)) (2.20) Building wheels for collected packages: json-logging-py, liac-arff, dill, fusepy Building wheel for json-logging-py (setup.py): started Building wheel for json-logging-py (setup.py): finished with status 'done' Created wheel for json-logging-py: filename=json_logging_py-0.2-py3-none-any.whl size=3923 sha256=696d823b1c81fef17df683ba5c3441ab5db0416bd7be2230899bc478d094315b Stored in directory: /root/.cache/pip/wheels/e2/1d/52/535a274b9c2ce7d4064838f2bdb62013801281ef7d7f21e2ee Building wheel for liac-arff (setup.py): started Building wheel for liac-arff (setup.py): finished with status 'done' Created wheel for liac-arff: filename=liac_arff-2.4.0-py3-none-any.whl size=13333 sha256=2e920f4163d3fe21d07dc9f6b161f3ffb32f6ff0bbc5c139dee1d8dd201d7a9f Stored in directory: /root/.cache/pip/wheels/ba/2a/e1/6f7be2e2ea150e2486bff64fd6f0670f4f35f4c8f31c819fb8 Building wheel for dill (setup.py): started Building wheel for dill (setup.py): finished with status 'done' Created wheel for dill: filename=dill-0.3.1.1-py3-none-any.whl size=78530 sha256=b2f132b2a0f3ebbe6de68e33e730d17a6bbc2d515c31fd0b16b0823a282b9246 Stored in directory: /root/.cache/pip/wheels/09/84/74/d2b4feb9ac9488bc83c475cb2cbe8e8b7d9cea8320d32f3787 Building wheel for fusepy (setup.py): started Building wheel for fusepy (setup.py): finished with status 'done' Created wheel for fusepy: filename=fusepy-3.0.1-py3-none-any.whl size=10503 sha256=e9607443d8dfeaae6c454bb9c0ef6a88d97288cc5bfd349494cd971288a6b3e7 Stored in directory: /root/.cache/pip/wheels/21/5c/83/1dd7e8a232d12227e5410120f4374b33adeb4037473105b079 Successfully built json-logging-py liac-arff dill fusepy Installing collected packages: liac-arff, dill, PyJWT, adal, azureml-model-management-sdk, json-logging-py, configparser, werkzeug, gunicorn, applicationinsights, azureml-dataprep-native, msal, portalocker, msal-extensions, azure-core, azure-identity, distro, dotnetcore2, cloudpickle, fusepy, azureml-dataprep, ruamel.yaml, azure-common, oauthlib, requests-oauthlib, isodate, msrest, msrestazure, azure-mgmt-resource, azure-mgmt-authorization, jmespath, azure-mgmt-containerregistry, azure-mgmt-keyvault, azure-mgmt-storage, azure-graphrbac, jeepney, SecretStorage, contextlib2, jsonpickle, backports.weakref, backports.tempfile, pyasn1, ndg-httpsclient, pathspec, websocket-client, docker, azureml-core, itsdangerous, click, MarkupSafe, Jinja2, flask, azureml-defaults Successfully installed Jinja2-2.11.1 MarkupSafe-1.1.1 PyJWT-1.7.1 SecretStorage-3.1.2 adal-1.2.2 applicationinsights-0.11.9 azure-common-1.1.25 azure-core-1.4.0 azure-graphrbac-0.61.1 azure-identity-1.3.1 azure-mgmt-authorization-0.60.0 azure-mgmt-containerregistry-2.8.0 azure-mgmt-keyvault-2.2.0 azure-mgmt-resource-8.0.1 azure-mgmt-storage-9.0.0 azureml-core-1.2.0.post2 azureml-dataprep-1.3.6 azureml-dataprep-native-14.1.0 azureml-defaults-1.2.0 azureml-model-management-sdk-1.0.1b6.post1 backports.tempfile-1.0 backports.weakref-1.0.post1 click-7.1.1 cloudpickle-1.3.0 configparser-3.7.4 contextlib2-0.6.0.post1 dill-0.3.1.1 distro-1.5.0 docker-4.2.0 dotnetcore2-2.1.13 flask-1.0.3 fusepy-3.0.1 gunicorn-19.9.0 isodate-0.6.0 itsdangerous-1.1.0 jeepney-0.4.3 jmespath-0.9.5 json-logging-py-0.2 jsonpickle-1.3 liac-arff-2.4.0 msal-1.2.0 msal-extensions-0.1.3 msrest-0.6.13 msrestazure-0.6.3 ndg-httpsclient-0.5.1 oauthlib-3.1.0 pathspec-0.8.0 portalocker-1.6.0 pyasn1-0.4.8 requests-oauthlib-1.3.0 ruamel.yaml-0.15.89 websocket-client-0.57.0 werkzeug-0.16.1 # # To activate this environment, use: # > source activate /azureml-envs/azureml_53f7459b2d11a780edbefaa1f46263fa # # To deactivate an active environment, use: # > source deactivate # Removing intermediate container 1da2c76e922f ---> 59fb40152ab5 Step 15/22 : ENV PATH /azureml-envs/azureml_53f7459b2d11a780edbefaa1f46263fa/bin:$PATH ---> Running in 9e33fd85c589 Removing intermediate container 9e33fd85c589 ---> 479f84d92dce Step 16/22 : ENV AZUREML_CONDA_ENVIRONMENT_PATH /azureml-envs/azureml_53f7459b2d11a780edbefaa1f46263fa ---> Running in 88ec05ba4e21 Removing intermediate container 88ec05ba4e21 ---> cb82b702bad6 Step 17/22 : ENV LD_LIBRARY_PATH /azureml-envs/azureml_53f7459b2d11a780edbefaa1f46263fa/lib:$LD_LIBRARY_PATH ---> Running in a0aeaf0b2cd2 Removing intermediate container a0aeaf0b2cd2 ---> cb38a0ab4672 Step 18/22 : COPY azureml-environment-setup/spark_cache.py azureml-environment-setup/log4j.properties /azureml-environment-setup/ ---> 6bc39e22177f Step 19/22 : RUN if [ $SPARK_HOME ]; then /bin/bash -c '$SPARK_HOME/bin/spark-submit /azureml-environment-setup/spark_cache.py'; fi ---> Running in 6c88b2149ba2 Removing intermediate container 6c88b2149ba2 ---> 51bb66b5b04f Step 20/22 : ENV AZUREML_ENVIRONMENT_IMAGE True ---> Running in 90836194778e Removing intermediate container 90836194778e ---> 9518957272e2 Step 21/22 : CMD ["bash"] ---> Running in 972f8c771ca9 Removing intermediate container 972f8c771ca9 ---> f6d51b4369e8 Step 22/22 : EXPOSE 5001 8883 8888 ---> Running in 0c647ed1ddce Removing intermediate container 0c647ed1ddce ---> 9391fb3a6709 Successfully built 9391fb3a6709 Successfully tagged cvwsbbd59dea.azurecr.io/azureml/azureml_a9f62c4b6fbf408218d5b60ae4f43f11:latest 2020/04/09 20:43:35 Successfully executed container: acb_step_0 2020/04/09 20:43:35 Executing step ID: acb_step_1. Timeout(sec): 5400, Working directory: '', Network: 'acb_default_network' 2020/04/09 20:43:35 Pushing image: cvwsbbd59dea.azurecr.io/azureml/azureml_a9f62c4b6fbf408218d5b60ae4f43f11:latest, attempt 1 The push refers to repository [cvwsbbd59dea.azurecr.io/azureml/azureml_a9f62c4b6fbf408218d5b60ae4f43f11] 1bf21c5cbd6d: Preparing b156ccc9c968: Preparing fa581aa133db: Preparing dcf2f1c2d5fe: Preparing 7049b31c7d29: Preparing 7ca872f79cb3: Preparing 597926253e5a: Preparing a52b426fb3ad: Preparing a49a0ffb7d87: Preparing 5351bc49e1c0: Preparing e1171d4d60ca: Preparing 6ef1a8ae63b7: Preparing 85389f9ead9e: Preparing f2608f66a0e3: Preparing 0e259b09e5f4: Preparing 340dc32eb998: Preparing df18b66efaa6: Preparing ccdb13a20bf2: Preparing 9513cdf4e497: Preparing 7f083f9454c0: Preparing 29f36b5893dc: Preparing 7ca872f79cb3: Waiting 597926253e5a: Waiting a52b426fb3ad: Waiting a49a0ffb7d87: Waiting 5351bc49e1c0: Waiting e1171d4d60ca: Waiting 6ef1a8ae63b7: Waiting 85389f9ead9e: Waiting f2608f66a0e3: Waiting 0e259b09e5f4: Waiting 340dc32eb998: Waiting df18b66efaa6: Waiting ccdb13a20bf2: Waiting 9513cdf4e497: Waiting 7f083f9454c0: Waiting 29f36b5893dc: Waiting fa581aa133db: Pushed 7049b31c7d29: Pushed 1bf21c5cbd6d: Pushed dcf2f1c2d5fe: Pushed a49a0ffb7d87: Pushed a52b426fb3ad: Pushed 7ca872f79cb3: Pushed e1171d4d60ca: Layer already exists 85389f9ead9e: Layer already exists 6ef1a8ae63b7: Layer already exists f2608f66a0e3: Layer already exists 0e259b09e5f4: Layer already exists 340dc32eb998: Layer already exists df18b66efaa6: Layer already exists ccdb13a20bf2: Layer already exists 9513cdf4e497: Layer already exists 29f36b5893dc: Layer already exists 7f083f9454c0: Layer already exists 597926253e5a: Pushed 5351bc49e1c0: Pushed b156ccc9c968: Pushed latest: digest: sha256:f9f43c62c1a99f949d80c18af70fdd175cebc8a0994cc0d3a8f505612ca3a01b size: 4727 2020/04/09 20:47:40 Successfully pushed image: cvwsbbd59dea.azurecr.io/azureml/azureml_a9f62c4b6fbf408218d5b60ae4f43f11:latest 2020/04/09 20:47:40 Step ID: acb_step_0 marked as successful (elapsed time in seconds: 698.968631) 2020/04/09 20:47:40 Populating digests for step ID: acb_step_0... 2020/04/09 20:47:43 Successfully populated digests for step ID: acb_step_0 2020/04/09 20:47:43 Step ID: acb_step_1 marked as successful (elapsed time in seconds: 245.022024) 2020/04/09 20:47:43 The following dependencies were found: 2020/04/09 20:47:43 - image: registry: cvwsbbd59dea.azurecr.io repository: azureml/azureml_a9f62c4b6fbf408218d5b60ae4f43f11 tag: latest digest: sha256:f9f43c62c1a99f949d80c18af70fdd175cebc8a0994cc0d3a8f505612ca3a01b runtime-dependency: registry: mcr.microsoft.com repository: azureml/base tag: intelmpi2018.3-ubuntu16.04 digest: sha256:a1b514f3ba884b9a7695cbba5638933ddaf222e8ce3e8c81e8cdf861679abb05 buildtime-dependency: - registry: mcr.microsoft.com repository: azureml/o16n-base/python-assets tag: latest digest: sha256:065414379a261e7931bd91518c83113085848ba19890ef75e8f5e6ffd62c6b86 git: {} Run ID: ca4j was successful after 15m53s Image Build Status: Succeeded
<azureml.core.environment.ImageBuildDetails at 0x1c3529386a0>
We will now use the docker image that was built from the environment that we specified to deploy the model to Azure Container Instance (ACI).
In this notebook, we use Azure Container Instances (ACI) which are good for quick and cost-effective development/test deployment scenarios.
To set them up properly, we need to indicate the number of CPU cores and the amount of memory we want to allocate to our web service. Optional tags and descriptions are also available for us to identify the instances in AzureML when looking at the Compute
tab in the Azure Portal.
NOTE: Since the docker image was built in the previous step, we will be able to reuse the built image to deploy the model to other compute targets as well, allowing us to reduce the time spent on building the docker images.
To learn more about reusing environments across Azure Machine Learning, please refer to the documentation page
Note: For production workloads, it is better to use Azure Kubernetes Service (AKS) instead. We will demonstrate how to do this in the next notebook.
from azureml.core import Webservice
from azureml.core.model import InferenceConfig
from azureml.core.webservice import AciWebservice
from azureml.exceptions import WebserviceException
service_name = 'im-classif-websvc'
# Remove any existing service under the same name.
try:
Webservice(ws, service_name).delete()
except WebserviceException:
pass
inference_config = InferenceConfig(entry_script='score.py', environment=cv_test_env)
# If you would like to increase the number of cpu cores and memory used for the webservice,
# update the corresponding settings for cpu_cores and memory_gb
aci_config = AciWebservice.deploy_configuration(cpu_cores=1, memory_gb=1)
The final step to deploying our web service is to call WebService.deploy_from_image()
. This function uses the Docker image and the deployment configuration we created above to perform the following:
init()
function in our scoring fileservice = Model.deploy(workspace=ws,
name=service_name,
models=[model],
inference_config=inference_config,
deployment_config=aci_config)
# Deploy the web service
service.wait_for_deployment(show_output=True)
Running................................................ Succeeded ACI service creation operation finished, operation "Succeeded"
When successful, we expect to see the following:
Creating service Running ..... SucceededACI service creation operation finished, operation "Succeeded"
In the case where the deployment is not successful, we can look at the image and service logs to debug. These instructions can also be helpful.
# Access the service logs
# print(service.get_logs())
# Retrieve the service status
print(f"Service {service.name} is _{service.state}_ and available at {service.scoring_uri}")
Service im-classif-websvc is _Healthy_ and available at http://49381d74-9c78-4f1c-b784-ae8baab16766.eastus.azurecontainer.io/score
We can also check the presence and status of both our new Docker image and web service on the Azure portal, under the Images
and Deployments
tabs, respectively.
As we discussed above, Azure Container Instances tend to be used to develop and test deployments. They are typically configured with CPUs, which usually suffice when the number of requests per second is not too high. When working with several instances, we can configure them further by specifically allocating CPU resources to each of them.
For production requirements, i.e. when > 100 requests per second are expected, we recommend deploying models to Azure Kubernetes Service (AKS). It is a convenient infrastructure as it manages hosted Kubernetes environments, and makes it easy to deploy and manage containerized applications without container orchestration expertise. It also supports deployments with CPU clusters and deployments with GPU clusters.
We will see an example of this in the next notebook.
Throughout the notebook, we used a workspace and Azure container instances. To get a sense of the cost we incurred, we can refer to this calculator. We can also navigate to the Cost Management + Billing pane on the portal, click on our subscription ID, and click on the Cost Analysis tab to check our credit usage.
In order not to incur extra costs, let's delete the resources we no longer need.
Once we have verified that our web service works well on ACI (cf. "Next steps" section below), we can delete it. This helps reduce costs, since the container group we were paying for no longer exists, and allows us to keep our workspace clean.
# service.delete()
If our goal is to continue using our workspace, we should keep it available. On the contrary, if we plan on no longer using it and its associated resources, we can delete it.
Note: Deleting the workspace will delete all the experiments, outputs, models, Docker images, deployments, etc. that we created in that workspace
# ws.delete(delete_dependent_resources=True)
# This deletes our workspace, the container registry, the account storage, Application Insights and the key vault
In the next tutorial, we will leverage the same Docker image, and deploy our model on AKS. We will then test both of our web services in the 23_aci_aks_web_service_testing.ipynb notebook.