============================= test session starts ==============================
platform linux -- Python 3.7.7, pytest-5.3.2, py-1.9.0, pluggy-0.13.1
rootdir: /home/aryaman4/ParlAI, inifile: pytest.ini
plugins: requests-mock-1.7.0
collected 328 items

test_apex.py ...                                                         [  0%]
test_build_data.py sss                                                   [  1%]
test_chat_service.py .                                                   [  2%]
test_code.py .                                                           [  2%]
test_conversations.py .                                                  [  2%]
test_dict.py ...............                                             [  7%]
test_display_data.py .                                                   [  7%]
test_distributed.py sssssss                                              [  9%]
test_dynamicbatching.py ...................                              [ 15%]
test_eval_model.py .........                                             [ 18%]
test_examples.py ..                                                      [ 18%]
test_hogwild.py ..                                                       [ 19%]
test_image_seq2seq.py ssss.                                              [ 21%]
test_import.py ......                                                    [ 22%]
test_interative.py ..                                                    [ 23%]
test_loader.py ......F                                                   [ 25%]
test_lr_schedulers.py ...                                                [ 26%]
test_mem_efficient_fp16.py ssssss                                        [ 28%]
test_memnn.py ...                                                        [ 29%]
test_messages.py .                                                       [ 29%]
test_metrics.py ................                                         [ 34%]
test_multigpu.py sssssss                                                 [ 36%]
test_multiworld.py ...                                                   [ 37%]
test_opt.py ..                                                           [ 38%]
test_params.py .....                                                     [ 39%]
test_self_chat.py ..                                                     [ 40%]
test_seq2seq.py ......                                                   [ 42%]
test_starspace.py .                                                      [ 42%]
test_ta_inheritence.py ..                                                [ 42%]
test_teachers.py .s...................                                   [ 49%]
test_tfidf_retriever.py .                                                [ 49%]
test_tga.py ...                                                          [ 50%]
test_threadutils.py .....                                                [ 52%]
test_torch_agent.py ...............                                      [ 56%]
test_tra.py ssssssss.........................                            [ 66%]
test_train_model.py ....                                                 [ 67%]
test_transformers.py .........................ss.                        [ 76%]
test_unigram.py .                                                        [ 76%]
test_utils.py ........                                                   [ 79%]
test_utils_torch.py .................                                    [ 84%]
test_wrapper.py .                                                        [ 84%]
test_zootasks.py F.F..                                                   [ 86%]
datatests/test_new_tasks.py .                                            [ 86%]
nightly/cpu/test_alice.py F                                              [ 86%]
nightly/cpu/test_urls.py F                                               [ 87%]
nightly/gpu/test_bart.py s                                               [ 87%]
nightly/gpu/test_bert.py ss                                              [ 88%]
nightly/gpu/test_controllable.py ssssssssss                              [ 91%]
nightly/gpu/test_dodeca.py sss                                           [ 92%]
nightly/gpu/test_drqa.py s                                               [ 92%]
nightly/gpu/test_safety_modules.py s.                                    [ 92%]
nightly/gpu/test_self_feeding.py sss                                     [ 93%]
nightly/gpu/test_transresnet.py s                                        [ 94%]
nightly/gpu/test_transresnet_multimodal.py s                             [ 94%]
nightly/gpu/test_tutorial_generator.py F                                 [ 94%]
nightly/gpu/test_wizard.py ssF                                           [ 95%]
tasks/test_blended_skill_talk.py ..F...                                  [ 97%]
tasks/test_empathetic_dialogues.py ..                                    [ 98%]
tasks/test_igc.py Fs                                                     [ 98%]
tasks/test_wizard_of_wikipedia.py F                                      [ 99%]
tasks/convai2/test_convai2_worlds.py .                                   [ 99%]
tasks/self_chat/test_worlds.py ..                                        [100%]

=================================== FAILURES ===================================
_______________ TestLoadParlAIInternal.test_load_internal_agent ________________

self = <tests.test_loader.TestLoadParlAIInternal testMethod=test_load_internal_agent>

    def setUp(self):
        # create a parlai_internal folder if it does not exist
        self.parlai_internal_exists = os.path.exists('parlai_internal')
        if not self.parlai_internal_exists:
            os.mkdir('parlai_internal')
    
        self.agent_folder_exists = os.path.exists('parlai_internal/agents')
        if not self.agent_folder_exists:
            os.mkdir('parlai_internal/agents')
    
        # copy over the example agent from example_parlai_internal
        shutil.copytree(
>           'example_parlai_internal/agents/parrot', 'parlai_internal/agents/parrot'
        )

test_loader.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

src = 'example_parlai_internal/agents/parrot'
dst = 'parlai_internal/agents/parrot', symlinks = False, ignore = None
copy_function = <function copy2 at 0x7f2338192e60>
ignore_dangling_symlinks = False

    def copytree(src, dst, symlinks=False, ignore=None, copy_function=copy2,
                 ignore_dangling_symlinks=False):
        """Recursively copy a directory tree.
    
        The destination directory must not already exist.
        If exception(s) occur, an Error is raised with a list of reasons.
    
        If the optional symlinks flag is true, symbolic links in the
        source tree result in symbolic links in the destination tree; if
        it is false, the contents of the files pointed to by symbolic
        links are copied. If the file pointed by the symlink doesn't
        exist, an exception will be added in the list of errors raised in
        an Error exception at the end of the copy process.
    
        You can set the optional ignore_dangling_symlinks flag to true if you
        want to silence this exception. Notice that this has no effect on
        platforms that don't support os.symlink.
    
        The optional ignore argument is a callable. If given, it
        is called with the `src` parameter, which is the directory
        being visited by copytree(), and `names` which is the list of
        `src` contents, as returned by os.listdir():
    
            callable(src, names) -> ignored_names
    
        Since copytree() is called recursively, the callable will be
        called once for each directory that is copied. It returns a
        list of names relative to the `src` directory that should
        not be copied.
    
        The optional copy_function argument is a callable that will be used
        to copy each file. It will be called with the source path and the
        destination path as arguments. By default, copy2() is used, but any
        function that supports the same signature (like copy()) can be used.
    
        """
>       names = os.listdir(src)
E       FileNotFoundError: [Errno 2] No such file or directory: 'example_parlai_internal/agents/parrot'

../../anaconda3/envs/ParlAI/lib/python3.7/shutil.py:318: FileNotFoundError
________________________ TestZooAndTasks.test_tasklist _________________________

self = <tests.test_zootasks.TestZooAndTasks testMethod=test_tasklist>

    def test_tasklist(self):
        """
        Check the task list for issues.
        """
        self._check_directory(
            "task_list",
            task_list,
            "parlai/tasks",
            "task",
>           ignore=['fromfile', 'interactive', 'jsonfile', 'wrapper'],
        )

test_zootasks.py:77: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
test_zootasks.py:120: in _check_directory
    self.assertTrue(False, "\n".join(errors))
E   AssertionError: False is not true : anli exists in task_list, but parlai/tasks/anli isn't a directory
E   dbll_movie exists in task_list, but parlai/tasks/dbll_movie isn't a directory
E   sst exists in task_list, but parlai/tasks/sst isn't a directory
E   igc exists in task_list, but parlai/tasks/igc isn't a directory
E   woz exists in task_list, but parlai/tasks/woz isn't a directory
E   image_chat exists in task_list, but parlai/tasks/image_chat isn't a directory
E   iwslt14 exists in task_list, but parlai/tasks/iwslt14 isn't a directory
E   integration_tests exists in task_list, but parlai/tasks/integration_tests isn't a directory
E   self_feeding exists in task_list, but parlai/tasks/self_feeding isn't a directory
E   coco_caption exists in task_list, but parlai/tasks/coco_caption isn't a directory
E   talkthewalk exists in task_list, but parlai/tasks/talkthewalk isn't a directory
E   coqa exists in task_list, but parlai/tasks/coqa isn't a directory
E   wizard_of_wikipedia exists in task_list, but parlai/tasks/wizard_of_wikipedia isn't a directory
E   vqa_v2 exists in task_list, but parlai/tasks/vqa_v2 isn't a directory
E   wmt exists in task_list, but parlai/tasks/wmt isn't a directory
E   taskmaster exists in task_list, but parlai/tasks/taskmaster isn't a directory
E   dialogue_safety exists in task_list, but parlai/tasks/dialogue_safety isn't a directory
E   ubuntu exists in task_list, but parlai/tasks/ubuntu isn't a directory
E   ms_marco exists in task_list, but parlai/tasks/ms_marco isn't a directory
E   eli5 exists in task_list, but parlai/tasks/eli5 isn't a directory
E   personality_captions exists in task_list, but parlai/tasks/personality_captions isn't a directory
E   self_chat exists in task_list, but parlai/tasks/self_chat isn't a directory
E   redial exists in task_list, but parlai/tasks/redial isn't a directory
E   nlvr exists in task_list, but parlai/tasks/nlvr isn't a directory
E   ccpe exists in task_list, but parlai/tasks/ccpe isn't a directory
E   snli exists in task_list, but parlai/tasks/snli isn't a directory
E   mnist_qa exists in task_list, but parlai/tasks/mnist_qa isn't a directory
E   cornell_movie exists in task_list, but parlai/tasks/cornell_movie isn't a directory
E   wikimovies exists in task_list, but parlai/tasks/wikimovies isn't a directory
E   visdial exists in task_list, but parlai/tasks/visdial isn't a directory
E   clevr exists in task_list, but parlai/tasks/clevr isn't a directory
E   convai2_wild_evaluation exists in task_list, but parlai/tasks/convai2_wild_evaluation isn't a directory
E   twitter exists in task_list, but parlai/tasks/twitter isn't a directory
E   copa exists in task_list, but parlai/tasks/copa isn't a directory
E   convai2 exists in task_list, but parlai/tasks/convai2 isn't a directory
E   multiwoz exists in task_list, but parlai/tasks/multiwoz isn't a directory
E   simplequestions exists in task_list, but parlai/tasks/simplequestions isn't a directory
E   qangaroo exists in task_list, but parlai/tasks/qangaroo isn't a directory
E   flickr30k exists in task_list, but parlai/tasks/flickr30k isn't a directory
E   dbll_babi exists in task_list, but parlai/tasks/dbll_babi isn't a directory
E   booktest exists in task_list, but parlai/tasks/booktest isn't a directory
E   wikipedia exists in task_list, but parlai/tasks/wikipedia isn't a directory
E   insuranceqa exists in task_list, but parlai/tasks/insuranceqa isn't a directory
E   personachat exists in task_list, but parlai/tasks/personachat isn't a directory
E   babi exists in task_list, but parlai/tasks/babi isn't a directory
E   mctest exists in task_list, but parlai/tasks/mctest isn't a directory
E   convai_chitchat exists in task_list, but parlai/tasks/convai_chitchat isn't a directory
E   cbt exists in task_list, but parlai/tasks/cbt isn't a directory
E   funpedia exists in task_list, but parlai/tasks/funpedia isn't a directory
E   aqua exists in task_list, but parlai/tasks/aqua isn't a directory
E   decanlp exists in task_list, but parlai/tasks/decanlp isn't a directory
E   amazon_qa exists in task_list, but parlai/tasks/amazon_qa isn't a directory
E   opensubtitles exists in task_list, but parlai/tasks/opensubtitles isn't a directory
E   taskntalk exists in task_list, but parlai/tasks/taskntalk isn't a directory
E   qadailymail exists in task_list, but parlai/tasks/qadailymail isn't a directory
E   qacnn exists in task_list, but parlai/tasks/qacnn isn't a directory
E   mwsc exists in task_list, but parlai/tasks/mwsc isn't a directory
E   hotpotqa exists in task_list, but parlai/tasks/hotpotqa isn't a directory
E   squad2 exists in task_list, but parlai/tasks/squad2 isn't a directory
E   light_dialog exists in task_list, but parlai/tasks/light_dialog isn't a directory
E   cnn_dm exists in task_list, but parlai/tasks/cnn_dm isn't a directory
E   triviaqa exists in task_list, but parlai/tasks/triviaqa isn't a directory
E   empathetic_dialogues exists in task_list, but parlai/tasks/empathetic_dialogues isn't a directory
E   dialog_babi exists in task_list, but parlai/tasks/dialog_babi isn't a directory
E   dialogue_nli exists in task_list, but parlai/tasks/dialogue_nli isn't a directory
E   blended_skill_talk exists in task_list, but parlai/tasks/blended_skill_talk isn't a directory
E   dream exists in task_list, but parlai/tasks/dream isn't a directory
E   holl_e exists in task_list, but parlai/tasks/holl_e isn't a directory
E   dialog_babi_plus exists in task_list, but parlai/tasks/dialog_babi_plus isn't a directory
E   onecommon exists in task_list, but parlai/tasks/onecommon isn't a directory
E   light_genderation_bias exists in task_list, but parlai/tasks/light_genderation_bias isn't a directory
E   mturkwikimovies exists in task_list, but parlai/tasks/mturkwikimovies isn't a directory
E   commonsenseqa exists in task_list, but parlai/tasks/commonsenseqa isn't a directory
E   webquestions exists in task_list, but parlai/tasks/webquestions isn't a directory
E   vqa_v1 exists in task_list, but parlai/tasks/vqa_v1 isn't a directory
E   dstc7 exists in task_list, but parlai/tasks/dstc7 isn't a directory
E   fvqa exists in task_list, but parlai/tasks/fvqa isn't a directory
E   wikiqa exists in task_list, but parlai/tasks/wikiqa isn't a directory
E   scan exists in task_list, but parlai/tasks/scan isn't a directory
E   moviedialog exists in task_list, but parlai/tasks/moviedialog isn't a directory
E   airdialogue exists in task_list, but parlai/tasks/airdialogue isn't a directory
E   multinli exists in task_list, but parlai/tasks/multinli isn't a directory
E   quac exists in task_list, but parlai/tasks/quac isn't a directory
E   dealnodeal exists in task_list, but parlai/tasks/dealnodeal isn't a directory
E   narrative_qa exists in task_list, but parlai/tasks/narrative_qa isn't a directory
E   c3 exists in task_list, but parlai/tasks/c3 isn't a directory
E   nli exists in task_list, but parlai/tasks/nli isn't a directory
E   dailydialog exists in task_list, but parlai/tasks/dailydialog isn't a directory
E   squad exists in task_list, but parlai/tasks/squad isn't a directory
E   qasrl exists in task_list, but parlai/tasks/qasrl isn't a directory
E   mutualfriends exists in task_list, but parlai/tasks/mutualfriends isn't a directory
E   personalized_dialog exists in task_list, but parlai/tasks/personalized_dialog isn't a directory
E   qazre exists in task_list, but parlai/tasks/qazre isn't a directory
E   dialogue_qe exists in task_list, but parlai/tasks/dialogue_qe isn't a directory
E   wikisql exists in task_list, but parlai/tasks/wikisql isn't a directory
------------------------------ Captured log call -------------------------------
DEBUG    git.cmd:cmd.py:722 Popen(['git', 'ls-files'], cwd=/home/aryaman4/ParlAI/tests, universal_newlines=False, shell=None, istream=None)
_________________________ TestZooAndTasks.test_zoolist _________________________

self = <tests.test_zootasks.TestZooAndTasks testMethod=test_zoolist>

    def test_zoolist(self):
        """
        Check the zoo list for issues.
        """
        self._check_directory(
>           "model_list", model_list, "parlai/zoo", "id", ignore=ZOO_EXCEPTIONS
        )

test_zootasks.py:85: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
test_zootasks.py:120: in _check_directory
    self.assertTrue(False, "\n".join(errors))
E   AssertionError: False is not true : blender exists in model_list, but parlai/zoo/blender isn't a directory
E   image_chat exists in model_list, but parlai/zoo/image_chat isn't a directory
E   wikipedia_20161221 exists in model_list, but parlai/zoo/wikipedia_20161221 isn't a directory
E   drqa exists in model_list, but parlai/zoo/drqa isn't a directory
E   light exists in model_list, but parlai/zoo/light isn't a directory
E   controllable_dialogue exists in model_list, but parlai/zoo/controllable_dialogue isn't a directory
E   bart exists in model_list, but parlai/zoo/bart isn't a directory
E   wikipedia_full exists in model_list, but parlai/zoo/wikipedia_full isn't a directory
E   self_feeding exists in model_list, but parlai/zoo/self_feeding isn't a directory
E   wizard_of_wikipedia exists in model_list, but parlai/zoo/wizard_of_wikipedia isn't a directory
E   tutorial_transformer_generator exists in model_list, but parlai/zoo/tutorial_transformer_generator isn't a directory
E   dialogue_safety exists in model_list, but parlai/zoo/dialogue_safety isn't a directory
E   personality_captions exists in model_list, but parlai/zoo/personality_captions isn't a directory
E   dodecadialogue exists in model_list, but parlai/zoo/dodecadialogue isn't a directory
E   unittest exists in model_list, but parlai/zoo/unittest isn't a directory
E   blended_skill_talk exists in model_list, but parlai/zoo/blended_skill_talk isn't a directory
E   pretrained_transformers exists in model_list, but parlai/zoo/pretrained_transformers isn't a directory
------------------------------ Captured log call -------------------------------
DEBUG    git.cmd:cmd.py:722 Popen(['git', 'ls-files'], cwd=/home/aryaman4/ParlAI/tests, universal_newlines=False, shell=None, istream=None)
__________________________ TestAlice.test_alice_runs ___________________________

self = <test_alice.TestAlice testMethod=test_alice_runs>

    def test_alice_runs(self):
        """
        Test that the ALICE agent is stable over time.
        """
>       valid, test = testing_utils.eval_model(dict(task='convai2', model='alice'))

nightly/cpu/test_alice.py:17: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
../parlai/utils/testing.py:312: in eval_model
    valid = None if skip_valid else ems.EvalModel.main(**opt)
../parlai/scripts/script.py:77: in main
    return cls._run_kwargs(kwargs)
../parlai/scripts/script.py:55: in _run_kwargs
    return script.run()
../parlai/scripts/eval_model.py:209: in run
    return eval_model(self.opt)
../parlai/scripts/eval_model.py:177: in eval_model
    agent = create_agent(opt, requireModelExists=True)
../parlai/core/agents.py:389: in create_agent
    model = model_class(opt)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <parlai.agents.alice.alice.AliceAgent object at 0x7f21bc33d150>
opt = {'init_opt': None, 'show_advanced_args': False, 'task': 'convai2', 'download_path': '/home/aryaman4/ParlAI/downloads',...e/aryaman4/ParlAI', 'override': {'datatype': 'valid', 'task': 'convai2', 'model': 'alice'}, 'starttime': 'Jul07_23-30'}
shared = None

    def __init__(self, opt, shared=None):
        """
        Initialize this agent.
        """
        if not IMPORT_OKAY:
            raise ImportError(
>               "ALICE agent needs python-aiml installed. Please run:\n "
                "`pip install git+https://github.com/paulovn/python-aiml.git`."
            )
E           ImportError: ALICE agent needs python-aiml installed. Please run:
E            `pip install git+https://github.com/paulovn/python-aiml.git`.

../parlai/agents/alice/alice.py:37: ImportError
_________________________ TestUtils.test_http_response _________________________

self = <urllib3.connection.HTTPSConnection object at 0x7f21bc1bf0d0>

    def _new_conn(self):
        """ Establish a socket connection and set nodelay settings on it.
    
        :return: New socket connection.
        """
        extra_kw = {}
        if self.source_address:
            extra_kw["source_address"] = self.source_address
    
        if self.socket_options:
            extra_kw["socket_options"] = self.socket_options
    
        try:
            conn = connection.create_connection(
>               (self._dns_host, self.port), self.timeout, **extra_kw
            )

../../anaconda3/envs/ParlAI/lib/python3.7/site-packages/urllib3/connection.py:160: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

address = ('nlp.stanford.edu', 443), timeout = None, source_address = None
socket_options = [(6, 1, 1)]

    def create_connection(
        address,
        timeout=socket._GLOBAL_DEFAULT_TIMEOUT,
        source_address=None,
        socket_options=None,
    ):
        """Connect to *address* and return the socket object.
    
        Convenience function.  Connect to *address* (a 2-tuple ``(host,
        port)``) and return the socket object.  Passing the optional
        *timeout* parameter will set the timeout on the socket instance
        before attempting to connect.  If no *timeout* is supplied, the
        global default timeout setting returned by :func:`getdefaulttimeout`
        is used.  If *source_address* is set it must be a tuple of (host, port)
        for the socket to bind as a source address before making the connection.
        An host of '' or port 0 tells the OS to use the default.
        """
    
        host, port = address
        if host.startswith("["):
            host = host.strip("[]")
        err = None
    
        # Using the value from allowed_gai_family() in the context of getaddrinfo lets
        # us select whether to work with IPv4 DNS records, IPv6 records, or both.
        # The original create_connection function always returns all records.
        family = allowed_gai_family()
    
        for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
            af, socktype, proto, canonname, sa = res
            sock = None
            try:
                sock = socket.socket(af, socktype, proto)
    
                # If provided, set socket level options before connecting.
                _set_socket_options(sock, socket_options)
    
                if timeout is not socket._GLOBAL_DEFAULT_TIMEOUT:
                    sock.settimeout(timeout)
                if source_address:
                    sock.bind(source_address)
                sock.connect(sa)
                return sock
    
            except socket.error as e:
                err = e
                if sock is not None:
                    sock.close()
                    sock = None
    
        if err is not None:
>           raise err

../../anaconda3/envs/ParlAI/lib/python3.7/site-packages/urllib3/util/connection.py:84: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

address = ('nlp.stanford.edu', 443), timeout = None, source_address = None
socket_options = [(6, 1, 1)]

    def create_connection(
        address,
        timeout=socket._GLOBAL_DEFAULT_TIMEOUT,
        source_address=None,
        socket_options=None,
    ):
        """Connect to *address* and return the socket object.
    
        Convenience function.  Connect to *address* (a 2-tuple ``(host,
        port)``) and return the socket object.  Passing the optional
        *timeout* parameter will set the timeout on the socket instance
        before attempting to connect.  If no *timeout* is supplied, the
        global default timeout setting returned by :func:`getdefaulttimeout`
        is used.  If *source_address* is set it must be a tuple of (host, port)
        for the socket to bind as a source address before making the connection.
        An host of '' or port 0 tells the OS to use the default.
        """
    
        host, port = address
        if host.startswith("["):
            host = host.strip("[]")
        err = None
    
        # Using the value from allowed_gai_family() in the context of getaddrinfo lets
        # us select whether to work with IPv4 DNS records, IPv6 records, or both.
        # The original create_connection function always returns all records.
        family = allowed_gai_family()
    
        for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
            af, socktype, proto, canonname, sa = res
            sock = None
            try:
                sock = socket.socket(af, socktype, proto)
    
                # If provided, set socket level options before connecting.
                _set_socket_options(sock, socket_options)
    
                if timeout is not socket._GLOBAL_DEFAULT_TIMEOUT:
                    sock.settimeout(timeout)
                if source_address:
                    sock.bind(source_address)
>               sock.connect(sa)
E               TimeoutError: [Errno 110] Connection timed out

../../anaconda3/envs/ParlAI/lib/python3.7/site-packages/urllib3/util/connection.py:74: TimeoutError

During handling of the above exception, another exception occurred:

self = <urllib3.connectionpool.HTTPSConnectionPool object at 0x7f21bc1e39d0>
method = 'HEAD', url = '/data/coqa/coqa-train-v1.0.json', body = None
headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', 'Accept-Encoding': 'gzip, deflate', 'Accept': '*/*', 'Connection': 'keep-alive'}
retries = Retry(total=0, connect=None, read=False, redirect=None, status=None)
redirect = False, assert_same_host = False
timeout = Timeout(connect=None, read=None, total=None), pool_timeout = None
release_conn = False, chunked = False, body_pos = None
response_kw = {'decode_content': False, 'preload_content': False}, conn = None
release_this_conn = True, err = None, clean_exit = False
timeout_obj = Timeout(connect=None, read=None, total=None)
is_new_proxy_conn = False

    def urlopen(
        self,
        method,
        url,
        body=None,
        headers=None,
        retries=None,
        redirect=True,
        assert_same_host=True,
        timeout=_Default,
        pool_timeout=None,
        release_conn=None,
        chunked=False,
        body_pos=None,
        **response_kw
    ):
        """
        Get a connection from the pool and perform an HTTP request. This is the
        lowest level call for making a request, so you'll need to specify all
        the raw details.
    
        .. note::
    
           More commonly, it's appropriate to use a convenience method provided
           by :class:`.RequestMethods`, such as :meth:`request`.
    
        .. note::
    
           `release_conn` will only behave as expected if
           `preload_content=False` because we want to make
           `preload_content=False` the default behaviour someday soon without
           breaking backwards compatibility.
    
        :param method:
            HTTP request method (such as GET, POST, PUT, etc.)
    
        :param body:
            Data to send in the request body (useful for creating
            POST requests, see HTTPConnectionPool.post_url for
            more convenience).
    
        :param headers:
            Dictionary of custom headers to send, such as User-Agent,
            If-None-Match, etc. If None, pool headers are used. If provided,
            these headers completely replace any pool-specific headers.
    
        :param retries:
            Configure the number of retries to allow before raising a
            :class:`~urllib3.exceptions.MaxRetryError` exception.
    
            Pass ``None`` to retry until you receive a response. Pass a
            :class:`~urllib3.util.retry.Retry` object for fine-grained control
            over different types of retries.
            Pass an integer number to retry connection errors that many times,
            but no other types of errors. Pass zero to never retry.
    
            If ``False``, then retries are disabled and any exception is raised
            immediately. Also, instead of raising a MaxRetryError on redirects,
            the redirect response will be returned.
    
        :type retries: :class:`~urllib3.util.retry.Retry`, False, or an int.
    
        :param redirect:
            If True, automatically handle redirects (status codes 301, 302,
            303, 307, 308). Each redirect counts as a retry. Disabling retries
            will disable redirect, too.
    
        :param assert_same_host:
            If ``True``, will make sure that the host of the pool requests is
            consistent else will raise HostChangedError. When False, you can
            use the pool on an HTTP proxy and request foreign hosts.
    
        :param timeout:
            If specified, overrides the default timeout for this one
            request. It may be a float (in seconds) or an instance of
            :class:`urllib3.util.Timeout`.
    
        :param pool_timeout:
            If set and the pool is set to block=True, then this method will
            block for ``pool_timeout`` seconds and raise EmptyPoolError if no
            connection is available within the time period.
    
        :param release_conn:
            If False, then the urlopen call will not release the connection
            back into the pool once a response is received (but will release if
            you read the entire contents of the response such as when
            `preload_content=True`). This is useful if you're not preloading
            the response's content immediately. You will need to call
            ``r.release_conn()`` on the response ``r`` to return the connection
            back into the pool. If None, it takes the value of
            ``response_kw.get('preload_content', True)``.
    
        :param chunked:
            If True, urllib3 will send the body using chunked transfer
            encoding. Otherwise, urllib3 will send the body using the standard
            content-length form. Defaults to False.
    
        :param int body_pos:
            Position to seek to in file-like body in the event of a retry or
            redirect. Typically this won't need to be set because urllib3 will
            auto-populate the value when needed.
    
        :param \\**response_kw:
            Additional parameters are passed to
            :meth:`urllib3.response.HTTPResponse.from_httplib`
        """
        if headers is None:
            headers = self.headers
    
        if not isinstance(retries, Retry):
            retries = Retry.from_int(retries, redirect=redirect, default=self.retries)
    
        if release_conn is None:
            release_conn = response_kw.get("preload_content", True)
    
        # Check host
        if assert_same_host and not self.is_same_host(url):
            raise HostChangedError(self, url, retries)
    
        # Ensure that the URL we're connecting to is properly encoded
        if url.startswith("/"):
            url = six.ensure_str(_encode_target(url))
        else:
            url = six.ensure_str(parse_url(url).url)
    
        conn = None
    
        # Track whether `conn` needs to be released before
        # returning/raising/recursing. Update this variable if necessary, and
        # leave `release_conn` constant throughout the function. That way, if
        # the function recurses, the original value of `release_conn` will be
        # passed down into the recursive call, and its value will be respected.
        #
        # See issue #651 [1] for details.
        #
        # [1] <https://github.com/urllib3/urllib3/issues/651>
        release_this_conn = release_conn
    
        # Merge the proxy headers. Only do this in HTTP. We have to copy the
        # headers dict so we can safely change it without those changes being
        # reflected in anyone else's copy.
        if self.scheme == "http":
            headers = headers.copy()
            headers.update(self.proxy_headers)
    
        # Must keep the exception bound to a separate variable or else Python 3
        # complains about UnboundLocalError.
        err = None
    
        # Keep track of whether we cleanly exited the except block. This
        # ensures we do proper cleanup in finally.
        clean_exit = False
    
        # Rewind body position, if needed. Record current position
        # for future rewinds in the event of a redirect/retry.
        body_pos = set_file_position(body, body_pos)
    
        try:
            # Request a connection from the queue.
            timeout_obj = self._get_timeout(timeout)
            conn = self._get_conn(timeout=pool_timeout)
    
            conn.timeout = timeout_obj.connect_timeout
    
            is_new_proxy_conn = self.proxy is not None and not getattr(
                conn, "sock", None
            )
            if is_new_proxy_conn:
                self._prepare_proxy(conn)
    
            # Make the request on the httplib connection object.
            httplib_response = self._make_request(
                conn,
                method,
                url,
                timeout=timeout_obj,
                body=body,
                headers=headers,
>               chunked=chunked,
            )

../../anaconda3/envs/ParlAI/lib/python3.7/site-packages/urllib3/connectionpool.py:677: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <urllib3.connectionpool.HTTPSConnectionPool object at 0x7f21bc1e39d0>
conn = <urllib3.connection.HTTPSConnection object at 0x7f21bc1bf0d0>
method = 'HEAD', url = '/data/coqa/coqa-train-v1.0.json'
timeout = Timeout(connect=None, read=None, total=None), chunked = False
httplib_request_kw = {'body': None, 'headers': {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, l...) Chrome/77.0.3865.90 Safari/537.36', 'Accept-Encoding': 'gzip, deflate', 'Accept': '*/*', 'Connection': 'keep-alive'}}
timeout_obj = Timeout(connect=None, read=None, total=None)

    def _make_request(
        self, conn, method, url, timeout=_Default, chunked=False, **httplib_request_kw
    ):
        """
        Perform a request on a given urllib connection object taken from our
        pool.
    
        :param conn:
            a connection from one of our connection pools
    
        :param timeout:
            Socket timeout in seconds for the request. This can be a
            float or integer, which will set the same timeout value for
            the socket connect and the socket read, or an instance of
            :class:`urllib3.util.Timeout`, which gives you more fine-grained
            control over your timeouts.
        """
        self.num_requests += 1
    
        timeout_obj = self._get_timeout(timeout)
        timeout_obj.start_connect()
        conn.timeout = timeout_obj.connect_timeout
    
        # Trigger any extra validation we need to do.
        try:
>           self._validate_conn(conn)

../../anaconda3/envs/ParlAI/lib/python3.7/site-packages/urllib3/connectionpool.py:381: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <urllib3.connectionpool.HTTPSConnectionPool object at 0x7f21bc1e39d0>
conn = <urllib3.connection.HTTPSConnection object at 0x7f21bc1bf0d0>

    def _validate_conn(self, conn):
        """
        Called right before a request is made, after the socket is created.
        """
        super(HTTPSConnectionPool, self)._validate_conn(conn)
    
        # Force connect early to allow us to validate the connection.
        if not getattr(conn, "sock", None):  # AppEngine might not have  `.sock`
>           conn.connect()

../../anaconda3/envs/ParlAI/lib/python3.7/site-packages/urllib3/connectionpool.py:976: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <urllib3.connection.HTTPSConnection object at 0x7f21bc1bf0d0>

    def connect(self):
        # Add certificate verification
>       conn = self._new_conn()

../../anaconda3/envs/ParlAI/lib/python3.7/site-packages/urllib3/connection.py:308: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <urllib3.connection.HTTPSConnection object at 0x7f21bc1bf0d0>

    def _new_conn(self):
        """ Establish a socket connection and set nodelay settings on it.
    
        :return: New socket connection.
        """
        extra_kw = {}
        if self.source_address:
            extra_kw["source_address"] = self.source_address
    
        if self.socket_options:
            extra_kw["socket_options"] = self.socket_options
    
        try:
            conn = connection.create_connection(
                (self._dns_host, self.port), self.timeout, **extra_kw
            )
    
        except SocketTimeout:
            raise ConnectTimeoutError(
                self,
                "Connection to %s timed out. (connect timeout=%s)"
                % (self.host, self.timeout),
            )
    
        except SocketError as e:
            raise NewConnectionError(
>               self, "Failed to establish a new connection: %s" % e
            )
E           urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7f21bc1bf0d0>: Failed to establish a new connection: [Errno 110] Connection timed out

../../anaconda3/envs/ParlAI/lib/python3.7/site-packages/urllib3/connection.py:172: NewConnectionError

During handling of the above exception, another exception occurred:

self = <requests.adapters.HTTPAdapter object at 0x7f21bc2ccf90>
request = <PreparedRequest [HEAD]>, stream = False
timeout = Timeout(connect=None, read=None, total=None), verify = True
cert = None, proxies = OrderedDict()

    def send(self, request, stream=False, timeout=None, verify=True, cert=None, proxies=None):
        """Sends PreparedRequest object. Returns Response object.
    
        :param request: The :class:`PreparedRequest <PreparedRequest>` being sent.
        :param stream: (optional) Whether to stream the request content.
        :param timeout: (optional) How long to wait for the server to send
            data before giving up, as a float, or a :ref:`(connect timeout,
            read timeout) <timeouts>` tuple.
        :type timeout: float or tuple or urllib3 Timeout object
        :param verify: (optional) Either a boolean, in which case it controls whether
            we verify the server's TLS certificate, or a string, in which case it
            must be a path to a CA bundle to use
        :param cert: (optional) Any user-provided SSL certificate to be trusted.
        :param proxies: (optional) The proxies dictionary to apply to the request.
        :rtype: requests.Response
        """
    
        try:
            conn = self.get_connection(request.url, proxies)
        except LocationValueError as e:
            raise InvalidURL(e, request=request)
    
        self.cert_verify(conn, request.url, verify, cert)
        url = self.request_url(request, proxies)
        self.add_headers(request, stream=stream, timeout=timeout, verify=verify, cert=cert, proxies=proxies)
    
        chunked = not (request.body is None or 'Content-Length' in request.headers)
    
        if isinstance(timeout, tuple):
            try:
                connect, read = timeout
                timeout = TimeoutSauce(connect=connect, read=read)
            except ValueError as e:
                # this may raise a string formatting error.
                err = ("Invalid timeout {}. Pass a (connect, read) "
                       "timeout tuple, or a single float to set "
                       "both timeouts to the same value".format(timeout))
                raise ValueError(err)
        elif isinstance(timeout, TimeoutSauce):
            pass
        else:
            timeout = TimeoutSauce(connect=timeout, read=timeout)
    
        try:
            if not chunked:
                resp = conn.urlopen(
                    method=request.method,
                    url=url,
                    body=request.body,
                    headers=request.headers,
                    redirect=False,
                    assert_same_host=False,
                    preload_content=False,
                    decode_content=False,
                    retries=self.max_retries,
>                   timeout=timeout
                )

../../anaconda3/envs/ParlAI/lib/python3.7/site-packages/requests/adapters.py:449: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <urllib3.connectionpool.HTTPSConnectionPool object at 0x7f21bc1e39d0>
method = 'HEAD', url = '/data/coqa/coqa-train-v1.0.json', body = None
headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', 'Accept-Encoding': 'gzip, deflate', 'Accept': '*/*', 'Connection': 'keep-alive'}
retries = Retry(total=0, connect=None, read=False, redirect=None, status=None)
redirect = False, assert_same_host = False
timeout = Timeout(connect=None, read=None, total=None), pool_timeout = None
release_conn = False, chunked = False, body_pos = None
response_kw = {'decode_content': False, 'preload_content': False}, conn = None
release_this_conn = True, err = None, clean_exit = False
timeout_obj = Timeout(connect=None, read=None, total=None)
is_new_proxy_conn = False

    def urlopen(
        self,
        method,
        url,
        body=None,
        headers=None,
        retries=None,
        redirect=True,
        assert_same_host=True,
        timeout=_Default,
        pool_timeout=None,
        release_conn=None,
        chunked=False,
        body_pos=None,
        **response_kw
    ):
        """
        Get a connection from the pool and perform an HTTP request. This is the
        lowest level call for making a request, so you'll need to specify all
        the raw details.
    
        .. note::
    
           More commonly, it's appropriate to use a convenience method provided
           by :class:`.RequestMethods`, such as :meth:`request`.
    
        .. note::
    
           `release_conn` will only behave as expected if
           `preload_content=False` because we want to make
           `preload_content=False` the default behaviour someday soon without
           breaking backwards compatibility.
    
        :param method:
            HTTP request method (such as GET, POST, PUT, etc.)
    
        :param body:
            Data to send in the request body (useful for creating
            POST requests, see HTTPConnectionPool.post_url for
            more convenience).
    
        :param headers:
            Dictionary of custom headers to send, such as User-Agent,
            If-None-Match, etc. If None, pool headers are used. If provided,
            these headers completely replace any pool-specific headers.
    
        :param retries:
            Configure the number of retries to allow before raising a
            :class:`~urllib3.exceptions.MaxRetryError` exception.
    
            Pass ``None`` to retry until you receive a response. Pass a
            :class:`~urllib3.util.retry.Retry` object for fine-grained control
            over different types of retries.
            Pass an integer number to retry connection errors that many times,
            but no other types of errors. Pass zero to never retry.
    
            If ``False``, then retries are disabled and any exception is raised
            immediately. Also, instead of raising a MaxRetryError on redirects,
            the redirect response will be returned.
    
        :type retries: :class:`~urllib3.util.retry.Retry`, False, or an int.
    
        :param redirect:
            If True, automatically handle redirects (status codes 301, 302,
            303, 307, 308). Each redirect counts as a retry. Disabling retries
            will disable redirect, too.
    
        :param assert_same_host:
            If ``True``, will make sure that the host of the pool requests is
            consistent else will raise HostChangedError. When False, you can
            use the pool on an HTTP proxy and request foreign hosts.
    
        :param timeout:
            If specified, overrides the default timeout for this one
            request. It may be a float (in seconds) or an instance of
            :class:`urllib3.util.Timeout`.
    
        :param pool_timeout:
            If set and the pool is set to block=True, then this method will
            block for ``pool_timeout`` seconds and raise EmptyPoolError if no
            connection is available within the time period.
    
        :param release_conn:
            If False, then the urlopen call will not release the connection
            back into the pool once a response is received (but will release if
            you read the entire contents of the response such as when
            `preload_content=True`). This is useful if you're not preloading
            the response's content immediately. You will need to call
            ``r.release_conn()`` on the response ``r`` to return the connection
            back into the pool. If None, it takes the value of
            ``response_kw.get('preload_content', True)``.
    
        :param chunked:
            If True, urllib3 will send the body using chunked transfer
            encoding. Otherwise, urllib3 will send the body using the standard
            content-length form. Defaults to False.
    
        :param int body_pos:
            Position to seek to in file-like body in the event of a retry or
            redirect. Typically this won't need to be set because urllib3 will
            auto-populate the value when needed.
    
        :param \\**response_kw:
            Additional parameters are passed to
            :meth:`urllib3.response.HTTPResponse.from_httplib`
        """
        if headers is None:
            headers = self.headers
    
        if not isinstance(retries, Retry):
            retries = Retry.from_int(retries, redirect=redirect, default=self.retries)
    
        if release_conn is None:
            release_conn = response_kw.get("preload_content", True)
    
        # Check host
        if assert_same_host and not self.is_same_host(url):
            raise HostChangedError(self, url, retries)
    
        # Ensure that the URL we're connecting to is properly encoded
        if url.startswith("/"):
            url = six.ensure_str(_encode_target(url))
        else:
            url = six.ensure_str(parse_url(url).url)
    
        conn = None
    
        # Track whether `conn` needs to be released before
        # returning/raising/recursing. Update this variable if necessary, and
        # leave `release_conn` constant throughout the function. That way, if
        # the function recurses, the original value of `release_conn` will be
        # passed down into the recursive call, and its value will be respected.
        #
        # See issue #651 [1] for details.
        #
        # [1] <https://github.com/urllib3/urllib3/issues/651>
        release_this_conn = release_conn
    
        # Merge the proxy headers. Only do this in HTTP. We have to copy the
        # headers dict so we can safely change it without those changes being
        # reflected in anyone else's copy.
        if self.scheme == "http":
            headers = headers.copy()
            headers.update(self.proxy_headers)
    
        # Must keep the exception bound to a separate variable or else Python 3
        # complains about UnboundLocalError.
        err = None
    
        # Keep track of whether we cleanly exited the except block. This
        # ensures we do proper cleanup in finally.
        clean_exit = False
    
        # Rewind body position, if needed. Record current position
        # for future rewinds in the event of a redirect/retry.
        body_pos = set_file_position(body, body_pos)
    
        try:
            # Request a connection from the queue.
            timeout_obj = self._get_timeout(timeout)
            conn = self._get_conn(timeout=pool_timeout)
    
            conn.timeout = timeout_obj.connect_timeout
    
            is_new_proxy_conn = self.proxy is not None and not getattr(
                conn, "sock", None
            )
            if is_new_proxy_conn:
                self._prepare_proxy(conn)
    
            # Make the request on the httplib connection object.
            httplib_response = self._make_request(
                conn,
                method,
                url,
                timeout=timeout_obj,
                body=body,
                headers=headers,
                chunked=chunked,
            )
    
            # If we're going to release the connection in ``finally:``, then
            # the response doesn't need to know about the connection. Otherwise
            # it will also try to release it and we'll have a double-release
            # mess.
            response_conn = conn if not release_conn else None
    
            # Pass method to Response for length checking
            response_kw["request_method"] = method
    
            # Import httplib's response into our own wrapper object
            response = self.ResponseCls.from_httplib(
                httplib_response,
                pool=self,
                connection=response_conn,
                retries=retries,
                **response_kw
            )
    
            # Everything went great!
            clean_exit = True
    
        except queue.Empty:
            # Timed out by queue.
            raise EmptyPoolError(self, "No pool connections are available.")
    
        except (
            TimeoutError,
            HTTPException,
            SocketError,
            ProtocolError,
            BaseSSLError,
            SSLError,
            CertificateError,
        ) as e:
            # Discard the connection for these exceptions. It will be
            # replaced during the next _get_conn() call.
            clean_exit = False
            if isinstance(e, (BaseSSLError, CertificateError)):
                e = SSLError(e)
            elif isinstance(e, (SocketError, NewConnectionError)) and self.proxy:
                e = ProxyError("Cannot connect to proxy.", e)
            elif isinstance(e, (SocketError, HTTPException)):
                e = ProtocolError("Connection aborted.", e)
    
            retries = retries.increment(
>               method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
            )

../../anaconda3/envs/ParlAI/lib/python3.7/site-packages/urllib3/connectionpool.py:725: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = Retry(total=0, connect=None, read=False, redirect=None, status=None)
method = 'HEAD', url = '/data/coqa/coqa-train-v1.0.json', response = None
error = NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f21bc1bf0d0>: Failed to establish a new connection: [Errno 110] Connection timed out')
_pool = <urllib3.connectionpool.HTTPSConnectionPool object at 0x7f21bc1e39d0>
_stacktrace = <traceback object at 0x7f21e1f9fd70>

    def increment(
        self,
        method=None,
        url=None,
        response=None,
        error=None,
        _pool=None,
        _stacktrace=None,
    ):
        """ Return a new Retry object with incremented retry counters.
    
        :param response: A response object, or None, if the server did not
            return a response.
        :type response: :class:`~urllib3.response.HTTPResponse`
        :param Exception error: An error encountered during the request, or
            None if the response was received successfully.
    
        :return: A new ``Retry`` object.
        """
        if self.total is False and error:
            # Disabled, indicate to re-raise the error.
            raise six.reraise(type(error), error, _stacktrace)
    
        total = self.total
        if total is not None:
            total -= 1
    
        connect = self.connect
        read = self.read
        redirect = self.redirect
        status_count = self.status
        cause = "unknown"
        status = None
        redirect_location = None
    
        if error and self._is_connection_error(error):
            # Connect retry?
            if connect is False:
                raise six.reraise(type(error), error, _stacktrace)
            elif connect is not None:
                connect -= 1
    
        elif error and self._is_read_error(error):
            # Read retry?
            if read is False or not self._is_method_retryable(method):
                raise six.reraise(type(error), error, _stacktrace)
            elif read is not None:
                read -= 1
    
        elif response and response.get_redirect_location():
            # Redirect retry?
            if redirect is not None:
                redirect -= 1
            cause = "too many redirects"
            redirect_location = response.get_redirect_location()
            status = response.status
    
        else:
            # Incrementing because of a server error like a 500 in
            # status_forcelist and a the given method is in the whitelist
            cause = ResponseError.GENERIC_ERROR
            if response and response.status:
                if status_count is not None:
                    status_count -= 1
                cause = ResponseError.SPECIFIC_ERROR.format(status_code=response.status)
                status = response.status
    
        history = self.history + (
            RequestHistory(method, url, error, status, redirect_location),
        )
    
        new_retry = self.new(
            total=total,
            connect=connect,
            read=read,
            redirect=redirect,
            status=status_count,
            history=history,
        )
    
        if new_retry.is_exhausted():
>           raise MaxRetryError(_pool, url, error or ResponseError(cause))
E           urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='nlp.stanford.edu', port=443): Max retries exceeded with url: /data/coqa/coqa-train-v1.0.json (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f21bc1bf0d0>: Failed to establish a new connection: [Errno 110] Connection timed out'))

../../anaconda3/envs/ParlAI/lib/python3.7/site-packages/urllib3/util/retry.py:439: MaxRetryError

During handling of the above exception, another exception occurred:

self = <test_urls.TestUtils testMethod=test_http_response>

    def test_http_response(self):
        tasks = set(
            task['task']
            if ':' not in task['task']
            else task['task'][: task['task'].index(':')]
            for task in task_list
        )
        for task in sorted(tasks):
            if task in SPECIFIC_BUILDS:
                for build in SPECIFIC_BUILDS[task]:
                    mod = importlib.import_module(
                        ('parlai.tasks.' + task + '.' + build)
                    )
                    for f in mod.RESOURCES:
                        with self.subTest(f"{task}: {f.url}"):
                            f.check_header()
            else:
                try:
                    mod = importlib.import_module(('parlai.tasks.' + task + '.build'))
                    file_list = mod.RESOURCES
                except (ModuleNotFoundError, AttributeError):
                    continue
                for f in file_list:
                    with self.subTest(f"{task}: {f.url}"):
>                       f.check_header()

nightly/cpu/test_urls.py:44: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
../parlai/core/build_data.py:104: in check_header
    response = session.head(self.url, allow_redirects=True, headers=headers)
../../anaconda3/envs/ParlAI/lib/python3.7/site-packages/requests/sessions.py:568: in head
    return self.request('HEAD', url, **kwargs)
../../anaconda3/envs/ParlAI/lib/python3.7/site-packages/requests/sessions.py:533: in request
    resp = self.send(prep, **send_kwargs)
../../anaconda3/envs/ParlAI/lib/python3.7/site-packages/requests/sessions.py:646: in send
    r = adapter.send(request, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <requests.adapters.HTTPAdapter object at 0x7f21bc2ccf90>
request = <PreparedRequest [HEAD]>, stream = False
timeout = Timeout(connect=None, read=None, total=None), verify = True
cert = None, proxies = OrderedDict()

    def send(self, request, stream=False, timeout=None, verify=True, cert=None, proxies=None):
        """Sends PreparedRequest object. Returns Response object.
    
        :param request: The :class:`PreparedRequest <PreparedRequest>` being sent.
        :param stream: (optional) Whether to stream the request content.
        :param timeout: (optional) How long to wait for the server to send
            data before giving up, as a float, or a :ref:`(connect timeout,
            read timeout) <timeouts>` tuple.
        :type timeout: float or tuple or urllib3 Timeout object
        :param verify: (optional) Either a boolean, in which case it controls whether
            we verify the server's TLS certificate, or a string, in which case it
            must be a path to a CA bundle to use
        :param cert: (optional) Any user-provided SSL certificate to be trusted.
        :param proxies: (optional) The proxies dictionary to apply to the request.
        :rtype: requests.Response
        """
    
        try:
            conn = self.get_connection(request.url, proxies)
        except LocationValueError as e:
            raise InvalidURL(e, request=request)
    
        self.cert_verify(conn, request.url, verify, cert)
        url = self.request_url(request, proxies)
        self.add_headers(request, stream=stream, timeout=timeout, verify=verify, cert=cert, proxies=proxies)
    
        chunked = not (request.body is None or 'Content-Length' in request.headers)
    
        if isinstance(timeout, tuple):
            try:
                connect, read = timeout
                timeout = TimeoutSauce(connect=connect, read=read)
            except ValueError as e:
                # this may raise a string formatting error.
                err = ("Invalid timeout {}. Pass a (connect, read) "
                       "timeout tuple, or a single float to set "
                       "both timeouts to the same value".format(timeout))
                raise ValueError(err)
        elif isinstance(timeout, TimeoutSauce):
            pass
        else:
            timeout = TimeoutSauce(connect=timeout, read=timeout)
    
        try:
            if not chunked:
                resp = conn.urlopen(
                    method=request.method,
                    url=url,
                    body=request.body,
                    headers=request.headers,
                    redirect=False,
                    assert_same_host=False,
                    preload_content=False,
                    decode_content=False,
                    retries=self.max_retries,
                    timeout=timeout
                )
    
            # Send the request.
            else:
                if hasattr(conn, 'proxy_pool'):
                    conn = conn.proxy_pool
    
                low_conn = conn._get_conn(timeout=DEFAULT_POOL_TIMEOUT)
    
                try:
                    low_conn.putrequest(request.method,
                                        url,
                                        skip_accept_encoding=True)
    
                    for header, value in request.headers.items():
                        low_conn.putheader(header, value)
    
                    low_conn.endheaders()
    
                    for i in request.body:
                        low_conn.send(hex(len(i))[2:].encode('utf-8'))
                        low_conn.send(b'\r\n')
                        low_conn.send(i)
                        low_conn.send(b'\r\n')
                    low_conn.send(b'0\r\n\r\n')
    
                    # Receive the response from the server
                    try:
                        # For Python 2.7, use buffering of HTTP responses
                        r = low_conn.getresponse(buffering=True)
                    except TypeError:
                        # For compatibility with Python 3.3+
                        r = low_conn.getresponse()
    
                    resp = HTTPResponse.from_httplib(
                        r,
                        pool=conn,
                        connection=low_conn,
                        preload_content=False,
                        decode_content=False
                    )
                except:
                    # If we hit any problems here, clean up the connection.
                    # Then, reraise so that we can handle the actual exception.
                    low_conn.close()
                    raise
    
        except (ProtocolError, socket.error) as err:
            raise ConnectionError(err, request=request)
    
        except MaxRetryError as e:
            if isinstance(e.reason, ConnectTimeoutError):
                # TODO: Remove this in 3.0.0: see #2811
                if not isinstance(e.reason, NewConnectionError):
                    raise ConnectTimeout(e, request=request)
    
            if isinstance(e.reason, ResponseError):
                raise RetryError(e, request=request)
    
            if isinstance(e.reason, _ProxyError):
                raise ProxyError(e, request=request)
    
            if isinstance(e.reason, _SSLError):
                # This branch is for urllib3 v1.22 and later.
                raise SSLError(e, request=request)
    
>           raise ConnectionError(e, request=request)
E           requests.exceptions.ConnectionError: HTTPSConnectionPool(host='nlp.stanford.edu', port=443): Max retries exceeded with url: /data/coqa/coqa-train-v1.0.json (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f21bc1bf0d0>: Failed to establish a new connection: [Errno 110] Connection timed out'))

../../anaconda3/envs/ParlAI/lib/python3.7/site-packages/requests/adapters.py:516: ConnectionError
------------------------------ Captured log call -------------------------------
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): storage.googleapis.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://storage.googleapis.com:443 "HEAD /airdialogue/airdialogue_data.tar.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/qa_Appliances.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/qa_Arts_Crafts_and_Sewing.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/qa_Automotive.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/qa_Baby.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/qa_Beauty.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/qa_Cell_Phones_and_Accessories.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/qa_Clothing_Shoes_and_Jewelry.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/qa_Electronics.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/qa_Grocery_and_Gourmet_Food.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/qa_Health_and_Personal_Care.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/qa_Home_and_Kitchen.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/qa_Industrial_and_Scientific.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/qa_Musical_Instruments.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/qa_Office_Products.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/qa_Patio_Lawn_and_Garden.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/qa_Pet_Supplies.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/qa_Software.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/qa_Sports_and_Outdoors.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/qa_Tools_and_Home_Improvement.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/qa_Toys_and_Games.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/qa_Video_Games.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/icdm/QA_Automotive.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/icdm/QA_Beauty.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/icdm/QA_Cell_Phones_and_Accessories.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/icdm/QA_Clothing_Shoes_and_Jewelry.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/icdm/QA_Electronics.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/icdm/QA_Grocery_and_Gourmet_Food.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/icdm/QA_Health_and_Personal_Care.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/icdm/QA_Home_and_Kitchen.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/icdm/QA_Musical_Instruments.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/icdm/QA_Office_Products.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/icdm/QA_Patio_Lawn_and_Garden.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/icdm/QA_Pet_Supplies.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/icdm/QA_Sports_and_Outdoors.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/icdm/QA_Tools_and_Home_Improvement.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/icdm/QA_Toys_and_Games.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): jmcauley.ucsd.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://jmcauley.ucsd.edu:80 "HEAD /data/amazon/qa/icdm/QA_Video_Games.json.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "HEAD /anli/anli_v0.1.zip HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): github.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://github.com:443 "HEAD /deepmind/AQuA/archive/master.zip HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): codeload.github.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://codeload.github.com:443 "HEAD /deepmind/AQuA/zip/master HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "HEAD /downloads/babi/babi.tar.gz HTTP/1.1" 301 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "HEAD /downloads/babi/babi.tar.gz HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "HEAD /parlai/babi/babi.tar.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "HEAD /downloads/blended_skill_talk/blended_skill_talk.tar.gz HTTP/1.1" 301 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "HEAD /downloads/blended_skill_talk/blended_skill_talk.tar.gz HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "HEAD /parlai/blended_skill_talk/blended_skill_talk.tar.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "HEAD /downloads/blended_skill_talk/personas_list.txt HTTP/1.1" 301 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "HEAD /downloads/blended_skill_talk/personas_list.txt HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "HEAD /parlai/blended_skill_talk/personas_list.txt HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "HEAD /downloads/blended_skill_talk/topic_to_persona_list.txt HTTP/1.1" 301 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "HEAD /downloads/blended_skill_talk/topic_to_persona_list.txt HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "HEAD /parlai/blended_skill_talk/topic_to_persona_list.txt HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "HEAD /downloads/blended_skill_talk/ed_persona_topicifier__train__both_sides.json HTTP/1.1" 301 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "HEAD /downloads/blended_skill_talk/ed_persona_topicifier__train__both_sides.json HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "HEAD /parlai/blended_skill_talk/ed_persona_topicifier__train__both_sides.json HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "HEAD /downloads/blended_skill_talk/ed_persona_topicifier__train__experiencer_only.json HTTP/1.1" 301 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "HEAD /downloads/blended_skill_talk/ed_persona_topicifier__train__experiencer_only.json HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "HEAD /parlai/blended_skill_talk/ed_persona_topicifier__train__experiencer_only.json HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "HEAD /downloads/blended_skill_talk/ed_persona_topicifier__valid__experiencer_only.json HTTP/1.1" 301 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "HEAD /downloads/blended_skill_talk/ed_persona_topicifier__valid__experiencer_only.json HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "HEAD /parlai/blended_skill_talk/ed_persona_topicifier__valid__experiencer_only.json HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "HEAD /downloads/blended_skill_talk/ed_persona_topicifier__test__experiencer_only.json HTTP/1.1" 301 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "HEAD /downloads/blended_skill_talk/ed_persona_topicifier__test__experiencer_only.json HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "HEAD /parlai/blended_skill_talk/ed_persona_topicifier__test__experiencer_only.json HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "HEAD /downloads/blended_skill_talk/safe_personas_2.txt HTTP/1.1" 301 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "HEAD /downloads/blended_skill_talk/safe_personas_2.txt HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "HEAD /parlai/blended_skill_talk/safe_personas_2.txt HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "HEAD /downloads/booktest/booktest.tar.bz2 HTTP/1.1" 301 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "HEAD /downloads/booktest/booktest.tar.bz2 HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "HEAD /parlai/booktest/booktest.tar.bz2 HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): raw.githubusercontent.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://raw.githubusercontent.com:443 "HEAD /nlpdata/c3/master/data/c3-d-train.json HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): raw.githubusercontent.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://raw.githubusercontent.com:443 "HEAD /nlpdata/c3/master/data/c3-d-test.json HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): raw.githubusercontent.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://raw.githubusercontent.com:443 "HEAD /nlpdata/c3/master/data/c3-d-dev.json HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "HEAD /downloads/cbt/cbt.tar.gz HTTP/1.1" 301 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "HEAD /downloads/cbt/cbt.tar.gz HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "HEAD /parlai/cbt/cbt.tar.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): storage.googleapis.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://storage.googleapis.com:443 "HEAD /dialog-data-corpus/CCPE-M-2019/data.json HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "HEAD /clevr/CLEVR_v1.0.zip HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): docs.google.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://docs.google.com:443 "HEAD /uc?export=download&id=0BwmD_VLjROrfTHk4NFg2SndKcjQ HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): docs.google.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://docs.google.com:443 "HEAD /uc?export=download&id=0BwmD_VLjROrfM1BxdkxVaTY2bWs HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): raw.githubusercontent.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://raw.githubusercontent.com:443 "HEAD /abisee/cnn-dailymail/master/url_lists/cnn_wayback_training_urls.txt HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): raw.githubusercontent.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://raw.githubusercontent.com:443 "HEAD /abisee/cnn-dailymail/master/url_lists/cnn_wayback_validation_urls.txt HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): raw.githubusercontent.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://raw.githubusercontent.com:443 "HEAD /abisee/cnn-dailymail/master/url_lists/cnn_wayback_test_urls.txt HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): raw.githubusercontent.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://raw.githubusercontent.com:443 "HEAD /abisee/cnn-dailymail/master/url_lists/dailymail_wayback_training_urls.txt HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): raw.githubusercontent.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://raw.githubusercontent.com:443 "HEAD /abisee/cnn-dailymail/master/url_lists/dailymail_wayback_validation_urls.txt HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): raw.githubusercontent.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://raw.githubusercontent.com:443 "HEAD /abisee/cnn-dailymail/master/url_lists/dailymail_wayback_test_urls.txt HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "HEAD /downloads/COCO-IMG/train2014.zip HTTP/1.1" 301 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "HEAD /downloads/COCO-IMG/train2014.zip HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "HEAD /parlai/COCO-IMG/train2014.zip HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "HEAD /downloads/COCO-IMG/val2014.zip HTTP/1.1" 301 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "HEAD /downloads/COCO-IMG/val2014.zip HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "HEAD /parlai/COCO-IMG/val2014.zip HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "HEAD /downloads/COCO-IMG/test2014.zip HTTP/1.1" 301 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "HEAD /downloads/COCO-IMG/test2014.zip HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "HEAD /parlai/COCO-IMG/test2014.zip HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "HEAD /downloads/coco_caption/dataset_coco.tgz HTTP/1.1" 301 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "HEAD /downloads/coco_caption/dataset_coco.tgz HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "HEAD /parlai/coco_caption/dataset_coco.tgz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "HEAD /downloads/COCO-IMG/test2015.zip HTTP/1.1" 301 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "HEAD /downloads/COCO-IMG/test2015.zip HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "HEAD /parlai/COCO-IMG/test2015.zip HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): images.cocodataset.org:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://images.cocodataset.org:80 "HEAD /annotations/image_info_test2015.zip HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "HEAD /downloads/COCO-IMG/train2017.zip HTTP/1.1" 301 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "HEAD /downloads/COCO-IMG/train2017.zip HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "HEAD /parlai/COCO-IMG/train2017.zip HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "HEAD /downloads/COCO-IMG/val2017.zip HTTP/1.1" 301 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "HEAD /downloads/COCO-IMG/val2017.zip HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "HEAD /parlai/COCO-IMG/val2017.zip HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "HEAD /downloads/COCO-IMG/test2017.zip HTTP/1.1" 301 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "HEAD /downloads/COCO-IMG/test2017.zip HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "HEAD /parlai/COCO-IMG/test2017.zip HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): images.cocodataset.org:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://images.cocodataset.org:80 "HEAD /annotations/annotations_trainval2017.zip HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): images.cocodataset.org:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://images.cocodataset.org:80 "HEAD /annotations/image_info_test2017.zip HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): s3.amazonaws.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://s3.amazonaws.com:443 "HEAD /commensenseqa/train_rand_split.jsonl HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): s3.amazonaws.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://s3.amazonaws.com:443 "HEAD /commensenseqa/dev_rand_split.jsonl HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "HEAD /downloads/convai2/convai2_fix_723.tgz HTTP/1.1" 301 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "HEAD /downloads/convai2/convai2_fix_723.tgz HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "HEAD /parlai/convai2/convai2_fix_723.tgz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): lnsigo.mipt.ru:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://lnsigo.mipt.ru:80 "HEAD /export/datasets/convai/convai2_wild_evaluation_0.2.tgz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): raw.githubusercontent.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://raw.githubusercontent.com:443 "HEAD /deepmipt/turing-data/master/data_1501534800.tar.gz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): people.ict.usc.edu:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://people.ict.usc.edu:80 "HEAD /~gordon/downloads/COPA-resources.tgz HTTP/1.1" 301 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): people.ict.usc.edu:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://people.ict.usc.edu:443 "HEAD /~gordon/downloads/COPA-resources.tgz HTTP/1.1" 200 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): nlp.stanford.edu:443
__________________ TestTutorialTransformerGenerator.test_ppl ___________________

self = <test_tutorial_generator.TestTutorialTransformerGenerator testMethod=test_ppl>

    def test_ppl(self):
        valid, _ = testing_utils.eval_model(
            {
                'model': 'transformer/generator',
                'model_file': 'zoo:tutorial_transformer_generator/model',
                'task': 'dailydialog',
                'skip_generation': 'true',
                'num_examples': 512,
                'batchsize': 32,
            },
>           skip_test=True,
        )

nightly/gpu/test_tutorial_generator.py:22: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
../parlai/utils/testing.py:312: in eval_model
    valid = None if skip_valid else ems.EvalModel.main(**opt)
../parlai/scripts/script.py:77: in main
    return cls._run_kwargs(kwargs)
../parlai/scripts/script.py:55: in _run_kwargs
    return script.run()
../parlai/scripts/eval_model.py:209: in run
    return eval_model(self.opt)
../parlai/scripts/eval_model.py:177: in eval_model
    agent = create_agent(opt, requireModelExists=True)
../parlai/core/agents.py:378: in create_agent
    model = create_agent_from_opt_file(opt)
../parlai/core/agents.py:333: in create_agent_from_opt_file
    return model_class(new_opt)
../parlai/core/torch_generator_agent.py:445: in __init__
    super().__init__(opt, shared)
../parlai/core/torch_agent.py:720: in __init__
    self.dict = self.build_dictionary()
../parlai/core/torch_agent.py:803: in build_dictionary
    d = self.dictionary_class()(self.opt)
../parlai/core/dict.py:304: in __init__
    self.bpe = bpe_factory(opt, shared)
../parlai/utils/bpe.py:80: in bpe_factory
    bpe_helper = SubwordBPEHelper(opt, shared)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <parlai.utils.bpe.SubwordBPEHelper object at 0x7f226269ed90>
opt = {'init_opt': None, 'show_advanced_args': False, 'task': 'dailydialog', 'datatype': 'valid', 'image_mode': 'raw', 'numt... '/tmp/tmprtf0e64l/models/tutorial_transformer_generator/model.dict'}, 'starttime': 'Jul07_23-33', 'dict_loaded': True}
shared = None

    def __init__(self, opt: Opt, shared: TShared = None):
        """
        Initialize the BPE module.
    
        :param opt:
            options
        :param shared:
            shared dictionary
        """
        super().__init__(opt, shared)
        if not SUBWORD_BPE_INSTALLED:
            raise RuntimeError(
>               "Please run \"pip install 'git+https://github.com/rsennrich"
                "/subword-nmt.git#egg=subword-nmt'\""
            )
E           RuntimeError: Please run "pip install 'git+https://github.com/rsennrich/subword-nmt.git#egg=subword-nmt'"

../parlai/utils/bpe.py:286: RuntimeError
----------------------------- Captured stdout call -----------------------------
2020-07-07 23:33:03,083 INFO     | building data: /tmp/tmprtf0e64l/models/tutorial_transformer_generator/tutorial_transformer_generator_v1.tar.gz
2020-07-07 23:33:03,083 INFO     | Downloading http://parl.ai/downloads/_models/tutorial_transformer_generator/tutorial_transformer_generator_v1.tar.gz to /tmp/tmprtf0e64l/models/tutorial_transformer_generator/tutorial_transformer_generator_v1.tar.gz
2020-07-07 23:33:58,239 WARNING  | overriding opt['datatype'] to valid (previously: train:stream)
2020-07-07 23:33:58,240 WARNING  | overriding opt['model_file'] to /tmp/tmprtf0e64l/models/tutorial_transformer_generator/model (previously: /checkpoint/roller/20190909/cleanreddit/585/model)
2020-07-07 23:33:58,240 WARNING  | overriding opt['task'] to dailydialog (previously: internal:new_reddit:presorted)
2020-07-07 23:33:58,240 WARNING  | overriding opt['skip_generation'] to True (previously: False)
2020-07-07 23:33:58,241 WARNING  | overriding opt['batchsize'] to 32 (previously: 48)
2020-07-07 23:33:58,241 WARNING  | overriding opt['dict_file'] to /tmp/tmprtf0e64l/models/tutorial_transformer_generator/model.dict (previously: /checkpoint/roller/20190909/cleanreddit/585/model.dict)
2020-07-07 23:33:58,249 INFO     | loading dictionary from /tmp/tmprtf0e64l/models/tutorial_transformer_generator/model.dict
2020-07-07 23:33:58,405 INFO     | num words = 54944
----------------------------- Captured stderr call -----------------------------

Downloading tutorial_transformer_generator_v1.tar.gz: 0.00B [00:00, ?B/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   0%|          | 32.8k/1.12G [00:00<7:41:48, 40.5kB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   0%|          | 131k/1.12G [00:00<5:32:48, 56.2kB/s] 
Downloading tutorial_transformer_generator_v1.tar.gz:   0%|          | 590k/1.12G [00:01<3:54:53, 79.6kB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   0%|          | 2.36M/1.12G [00:01<2:44:41, 113kB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   1%|          | 6.00M/1.12G [00:01<1:55:03, 162kB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   1%|          | 7.73M/1.12G [00:01<1:20:53, 230kB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   1%|          | 11.6M/1.12G [00:01<56:34, 327kB/s]  
Downloading tutorial_transformer_generator_v1.tar.gz:   1%|          | 14.0M/1.12G [00:01<39:52, 463kB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   2%|▏         | 17.7M/1.12G [00:01<27:58, 658kB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   2%|▏         | 20.1M/1.12G [00:02<19:52, 925kB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   2%|▏         | 23.6M/1.12G [00:02<14:01, 1.31MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   2%|▏         | 26.2M/1.12G [00:02<10:06, 1.81MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   3%|▎         | 29.6M/1.12G [00:02<07:12, 2.52MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   3%|▎         | 32.2M/1.12G [00:02<05:21, 3.40MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   3%|▎         | 35.5M/1.12G [00:02<03:54, 4.64MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   3%|▎         | 38.1M/1.12G [00:02<03:01, 5.97MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   4%|▎         | 41.5M/1.12G [00:02<02:16, 7.93MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   4%|▍         | 44.2M/1.12G [00:03<01:53, 9.51MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   4%|▍         | 47.4M/1.12G [00:03<01:29, 12.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   4%|▍         | 50.1M/1.12G [00:03<01:20, 13.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   5%|▍         | 53.5M/1.12G [00:03<01:06, 16.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   5%|▍         | 56.1M/1.12G [00:03<01:03, 16.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   5%|▌         | 59.8M/1.12G [00:03<00:53, 19.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   6%|▌         | 62.5M/1.12G [00:03<00:54, 19.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   6%|▌         | 65.9M/1.12G [00:03<00:49, 21.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   6%|▌         | 68.5M/1.12G [00:04<00:50, 21.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   6%|▋         | 72.1M/1.12G [00:04<00:45, 23.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   7%|▋         | 74.7M/1.12G [00:04<00:47, 21.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   7%|▋         | 77.1M/1.12G [00:04<00:46, 22.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   7%|▋         | 80.3M/1.12G [00:04<00:42, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   7%|▋         | 82.9M/1.12G [00:04<00:45, 22.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   8%|▊         | 86.0M/1.12G [00:04<00:41, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   8%|▊         | 88.7M/1.12G [00:04<00:53, 19.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   8%|▊         | 92.8M/1.12G [00:05<00:44, 23.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   9%|▊         | 95.6M/1.12G [00:05<00:42, 24.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   9%|▉         | 98.6M/1.12G [00:05<00:40, 25.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:   9%|▉         | 101M/1.12G [00:05<00:44, 23.0MB/s] 
Downloading tutorial_transformer_generator_v1.tar.gz:   9%|▉         | 105M/1.12G [00:05<00:39, 25.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  10%|▉         | 108M/1.12G [00:05<00:43, 23.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  10%|▉         | 110M/1.12G [00:05<00:41, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  10%|█         | 113M/1.12G [00:05<00:41, 24.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  10%|█         | 116M/1.12G [00:05<00:41, 24.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  11%|█         | 119M/1.12G [00:06<00:39, 25.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  11%|█         | 122M/1.12G [00:06<00:41, 24.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  11%|█         | 124M/1.12G [00:06<00:40, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  11%|█▏        | 127M/1.12G [00:06<00:39, 25.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  12%|█▏        | 130M/1.12G [00:06<00:40, 24.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  12%|█▏        | 132M/1.12G [00:06<00:40, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  12%|█▏        | 135M/1.12G [00:06<00:38, 25.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  12%|█▏        | 138M/1.12G [00:06<00:41, 23.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  13%|█▎        | 141M/1.12G [00:06<00:39, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  13%|█▎        | 144M/1.12G [00:07<00:38, 25.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  13%|█▎        | 146M/1.12G [00:07<00:40, 24.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  13%|█▎        | 149M/1.12G [00:07<00:39, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  14%|█▎        | 152M/1.12G [00:07<00:38, 25.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  14%|█▍        | 155M/1.12G [00:07<00:40, 24.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  14%|█▍        | 157M/1.12G [00:07<00:38, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  14%|█▍        | 160M/1.12G [00:07<00:38, 25.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  14%|█▍        | 163M/1.12G [00:07<00:36, 26.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  15%|█▍        | 165M/1.12G [00:07<00:40, 23.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  15%|█▍        | 168M/1.12G [00:08<00:38, 24.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  15%|█▌        | 171M/1.12G [00:08<00:39, 24.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  15%|█▌        | 174M/1.12G [00:08<00:38, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  16%|█▌        | 176M/1.12G [00:08<00:38, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  16%|█▌        | 179M/1.12G [00:08<00:36, 25.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  16%|█▌        | 182M/1.12G [00:08<00:38, 24.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  16%|█▋        | 184M/1.12G [00:08<00:38, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  17%|█▋        | 187M/1.12G [00:08<00:36, 25.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  17%|█▋        | 190M/1.12G [00:08<00:39, 23.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  17%|█▋        | 192M/1.12G [00:09<00:37, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  17%|█▋        | 195M/1.12G [00:09<00:39, 23.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  18%|█▊        | 198M/1.12G [00:09<00:38, 24.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  18%|█▊        | 201M/1.12G [00:09<00:37, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  18%|█▊        | 203M/1.12G [00:09<00:37, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  18%|█▊        | 206M/1.12G [00:09<00:37, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  19%|█▊        | 209M/1.12G [00:09<00:36, 25.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  19%|█▉        | 211M/1.12G [00:09<00:36, 25.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  19%|█▉        | 214M/1.12G [00:09<00:37, 24.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  19%|█▉        | 217M/1.12G [00:10<00:37, 24.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  20%|█▉        | 220M/1.12G [00:10<00:35, 25.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  20%|█▉        | 222M/1.12G [00:10<00:35, 25.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  20%|██        | 225M/1.12G [00:10<00:36, 24.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  20%|██        | 228M/1.12G [00:10<00:34, 25.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  21%|██        | 231M/1.12G [00:10<00:35, 25.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  21%|██        | 233M/1.12G [00:10<00:37, 23.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  21%|██        | 236M/1.12G [00:10<00:34, 25.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  21%|██▏       | 239M/1.12G [00:10<00:35, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  21%|██▏       | 241M/1.12G [00:11<00:37, 23.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  22%|██▏       | 244M/1.12G [00:11<00:34, 25.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  22%|██▏       | 247M/1.12G [00:11<00:34, 25.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  22%|██▏       | 250M/1.12G [00:11<00:37, 23.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  23%|██▎       | 253M/1.12G [00:11<00:34, 25.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  23%|██▎       | 255M/1.12G [00:11<00:34, 25.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  23%|██▎       | 258M/1.12G [00:11<00:36, 23.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  23%|██▎       | 261M/1.12G [00:11<00:34, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  23%|██▎       | 263M/1.12G [00:11<00:34, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  24%|██▎       | 266M/1.12G [00:12<00:35, 24.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  24%|██▍       | 269M/1.12G [00:12<00:34, 24.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  24%|██▍       | 271M/1.12G [00:12<00:34, 25.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  24%|██▍       | 274M/1.12G [00:12<00:32, 25.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  25%|██▍       | 277M/1.12G [00:12<00:34, 24.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  25%|██▍       | 279M/1.12G [00:12<00:33, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  25%|██▌       | 282M/1.12G [00:12<00:33, 25.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  25%|██▌       | 285M/1.12G [00:12<00:32, 25.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  26%|██▌       | 287M/1.12G [00:12<00:34, 24.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  26%|██▌       | 290M/1.12G [00:12<00:33, 24.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  26%|██▌       | 292M/1.12G [00:13<00:32, 25.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  26%|██▋       | 295M/1.12G [00:13<00:34, 24.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  27%|██▋       | 298M/1.12G [00:13<00:33, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  27%|██▋       | 300M/1.12G [00:13<00:33, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  27%|██▋       | 303M/1.12G [00:13<00:32, 25.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  27%|██▋       | 306M/1.12G [00:13<00:33, 24.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  27%|██▋       | 308M/1.12G [00:13<00:33, 24.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  28%|██▊       | 311M/1.12G [00:13<00:32, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  28%|██▊       | 313M/1.12G [00:13<00:31, 25.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  28%|██▊       | 316M/1.12G [00:14<00:33, 24.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  28%|██▊       | 319M/1.12G [00:14<00:32, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  29%|██▊       | 321M/1.12G [00:14<00:32, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  29%|██▉       | 324M/1.12G [00:14<00:32, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  29%|██▉       | 326M/1.12G [00:14<00:33, 24.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  29%|██▉       | 329M/1.12G [00:14<00:31, 25.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  30%|██▉       | 332M/1.12G [00:14<00:31, 25.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  30%|██▉       | 334M/1.12G [00:14<00:31, 25.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  30%|██▉       | 337M/1.12G [00:14<00:32, 24.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  30%|███       | 339M/1.12G [00:14<00:31, 25.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  30%|███       | 342M/1.12G [00:15<00:31, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  31%|███       | 344M/1.12G [00:15<00:32, 24.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  31%|███       | 347M/1.12G [00:15<00:31, 24.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  31%|███       | 350M/1.12G [00:15<00:30, 25.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  31%|███▏      | 353M/1.12G [00:15<00:30, 25.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  32%|███▏      | 355M/1.12G [00:15<00:31, 24.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  32%|███▏      | 358M/1.12G [00:15<00:31, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  32%|███▏      | 360M/1.12G [00:15<00:30, 25.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  32%|███▏      | 363M/1.12G [00:15<00:30, 25.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  33%|███▎      | 365M/1.12G [00:16<00:30, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  33%|███▎      | 368M/1.12G [00:16<00:31, 24.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  33%|███▎      | 371M/1.12G [00:16<00:29, 25.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  33%|███▎      | 373M/1.12G [00:16<00:29, 25.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  34%|███▎      | 376M/1.12G [00:16<00:30, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  34%|███▎      | 379M/1.12G [00:16<00:30, 24.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  34%|███▍      | 381M/1.12G [00:16<00:29, 25.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  34%|███▍      | 384M/1.12G [00:16<00:28, 25.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  34%|███▍      | 386M/1.12G [00:16<00:30, 24.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  35%|███▍      | 389M/1.12G [00:16<00:29, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  35%|███▍      | 392M/1.12G [00:17<00:29, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  35%|███▌      | 394M/1.12G [00:17<00:29, 25.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  35%|███▌      | 397M/1.12G [00:17<00:29, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  36%|███▌      | 399M/1.12G [00:17<00:29, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  36%|███▌      | 402M/1.12G [00:17<00:28, 25.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  36%|███▌      | 405M/1.12G [00:17<00:28, 25.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  36%|███▋      | 407M/1.12G [00:17<00:28, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  37%|███▋      | 410M/1.12G [00:17<00:28, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  37%|███▋      | 412M/1.12G [00:17<00:28, 25.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  37%|███▋      | 415M/1.12G [00:18<00:27, 25.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  37%|███▋      | 418M/1.12G [00:18<00:28, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  37%|███▋      | 420M/1.12G [00:18<00:28, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  38%|███▊      | 423M/1.12G [00:18<00:28, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  38%|███▊      | 426M/1.12G [00:18<00:27, 25.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  38%|███▊      | 428M/1.12G [00:18<00:27, 25.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  38%|███▊      | 431M/1.12G [00:18<00:27, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  39%|███▊      | 433M/1.12G [00:18<00:27, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  39%|███▉      | 436M/1.12G [00:18<00:27, 25.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  39%|███▉      | 438M/1.12G [00:18<00:27, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  39%|███▉      | 441M/1.12G [00:19<00:27, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  40%|███▉      | 443M/1.12G [00:19<00:27, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  40%|███▉      | 446M/1.12G [00:19<00:26, 25.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  40%|███▉      | 449M/1.12G [00:19<00:26, 25.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  40%|████      | 451M/1.12G [00:19<00:27, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  40%|████      | 454M/1.12G [00:19<00:27, 24.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  41%|████      | 456M/1.12G [00:19<00:27, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  41%|████      | 459M/1.12G [00:19<00:26, 25.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  41%|████      | 462M/1.12G [00:19<00:26, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  41%|████▏     | 464M/1.12G [00:20<00:26, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  42%|████▏     | 467M/1.12G [00:20<00:26, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  42%|████▏     | 470M/1.12G [00:20<00:25, 25.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  42%|████▏     | 472M/1.12G [00:20<00:26, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  42%|████▏     | 475M/1.12G [00:20<00:26, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  43%|████▎     | 477M/1.12G [00:20<00:25, 25.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  43%|████▎     | 480M/1.12G [00:20<00:25, 25.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  43%|████▎     | 482M/1.12G [00:20<00:25, 25.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  43%|████▎     | 485M/1.12G [00:20<00:25, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  43%|████▎     | 488M/1.12G [00:20<00:25, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  44%|████▎     | 490M/1.12G [00:21<00:25, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  44%|████▍     | 493M/1.12G [00:21<00:24, 25.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  44%|████▍     | 495M/1.12G [00:21<00:25, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  44%|████▍     | 498M/1.12G [00:21<00:25, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  45%|████▍     | 500M/1.12G [00:21<00:24, 25.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  45%|████▍     | 503M/1.12G [00:21<00:24, 25.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  45%|████▌     | 506M/1.12G [00:21<00:24, 25.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  45%|████▌     | 508M/1.12G [00:21<00:25, 24.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  45%|████▌     | 511M/1.12G [00:21<00:34, 17.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  46%|████▌     | 516M/1.12G [00:22<00:27, 22.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  46%|████▋     | 520M/1.12G [00:22<00:25, 23.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  47%|████▋     | 523M/1.12G [00:22<00:25, 23.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  47%|████▋     | 526M/1.12G [00:22<00:24, 24.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  47%|████▋     | 528M/1.12G [00:22<00:24, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  47%|████▋     | 531M/1.12G [00:22<00:24, 24.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  48%|████▊     | 534M/1.12G [00:22<00:24, 24.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  48%|████▊     | 536M/1.12G [00:22<00:23, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  48%|████▊     | 539M/1.12G [00:22<00:23, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  48%|████▊     | 541M/1.12G [00:23<00:25, 23.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  49%|████▊     | 544M/1.12G [00:23<00:23, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  49%|████▊     | 547M/1.12G [00:23<00:22, 25.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  49%|████▉     | 550M/1.12G [00:23<00:24, 23.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  49%|████▉     | 552M/1.12G [00:23<00:23, 24.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  49%|████▉     | 555M/1.12G [00:23<00:22, 25.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  50%|████▉     | 558M/1.12G [00:23<00:24, 23.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  50%|████▉     | 560M/1.12G [00:23<00:23, 24.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  50%|█████     | 563M/1.12G [00:23<00:21, 25.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  50%|█████     | 566M/1.12G [00:24<00:23, 23.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  51%|█████     | 569M/1.12G [00:24<00:22, 24.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  51%|█████     | 572M/1.12G [00:24<00:21, 25.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  51%|█████     | 574M/1.12G [00:24<00:23, 23.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  51%|█████▏    | 577M/1.12G [00:24<00:23, 23.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  52%|█████▏    | 580M/1.12G [00:24<00:21, 25.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  52%|█████▏    | 583M/1.12G [00:24<00:22, 24.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  52%|█████▏    | 585M/1.12G [00:24<00:22, 24.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  52%|█████▏    | 588M/1.12G [00:24<00:20, 25.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  53%|█████▎    | 591M/1.12G [00:25<00:21, 24.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  53%|█████▎    | 593M/1.12G [00:25<00:21, 24.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  53%|█████▎    | 596M/1.12G [00:25<00:21, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  53%|█████▎    | 599M/1.12G [00:25<00:20, 25.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  54%|█████▎    | 601M/1.12G [00:25<00:20, 25.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  54%|█████▍    | 604M/1.12G [00:25<00:21, 24.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  54%|█████▍    | 606M/1.12G [00:25<00:20, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  54%|█████▍    | 609M/1.12G [00:25<00:19, 25.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  55%|█████▍    | 612M/1.12G [00:25<00:21, 23.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  55%|█████▍    | 615M/1.12G [00:26<00:20, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  55%|█████▌    | 618M/1.12G [00:26<00:19, 25.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  55%|█████▌    | 620M/1.12G [00:26<00:20, 23.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  55%|█████▌    | 623M/1.12G [00:26<00:20, 24.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  56%|█████▌    | 626M/1.12G [00:26<00:19, 25.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  56%|█████▌    | 628M/1.12G [00:26<00:19, 25.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  56%|█████▌    | 631M/1.12G [00:26<00:20, 24.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  56%|█████▋    | 633M/1.12G [00:26<00:20, 24.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  57%|█████▋    | 636M/1.12G [00:26<00:19, 25.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  57%|█████▋    | 639M/1.12G [00:27<00:19, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  57%|█████▋    | 641M/1.12G [00:27<00:20, 24.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  57%|█████▋    | 644M/1.12G [00:27<00:19, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  58%|█████▊    | 647M/1.12G [00:27<00:18, 25.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  58%|█████▊    | 649M/1.12G [00:27<00:19, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  58%|█████▊    | 652M/1.12G [00:27<00:19, 24.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  58%|█████▊    | 654M/1.12G [00:27<00:18, 25.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  59%|█████▊    | 657M/1.12G [00:27<00:18, 25.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  59%|█████▉    | 660M/1.12G [00:27<00:18, 25.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  59%|█████▉    | 662M/1.12G [00:27<00:18, 24.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  59%|█████▉    | 665M/1.12G [00:28<00:18, 24.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  59%|█████▉    | 667M/1.12G [00:28<00:17, 25.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  60%|█████▉    | 670M/1.12G [00:28<00:18, 25.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  60%|█████▉    | 673M/1.12G [00:28<00:18, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  60%|██████    | 675M/1.12G [00:28<00:18, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  60%|██████    | 678M/1.12G [00:28<00:17, 25.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  61%|██████    | 680M/1.12G [00:28<00:17, 25.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  61%|██████    | 683M/1.12G [00:28<00:17, 24.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  61%|██████    | 685M/1.12G [00:28<00:17, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  61%|██████▏   | 688M/1.12G [00:29<00:17, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  62%|██████▏   | 690M/1.12G [00:29<00:17, 25.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  62%|██████▏   | 693M/1.12G [00:29<00:17, 25.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  62%|██████▏   | 696M/1.12G [00:29<00:17, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  62%|██████▏   | 698M/1.12G [00:29<00:17, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  62%|██████▏   | 701M/1.12G [00:29<00:16, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  63%|██████▎   | 703M/1.12G [00:29<00:16, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  63%|██████▎   | 706M/1.12G [00:29<00:16, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  63%|██████▎   | 708M/1.12G [00:29<00:16, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  63%|██████▎   | 711M/1.12G [00:29<00:16, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  64%|██████▎   | 714M/1.12G [00:30<00:16, 25.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  64%|██████▍   | 716M/1.12G [00:30<00:16, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  64%|██████▍   | 719M/1.12G [00:30<00:16, 25.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  64%|██████▍   | 721M/1.12G [00:30<00:18, 21.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  65%|██████▍   | 725M/1.12G [00:30<00:16, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  65%|██████▍   | 728M/1.12G [00:30<00:15, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  65%|██████▌   | 730M/1.12G [00:30<00:16, 24.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  65%|██████▌   | 733M/1.12G [00:30<00:15, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  66%|██████▌   | 736M/1.12G [00:30<00:15, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  66%|██████▌   | 738M/1.12G [00:31<00:15, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  66%|██████▌   | 741M/1.12G [00:31<00:15, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  66%|██████▌   | 743M/1.12G [00:31<00:15, 24.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  66%|██████▋   | 746M/1.12G [00:31<00:15, 24.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  67%|██████▋   | 749M/1.12G [00:31<00:14, 25.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  67%|██████▋   | 751M/1.12G [00:31<00:14, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  67%|██████▋   | 754M/1.12G [00:31<00:15, 24.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  67%|██████▋   | 756M/1.12G [00:31<00:14, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  68%|██████▊   | 759M/1.12G [00:31<00:14, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  68%|██████▊   | 761M/1.12G [00:31<00:14, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  68%|██████▊   | 764M/1.12G [00:32<00:14, 25.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  68%|██████▊   | 767M/1.12G [00:32<00:14, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  69%|██████▊   | 769M/1.12G [00:32<00:14, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  69%|██████▉   | 772M/1.12G [00:32<00:14, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  69%|██████▉   | 774M/1.12G [00:32<00:13, 25.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  69%|██████▉   | 777M/1.12G [00:32<00:13, 25.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  69%|██████▉   | 779M/1.12G [00:32<00:13, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  70%|██████▉   | 782M/1.12G [00:32<00:13, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  70%|██████▉   | 785M/1.12G [00:32<00:13, 25.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  70%|███████   | 787M/1.12G [00:33<00:13, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  70%|███████   | 790M/1.12G [00:33<00:13, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  71%|███████   | 792M/1.12G [00:33<00:13, 25.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  71%|███████   | 795M/1.12G [00:33<00:13, 25.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  71%|███████   | 797M/1.12G [00:33<00:12, 25.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  71%|███████▏  | 800M/1.12G [00:33<00:13, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  72%|███████▏  | 802M/1.12G [00:33<00:12, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  72%|███████▏  | 805M/1.12G [00:33<00:12, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  72%|███████▏  | 808M/1.12G [00:33<00:12, 25.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  72%|███████▏  | 810M/1.12G [00:33<00:12, 24.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  72%|███████▏  | 813M/1.12G [00:34<00:12, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  73%|███████▎  | 815M/1.12G [00:34<00:12, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  73%|███████▎  | 818M/1.12G [00:34<00:11, 25.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  73%|███████▎  | 821M/1.12G [00:34<00:12, 24.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  73%|███████▎  | 823M/1.12G [00:34<00:12, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  74%|███████▎  | 826M/1.12G [00:34<00:11, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  74%|███████▍  | 829M/1.12G [00:34<00:11, 25.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  74%|███████▍  | 831M/1.12G [00:34<00:11, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  74%|███████▍  | 834M/1.12G [00:34<00:11, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  75%|███████▍  | 836M/1.12G [00:34<00:11, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  75%|███████▍  | 839M/1.12G [00:35<00:11, 25.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  75%|███████▍  | 842M/1.12G [00:35<00:11, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  75%|███████▌  | 844M/1.12G [00:35<00:11, 24.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  75%|███████▌  | 847M/1.12G [00:35<00:11, 24.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  76%|███████▌  | 850M/1.12G [00:35<00:10, 25.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  76%|███████▌  | 852M/1.12G [00:36<00:28, 9.61MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  76%|███████▌  | 855M/1.12G [00:36<00:22, 12.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  77%|███████▋  | 861M/1.12G [00:36<00:16, 15.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  78%|███████▊  | 873M/1.12G [00:36<00:11, 21.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  78%|███████▊  | 879M/1.12G [00:36<00:10, 23.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  79%|███████▊  | 884M/1.12G [00:36<00:10, 23.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  79%|███████▉  | 888M/1.12G [00:37<00:09, 23.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  79%|███████▉  | 891M/1.12G [00:37<00:09, 24.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  80%|███████▉  | 895M/1.12G [00:37<00:09, 24.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  80%|████████  | 898M/1.12G [00:37<00:09, 24.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  80%|████████  | 901M/1.12G [00:37<00:09, 24.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  81%|████████  | 904M/1.12G [00:37<00:08, 24.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  81%|████████  | 906M/1.12G [00:37<00:08, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  81%|████████  | 909M/1.12G [00:37<00:08, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  81%|████████  | 912M/1.12G [00:38<00:08, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  81%|████████▏ | 914M/1.12G [00:38<00:08, 24.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  82%|████████▏ | 917M/1.12G [00:38<00:08, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  82%|████████▏ | 919M/1.12G [00:38<00:08, 25.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  82%|████████▏ | 922M/1.12G [00:38<00:08, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  82%|████████▏ | 924M/1.12G [00:38<00:08, 24.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  83%|████████▎ | 927M/1.12G [00:38<00:08, 24.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  83%|████████▎ | 930M/1.12G [00:38<00:07, 25.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  83%|████████▎ | 932M/1.12G [00:38<00:07, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  83%|████████▎ | 935M/1.12G [00:38<00:07, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  84%|████████▎ | 937M/1.12G [00:39<00:07, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  84%|████████▍ | 940M/1.12G [00:39<00:07, 25.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  84%|████████▍ | 943M/1.12G [00:39<00:07, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  84%|████████▍ | 945M/1.12G [00:39<00:07, 24.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  84%|████████▍ | 948M/1.12G [00:39<00:07, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  85%|████████▍ | 950M/1.12G [00:39<00:06, 25.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  85%|████████▍ | 953M/1.12G [00:39<00:06, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  85%|████████▌ | 956M/1.12G [00:39<00:06, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  85%|████████▌ | 958M/1.12G [00:39<00:06, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  86%|████████▌ | 961M/1.12G [00:39<00:06, 25.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  86%|████████▌ | 963M/1.12G [00:40<00:06, 25.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  86%|████████▌ | 966M/1.12G [00:40<00:06, 24.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  86%|████████▋ | 968M/1.12G [00:40<00:06, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  87%|████████▋ | 971M/1.12G [00:40<00:06, 25.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  87%|████████▋ | 974M/1.12G [00:40<00:05, 25.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  87%|████████▋ | 976M/1.12G [00:40<00:05, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  87%|████████▋ | 979M/1.12G [00:40<00:05, 24.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  87%|████████▋ | 981M/1.12G [00:40<00:05, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  88%|████████▊ | 984M/1.12G [00:40<00:05, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  88%|████████▊ | 986M/1.12G [00:41<00:05, 25.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  88%|████████▊ | 989M/1.12G [00:41<00:05, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  88%|████████▊ | 991M/1.12G [00:41<00:05, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  89%|████████▊ | 994M/1.12G [00:41<00:05, 24.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  89%|████████▉ | 997M/1.12G [00:41<00:04, 25.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  89%|████████▉ | 999M/1.12G [00:41<00:05, 24.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  89%|████████▉ | 1.00G/1.12G [00:41<00:04, 24.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  89%|████████▉ | 1.00G/1.12G [00:41<00:04, 25.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  90%|████████▉ | 1.01G/1.12G [00:41<00:04, 25.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  90%|████████▉ | 1.01G/1.12G [00:41<00:04, 23.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  90%|█████████ | 1.01G/1.12G [00:42<00:04, 24.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  90%|█████████ | 1.02G/1.12G [00:42<00:04, 25.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  91%|█████████ | 1.02G/1.12G [00:42<00:04, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  91%|█████████ | 1.02G/1.12G [00:42<00:04, 24.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  91%|█████████ | 1.02G/1.12G [00:42<00:04, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  91%|█████████▏| 1.03G/1.12G [00:42<00:03, 25.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  92%|█████████▏| 1.03G/1.12G [00:42<00:03, 25.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  92%|█████████▏| 1.03G/1.12G [00:42<00:03, 24.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  92%|█████████▏| 1.03G/1.12G [00:42<00:03, 24.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  92%|█████████▏| 1.04G/1.12G [00:43<00:04, 20.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  93%|█████████▎| 1.04G/1.12G [00:43<00:03, 24.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  93%|█████████▎| 1.04G/1.12G [00:43<00:03, 23.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  93%|█████████▎| 1.05G/1.12G [00:43<00:03, 24.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  93%|█████████▎| 1.05G/1.12G [00:43<00:02, 25.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  94%|█████████▎| 1.05G/1.12G [00:43<00:02, 23.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  94%|█████████▍| 1.05G/1.12G [00:43<00:02, 24.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  94%|█████████▍| 1.06G/1.12G [00:43<00:02, 25.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  94%|█████████▍| 1.06G/1.12G [00:43<00:02, 25.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  95%|█████████▍| 1.06G/1.12G [00:44<00:02, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  95%|█████████▍| 1.06G/1.12G [00:44<00:02, 24.5MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  95%|█████████▌| 1.07G/1.12G [00:44<00:02, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  95%|█████████▌| 1.07G/1.12G [00:44<00:02, 25.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  96%|█████████▌| 1.07G/1.12G [00:44<00:02, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  96%|█████████▌| 1.08G/1.12G [00:44<00:01, 24.1MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  96%|█████████▌| 1.08G/1.12G [00:44<00:01, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  96%|█████████▋| 1.08G/1.12G [00:44<00:01, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  97%|█████████▋| 1.08G/1.12G [00:44<00:01, 25.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  97%|█████████▋| 1.09G/1.12G [00:45<00:02, 18.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  97%|█████████▋| 1.09G/1.12G [00:45<00:01, 22.9MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  98%|█████████▊| 1.09G/1.12G [00:45<00:01, 23.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  98%|█████████▊| 1.10G/1.12G [00:45<00:01, 23.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  98%|█████████▊| 1.10G/1.12G [00:45<00:00, 24.0MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  98%|█████████▊| 1.10G/1.12G [00:45<00:00, 24.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  99%|█████████▊| 1.11G/1.12G [00:45<00:00, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  99%|█████████▊| 1.11G/1.12G [00:45<00:00, 24.4MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  99%|█████████▉| 1.11G/1.12G [00:46<00:00, 25.3MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  99%|█████████▉| 1.11G/1.12G [00:46<00:00, 23.2MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz:  99%|█████████▉| 1.12G/1.12G [00:46<00:00, 24.6MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz: 100%|█████████▉| 1.12G/1.12G [00:46<00:00, 24.7MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz: 100%|█████████▉| 1.12G/1.12G [00:46<00:00, 24.8MB/s]
Downloading tutorial_transformer_generator_v1.tar.gz: 100%|██████████| 1.12G/1.12G [00:46<00:00, 24.1MB/s]
------------------------------ Captured log call -------------------------------
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "GET /downloads/_models/tutorial_transformer_generator/tutorial_transformer_generator_v1.tar.gz HTTP/1.1" 301 183
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "GET /downloads/_models/tutorial_transformer_generator/tutorial_transformer_generator_v1.tar.gz HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "GET /parlai/_models/tutorial_transformer_generator/tutorial_transformer_generator_v1.tar.gz HTTP/1.1" 200 1122254440
_______________ TestKnowledgeRetriever.test_knowledge_retriever ________________

self = <test_wizard.TestKnowledgeRetriever testMethod=test_knowledge_retriever>

    def test_knowledge_retriever(self):
        from parlai.core.params import ParlaiParser
    
        parser = ParlaiParser(False, False)
        KnowledgeRetrieverAgent.add_cmdline_args(parser)
        parser.set_params(
            model='projects:wizard_of_wikipedia:knowledge_retriever',
            add_token_knowledge=True,
        )
        knowledge_opt = parser.parse_args([], print_args=False)
>       knowledge_agent = create_agent(knowledge_opt)

nightly/gpu/test_wizard.py:85: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
../parlai/core/agents.py:389: in create_agent
    model = model_class(opt)
../projects/wizard_of_wikipedia/knowledge_retriever/knowledge_retriever.py:64: in __init__
    self._set_up_selector(opt)
../projects/wizard_of_wikipedia/knowledge_retriever/knowledge_retriever.py:105: in _set_up_selector
    self.selector = create_agent(selector_opt)
../parlai/core/agents.py:378: in create_agent
    model = create_agent_from_opt_file(opt)
../parlai/core/agents.py:333: in create_agent_from_opt_file
    return model_class(new_opt)
../parlai/core/torch_ranker_agent.py:184: in __init__
    super().__init__(opt, shared)
../parlai/core/torch_agent.py:720: in __init__
    self.dict = self.build_dictionary()
../parlai/core/torch_agent.py:803: in build_dictionary
    d = self.dictionary_class()(self.opt)
../parlai/core/dict.py:304: in __init__
    self.bpe = bpe_factory(opt, shared)
../parlai/utils/bpe.py:80: in bpe_factory
    bpe_helper = SubwordBPEHelper(opt, shared)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <parlai.utils.bpe.SubwordBPEHelper object at 0x7f21bc139810>
opt = {'init_opt': None, 'show_advanced_args': False, 'task': 'wizard_of_wikipedia:docreader', 'datatype': 'train', 'image_m..., 'add_token_knowledge': True, 'debug': False, 'download_path': '/home/aryaman4/ParlAI/downloads', 'dict_loaded': True}
shared = None

    def __init__(self, opt: Opt, shared: TShared = None):
        """
        Initialize the BPE module.
    
        :param opt:
            options
        :param shared:
            shared dictionary
        """
        super().__init__(opt, shared)
        if not SUBWORD_BPE_INSTALLED:
            raise RuntimeError(
>               "Please run \"pip install 'git+https://github.com/rsennrich"
                "/subword-nmt.git#egg=subword-nmt'\""
            )
E           RuntimeError: Please run "pip install 'git+https://github.com/rsennrich/subword-nmt.git#egg=subword-nmt'"

../parlai/utils/bpe.py:286: RuntimeError
----------------------------- Captured stdout call -----------------------------
2020-07-07 23:33:58,573 INFO     | building data: /tmp/tmprtf0e64l/models/wizard_of_wikipedia/end2end_generator_0.tar.gz
2020-07-07 23:33:58,573 INFO     | Downloading http://parl.ai/downloads/_models/wizard_of_wikipedia/end2end_generator_0.tar.gz to /tmp/tmprtf0e64l/models/wizard_of_wikipedia/end2end_generator_0.tar.gz
2020-07-07 23:34:12,831 INFO     | building data: /tmp/tmprtf0e64l/models/wizard_of_wikipedia/full_dialogue_retrieval_model/wizard_package3.tgz
2020-07-07 23:34:12,831 INFO     | Downloading http://parl.ai/downloads/_models/wizard_of_wikipedia/wizard_package3.tgz to /tmp/tmprtf0e64l/models/wizard_of_wikipedia/full_dialogue_retrieval_model/wizard_package3.tgz
2020-07-07 23:35:01,181 INFO     | building data: /tmp/tmprtf0e64l/models/wizard_of_wikipedia/knowledge_retriever/knowledge_retriever.tgz
2020-07-07 23:35:01,181 INFO     | Downloading http://parl.ai/downloads/_models/wizard_of_wikipedia/knowledge_retriever.tgz to /tmp/tmprtf0e64l/models/wizard_of_wikipedia/knowledge_retriever/knowledge_retriever.tgz
2020-07-07 23:37:03,768 INFO     | building data: /tmp/tmprtf0e64l/models/wikipedia_full/tfidf_retriever/model.tgz
2020-07-07 23:37:03,768 INFO     | Downloading http://parl.ai/downloads/_models/wikipedia_full/tfidf_retriever/model.tgz to /tmp/tmprtf0e64l/models/wikipedia_full/tfidf_retriever/model.tgz
2020-07-07 23:45:54,502 WARNING  | overriding opt['remove_title'] to False (previously: True)
2020-07-07 23:45:54,525 WARNING  | WARNING: Neither the specified dict file (test_ret.dict) nor the `model_file`.dict file (/tmp/tmprtf0e64l/models/wikipedia_full/tfidf_retriever/model.dict) exists, check to make sure either is correct. This may manifest as a shape mismatch later on.
2020-07-07 23:45:54,526 INFO     | Loading /tmp/tmprtf0e64l/models/wikipedia_full/tfidf_retriever/model.tfidf
2020-07-07 23:46:15,967 WARNING  | overriding opt['batchsize'] to 1 (previously: 16)
2020-07-07 23:46:16,732 INFO     | loading dictionary from /tmp/tmprtf0e64l/models/wizard_of_wikipedia/knowledge_retriever/model.dict
2020-07-07 23:46:16,889 INFO     | num words = 54944
----------------------------- Captured stderr call -----------------------------

Downloading end2end_generator_0.tar.gz: 0.00B [00:00, ?B/s]
Downloading end2end_generator_0.tar.gz:   0%|          | 32.8k/230M [00:00<1:29:40, 42.7kB/s]
Downloading end2end_generator_0.tar.gz:   0%|          | 131k/230M [00:00<1:05:00, 58.9kB/s] 
Downloading end2end_generator_0.tar.gz:   0%|          | 262k/230M [00:01<46:22, 82.5kB/s]  
Downloading end2end_generator_0.tar.gz:   0%|          | 1.08M/230M [00:01<32:35, 117kB/s]
Downloading end2end_generator_0.tar.gz:   1%|          | 2.79M/230M [00:01<22:43, 167kB/s]
Downloading end2end_generator_0.tar.gz:   2%|▏         | 5.18M/230M [00:01<15:46, 237kB/s]
Downloading end2end_generator_0.tar.gz:   3%|▎         | 7.01M/230M [00:01<11:03, 336kB/s]
Downloading end2end_generator_0.tar.gz:   4%|▎         | 8.52M/230M [00:01<07:46, 475kB/s]
Downloading end2end_generator_0.tar.gz:   5%|▍         | 10.8M/230M [00:01<05:25, 672kB/s]
Downloading end2end_generator_0.tar.gz:   6%|▌         | 12.6M/230M [00:01<03:49, 945kB/s]
Downloading end2end_generator_0.tar.gz:   6%|▋         | 14.5M/230M [00:02<02:45, 1.30MB/s]
Downloading end2end_generator_0.tar.gz:   7%|▋         | 17.0M/230M [00:02<01:57, 1.82MB/s]
Downloading end2end_generator_0.tar.gz:   8%|▊         | 18.8M/230M [00:02<01:25, 2.48MB/s]
Downloading end2end_generator_0.tar.gz:   9%|▉         | 20.6M/230M [00:02<01:02, 3.34MB/s]
Downloading end2end_generator_0.tar.gz:  10%|▉         | 22.6M/230M [00:02<00:46, 4.46MB/s]
Downloading end2end_generator_0.tar.gz:  11%|█         | 24.5M/230M [00:02<00:38, 5.39MB/s]
Downloading end2end_generator_0.tar.gz:  11%|█▏        | 26.1M/230M [00:02<00:30, 6.71MB/s]
Downloading end2end_generator_0.tar.gz:  12%|█▏        | 28.3M/230M [00:02<00:25, 7.80MB/s]
Downloading end2end_generator_0.tar.gz:  13%|█▎        | 30.8M/230M [00:03<00:20, 9.82MB/s]
Downloading end2end_generator_0.tar.gz:  14%|█▍        | 32.6M/230M [00:03<00:17, 11.4MB/s]
Downloading end2end_generator_0.tar.gz:  15%|█▌        | 35.2M/230M [00:03<00:14, 13.6MB/s]
Downloading end2end_generator_0.tar.gz:  16%|█▌        | 37.2M/230M [00:03<00:14, 12.9MB/s]
Downloading end2end_generator_0.tar.gz:  17%|█▋        | 39.4M/230M [00:03<00:12, 14.7MB/s]
Downloading end2end_generator_0.tar.gz:  18%|█▊        | 41.3M/230M [00:03<00:12, 14.7MB/s]
Downloading end2end_generator_0.tar.gz:  19%|█▊        | 43.1M/230M [00:03<00:12, 14.8MB/s]
Downloading end2end_generator_0.tar.gz:  20%|██        | 46.9M/230M [00:03<00:10, 17.4MB/s]
Downloading end2end_generator_0.tar.gz:  21%|██▏       | 49.3M/230M [00:04<00:09, 18.9MB/s]
Downloading end2end_generator_0.tar.gz:  22%|██▏       | 51.5M/230M [00:04<00:09, 19.7MB/s]
Downloading end2end_generator_0.tar.gz:  23%|██▎       | 53.7M/230M [00:04<00:08, 19.9MB/s]
Downloading end2end_generator_0.tar.gz:  25%|██▍       | 56.3M/230M [00:04<00:08, 21.5MB/s]
Downloading end2end_generator_0.tar.gz:  26%|██▌       | 58.6M/230M [00:04<00:08, 19.9MB/s]
Downloading end2end_generator_0.tar.gz:  26%|██▋       | 60.8M/230M [00:04<00:09, 18.8MB/s]
Downloading end2end_generator_0.tar.gz:  28%|██▊       | 63.3M/230M [00:04<00:08, 20.4MB/s]
Downloading end2end_generator_0.tar.gz:  29%|██▊       | 65.5M/230M [00:04<00:07, 20.9MB/s]
Downloading end2end_generator_0.tar.gz:  29%|██▉       | 67.7M/230M [00:04<00:07, 21.2MB/s]
Downloading end2end_generator_0.tar.gz:  30%|███       | 69.9M/230M [00:05<00:07, 21.3MB/s]
Downloading end2end_generator_0.tar.gz:  31%|███▏      | 72.4M/230M [00:05<00:07, 20.0MB/s]
Downloading end2end_generator_0.tar.gz:  32%|███▏      | 74.4M/230M [00:05<00:07, 20.1MB/s]
Downloading end2end_generator_0.tar.gz:  33%|███▎      | 76.8M/230M [00:05<00:07, 21.0MB/s]
Downloading end2end_generator_0.tar.gz:  34%|███▍      | 78.9M/230M [00:05<00:07, 20.2MB/s]
Downloading end2end_generator_0.tar.gz:  35%|███▌      | 81.0M/230M [00:05<00:07, 20.2MB/s]
Downloading end2end_generator_0.tar.gz:  36%|███▋      | 83.6M/230M [00:05<00:06, 21.5MB/s]
Downloading end2end_generator_0.tar.gz:  37%|███▋      | 86.0M/230M [00:05<00:06, 22.3MB/s]
Downloading end2end_generator_0.tar.gz:  38%|███▊      | 88.3M/230M [00:05<00:06, 22.5MB/s]
Downloading end2end_generator_0.tar.gz:  39%|███▉      | 90.6M/230M [00:05<00:06, 22.7MB/s]
Downloading end2end_generator_0.tar.gz:  40%|████      | 92.9M/230M [00:06<00:06, 19.9MB/s]
Downloading end2end_generator_0.tar.gz:  41%|████▏     | 95.1M/230M [00:06<00:06, 19.6MB/s]
Downloading end2end_generator_0.tar.gz:  42%|████▏     | 97.6M/230M [00:06<00:06, 20.9MB/s]
Downloading end2end_generator_0.tar.gz:  43%|████▎     | 99.8M/230M [00:06<00:06, 21.2MB/s]
Downloading end2end_generator_0.tar.gz:  44%|████▍     | 102M/230M [00:06<00:05, 21.4MB/s] 
Downloading end2end_generator_0.tar.gz:  45%|████▌     | 104M/230M [00:06<00:05, 21.8MB/s]
Downloading end2end_generator_0.tar.gz:  46%|████▋     | 107M/230M [00:06<00:05, 22.5MB/s]
Downloading end2end_generator_0.tar.gz:  47%|████▋     | 109M/230M [00:06<00:05, 23.0MB/s]
Downloading end2end_generator_0.tar.gz:  49%|████▊     | 111M/230M [00:06<00:05, 20.6MB/s]
Downloading end2end_generator_0.tar.gz:  49%|████▉     | 114M/230M [00:07<00:05, 21.0MB/s]
Downloading end2end_generator_0.tar.gz:  50%|█████     | 116M/230M [00:07<00:05, 20.4MB/s]
Downloading end2end_generator_0.tar.gz:  51%|█████▏    | 118M/230M [00:07<00:05, 20.6MB/s]
Downloading end2end_generator_0.tar.gz:  52%|█████▏    | 120M/230M [00:07<00:05, 21.4MB/s]
Downloading end2end_generator_0.tar.gz:  53%|█████▎    | 123M/230M [00:07<00:04, 21.9MB/s]
Downloading end2end_generator_0.tar.gz:  54%|█████▍    | 125M/230M [00:07<00:04, 22.0MB/s]
Downloading end2end_generator_0.tar.gz:  55%|█████▌    | 127M/230M [00:07<00:04, 22.2MB/s]
Downloading end2end_generator_0.tar.gz:  56%|█████▋    | 130M/230M [00:07<00:04, 20.1MB/s]
Downloading end2end_generator_0.tar.gz:  58%|█████▊    | 132M/230M [00:07<00:04, 21.3MB/s]
Downloading end2end_generator_0.tar.gz:  58%|█████▊    | 134M/230M [00:08<00:04, 20.9MB/s]
Downloading end2end_generator_0.tar.gz:  59%|█████▉    | 137M/230M [00:08<00:04, 21.4MB/s]
Downloading end2end_generator_0.tar.gz:  60%|██████    | 139M/230M [00:08<00:04, 21.5MB/s]
Downloading end2end_generator_0.tar.gz:  61%|██████▏   | 141M/230M [00:08<00:04, 21.6MB/s]
Downloading end2end_generator_0.tar.gz:  63%|██████▎   | 144M/230M [00:08<00:03, 22.3MB/s]
Downloading end2end_generator_0.tar.gz:  63%|██████▎   | 146M/230M [00:08<00:03, 22.1MB/s]
Downloading end2end_generator_0.tar.gz:  64%|██████▍   | 148M/230M [00:08<00:04, 20.4MB/s]
Downloading end2end_generator_0.tar.gz:  65%|██████▌   | 150M/230M [00:08<00:03, 20.1MB/s]
Downloading end2end_generator_0.tar.gz:  66%|██████▋   | 152M/230M [00:08<00:03, 20.2MB/s]
Downloading end2end_generator_0.tar.gz:  67%|██████▋   | 154M/230M [00:09<00:03, 20.2MB/s]
Downloading end2end_generator_0.tar.gz:  68%|██████▊   | 157M/230M [00:09<00:03, 20.8MB/s]
Downloading end2end_generator_0.tar.gz:  69%|██████▉   | 159M/230M [00:09<00:03, 21.5MB/s]
Downloading end2end_generator_0.tar.gz:  70%|███████   | 161M/230M [00:09<00:03, 21.8MB/s]
Downloading end2end_generator_0.tar.gz:  71%|███████   | 164M/230M [00:09<00:03, 21.9MB/s]
Downloading end2end_generator_0.tar.gz:  72%|███████▏  | 166M/230M [00:09<00:02, 22.5MB/s]
Downloading end2end_generator_0.tar.gz:  73%|███████▎  | 168M/230M [00:09<00:02, 22.2MB/s]
Downloading end2end_generator_0.tar.gz:  74%|███████▍  | 171M/230M [00:09<00:02, 22.3MB/s]
Downloading end2end_generator_0.tar.gz:  75%|███████▌  | 173M/230M [00:09<00:02, 21.1MB/s]
Downloading end2end_generator_0.tar.gz:  76%|███████▌  | 175M/230M [00:09<00:02, 21.0MB/s]
Downloading end2end_generator_0.tar.gz:  77%|███████▋  | 177M/230M [00:10<00:02, 21.0MB/s]
Downloading end2end_generator_0.tar.gz:  78%|███████▊  | 179M/230M [00:10<00:02, 20.7MB/s]
Downloading end2end_generator_0.tar.gz:  79%|███████▉  | 182M/230M [00:10<00:02, 21.0MB/s]
Downloading end2end_generator_0.tar.gz:  80%|████████  | 184M/230M [00:10<00:02, 21.8MB/s]
Downloading end2end_generator_0.tar.gz:  81%|████████  | 186M/230M [00:10<00:01, 21.8MB/s]
Downloading end2end_generator_0.tar.gz:  82%|████████▏ | 188M/230M [00:10<00:01, 21.4MB/s]
Downloading end2end_generator_0.tar.gz:  83%|████████▎ | 191M/230M [00:10<00:01, 22.0MB/s]
Downloading end2end_generator_0.tar.gz:  84%|████████▍ | 193M/230M [00:10<00:01, 21.9MB/s]
Downloading end2end_generator_0.tar.gz:  85%|████████▍ | 195M/230M [00:10<00:01, 21.9MB/s]
Downloading end2end_generator_0.tar.gz:  86%|████████▌ | 198M/230M [00:10<00:01, 21.2MB/s]
Downloading end2end_generator_0.tar.gz:  87%|████████▋ | 200M/230M [00:11<00:01, 21.5MB/s]
Downloading end2end_generator_0.tar.gz:  88%|████████▊ | 202M/230M [00:11<00:01, 21.6MB/s]
Downloading end2end_generator_0.tar.gz:  89%|████████▉ | 204M/230M [00:11<00:01, 21.6MB/s]
Downloading end2end_generator_0.tar.gz:  90%|████████▉ | 206M/230M [00:11<00:01, 20.9MB/s]
Downloading end2end_generator_0.tar.gz:  91%|█████████ | 209M/230M [00:11<00:01, 20.7MB/s]
Downloading end2end_generator_0.tar.gz:  92%|█████████▏| 211M/230M [00:11<00:00, 20.5MB/s]
Downloading end2end_generator_0.tar.gz:  93%|█████████▎| 213M/230M [00:11<00:00, 21.6MB/s]
Downloading end2end_generator_0.tar.gz:  94%|█████████▍| 215M/230M [00:11<00:00, 21.8MB/s]
Downloading end2end_generator_0.tar.gz:  95%|█████████▍| 218M/230M [00:11<00:00, 21.5MB/s]
Downloading end2end_generator_0.tar.gz:  96%|█████████▌| 220M/230M [00:12<00:00, 22.1MB/s]
Downloading end2end_generator_0.tar.gz:  97%|█████████▋| 222M/230M [00:12<00:00, 22.1MB/s]
Downloading end2end_generator_0.tar.gz:  98%|█████████▊| 224M/230M [00:12<00:00, 21.6MB/s]
Downloading end2end_generator_0.tar.gz:  99%|█████████▊| 227M/230M [00:12<00:00, 22.1MB/s]
Downloading end2end_generator_0.tar.gz: 100%|█████████▉| 229M/230M [00:12<00:00, 22.1MB/s]
Downloading end2end_generator_0.tar.gz: 100%|██████████| 230M/230M [00:12<00:00, 18.4MB/s]

Downloading wizard_package3.tgz: 0.00B [00:00, ?B/s]
Downloading wizard_package3.tgz:   0%|          | 32.8k/950M [00:00<6:23:44, 41.3kB/s]
Downloading wizard_package3.tgz:   0%|          | 131k/950M [00:00<4:36:36, 57.2kB/s] 
Downloading wizard_package3.tgz:   0%|          | 524k/950M [00:01<3:15:32, 80.9kB/s]
Downloading wizard_package3.tgz:   0%|          | 2.16M/950M [00:01<2:17:06, 115kB/s]
Downloading wizard_package3.tgz:   1%|          | 5.77M/950M [00:01<1:35:49, 164kB/s]
Downloading wizard_package3.tgz:   1%|          | 9.34M/950M [00:01<1:06:59, 234kB/s]
Downloading wizard_package3.tgz:   1%|          | 11.5M/950M [00:01<47:02, 333kB/s]  
Downloading wizard_package3.tgz:   1%|▏         | 14.1M/950M [00:01<33:01, 472kB/s]
Downloading wizard_package3.tgz:   2%|▏         | 16.9M/950M [00:01<23:13, 670kB/s]
Downloading wizard_package3.tgz:   2%|▏         | 19.5M/950M [00:02<16:25, 944kB/s]
Downloading wizard_package3.tgz:   2%|▏         | 22.7M/950M [00:02<11:36, 1.33MB/s]
Downloading wizard_package3.tgz:   3%|▎         | 25.2M/950M [00:02<08:19, 1.85MB/s]
Downloading wizard_package3.tgz:   3%|▎         | 27.5M/950M [00:02<06:02, 2.55MB/s]
Downloading wizard_package3.tgz:   3%|▎         | 30.4M/950M [00:02<04:22, 3.50MB/s]
Downloading wizard_package3.tgz:   3%|▎         | 33.0M/950M [00:02<03:16, 4.66MB/s]
Downloading wizard_package3.tgz:   4%|▎         | 35.4M/950M [00:02<02:29, 6.12MB/s]
Downloading wizard_package3.tgz:   4%|▍         | 38.5M/950M [00:02<01:53, 8.06MB/s]
Downloading wizard_package3.tgz:   4%|▍         | 41.1M/950M [00:02<01:33, 9.72MB/s]
Downloading wizard_package3.tgz:   5%|▍         | 43.8M/950M [00:03<01:15, 12.0MB/s]
Downloading wizard_package3.tgz:   5%|▍         | 47.0M/950M [00:03<01:01, 14.8MB/s]
Downloading wizard_package3.tgz:   5%|▌         | 49.7M/950M [00:03<00:56, 16.0MB/s]
Downloading wizard_package3.tgz:   6%|▌         | 52.7M/950M [00:03<00:49, 18.2MB/s]
Downloading wizard_package3.tgz:   6%|▌         | 55.2M/950M [00:03<00:47, 18.7MB/s]
Downloading wizard_package3.tgz:   6%|▌         | 58.2M/950M [00:03<00:42, 20.8MB/s]
Downloading wizard_package3.tgz:   6%|▋         | 61.1M/950M [00:03<00:39, 22.7MB/s]
Downloading wizard_package3.tgz:   7%|▋         | 63.7M/950M [00:03<00:40, 21.7MB/s]
Downloading wizard_package3.tgz:   7%|▋         | 66.6M/950M [00:03<00:38, 23.2MB/s]
Downloading wizard_package3.tgz:   7%|▋         | 69.1M/950M [00:04<00:38, 22.6MB/s]
Downloading wizard_package3.tgz:   8%|▊         | 71.6M/950M [00:04<00:37, 23.2MB/s]
Downloading wizard_package3.tgz:   8%|▊         | 74.3M/950M [00:04<00:36, 24.1MB/s]
Downloading wizard_package3.tgz:   8%|▊         | 77.0M/950M [00:04<00:34, 25.0MB/s]
Downloading wizard_package3.tgz:   8%|▊         | 79.6M/950M [00:04<00:37, 23.3MB/s]
Downloading wizard_package3.tgz:   9%|▊         | 82.0M/950M [00:04<00:36, 23.5MB/s]
Downloading wizard_package3.tgz:   9%|▉         | 85.2M/950M [00:04<00:36, 23.8MB/s]
Downloading wizard_package3.tgz:   9%|▉         | 87.8M/950M [00:04<00:35, 24.3MB/s]
Downloading wizard_package3.tgz:  10%|▉         | 90.3M/950M [00:04<00:36, 23.7MB/s]
Downloading wizard_package3.tgz:  10%|▉         | 93.1M/950M [00:05<00:36, 23.3MB/s]
Downloading wizard_package3.tgz:  10%|█         | 96.1M/950M [00:05<00:34, 24.5MB/s]
Downloading wizard_package3.tgz:  10%|█         | 98.8M/950M [00:05<00:33, 25.1MB/s]
Downloading wizard_package3.tgz:  11%|█         | 101M/950M [00:05<00:35, 24.1MB/s] 
Downloading wizard_package3.tgz:  11%|█         | 104M/950M [00:05<00:35, 23.8MB/s]
Downloading wizard_package3.tgz:  11%|█         | 106M/950M [00:05<00:35, 23.9MB/s]
Downloading wizard_package3.tgz:  11%|█▏        | 109M/950M [00:05<00:36, 23.3MB/s]
Downloading wizard_package3.tgz:  12%|█▏        | 112M/950M [00:05<00:34, 24.2MB/s]
Downloading wizard_package3.tgz:  12%|█▏        | 115M/950M [00:05<00:33, 24.8MB/s]
Downloading wizard_package3.tgz:  12%|█▏        | 117M/950M [00:06<00:35, 23.5MB/s]
Downloading wizard_package3.tgz:  13%|█▎        | 119M/950M [00:06<00:35, 23.5MB/s]
Downloading wizard_package3.tgz:  13%|█▎        | 122M/950M [00:06<00:33, 24.9MB/s]
Downloading wizard_package3.tgz:  13%|█▎        | 125M/950M [00:06<00:35, 23.2MB/s]
Downloading wizard_package3.tgz:  13%|█▎        | 127M/950M [00:06<00:35, 22.9MB/s]
Downloading wizard_package3.tgz:  14%|█▎        | 130M/950M [00:06<00:32, 24.9MB/s]
Downloading wizard_package3.tgz:  14%|█▍        | 133M/950M [00:06<00:34, 23.9MB/s]
Downloading wizard_package3.tgz:  14%|█▍        | 135M/950M [00:06<00:43, 18.7MB/s]
Downloading wizard_package3.tgz:  15%|█▍        | 140M/950M [00:07<00:36, 22.1MB/s]
Downloading wizard_package3.tgz:  15%|█▌        | 143M/950M [00:07<00:35, 22.8MB/s]
Downloading wizard_package3.tgz:  15%|█▌        | 146M/950M [00:07<00:36, 21.9MB/s]
Downloading wizard_package3.tgz:  16%|█▌        | 150M/950M [00:07<00:33, 24.1MB/s]
Downloading wizard_package3.tgz:  16%|█▌        | 152M/950M [00:07<00:35, 22.5MB/s]
Downloading wizard_package3.tgz:  16%|█▋        | 155M/950M [00:07<00:32, 24.2MB/s]
Downloading wizard_package3.tgz:  17%|█▋        | 158M/950M [00:07<00:35, 22.0MB/s]
Downloading wizard_package3.tgz:  17%|█▋        | 161M/950M [00:07<00:32, 24.4MB/s]
Downloading wizard_package3.tgz:  17%|█▋        | 164M/950M [00:08<00:35, 21.9MB/s]
Downloading wizard_package3.tgz:  18%|█▊        | 167M/950M [00:08<00:32, 24.4MB/s]
Downloading wizard_package3.tgz:  18%|█▊        | 170M/950M [00:08<00:35, 22.2MB/s]
Downloading wizard_package3.tgz:  18%|█▊        | 173M/950M [00:08<00:32, 23.7MB/s]
Downloading wizard_package3.tgz:  18%|█▊        | 176M/950M [00:08<00:32, 23.9MB/s]
Downloading wizard_package3.tgz:  19%|█▉        | 178M/950M [00:08<00:33, 23.0MB/s]
Downloading wizard_package3.tgz:  19%|█▉        | 181M/950M [00:08<00:30, 24.8MB/s]
Downloading wizard_package3.tgz:  19%|█▉        | 184M/950M [00:08<00:31, 24.4MB/s]
Downloading wizard_package3.tgz:  20%|█▉        | 186M/950M [00:08<00:32, 23.5MB/s]
Downloading wizard_package3.tgz:  20%|█▉        | 189M/950M [00:09<00:31, 24.0MB/s]
Downloading wizard_package3.tgz:  20%|██        | 192M/950M [00:09<00:30, 24.9MB/s]
Downloading wizard_package3.tgz:  20%|██        | 194M/950M [00:09<00:31, 24.0MB/s]
Downloading wizard_package3.tgz:  21%|██        | 197M/950M [00:09<00:31, 23.7MB/s]
Downloading wizard_package3.tgz:  21%|██        | 200M/950M [00:09<00:31, 23.8MB/s]
Downloading wizard_package3.tgz:  21%|██▏       | 202M/950M [00:09<00:30, 24.5MB/s]
Downloading wizard_package3.tgz:  22%|██▏       | 205M/950M [00:09<00:30, 24.4MB/s]
Downloading wizard_package3.tgz:  22%|██▏       | 208M/950M [00:09<00:30, 24.3MB/s]
Downloading wizard_package3.tgz:  22%|██▏       | 211M/950M [00:09<00:29, 25.1MB/s]
Downloading wizard_package3.tgz:  22%|██▏       | 213M/950M [00:10<00:30, 24.0MB/s]
Downloading wizard_package3.tgz:  23%|██▎       | 216M/950M [00:10<00:30, 23.8MB/s]
Downloading wizard_package3.tgz:  23%|██▎       | 218M/950M [00:10<00:29, 24.6MB/s]
Downloading wizard_package3.tgz:  23%|██▎       | 221M/950M [00:10<00:29, 24.6MB/s]
Downloading wizard_package3.tgz:  24%|██▎       | 223M/950M [00:10<00:31, 23.1MB/s]
Downloading wizard_package3.tgz:  24%|██▍       | 226M/950M [00:10<00:30, 23.8MB/s]
Downloading wizard_package3.tgz:  24%|██▍       | 229M/950M [00:10<00:29, 24.6MB/s]
Downloading wizard_package3.tgz:  24%|██▍       | 231M/950M [00:10<00:29, 24.2MB/s]
Downloading wizard_package3.tgz:  25%|██▍       | 234M/950M [00:10<00:29, 24.2MB/s]
Downloading wizard_package3.tgz:  25%|██▍       | 236M/950M [00:11<00:29, 24.0MB/s]
Downloading wizard_package3.tgz:  25%|██▌       | 239M/950M [00:11<00:27, 25.5MB/s]
Downloading wizard_package3.tgz:  25%|██▌       | 242M/950M [00:11<00:29, 23.8MB/s]
Downloading wizard_package3.tgz:  26%|██▌       | 244M/950M [00:11<00:28, 24.4MB/s]
Downloading wizard_package3.tgz:  26%|██▌       | 247M/950M [00:11<00:28, 25.1MB/s]
Downloading wizard_package3.tgz:  26%|██▋       | 250M/950M [00:11<00:28, 25.0MB/s]
Downloading wizard_package3.tgz:  27%|██▋       | 252M/950M [00:11<00:29, 23.5MB/s]
Downloading wizard_package3.tgz:  27%|██▋       | 255M/950M [00:11<00:28, 24.0MB/s]
Downloading wizard_package3.tgz:  27%|██▋       | 258M/950M [00:11<00:27, 24.7MB/s]
Downloading wizard_package3.tgz:  27%|██▋       | 260M/950M [00:11<00:28, 24.0MB/s]
Downloading wizard_package3.tgz:  28%|██▊       | 263M/950M [00:12<00:27, 24.8MB/s]
Downloading wizard_package3.tgz:  28%|██▊       | 266M/950M [00:12<00:27, 24.7MB/s]
Downloading wizard_package3.tgz:  28%|██▊       | 268M/950M [00:12<00:28, 23.5MB/s]
Downloading wizard_package3.tgz:  28%|██▊       | 271M/950M [00:12<00:42, 16.0MB/s]
Downloading wizard_package3.tgz:  29%|██▉       | 277M/950M [00:12<00:32, 20.7MB/s]
Downloading wizard_package3.tgz:  30%|██▉       | 280M/950M [00:12<00:34, 19.2MB/s]
Downloading wizard_package3.tgz:  30%|██▉       | 284M/950M [00:12<00:30, 22.2MB/s]
Downloading wizard_package3.tgz:  30%|███       | 287M/950M [00:13<00:27, 23.9MB/s]
Downloading wizard_package3.tgz:  31%|███       | 290M/950M [00:13<00:27, 24.0MB/s]
Downloading wizard_package3.tgz:  31%|███       | 293M/950M [00:13<00:27, 23.9MB/s]
Downloading wizard_package3.tgz:  31%|███       | 296M/950M [00:13<00:26, 24.5MB/s]
Downloading wizard_package3.tgz:  31%|███▏      | 298M/950M [00:13<00:28, 23.0MB/s]
Downloading wizard_package3.tgz:  32%|███▏      | 301M/950M [00:13<00:26, 24.5MB/s]
Downloading wizard_package3.tgz:  32%|███▏      | 304M/950M [00:13<00:25, 24.9MB/s]
Downloading wizard_package3.tgz:  32%|███▏      | 306M/950M [00:13<00:27, 23.3MB/s]
Downloading wizard_package3.tgz:  33%|███▎      | 309M/950M [00:13<00:25, 24.7MB/s]
Downloading wizard_package3.tgz:  33%|███▎      | 312M/950M [00:14<00:29, 21.7MB/s]
Downloading wizard_package3.tgz:  33%|███▎      | 316M/950M [00:14<00:28, 22.5MB/s]
Downloading wizard_package3.tgz:  34%|███▎      | 319M/950M [00:14<00:25, 25.2MB/s]
Downloading wizard_package3.tgz:  34%|███▍      | 322M/950M [00:14<00:27, 22.7MB/s]
Downloading wizard_package3.tgz:  34%|███▍      | 325M/950M [00:14<00:24, 25.3MB/s]
Downloading wizard_package3.tgz:  35%|███▍      | 328M/950M [00:14<00:27, 22.5MB/s]
Downloading wizard_package3.tgz:  35%|███▍      | 331M/950M [00:14<00:28, 22.1MB/s]
Downloading wizard_package3.tgz:  35%|███▌      | 335M/950M [00:15<00:24, 24.6MB/s]
Downloading wizard_package3.tgz:  36%|███▌      | 338M/950M [00:15<00:27, 21.9MB/s]
Downloading wizard_package3.tgz:  36%|███▌      | 341M/950M [00:15<00:24, 25.1MB/s]
Downloading wizard_package3.tgz:  36%|███▌      | 344M/950M [00:15<00:26, 22.5MB/s]
Downloading wizard_package3.tgz:  37%|███▋      | 348M/950M [00:15<00:25, 23.4MB/s]
Downloading wizard_package3.tgz:  37%|███▋      | 350M/950M [00:15<00:26, 22.8MB/s]
Downloading wizard_package3.tgz:  37%|███▋      | 354M/950M [00:15<00:25, 23.8MB/s]
Downloading wizard_package3.tgz:  37%|███▋      | 356M/950M [00:15<00:25, 23.4MB/s]
Downloading wizard_package3.tgz:  38%|███▊      | 359M/950M [00:16<00:24, 24.0MB/s]
Downloading wizard_package3.tgz:  38%|███▊      | 361M/950M [00:16<00:25, 23.1MB/s]
Downloading wizard_package3.tgz:  38%|███▊      | 363M/950M [00:16<00:25, 22.7MB/s]
Downloading wizard_package3.tgz:  39%|███▊      | 366M/950M [00:16<00:24, 23.5MB/s]
Downloading wizard_package3.tgz:  39%|███▉      | 369M/950M [00:16<00:24, 23.8MB/s]
Downloading wizard_package3.tgz:  39%|███▉      | 371M/950M [00:16<00:24, 23.5MB/s]
Downloading wizard_package3.tgz:  39%|███▉      | 374M/950M [00:16<00:24, 23.5MB/s]
Downloading wizard_package3.tgz:  40%|███▉      | 377M/950M [00:16<00:23, 24.0MB/s]
Downloading wizard_package3.tgz:  40%|███▉      | 379M/950M [00:16<00:24, 22.9MB/s]
Downloading wizard_package3.tgz:  40%|████      | 382M/950M [00:17<00:23, 24.5MB/s]
Downloading wizard_package3.tgz:  41%|████      | 385M/950M [00:17<00:23, 24.2MB/s]
Downloading wizard_package3.tgz:  41%|████      | 387M/950M [00:17<00:24, 22.8MB/s]
Downloading wizard_package3.tgz:  41%|████      | 390M/950M [00:17<00:23, 24.3MB/s]
Downloading wizard_package3.tgz:  41%|████▏     | 393M/950M [00:17<00:22, 24.9MB/s]
Downloading wizard_package3.tgz:  42%|████▏     | 396M/950M [00:17<00:24, 23.0MB/s]
Downloading wizard_package3.tgz:  42%|████▏     | 399M/950M [00:17<00:22, 24.7MB/s]
Downloading wizard_package3.tgz:  42%|████▏     | 401M/950M [00:17<00:21, 25.0MB/s]
Downloading wizard_package3.tgz:  42%|████▏     | 404M/950M [00:17<00:23, 23.2MB/s]
Downloading wizard_package3.tgz:  43%|████▎     | 406M/950M [00:18<00:22, 23.8MB/s]
Downloading wizard_package3.tgz:  43%|████▎     | 409M/950M [00:18<00:21, 24.9MB/s]
Downloading wizard_package3.tgz:  43%|████▎     | 412M/950M [00:18<00:23, 22.9MB/s]
Downloading wizard_package3.tgz:  44%|████▎     | 415M/950M [00:18<00:22, 23.6MB/s]
Downloading wizard_package3.tgz:  44%|████▍     | 417M/950M [00:18<00:22, 23.5MB/s]
Downloading wizard_package3.tgz:  44%|████▍     | 420M/950M [00:18<00:22, 23.7MB/s]
Downloading wizard_package3.tgz:  44%|████▍     | 423M/950M [00:18<00:21, 24.1MB/s]
Downloading wizard_package3.tgz:  45%|████▍     | 425M/950M [00:18<00:21, 24.5MB/s]
Downloading wizard_package3.tgz:  45%|████▌     | 428M/950M [00:18<00:21, 24.3MB/s]
Downloading wizard_package3.tgz:  45%|████▌     | 431M/950M [00:19<00:20, 25.1MB/s]
Downloading wizard_package3.tgz:  46%|████▌     | 433M/950M [00:19<00:20, 24.7MB/s]
Downloading wizard_package3.tgz:  46%|████▌     | 436M/950M [00:19<00:20, 24.7MB/s]
Downloading wizard_package3.tgz:  46%|████▌     | 438M/950M [00:19<00:20, 24.6MB/s]
Downloading wizard_package3.tgz:  46%|████▋     | 441M/950M [00:19<00:21, 24.2MB/s]
Downloading wizard_package3.tgz:  47%|████▋     | 443M/950M [00:19<00:21, 23.8MB/s]
Downloading wizard_package3.tgz:  47%|████▋     | 445M/950M [00:19<00:21, 23.9MB/s]
Downloading wizard_package3.tgz:  47%|████▋     | 448M/950M [00:19<00:20, 24.8MB/s]
Downloading wizard_package3.tgz:  47%|████▋     | 451M/950M [00:19<00:20, 24.3MB/s]
Downloading wizard_package3.tgz:  48%|████▊     | 454M/950M [00:20<00:20, 24.0MB/s]
Downloading wizard_package3.tgz:  48%|████▊     | 457M/950M [00:20<00:19, 25.5MB/s]
Downloading wizard_package3.tgz:  48%|████▊     | 459M/950M [00:20<00:20, 24.0MB/s]
Downloading wizard_package3.tgz:  49%|████▊     | 462M/950M [00:20<00:20, 24.0MB/s]
Downloading wizard_package3.tgz:  49%|████▉     | 464M/950M [00:20<00:20, 23.9MB/s]
Downloading wizard_package3.tgz:  49%|████▉     | 467M/950M [00:20<00:19, 24.9MB/s]
Downloading wizard_package3.tgz:  49%|████▉     | 470M/950M [00:20<00:19, 24.5MB/s]
Downloading wizard_package3.tgz:  50%|████▉     | 472M/950M [00:20<00:19, 24.6MB/s]
Downloading wizard_package3.tgz:  50%|████▉     | 475M/950M [00:20<00:19, 24.9MB/s]
Downloading wizard_package3.tgz:  50%|█████     | 477M/950M [00:20<00:20, 23.6MB/s]
Downloading wizard_package3.tgz:  50%|█████     | 480M/950M [00:21<00:19, 23.6MB/s]
Downloading wizard_package3.tgz:  51%|█████     | 482M/950M [00:21<00:19, 24.1MB/s]
Downloading wizard_package3.tgz:  51%|█████     | 485M/950M [00:21<00:19, 24.0MB/s]
Downloading wizard_package3.tgz:  51%|█████▏    | 488M/950M [00:21<00:19, 23.9MB/s]
Downloading wizard_package3.tgz:  52%|█████▏    | 490M/950M [00:21<00:19, 24.1MB/s]
Downloading wizard_package3.tgz:  52%|█████▏    | 493M/950M [00:21<00:19, 23.8MB/s]
Downloading wizard_package3.tgz:  52%|█████▏    | 496M/950M [00:21<00:18, 24.3MB/s]
Downloading wizard_package3.tgz:  53%|█████▎    | 499M/950M [00:21<00:18, 24.0MB/s]
Downloading wizard_package3.tgz:  53%|█████▎    | 502M/950M [00:22<00:18, 24.8MB/s]
Downloading wizard_package3.tgz:  53%|█████▎    | 505M/950M [00:22<00:17, 24.8MB/s]
Downloading wizard_package3.tgz:  53%|█████▎    | 507M/950M [00:22<00:18, 24.3MB/s]
Downloading wizard_package3.tgz:  54%|█████▎    | 510M/950M [00:22<00:18, 23.3MB/s]
Downloading wizard_package3.tgz:  54%|█████▍    | 513M/950M [00:22<00:17, 25.1MB/s]
Downloading wizard_package3.tgz:  54%|█████▍    | 515M/950M [00:22<00:18, 24.1MB/s]
Downloading wizard_package3.tgz:  55%|█████▍    | 518M/950M [00:22<00:17, 24.4MB/s]
Downloading wizard_package3.tgz:  55%|█████▍    | 521M/950M [00:22<00:17, 25.0MB/s]
Downloading wizard_package3.tgz:  55%|█████▌    | 524M/950M [00:22<00:17, 23.9MB/s]
Downloading wizard_package3.tgz:  55%|█████▌    | 527M/950M [00:22<00:16, 25.1MB/s]
Downloading wizard_package3.tgz:  56%|█████▌    | 529M/950M [00:23<00:17, 24.4MB/s]
Downloading wizard_package3.tgz:  56%|█████▌    | 532M/950M [00:23<00:17, 24.3MB/s]
Downloading wizard_package3.tgz:  56%|█████▋    | 535M/950M [00:23<00:16, 25.0MB/s]
Downloading wizard_package3.tgz:  57%|█████▋    | 537M/950M [00:23<00:16, 24.7MB/s]
Downloading wizard_package3.tgz:  57%|█████▋    | 540M/950M [00:23<00:16, 24.4MB/s]
Downloading wizard_package3.tgz:  57%|█████▋    | 542M/950M [00:23<00:16, 24.8MB/s]
Downloading wizard_package3.tgz:  57%|█████▋    | 545M/950M [00:23<00:16, 24.3MB/s]
Downloading wizard_package3.tgz:  58%|█████▊    | 548M/950M [00:23<00:16, 24.1MB/s]
Downloading wizard_package3.tgz:  58%|█████▊    | 550M/950M [00:23<00:16, 24.6MB/s]
Downloading wizard_package3.tgz:  58%|█████▊    | 553M/950M [00:24<00:16, 23.9MB/s]
Downloading wizard_package3.tgz:  58%|█████▊    | 556M/950M [00:24<00:16, 23.9MB/s]
Downloading wizard_package3.tgz:  59%|█████▉    | 559M/950M [00:24<00:16, 23.8MB/s]
Downloading wizard_package3.tgz:  59%|█████▉    | 561M/950M [00:24<00:15, 24.5MB/s]
Downloading wizard_package3.tgz:  59%|█████▉    | 564M/950M [00:24<00:16, 24.1MB/s]
Downloading wizard_package3.tgz:  60%|█████▉    | 566M/950M [00:24<00:15, 24.1MB/s]
Downloading wizard_package3.tgz:  60%|█████▉    | 569M/950M [00:24<00:15, 24.1MB/s]
Downloading wizard_package3.tgz:  60%|██████    | 571M/950M [00:24<00:15, 24.0MB/s]
Downloading wizard_package3.tgz:  60%|██████    | 574M/950M [00:24<00:15, 23.8MB/s]
Downloading wizard_package3.tgz:  61%|██████    | 577M/950M [00:25<00:14, 25.1MB/s]
Downloading wizard_package3.tgz:  61%|██████    | 580M/950M [00:25<00:15, 23.9MB/s]
Downloading wizard_package3.tgz:  61%|██████    | 582M/950M [00:25<00:15, 23.0MB/s]
Downloading wizard_package3.tgz:  62%|██████▏   | 585M/950M [00:25<00:14, 25.0MB/s]
Downloading wizard_package3.tgz:  62%|██████▏   | 588M/950M [00:25<00:15, 23.9MB/s]
Downloading wizard_package3.tgz:  62%|██████▏   | 590M/950M [00:25<00:15, 23.2MB/s]
Downloading wizard_package3.tgz:  62%|██████▏   | 593M/950M [00:25<00:15, 22.4MB/s]
Downloading wizard_package3.tgz:  63%|██████▎   | 595M/950M [00:25<00:15, 22.8MB/s]
Downloading wizard_package3.tgz:  63%|██████▎   | 598M/950M [00:25<00:14, 23.5MB/s]
Downloading wizard_package3.tgz:  63%|██████▎   | 601M/950M [00:26<00:14, 23.5MB/s]
Downloading wizard_package3.tgz:  64%|██████▎   | 603M/950M [00:26<00:14, 23.5MB/s]
Downloading wizard_package3.tgz:  64%|██████▍   | 606M/950M [00:26<00:14, 23.6MB/s]
Downloading wizard_package3.tgz:  64%|██████▍   | 609M/950M [00:26<00:14, 23.8MB/s]
Downloading wizard_package3.tgz:  64%|██████▍   | 611M/950M [00:26<00:14, 22.7MB/s]
Downloading wizard_package3.tgz:  65%|██████▍   | 614M/950M [00:26<00:13, 24.1MB/s]
Downloading wizard_package3.tgz:  65%|██████▍   | 616M/950M [00:26<00:13, 23.9MB/s]
Downloading wizard_package3.tgz:  65%|██████▌   | 619M/950M [00:26<00:14, 22.9MB/s]
Downloading wizard_package3.tgz:  65%|██████▌   | 622M/950M [00:26<00:13, 24.4MB/s]
Downloading wizard_package3.tgz:  66%|██████▌   | 624M/950M [00:27<00:13, 24.2MB/s]
Downloading wizard_package3.tgz:  66%|██████▌   | 627M/950M [00:27<00:13, 24.1MB/s]
Downloading wizard_package3.tgz:  66%|██████▋   | 630M/950M [00:27<00:13, 24.0MB/s]
Downloading wizard_package3.tgz:  67%|██████▋   | 633M/950M [00:27<00:12, 24.7MB/s]
Downloading wizard_package3.tgz:  67%|██████▋   | 635M/950M [00:27<00:13, 23.3MB/s]
Downloading wizard_package3.tgz:  67%|██████▋   | 638M/950M [00:27<00:13, 23.8MB/s]
Downloading wizard_package3.tgz:  67%|██████▋   | 640M/950M [00:27<00:12, 24.8MB/s]
Downloading wizard_package3.tgz:  68%|██████▊   | 643M/950M [00:27<00:12, 23.7MB/s]
Downloading wizard_package3.tgz:  68%|██████▊   | 645M/950M [00:27<00:12, 23.7MB/s]
Downloading wizard_package3.tgz:  68%|██████▊   | 648M/950M [00:28<00:12, 24.8MB/s]
Downloading wizard_package3.tgz:  68%|██████▊   | 651M/950M [00:28<00:12, 24.4MB/s]
Downloading wizard_package3.tgz:  69%|██████▊   | 653M/950M [00:28<00:12, 24.5MB/s]
Downloading wizard_package3.tgz:  69%|██████▉   | 656M/950M [00:28<00:12, 23.4MB/s]
Downloading wizard_package3.tgz:  69%|██████▉   | 658M/950M [00:28<00:11, 24.3MB/s]
Downloading wizard_package3.tgz:  70%|██████▉   | 661M/950M [00:28<00:12, 23.2MB/s]
Downloading wizard_package3.tgz:  70%|██████▉   | 663M/950M [00:28<00:12, 22.2MB/s]
Downloading wizard_package3.tgz:  70%|███████   | 666M/950M [00:28<00:11, 23.9MB/s]
Downloading wizard_package3.tgz:  70%|███████   | 669M/950M [00:28<00:12, 21.9MB/s]
Downloading wizard_package3.tgz:  71%|███████   | 672M/950M [00:29<00:11, 23.8MB/s]
Downloading wizard_package3.tgz:  71%|███████   | 674M/950M [00:29<00:12, 22.2MB/s]
Downloading wizard_package3.tgz:  71%|███████▏  | 678M/950M [00:29<00:11, 24.7MB/s]
Downloading wizard_package3.tgz:  72%|███████▏  | 680M/950M [00:29<00:12, 21.8MB/s]
Downloading wizard_package3.tgz:  72%|███████▏  | 684M/950M [00:29<00:11, 24.2MB/s]
Downloading wizard_package3.tgz:  72%|███████▏  | 687M/950M [00:29<00:12, 21.9MB/s]
Downloading wizard_package3.tgz:  73%|███████▎  | 690M/950M [00:29<00:10, 23.7MB/s]
Downloading wizard_package3.tgz:  73%|███████▎  | 693M/950M [00:29<00:10, 23.8MB/s]
Downloading wizard_package3.tgz:  73%|███████▎  | 695M/950M [00:30<00:11, 23.2MB/s]
Downloading wizard_package3.tgz:  73%|███████▎  | 698M/950M [00:30<00:10, 24.9MB/s]
Downloading wizard_package3.tgz:  74%|███████▍  | 701M/950M [00:30<00:10, 23.6MB/s]
Downloading wizard_package3.tgz:  74%|███████▍  | 703M/950M [00:30<00:10, 23.3MB/s]
Downloading wizard_package3.tgz:  74%|███████▍  | 706M/950M [00:30<00:10, 23.0MB/s]
Downloading wizard_package3.tgz:  75%|███████▍  | 708M/950M [00:30<00:10, 23.3MB/s]
Downloading wizard_package3.tgz:  75%|███████▍  | 711M/950M [00:30<00:11, 21.3MB/s]
Downloading wizard_package3.tgz:  75%|███████▌  | 715M/950M [00:30<00:09, 24.1MB/s]
Downloading wizard_package3.tgz:  75%|███████▌  | 717M/950M [00:30<00:09, 23.6MB/s]
Downloading wizard_package3.tgz:  76%|███████▌  | 720M/950M [00:31<00:09, 23.7MB/s]
Downloading wizard_package3.tgz:  76%|███████▌  | 722M/950M [00:31<00:09, 24.2MB/s]
Downloading wizard_package3.tgz:  76%|███████▋  | 725M/950M [00:31<00:08, 25.3MB/s]
Downloading wizard_package3.tgz:  77%|███████▋  | 728M/950M [00:31<00:09, 23.2MB/s]
Downloading wizard_package3.tgz:  77%|███████▋  | 730M/950M [00:31<00:09, 23.4MB/s]
Downloading wizard_package3.tgz:  77%|███████▋  | 733M/950M [00:31<00:08, 25.1MB/s]
Downloading wizard_package3.tgz:  77%|███████▋  | 736M/950M [00:31<00:09, 23.1MB/s]
Downloading wizard_package3.tgz:  78%|███████▊  | 738M/950M [00:31<00:09, 23.3MB/s]
Downloading wizard_package3.tgz:  78%|███████▊  | 741M/950M [00:31<00:08, 24.9MB/s]
Downloading wizard_package3.tgz:  78%|███████▊  | 744M/950M [00:32<00:08, 23.3MB/s]
Downloading wizard_package3.tgz:  79%|███████▊  | 746M/950M [00:32<00:08, 23.1MB/s]
Downloading wizard_package3.tgz:  79%|███████▉  | 749M/950M [00:32<00:08, 24.7MB/s]
Downloading wizard_package3.tgz:  79%|███████▉  | 752M/950M [00:32<00:08, 23.3MB/s]
Downloading wizard_package3.tgz:  79%|███████▉  | 754M/950M [00:32<00:08, 23.4MB/s]
Downloading wizard_package3.tgz:  80%|███████▉  | 757M/950M [00:32<00:07, 24.4MB/s]
Downloading wizard_package3.tgz:  80%|███████▉  | 759M/950M [00:32<00:08, 23.3MB/s]
Downloading wizard_package3.tgz:  80%|████████  | 762M/950M [00:32<00:07, 23.5MB/s]
Downloading wizard_package3.tgz:  80%|████████  | 765M/950M [00:32<00:07, 24.6MB/s]
Downloading wizard_package3.tgz:  81%|████████  | 767M/950M [00:33<00:08, 22.8MB/s]
Downloading wizard_package3.tgz:  81%|████████  | 770M/950M [00:33<00:07, 24.2MB/s]
Downloading wizard_package3.tgz:  81%|████████▏ | 773M/950M [00:33<00:07, 25.2MB/s]
Downloading wizard_package3.tgz:  82%|████████▏ | 775M/950M [00:33<00:07, 22.8MB/s]
Downloading wizard_package3.tgz:  82%|████████▏ | 779M/950M [00:33<00:07, 24.5MB/s]
Downloading wizard_package3.tgz:  82%|████████▏ | 781M/950M [00:33<00:07, 22.5MB/s]
Downloading wizard_package3.tgz:  82%|████████▏ | 784M/950M [00:33<00:07, 23.6MB/s]
Downloading wizard_package3.tgz:  83%|████████▎ | 787M/950M [00:33<00:07, 22.9MB/s]
Downloading wizard_package3.tgz:  83%|████████▎ | 790M/950M [00:33<00:06, 23.8MB/s]
Downloading wizard_package3.tgz:  83%|████████▎ | 793M/950M [00:34<00:06, 23.9MB/s]
Downloading wizard_package3.tgz:  84%|████████▎ | 796M/950M [00:34<00:06, 23.6MB/s]
Downloading wizard_package3.tgz:  84%|████████▍ | 799M/950M [00:34<00:05, 26.1MB/s]
Downloading wizard_package3.tgz:  84%|████████▍ | 802M/950M [00:34<00:06, 22.7MB/s]
Downloading wizard_package3.tgz:  85%|████████▍ | 805M/950M [00:34<00:05, 24.9MB/s]
Downloading wizard_package3.tgz:  85%|████████▌ | 808M/950M [00:34<00:05, 24.0MB/s]
Downloading wizard_package3.tgz:  85%|████████▌ | 810M/950M [00:34<00:05, 23.4MB/s]
Downloading wizard_package3.tgz:  86%|████████▌ | 813M/950M [00:34<00:05, 23.1MB/s]
Downloading wizard_package3.tgz:  86%|████████▌ | 816M/950M [00:35<00:05, 24.4MB/s]
Downloading wizard_package3.tgz:  86%|████████▌ | 818M/950M [00:35<00:05, 24.0MB/s]
Downloading wizard_package3.tgz:  86%|████████▋ | 821M/950M [00:35<00:05, 22.6MB/s]
Downloading wizard_package3.tgz:  87%|████████▋ | 824M/950M [00:35<00:05, 24.8MB/s]
Downloading wizard_package3.tgz:  87%|████████▋ | 826M/950M [00:35<00:05, 23.4MB/s]
Downloading wizard_package3.tgz:  87%|████████▋ | 829M/950M [00:35<00:05, 23.4MB/s]
Downloading wizard_package3.tgz:  88%|████████▊ | 832M/950M [00:35<00:05, 23.5MB/s]
Downloading wizard_package3.tgz:  88%|████████▊ | 834M/950M [00:35<00:04, 23.7MB/s]
Downloading wizard_package3.tgz:  88%|████████▊ | 837M/950M [00:35<00:04, 23.9MB/s]
Downloading wizard_package3.tgz:  88%|████████▊ | 839M/950M [00:36<00:04, 24.7MB/s]
Downloading wizard_package3.tgz:  89%|████████▊ | 842M/950M [00:36<00:04, 24.5MB/s]
Downloading wizard_package3.tgz:  89%|████████▉ | 845M/950M [00:36<00:04, 24.3MB/s]
Downloading wizard_package3.tgz:  89%|████████▉ | 847M/950M [00:36<00:04, 24.1MB/s]
Downloading wizard_package3.tgz:  89%|████████▉ | 849M/950M [00:36<00:04, 23.9MB/s]
Downloading wizard_package3.tgz:  90%|████████▉ | 852M/950M [00:36<00:03, 24.8MB/s]
Downloading wizard_package3.tgz:  90%|████████▉ | 855M/950M [00:36<00:04, 23.2MB/s]
Downloading wizard_package3.tgz:  90%|█████████ | 857M/950M [00:36<00:03, 24.0MB/s]
Downloading wizard_package3.tgz:  90%|█████████ | 860M/950M [00:36<00:03, 24.1MB/s]
Downloading wizard_package3.tgz:  91%|█████████ | 862M/950M [00:36<00:03, 24.2MB/s]
Downloading wizard_package3.tgz:  91%|█████████ | 865M/950M [00:37<00:03, 24.2MB/s]
Downloading wizard_package3.tgz:  91%|█████████▏| 867M/950M [00:37<00:03, 24.0MB/s]
Downloading wizard_package3.tgz:  92%|█████████▏| 870M/950M [00:37<00:03, 24.1MB/s]
Downloading wizard_package3.tgz:  92%|█████████▏| 873M/950M [00:37<00:03, 25.0MB/s]
Downloading wizard_package3.tgz:  92%|█████████▏| 875M/950M [00:37<00:03, 24.7MB/s]
Downloading wizard_package3.tgz:  92%|█████████▏| 878M/950M [00:37<00:03, 23.2MB/s]
Downloading wizard_package3.tgz:  93%|█████████▎| 880M/950M [00:37<00:02, 24.1MB/s]
Downloading wizard_package3.tgz:  93%|█████████▎| 883M/950M [00:37<00:02, 25.0MB/s]
Downloading wizard_package3.tgz:  93%|█████████▎| 886M/950M [00:37<00:02, 24.0MB/s]
Downloading wizard_package3.tgz:  94%|█████████▎| 889M/950M [00:38<00:02, 25.0MB/s]
Downloading wizard_package3.tgz:  94%|█████████▍| 891M/950M [00:38<00:02, 24.5MB/s]
Downloading wizard_package3.tgz:  94%|█████████▍| 894M/950M [00:38<00:02, 24.0MB/s]
Downloading wizard_package3.tgz:  94%|█████████▍| 897M/950M [00:38<00:02, 25.3MB/s]
Downloading wizard_package3.tgz:  95%|█████████▍| 899M/950M [00:38<00:02, 24.3MB/s]
Downloading wizard_package3.tgz:  95%|█████████▍| 902M/950M [00:38<00:02, 23.3MB/s]
Downloading wizard_package3.tgz:  95%|█████████▌| 905M/950M [00:38<00:01, 24.5MB/s]
Downloading wizard_package3.tgz:  95%|█████████▌| 907M/950M [00:38<00:01, 24.5MB/s]
Downloading wizard_package3.tgz:  96%|█████████▌| 910M/950M [00:38<00:01, 23.4MB/s]
Downloading wizard_package3.tgz:  96%|█████████▌| 913M/950M [00:39<00:01, 24.8MB/s]
Downloading wizard_package3.tgz:  96%|█████████▋| 915M/950M [00:39<00:01, 24.0MB/s]
Downloading wizard_package3.tgz:  97%|█████████▋| 918M/950M [00:39<00:01, 23.9MB/s]
Downloading wizard_package3.tgz:  97%|█████████▋| 921M/950M [00:39<00:01, 24.2MB/s]
Downloading wizard_package3.tgz:  97%|█████████▋| 923M/950M [00:39<00:01, 25.5MB/s]
Downloading wizard_package3.tgz:  97%|█████████▋| 926M/950M [00:39<00:01, 23.8MB/s]
Downloading wizard_package3.tgz:  98%|█████████▊| 928M/950M [00:39<00:00, 23.5MB/s]
Downloading wizard_package3.tgz:  98%|█████████▊| 931M/950M [00:39<00:00, 23.9MB/s]
Downloading wizard_package3.tgz:  98%|█████████▊| 934M/950M [00:39<00:00, 22.8MB/s]
Downloading wizard_package3.tgz:  99%|█████████▊| 937M/950M [00:40<00:00, 24.7MB/s]
Downloading wizard_package3.tgz:  99%|█████████▉| 940M/950M [00:40<00:00, 24.5MB/s]
Downloading wizard_package3.tgz:  99%|█████████▉| 942M/950M [00:40<00:00, 23.6MB/s]
Downloading wizard_package3.tgz:  99%|█████████▉| 945M/950M [00:40<00:00, 23.7MB/s]
Downloading wizard_package3.tgz: 100%|█████████▉| 947M/950M [00:40<00:00, 24.2MB/s]
Downloading wizard_package3.tgz: 100%|█████████▉| 950M/950M [00:40<00:00, 23.3MB/s]
Downloading wizard_package3.tgz: 100%|██████████| 950M/950M [00:40<00:00, 23.4MB/s]

Downloading knowledge_retriever.tgz: 0.00B [00:00, ?B/s]
Downloading knowledge_retriever.tgz:   0%|          | 32.8k/2.13G [00:00<15:30:46, 38.1kB/s]
Downloading knowledge_retriever.tgz:   0%|          | 131k/2.13G [00:01<11:12:31, 52.8kB/s] 
Downloading knowledge_retriever.tgz:   0%|          | 524k/2.13G [00:01<7:55:55, 74.6kB/s] 
Downloading knowledge_retriever.tgz:   0%|          | 1.93M/2.13G [00:01<5:33:41, 106kB/s]
Downloading knowledge_retriever.tgz:   0%|          | 3.21M/2.13G [00:01<3:54:16, 151kB/s]
Downloading knowledge_retriever.tgz:   0%|          | 5.28M/2.13G [00:01<2:44:29, 215kB/s]
Downloading knowledge_retriever.tgz:   0%|          | 7.18M/2.13G [00:01<1:55:36, 306kB/s]
Downloading knowledge_retriever.tgz:   0%|          | 9.44M/2.13G [00:01<1:21:29, 434kB/s]
Downloading knowledge_retriever.tgz:   1%|          | 11.4M/2.13G [00:01<57:32, 613kB/s]  
Downloading knowledge_retriever.tgz:   1%|          | 14.1M/2.13G [00:02<40:40, 867kB/s]
Downloading knowledge_retriever.tgz:   1%|          | 16.8M/2.13G [00:02<28:54, 1.22MB/s]
Downloading knowledge_retriever.tgz:   1%|          | 19.3M/2.13G [00:02<20:38, 1.70MB/s]
Downloading knowledge_retriever.tgz:   1%|          | 21.4M/2.13G [00:02<15:07, 2.32MB/s]
Downloading knowledge_retriever.tgz:   1%|          | 23.6M/2.13G [00:02<11:03, 3.17MB/s]
Downloading knowledge_retriever.tgz:   1%|          | 26.0M/2.13G [00:02<08:10, 4.29MB/s]
Downloading knowledge_retriever.tgz:   1%|▏         | 28.2M/2.13G [00:02<06:11, 5.66MB/s]
Downloading knowledge_retriever.tgz:   1%|▏         | 30.5M/2.13G [00:02<04:47, 7.29MB/s]
Downloading knowledge_retriever.tgz:   2%|▏         | 32.9M/2.13G [00:02<03:48, 9.19MB/s]
Downloading knowledge_retriever.tgz:   2%|▏         | 35.1M/2.13G [00:03<03:13, 10.8MB/s]
Downloading knowledge_retriever.tgz:   2%|▏         | 37.4M/2.13G [00:03<02:42, 12.9MB/s]
Downloading knowledge_retriever.tgz:   2%|▏         | 39.7M/2.13G [00:03<02:29, 13.9MB/s]
Downloading knowledge_retriever.tgz:   2%|▏         | 41.9M/2.13G [00:03<02:13, 15.6MB/s]
Downloading knowledge_retriever.tgz:   2%|▏         | 44.1M/2.13G [00:03<02:03, 16.9MB/s]
Downloading knowledge_retriever.tgz:   2%|▏         | 46.3M/2.13G [00:03<01:54, 18.2MB/s]
Downloading knowledge_retriever.tgz:   2%|▏         | 48.4M/2.13G [00:03<01:49, 19.0MB/s]
Downloading knowledge_retriever.tgz:   2%|▏         | 50.8M/2.13G [00:03<01:42, 20.2MB/s]
Downloading knowledge_retriever.tgz:   2%|▏         | 53.0M/2.13G [00:03<01:39, 20.8MB/s]
Downloading knowledge_retriever.tgz:   3%|▎         | 55.4M/2.13G [00:03<01:35, 21.6MB/s]
Downloading knowledge_retriever.tgz:   3%|▎         | 57.7M/2.13G [00:04<01:38, 21.1MB/s]
Downloading knowledge_retriever.tgz:   3%|▎         | 59.9M/2.13G [00:04<01:37, 21.1MB/s]
Downloading knowledge_retriever.tgz:   3%|▎         | 62.1M/2.13G [00:04<01:44, 19.7MB/s]
Downloading knowledge_retriever.tgz:   3%|▎         | 64.5M/2.13G [00:04<01:39, 20.7MB/s]
Downloading knowledge_retriever.tgz:   3%|▎         | 66.7M/2.13G [00:04<01:37, 21.1MB/s]
Downloading knowledge_retriever.tgz:   3%|▎         | 68.9M/2.13G [00:04<01:36, 21.3MB/s]
Downloading knowledge_retriever.tgz:   3%|▎         | 71.1M/2.13G [00:04<01:36, 21.4MB/s]
Downloading knowledge_retriever.tgz:   3%|▎         | 73.4M/2.13G [00:04<01:34, 21.6MB/s]
Downloading knowledge_retriever.tgz:   4%|▎         | 75.6M/2.13G [00:05<02:00, 17.0MB/s]
Downloading knowledge_retriever.tgz:   4%|▎         | 79.6M/2.13G [00:05<01:39, 20.5MB/s]
Downloading knowledge_retriever.tgz:   4%|▍         | 82.1M/2.13G [00:05<01:37, 21.0MB/s]
Downloading knowledge_retriever.tgz:   4%|▍         | 84.5M/2.13G [00:05<01:35, 21.4MB/s]
Downloading knowledge_retriever.tgz:   4%|▍         | 87.0M/2.13G [00:05<01:39, 20.4MB/s]
Downloading knowledge_retriever.tgz:   4%|▍         | 89.3M/2.13G [00:05<01:36, 21.2MB/s]
Downloading knowledge_retriever.tgz:   4%|▍         | 91.6M/2.13G [00:05<01:35, 21.3MB/s]
Downloading knowledge_retriever.tgz:   4%|▍         | 93.8M/2.13G [00:05<01:35, 21.4MB/s]
Downloading knowledge_retriever.tgz:   5%|▍         | 96.0M/2.13G [00:05<01:36, 21.1MB/s]
Downloading knowledge_retriever.tgz:   5%|▍         | 98.1M/2.13G [00:05<01:38, 20.6MB/s]
Downloading knowledge_retriever.tgz:   5%|▍         | 101M/2.13G [00:06<01:33, 21.7MB/s] 
Downloading knowledge_retriever.tgz:   5%|▍         | 103M/2.13G [00:06<01:32, 22.0MB/s]
Downloading knowledge_retriever.tgz:   5%|▍         | 105M/2.13G [00:06<01:29, 22.5MB/s]
Downloading knowledge_retriever.tgz:   5%|▌         | 108M/2.13G [00:06<01:37, 20.6MB/s]
Downloading knowledge_retriever.tgz:   5%|▌         | 110M/2.13G [00:06<01:35, 21.1MB/s]
Downloading knowledge_retriever.tgz:   5%|▌         | 112M/2.13G [00:06<01:34, 21.3MB/s]
Downloading knowledge_retriever.tgz:   5%|▌         | 115M/2.13G [00:06<01:31, 22.0MB/s]
Downloading knowledge_retriever.tgz:   5%|▌         | 117M/2.13G [00:06<01:32, 21.7MB/s]
Downloading knowledge_retriever.tgz:   6%|▌         | 119M/2.13G [00:06<01:32, 21.7MB/s]
Downloading knowledge_retriever.tgz:   6%|▌         | 121M/2.13G [00:07<01:33, 21.6MB/s]
Downloading knowledge_retriever.tgz:   6%|▌         | 123M/2.13G [00:07<01:33, 21.4MB/s]
Downloading knowledge_retriever.tgz:   6%|▌         | 126M/2.13G [00:07<01:31, 21.8MB/s]
Downloading knowledge_retriever.tgz:   6%|▌         | 128M/2.13G [00:07<01:31, 21.8MB/s]
Downloading knowledge_retriever.tgz:   6%|▌         | 130M/2.13G [00:07<01:39, 20.2MB/s]
Downloading knowledge_retriever.tgz:   6%|▌         | 132M/2.13G [00:07<01:36, 20.6MB/s]
Downloading knowledge_retriever.tgz:   6%|▋         | 135M/2.13G [00:07<01:33, 21.3MB/s]
Downloading knowledge_retriever.tgz:   6%|▋         | 137M/2.13G [00:07<01:32, 21.6MB/s]
Downloading knowledge_retriever.tgz:   7%|▋         | 139M/2.13G [00:07<01:31, 21.7MB/s]
Downloading knowledge_retriever.tgz:   7%|▋         | 141M/2.13G [00:07<01:29, 22.2MB/s]
Downloading knowledge_retriever.tgz:   7%|▋         | 144M/2.13G [00:08<01:29, 22.2MB/s]
Downloading knowledge_retriever.tgz:   7%|▋         | 146M/2.13G [00:08<01:28, 22.3MB/s]
Downloading knowledge_retriever.tgz:   7%|▋         | 148M/2.13G [00:08<01:28, 22.3MB/s]
Downloading knowledge_retriever.tgz:   7%|▋         | 150M/2.13G [00:08<01:30, 21.8MB/s]
Downloading knowledge_retriever.tgz:   7%|▋         | 153M/2.13G [00:08<01:35, 20.6MB/s]
Downloading knowledge_retriever.tgz:   7%|▋         | 155M/2.13G [00:08<01:37, 20.3MB/s]
Downloading knowledge_retriever.tgz:   7%|▋         | 157M/2.13G [00:08<01:36, 20.4MB/s]
Downloading knowledge_retriever.tgz:   7%|▋         | 159M/2.13G [00:08<01:32, 21.2MB/s]
Downloading knowledge_retriever.tgz:   8%|▊         | 162M/2.13G [00:08<01:30, 21.8MB/s]
Downloading knowledge_retriever.tgz:   8%|▊         | 164M/2.13G [00:09<01:29, 21.9MB/s]
Downloading knowledge_retriever.tgz:   8%|▊         | 166M/2.13G [00:09<01:28, 22.1MB/s]
Downloading knowledge_retriever.tgz:   8%|▊         | 168M/2.13G [00:09<01:28, 22.1MB/s]
Downloading knowledge_retriever.tgz:   8%|▊         | 171M/2.13G [00:09<01:28, 22.2MB/s]
Downloading knowledge_retriever.tgz:   8%|▊         | 173M/2.13G [00:09<01:27, 22.3MB/s]
Downloading knowledge_retriever.tgz:   8%|▊         | 175M/2.13G [00:09<01:27, 22.3MB/s]
Downloading knowledge_retriever.tgz:   8%|▊         | 177M/2.13G [00:09<01:29, 21.7MB/s]
Downloading knowledge_retriever.tgz:   8%|▊         | 180M/2.13G [00:09<01:31, 21.3MB/s]
Downloading knowledge_retriever.tgz:   9%|▊         | 182M/2.13G [00:09<01:37, 19.9MB/s]
Downloading knowledge_retriever.tgz:   9%|▊         | 184M/2.13G [00:09<01:35, 20.3MB/s]
Downloading knowledge_retriever.tgz:   9%|▊         | 186M/2.13G [00:10<01:33, 20.9MB/s]
Downloading knowledge_retriever.tgz:   9%|▉         | 188M/2.13G [00:10<01:32, 20.9MB/s]
Downloading knowledge_retriever.tgz:   9%|▉         | 191M/2.13G [00:10<01:30, 21.5MB/s]
Downloading knowledge_retriever.tgz:   9%|▉         | 193M/2.13G [00:10<01:28, 22.0MB/s]
Downloading knowledge_retriever.tgz:   9%|▉         | 195M/2.13G [00:10<01:28, 21.9MB/s]
Downloading knowledge_retriever.tgz:   9%|▉         | 197M/2.13G [00:10<01:26, 22.3MB/s]
Downloading knowledge_retriever.tgz:   9%|▉         | 200M/2.13G [00:10<01:24, 22.7MB/s]
Downloading knowledge_retriever.tgz:   9%|▉         | 202M/2.13G [00:10<01:28, 21.8MB/s]
Downloading knowledge_retriever.tgz:  10%|▉         | 205M/2.13G [00:10<01:29, 21.6MB/s]
Downloading knowledge_retriever.tgz:  10%|▉         | 207M/2.13G [00:11<01:32, 20.7MB/s]
Downloading knowledge_retriever.tgz:  10%|▉         | 209M/2.13G [00:11<01:32, 20.7MB/s]
Downloading knowledge_retriever.tgz:  10%|▉         | 211M/2.13G [00:11<01:31, 21.0MB/s]
Downloading knowledge_retriever.tgz:  10%|█         | 213M/2.13G [00:11<01:29, 21.4MB/s]
Downloading knowledge_retriever.tgz:  10%|█         | 216M/2.13G [00:11<01:28, 21.6MB/s]
Downloading knowledge_retriever.tgz:  10%|█         | 218M/2.13G [00:11<01:29, 21.4MB/s]
Downloading knowledge_retriever.tgz:  10%|█         | 220M/2.13G [00:11<01:27, 21.7MB/s]
Downloading knowledge_retriever.tgz:  10%|█         | 222M/2.13G [00:11<01:27, 21.9MB/s]
Downloading knowledge_retriever.tgz:  11%|█         | 224M/2.13G [00:11<01:26, 22.1MB/s]
Downloading knowledge_retriever.tgz:  11%|█         | 227M/2.13G [00:11<01:24, 22.5MB/s]
Downloading knowledge_retriever.tgz:  11%|█         | 229M/2.13G [00:12<01:24, 22.4MB/s]
Downloading knowledge_retriever.tgz:  11%|█         | 231M/2.13G [00:12<01:26, 22.0MB/s]
Downloading knowledge_retriever.tgz:  11%|█         | 234M/2.13G [00:12<01:28, 21.5MB/s]
Downloading knowledge_retriever.tgz:  11%|█         | 236M/2.13G [00:12<01:28, 21.5MB/s]
Downloading knowledge_retriever.tgz:  11%|█         | 238M/2.13G [00:12<01:29, 21.2MB/s]
Downloading knowledge_retriever.tgz:  11%|█▏        | 240M/2.13G [00:12<01:29, 21.1MB/s]
Downloading knowledge_retriever.tgz:  11%|█▏        | 242M/2.13G [00:12<01:28, 21.3MB/s]
Downloading knowledge_retriever.tgz:  11%|█▏        | 244M/2.13G [00:12<01:29, 21.1MB/s]
Downloading knowledge_retriever.tgz:  12%|█▏        | 247M/2.13G [00:12<01:27, 21.6MB/s]
Downloading knowledge_retriever.tgz:  12%|█▏        | 249M/2.13G [00:12<01:29, 21.1MB/s]
Downloading knowledge_retriever.tgz:  12%|█▏        | 251M/2.13G [00:13<01:27, 21.4MB/s]
Downloading knowledge_retriever.tgz:  12%|█▏        | 253M/2.13G [00:13<01:27, 21.4MB/s]
Downloading knowledge_retriever.tgz:  12%|█▏        | 256M/2.13G [00:13<01:27, 21.3MB/s]
Downloading knowledge_retriever.tgz:  12%|█▏        | 258M/2.13G [00:13<01:29, 20.8MB/s]
Downloading knowledge_retriever.tgz:  12%|█▏        | 260M/2.13G [00:13<01:27, 21.3MB/s]
Downloading knowledge_retriever.tgz:  12%|█▏        | 262M/2.13G [00:13<01:26, 21.5MB/s]
Downloading knowledge_retriever.tgz:  12%|█▏        | 265M/2.13G [00:13<01:28, 21.1MB/s]
Downloading knowledge_retriever.tgz:  13%|█▎        | 267M/2.13G [00:13<01:25, 21.9MB/s]
Downloading knowledge_retriever.tgz:  13%|█▎        | 269M/2.13G [00:13<01:24, 21.9MB/s]
Downloading knowledge_retriever.tgz:  13%|█▎        | 271M/2.13G [00:14<01:24, 21.9MB/s]
Downloading knowledge_retriever.tgz:  13%|█▎        | 274M/2.13G [00:14<01:26, 21.5MB/s]
Downloading knowledge_retriever.tgz:  13%|█▎        | 276M/2.13G [00:14<01:28, 21.0MB/s]
Downloading knowledge_retriever.tgz:  13%|█▎        | 278M/2.13G [00:14<01:27, 21.2MB/s]
Downloading knowledge_retriever.tgz:  13%|█▎        | 280M/2.13G [00:14<01:27, 21.1MB/s]
Downloading knowledge_retriever.tgz:  13%|█▎        | 282M/2.13G [00:14<01:27, 21.1MB/s]
Downloading knowledge_retriever.tgz:  13%|█▎        | 285M/2.13G [00:14<01:28, 20.9MB/s]
Downloading knowledge_retriever.tgz:  13%|█▎        | 287M/2.13G [00:14<01:26, 21.2MB/s]
Downloading knowledge_retriever.tgz:  14%|█▎        | 289M/2.13G [00:14<01:25, 21.6MB/s]
Downloading knowledge_retriever.tgz:  14%|█▎        | 291M/2.13G [00:14<01:23, 22.0MB/s]
Downloading knowledge_retriever.tgz:  14%|█▍        | 294M/2.13G [00:15<01:21, 22.4MB/s]
Downloading knowledge_retriever.tgz:  14%|█▍        | 296M/2.13G [00:15<01:21, 22.4MB/s]
Downloading knowledge_retriever.tgz:  14%|█▍        | 298M/2.13G [00:15<01:22, 22.1MB/s]
Downloading knowledge_retriever.tgz:  14%|█▍        | 301M/2.13G [00:15<01:22, 22.0MB/s]
Downloading knowledge_retriever.tgz:  14%|█▍        | 303M/2.13G [00:15<01:24, 21.7MB/s]
Downloading knowledge_retriever.tgz:  14%|█▍        | 305M/2.13G [00:15<01:24, 21.7MB/s]
Downloading knowledge_retriever.tgz:  14%|█▍        | 307M/2.13G [00:15<01:24, 21.6MB/s]
Downloading knowledge_retriever.tgz:  15%|█▍        | 309M/2.13G [00:15<01:24, 21.4MB/s]
Downloading knowledge_retriever.tgz:  15%|█▍        | 312M/2.13G [00:15<01:25, 21.3MB/s]
Downloading knowledge_retriever.tgz:  15%|█▍        | 314M/2.13G [00:15<01:28, 20.5MB/s]
Downloading knowledge_retriever.tgz:  15%|█▍        | 316M/2.13G [00:16<01:26, 20.9MB/s]
Downloading knowledge_retriever.tgz:  15%|█▍        | 318M/2.13G [00:16<01:25, 21.3MB/s]
Downloading knowledge_retriever.tgz:  15%|█▌        | 321M/2.13G [00:16<01:22, 22.0MB/s]
Downloading knowledge_retriever.tgz:  15%|█▌        | 323M/2.13G [00:16<01:23, 21.6MB/s]
Downloading knowledge_retriever.tgz:  15%|█▌        | 325M/2.13G [00:16<01:21, 22.2MB/s]
Downloading knowledge_retriever.tgz:  15%|█▌        | 327M/2.13G [00:16<01:22, 22.0MB/s]
Downloading knowledge_retriever.tgz:  15%|█▌        | 330M/2.13G [00:16<01:21, 22.0MB/s]
Downloading knowledge_retriever.tgz:  16%|█▌        | 332M/2.13G [00:16<01:23, 21.6MB/s]
Downloading knowledge_retriever.tgz:  16%|█▌        | 334M/2.13G [00:16<01:22, 21.8MB/s]
Downloading knowledge_retriever.tgz:  16%|█▌        | 336M/2.13G [00:17<01:26, 20.7MB/s]
Downloading knowledge_retriever.tgz:  16%|█▌        | 339M/2.13G [00:17<01:24, 21.2MB/s]
Downloading knowledge_retriever.tgz:  16%|█▌        | 341M/2.13G [00:17<01:25, 20.8MB/s]
Downloading knowledge_retriever.tgz:  16%|█▌        | 343M/2.13G [00:17<01:24, 21.2MB/s]
Downloading knowledge_retriever.tgz:  16%|█▌        | 345M/2.13G [00:17<01:23, 21.3MB/s]
Downloading knowledge_retriever.tgz:  16%|█▋        | 348M/2.13G [00:17<01:21, 22.0MB/s]
Downloading knowledge_retriever.tgz:  16%|█▋        | 350M/2.13G [00:17<01:21, 21.8MB/s]
Downloading knowledge_retriever.tgz:  17%|█▋        | 352M/2.13G [00:17<01:21, 21.7MB/s]
Downloading knowledge_retriever.tgz:  17%|█▋        | 354M/2.13G [00:17<01:20, 22.0MB/s]
Downloading knowledge_retriever.tgz:  17%|█▋        | 356M/2.13G [00:17<01:20, 21.9MB/s]
Downloading knowledge_retriever.tgz:  17%|█▋        | 359M/2.13G [00:18<01:21, 21.8MB/s]
Downloading knowledge_retriever.tgz:  17%|█▋        | 361M/2.13G [00:18<01:21, 21.7MB/s]
Downloading knowledge_retriever.tgz:  17%|█▋        | 363M/2.13G [00:18<01:21, 21.8MB/s]
Downloading knowledge_retriever.tgz:  17%|█▋        | 365M/2.13G [00:18<01:20, 21.8MB/s]
Downloading knowledge_retriever.tgz:  17%|█▋        | 368M/2.13G [00:18<01:20, 21.9MB/s]
Downloading knowledge_retriever.tgz:  17%|█▋        | 370M/2.13G [00:18<01:21, 21.5MB/s]
Downloading knowledge_retriever.tgz:  17%|█▋        | 372M/2.13G [00:18<01:23, 21.0MB/s]
Downloading knowledge_retriever.tgz:  18%|█▊        | 374M/2.13G [00:18<01:23, 21.0MB/s]
Downloading knowledge_retriever.tgz:  18%|█▊        | 376M/2.13G [00:18<01:22, 21.2MB/s]
Downloading knowledge_retriever.tgz:  18%|█▊        | 379M/2.13G [00:18<01:23, 21.1MB/s]
Downloading knowledge_retriever.tgz:  18%|█▊        | 381M/2.13G [00:19<01:22, 21.1MB/s]
Downloading knowledge_retriever.tgz:  18%|█▊        | 383M/2.13G [00:19<01:21, 21.4MB/s]
Downloading knowledge_retriever.tgz:  18%|█▊        | 385M/2.13G [00:19<01:19, 21.9MB/s]
Downloading knowledge_retriever.tgz:  18%|█▊        | 387M/2.13G [00:19<01:19, 22.0MB/s]
Downloading knowledge_retriever.tgz:  18%|█▊        | 390M/2.13G [00:19<01:19, 22.0MB/s]
Downloading knowledge_retriever.tgz:  18%|█▊        | 392M/2.13G [00:19<01:20, 21.5MB/s]
Downloading knowledge_retriever.tgz:  19%|█▊        | 394M/2.13G [00:19<01:20, 21.5MB/s]
Downloading knowledge_retriever.tgz:  19%|█▊        | 396M/2.13G [00:19<01:20, 21.4MB/s]
Downloading knowledge_retriever.tgz:  19%|█▊        | 399M/2.13G [00:19<01:20, 21.4MB/s]
Downloading knowledge_retriever.tgz:  19%|█▉        | 401M/2.13G [00:20<01:22, 20.9MB/s]
Downloading knowledge_retriever.tgz:  19%|█▉        | 403M/2.13G [00:20<01:21, 21.1MB/s]
Downloading knowledge_retriever.tgz:  19%|█▉        | 405M/2.13G [00:20<01:20, 21.4MB/s]
Downloading knowledge_retriever.tgz:  19%|█▉        | 407M/2.13G [00:20<01:20, 21.3MB/s]
Downloading knowledge_retriever.tgz:  19%|█▉        | 410M/2.13G [00:20<01:20, 21.3MB/s]
Downloading knowledge_retriever.tgz:  19%|█▉        | 412M/2.13G [00:20<01:17, 22.0MB/s]
Downloading knowledge_retriever.tgz:  19%|█▉        | 414M/2.13G [00:20<01:17, 22.0MB/s]
Downloading knowledge_retriever.tgz:  20%|█▉        | 416M/2.13G [00:20<01:18, 22.0MB/s]
Downloading knowledge_retriever.tgz:  20%|█▉        | 419M/2.13G [00:20<01:16, 22.2MB/s]
Downloading knowledge_retriever.tgz:  20%|█▉        | 421M/2.13G [00:20<01:19, 21.5MB/s]
Downloading knowledge_retriever.tgz:  20%|█▉        | 423M/2.13G [00:21<01:19, 21.5MB/s]
Downloading knowledge_retriever.tgz:  20%|█▉        | 425M/2.13G [00:21<01:19, 21.4MB/s]
Downloading knowledge_retriever.tgz:  20%|██        | 428M/2.13G [00:21<01:21, 21.0MB/s]
Downloading knowledge_retriever.tgz:  20%|██        | 430M/2.13G [00:21<01:19, 21.5MB/s]
Downloading knowledge_retriever.tgz:  20%|██        | 432M/2.13G [00:21<01:19, 21.4MB/s]
Downloading knowledge_retriever.tgz:  20%|██        | 434M/2.13G [00:21<01:19, 21.4MB/s]
Downloading knowledge_retriever.tgz:  20%|██        | 436M/2.13G [00:21<01:19, 21.4MB/s]
Downloading knowledge_retriever.tgz:  21%|██        | 439M/2.13G [00:21<01:18, 21.5MB/s]
Downloading knowledge_retriever.tgz:  21%|██        | 441M/2.13G [00:21<01:18, 21.5MB/s]
Downloading knowledge_retriever.tgz:  21%|██        | 443M/2.13G [00:21<01:17, 21.9MB/s]
Downloading knowledge_retriever.tgz:  21%|██        | 445M/2.13G [00:22<01:17, 21.8MB/s]
Downloading knowledge_retriever.tgz:  21%|██        | 448M/2.13G [00:22<01:16, 22.0MB/s]
Downloading knowledge_retriever.tgz:  21%|██        | 450M/2.13G [00:22<01:16, 22.1MB/s]
Downloading knowledge_retriever.tgz:  21%|██        | 452M/2.13G [00:22<01:17, 21.6MB/s]
Downloading knowledge_retriever.tgz:  21%|██▏       | 454M/2.13G [00:22<01:18, 21.4MB/s]
Downloading knowledge_retriever.tgz:  21%|██▏       | 456M/2.13G [00:22<01:19, 21.0MB/s]
Downloading knowledge_retriever.tgz:  22%|██▏       | 459M/2.13G [00:22<01:18, 21.3MB/s]
Downloading knowledge_retriever.tgz:  22%|██▏       | 461M/2.13G [00:22<01:17, 21.6MB/s]
Downloading knowledge_retriever.tgz:  22%|██▏       | 463M/2.13G [00:22<01:16, 21.9MB/s]
Downloading knowledge_retriever.tgz:  22%|██▏       | 465M/2.13G [00:23<01:15, 21.9MB/s]
Downloading knowledge_retriever.tgz:  22%|██▏       | 468M/2.13G [00:23<01:16, 21.7MB/s]
Downloading knowledge_retriever.tgz:  22%|██▏       | 470M/2.13G [00:23<01:18, 21.2MB/s]
Downloading knowledge_retriever.tgz:  22%|██▏       | 472M/2.13G [00:23<01:18, 21.0MB/s]
Downloading knowledge_retriever.tgz:  22%|██▏       | 474M/2.13G [00:23<01:16, 21.5MB/s]
Downloading knowledge_retriever.tgz:  22%|██▏       | 477M/2.13G [00:23<01:16, 21.6MB/s]
Downloading knowledge_retriever.tgz:  22%|██▏       | 479M/2.13G [00:23<01:15, 22.0MB/s]
Downloading knowledge_retriever.tgz:  23%|██▎       | 481M/2.13G [00:23<01:15, 21.9MB/s]
Downloading knowledge_retriever.tgz:  23%|██▎       | 483M/2.13G [00:23<01:15, 21.9MB/s]
Downloading knowledge_retriever.tgz:  23%|██▎       | 486M/2.13G [00:23<01:16, 21.4MB/s]
Downloading knowledge_retriever.tgz:  23%|██▎       | 488M/2.13G [00:24<01:16, 21.3MB/s]
Downloading knowledge_retriever.tgz:  23%|██▎       | 490M/2.13G [00:24<01:17, 21.1MB/s]
Downloading knowledge_retriever.tgz:  23%|██▎       | 492M/2.13G [00:24<01:18, 20.9MB/s]
Downloading knowledge_retriever.tgz:  23%|██▎       | 495M/2.13G [00:24<01:16, 21.4MB/s]
Downloading knowledge_retriever.tgz:  23%|██▎       | 497M/2.13G [00:24<01:15, 21.7MB/s]
Downloading knowledge_retriever.tgz:  23%|██▎       | 499M/2.13G [00:24<01:15, 21.7MB/s]
Downloading knowledge_retriever.tgz:  24%|██▎       | 501M/2.13G [00:24<01:14, 21.7MB/s]
Downloading knowledge_retriever.tgz:  24%|██▎       | 504M/2.13G [00:24<01:14, 21.7MB/s]
Downloading knowledge_retriever.tgz:  24%|██▍       | 506M/2.13G [00:24<01:13, 22.0MB/s]
Downloading knowledge_retriever.tgz:  24%|██▍       | 508M/2.13G [00:24<01:14, 21.9MB/s]
Downloading knowledge_retriever.tgz:  24%|██▍       | 510M/2.13G [00:25<01:15, 21.4MB/s]
Downloading knowledge_retriever.tgz:  24%|██▍       | 513M/2.13G [00:25<01:16, 21.3MB/s]
Downloading knowledge_retriever.tgz:  24%|██▍       | 515M/2.13G [00:25<01:15, 21.3MB/s]
Downloading knowledge_retriever.tgz:  24%|██▍       | 517M/2.13G [00:25<01:13, 21.8MB/s]
Downloading knowledge_retriever.tgz:  24%|██▍       | 519M/2.13G [00:25<01:16, 21.1MB/s]
Downloading knowledge_retriever.tgz:  24%|██▍       | 521M/2.13G [00:25<01:16, 21.0MB/s]
Downloading knowledge_retriever.tgz:  25%|██▍       | 524M/2.13G [00:25<01:15, 21.3MB/s]
Downloading knowledge_retriever.tgz:  25%|██▍       | 526M/2.13G [00:25<01:14, 21.5MB/s]
Downloading knowledge_retriever.tgz:  25%|██▍       | 528M/2.13G [00:25<01:15, 21.3MB/s]
Downloading knowledge_retriever.tgz:  25%|██▍       | 530M/2.13G [00:26<01:14, 21.4MB/s]
Downloading knowledge_retriever.tgz:  25%|██▌       | 532M/2.13G [00:26<01:14, 21.3MB/s]
Downloading knowledge_retriever.tgz:  25%|██▌       | 535M/2.13G [00:26<01:12, 22.0MB/s]
Downloading knowledge_retriever.tgz:  25%|██▌       | 537M/2.13G [00:26<01:12, 22.0MB/s]
Downloading knowledge_retriever.tgz:  25%|██▌       | 539M/2.13G [00:26<01:13, 21.6MB/s]
Downloading knowledge_retriever.tgz:  25%|██▌       | 542M/2.13G [00:26<01:12, 21.9MB/s]
Downloading knowledge_retriever.tgz:  26%|██▌       | 544M/2.13G [00:26<01:12, 21.8MB/s]
Downloading knowledge_retriever.tgz:  26%|██▌       | 546M/2.13G [00:26<01:14, 21.2MB/s]
Downloading knowledge_retriever.tgz:  26%|██▌       | 548M/2.13G [00:26<01:13, 21.4MB/s]
Downloading knowledge_retriever.tgz:  26%|██▌       | 551M/2.13G [00:26<01:13, 21.5MB/s]
Downloading knowledge_retriever.tgz:  26%|██▌       | 553M/2.13G [00:27<01:13, 21.3MB/s]
Downloading knowledge_retriever.tgz:  26%|██▌       | 555M/2.13G [00:27<01:13, 21.4MB/s]
Downloading knowledge_retriever.tgz:  26%|██▌       | 557M/2.13G [00:27<01:54, 13.7MB/s]
Downloading knowledge_retriever.tgz:  26%|██▋       | 563M/2.13G [00:27<01:27, 17.8MB/s]
Downloading knowledge_retriever.tgz:  27%|██▋       | 566M/2.13G [00:27<01:20, 19.4MB/s]
Downloading knowledge_retriever.tgz:  27%|██▋       | 569M/2.13G [00:27<01:20, 19.4MB/s]
Downloading knowledge_retriever.tgz:  27%|██▋       | 572M/2.13G [00:27<01:17, 20.0MB/s]
Downloading knowledge_retriever.tgz:  27%|██▋       | 574M/2.13G [00:28<01:19, 19.6MB/s]
Downloading knowledge_retriever.tgz:  27%|██▋       | 577M/2.13G [00:28<01:11, 21.7MB/s]
Downloading knowledge_retriever.tgz:  27%|██▋       | 580M/2.13G [00:28<01:15, 20.5MB/s]
Downloading knowledge_retriever.tgz:  27%|██▋       | 582M/2.13G [00:28<01:13, 21.0MB/s]
Downloading knowledge_retriever.tgz:  27%|██▋       | 584M/2.13G [00:28<01:12, 21.2MB/s]
Downloading knowledge_retriever.tgz:  28%|██▊       | 586M/2.13G [00:28<01:12, 21.3MB/s]
Downloading knowledge_retriever.tgz:  28%|██▊       | 589M/2.13G [00:28<01:11, 21.6MB/s]
Downloading knowledge_retriever.tgz:  28%|██▊       | 591M/2.13G [00:28<01:09, 22.1MB/s]
Downloading knowledge_retriever.tgz:  28%|██▊       | 593M/2.13G [00:28<01:09, 22.2MB/s]
Downloading knowledge_retriever.tgz:  28%|██▊       | 596M/2.13G [00:29<01:10, 21.8MB/s]
Downloading knowledge_retriever.tgz:  28%|██▊       | 598M/2.13G [00:29<01:09, 21.9MB/s]
Downloading knowledge_retriever.tgz:  28%|██▊       | 600M/2.13G [00:29<01:11, 21.5MB/s]
Downloading knowledge_retriever.tgz:  28%|██▊       | 602M/2.13G [00:29<01:10, 21.6MB/s]
Downloading knowledge_retriever.tgz:  28%|██▊       | 604M/2.13G [00:29<01:13, 20.9MB/s]
Downloading knowledge_retriever.tgz:  28%|██▊       | 607M/2.13G [00:29<01:11, 21.3MB/s]
Downloading knowledge_retriever.tgz:  29%|██▊       | 609M/2.13G [00:29<01:11, 21.2MB/s]
Downloading knowledge_retriever.tgz:  29%|██▊       | 611M/2.13G [00:29<01:11, 21.3MB/s]
Downloading knowledge_retriever.tgz:  29%|██▉       | 613M/2.13G [00:29<01:10, 21.4MB/s]
Downloading knowledge_retriever.tgz:  29%|██▉       | 615M/2.13G [00:29<01:10, 21.4MB/s]
Downloading knowledge_retriever.tgz:  29%|██▉       | 618M/2.13G [00:30<01:10, 21.4MB/s]
Downloading knowledge_retriever.tgz:  29%|██▉       | 620M/2.13G [00:30<01:07, 22.2MB/s]
Downloading knowledge_retriever.tgz:  29%|██▉       | 622M/2.13G [00:30<01:08, 22.1MB/s]
Downloading knowledge_retriever.tgz:  29%|██▉       | 625M/2.13G [00:30<01:07, 22.2MB/s]
Downloading knowledge_retriever.tgz:  29%|██▉       | 627M/2.13G [00:30<01:09, 21.6MB/s]
Downloading knowledge_retriever.tgz:  30%|██▉       | 629M/2.13G [00:30<01:10, 21.3MB/s]
Downloading knowledge_retriever.tgz:  30%|██▉       | 631M/2.13G [00:30<01:09, 21.5MB/s]
Downloading knowledge_retriever.tgz:  30%|██▉       | 634M/2.13G [00:30<01:08, 21.8MB/s]
Downloading knowledge_retriever.tgz:  30%|██▉       | 636M/2.13G [00:30<01:10, 21.2MB/s]
Downloading knowledge_retriever.tgz:  30%|██▉       | 638M/2.13G [00:31<01:09, 21.3MB/s]
Downloading knowledge_retriever.tgz:  30%|███       | 640M/2.13G [00:31<01:09, 21.4MB/s]
Downloading knowledge_retriever.tgz:  30%|███       | 642M/2.13G [00:31<01:08, 21.7MB/s]
Downloading knowledge_retriever.tgz:  30%|███       | 645M/2.13G [00:31<01:08, 21.7MB/s]
Downloading knowledge_retriever.tgz:  30%|███       | 647M/2.13G [00:31<01:09, 21.5MB/s]
Downloading knowledge_retriever.tgz:  30%|███       | 649M/2.13G [00:31<01:09, 21.3MB/s]
Downloading knowledge_retriever.tgz:  31%|███       | 651M/2.13G [00:31<01:07, 22.1MB/s]
Downloading knowledge_retriever.tgz:  31%|███       | 654M/2.13G [00:31<01:07, 21.8MB/s]
Downloading knowledge_retriever.tgz:  31%|███       | 656M/2.13G [00:31<01:06, 22.0MB/s]
Downloading knowledge_retriever.tgz:  31%|███       | 658M/2.13G [00:31<01:09, 21.2MB/s]
Downloading knowledge_retriever.tgz:  31%|███       | 660M/2.13G [00:32<01:08, 21.4MB/s]
Downloading knowledge_retriever.tgz:  31%|███       | 663M/2.13G [00:32<01:08, 21.5MB/s]
Downloading knowledge_retriever.tgz:  31%|███       | 665M/2.13G [00:32<01:08, 21.3MB/s]
Downloading knowledge_retriever.tgz:  31%|███▏      | 667M/2.13G [00:32<01:09, 21.1MB/s]
Downloading knowledge_retriever.tgz:  31%|███▏      | 669M/2.13G [00:32<01:08, 21.3MB/s]
Downloading knowledge_retriever.tgz:  32%|███▏      | 671M/2.13G [00:32<01:08, 21.2MB/s]
Downloading knowledge_retriever.tgz:  32%|███▏      | 674M/2.13G [00:32<01:07, 21.5MB/s]
Downloading knowledge_retriever.tgz:  32%|███▏      | 676M/2.13G [00:32<01:06, 21.9MB/s]
Downloading knowledge_retriever.tgz:  32%|███▏      | 678M/2.13G [00:32<01:07, 21.4MB/s]
Downloading knowledge_retriever.tgz:  32%|███▏      | 680M/2.13G [00:32<01:07, 21.4MB/s]
Downloading knowledge_retriever.tgz:  32%|███▏      | 683M/2.13G [00:33<01:06, 21.8MB/s]
Downloading knowledge_retriever.tgz:  32%|███▏      | 685M/2.13G [00:33<01:05, 22.2MB/s]
Downloading knowledge_retriever.tgz:  32%|███▏      | 687M/2.13G [00:33<01:05, 22.1MB/s]
Downloading knowledge_retriever.tgz:  32%|███▏      | 689M/2.13G [00:33<01:07, 21.4MB/s]
Downloading knowledge_retriever.tgz:  32%|███▏      | 692M/2.13G [00:33<01:08, 20.9MB/s]
Downloading knowledge_retriever.tgz:  33%|███▎      | 694M/2.13G [00:33<01:06, 21.7MB/s]
Downloading knowledge_retriever.tgz:  33%|███▎      | 696M/2.13G [00:33<01:05, 21.8MB/s]
Downloading knowledge_retriever.tgz:  33%|███▎      | 698M/2.13G [00:33<01:06, 21.5MB/s]
Downloading knowledge_retriever.tgz:  33%|███▎      | 701M/2.13G [00:33<01:06, 21.5MB/s]
Downloading knowledge_retriever.tgz:  33%|███▎      | 703M/2.13G [00:34<01:06, 21.4MB/s]
Downloading knowledge_retriever.tgz:  33%|███▎      | 705M/2.13G [00:34<01:06, 21.4MB/s]
Downloading knowledge_retriever.tgz:  33%|███▎      | 707M/2.13G [00:34<01:06, 21.4MB/s]
Downloading knowledge_retriever.tgz:  33%|███▎      | 709M/2.13G [00:34<01:06, 21.5MB/s]
Downloading knowledge_retriever.tgz:  33%|███▎      | 711M/2.13G [00:34<01:06, 21.5MB/s]
Downloading knowledge_retriever.tgz:  34%|███▎      | 714M/2.13G [00:34<01:05, 21.6MB/s]
Downloading knowledge_retriever.tgz:  34%|███▎      | 716M/2.13G [00:34<01:05, 21.5MB/s]
Downloading knowledge_retriever.tgz:  34%|███▎      | 718M/2.13G [00:34<01:05, 21.4MB/s]
Downloading knowledge_retriever.tgz:  34%|███▍      | 720M/2.13G [00:34<01:04, 22.0MB/s]
Downloading knowledge_retriever.tgz:  34%|███▍      | 723M/2.13G [00:34<01:04, 21.8MB/s]
Downloading knowledge_retriever.tgz:  34%|███▍      | 725M/2.13G [00:35<01:04, 21.6MB/s]
Downloading knowledge_retriever.tgz:  34%|███▍      | 727M/2.13G [00:35<01:04, 21.7MB/s]
Downloading knowledge_retriever.tgz:  34%|███▍      | 730M/2.13G [00:35<01:05, 21.5MB/s]
Downloading knowledge_retriever.tgz:  34%|███▍      | 732M/2.13G [00:35<01:04, 21.7MB/s]
Downloading knowledge_retriever.tgz:  34%|███▍      | 734M/2.13G [00:35<01:04, 21.7MB/s]
Downloading knowledge_retriever.tgz:  35%|███▍      | 736M/2.13G [00:35<01:04, 21.7MB/s]
Downloading knowledge_retriever.tgz:  35%|███▍      | 739M/2.13G [00:35<01:05, 21.4MB/s]
Downloading knowledge_retriever.tgz:  35%|███▍      | 741M/2.13G [00:35<01:04, 21.5MB/s]
Downloading knowledge_retriever.tgz:  35%|███▍      | 743M/2.13G [00:35<01:04, 21.6MB/s]
Downloading knowledge_retriever.tgz:  35%|███▍      | 745M/2.13G [00:35<01:03, 21.9MB/s]
Downloading knowledge_retriever.tgz:  35%|███▌      | 748M/2.13G [00:36<01:02, 22.1MB/s]
Downloading knowledge_retriever.tgz:  35%|███▌      | 750M/2.13G [00:36<01:03, 21.6MB/s]
Downloading knowledge_retriever.tgz:  35%|███▌      | 752M/2.13G [00:36<01:04, 21.4MB/s]
Downloading knowledge_retriever.tgz:  35%|███▌      | 754M/2.13G [00:36<01:04, 21.4MB/s]
Downloading knowledge_retriever.tgz:  36%|███▌      | 757M/2.13G [00:36<01:02, 21.8MB/s]
Downloading knowledge_retriever.tgz:  36%|███▌      | 759M/2.13G [00:36<01:03, 21.4MB/s]
Downloading knowledge_retriever.tgz:  36%|███▌      | 761M/2.13G [00:36<01:03, 21.4MB/s]
Downloading knowledge_retriever.tgz:  36%|███▌      | 763M/2.13G [00:36<01:03, 21.4MB/s]
Downloading knowledge_retriever.tgz:  36%|███▌      | 765M/2.13G [00:36<01:03, 21.4MB/s]
Downloading knowledge_retriever.tgz:  36%|███▌      | 767M/2.13G [00:37<01:03, 21.3MB/s]
Downloading knowledge_retriever.tgz:  36%|███▌      | 770M/2.13G [00:37<03:44, 6.07MB/s]
Downloading knowledge_retriever.tgz:  37%|███▋      | 784M/2.13G [00:38<02:37, 8.52MB/s]
Downloading knowledge_retriever.tgz:  37%|███▋      | 791M/2.13G [00:38<01:55, 11.5MB/s]
Downloading knowledge_retriever.tgz:  37%|███▋      | 797M/2.13G [00:38<01:35, 13.9MB/s]
Downloading knowledge_retriever.tgz:  38%|███▊      | 802M/2.13G [00:38<01:29, 14.9MB/s]
Downloading knowledge_retriever.tgz:  38%|███▊      | 806M/2.13G [00:38<01:20, 16.4MB/s]
Downloading knowledge_retriever.tgz:  38%|███▊      | 809M/2.13G [00:39<01:14, 17.8MB/s]
Downloading knowledge_retriever.tgz:  38%|███▊      | 812M/2.13G [00:39<01:12, 18.1MB/s]
Downloading knowledge_retriever.tgz:  38%|███▊      | 815M/2.13G [00:39<01:07, 19.4MB/s]
Downloading knowledge_retriever.tgz:  38%|███▊      | 818M/2.13G [00:39<01:07, 19.5MB/s]
Downloading knowledge_retriever.tgz:  39%|███▊      | 820M/2.13G [00:39<01:03, 20.6MB/s]
Downloading knowledge_retriever.tgz:  39%|███▊      | 822M/2.13G [00:39<01:00, 21.6MB/s]
Downloading knowledge_retriever.tgz:  39%|███▊      | 825M/2.13G [00:39<00:59, 21.8MB/s]
Downloading knowledge_retriever.tgz:  39%|███▉      | 827M/2.13G [00:39<00:58, 22.2MB/s]
Downloading knowledge_retriever.tgz:  39%|███▉      | 830M/2.13G [00:39<01:06, 19.7MB/s]
Downloading knowledge_retriever.tgz:  39%|███▉      | 832M/2.13G [00:40<01:05, 20.0MB/s]
Downloading knowledge_retriever.tgz:  39%|███▉      | 834M/2.13G [00:40<01:03, 20.4MB/s]
Downloading knowledge_retriever.tgz:  39%|███▉      | 836M/2.13G [00:40<01:00, 21.5MB/s]
Downloading knowledge_retriever.tgz:  39%|███▉      | 839M/2.13G [00:40<00:59, 21.7MB/s]
Downloading knowledge_retriever.tgz:  39%|███▉      | 841M/2.13G [00:40<00:58, 22.2MB/s]
Downloading knowledge_retriever.tgz:  40%|███▉      | 843M/2.13G [00:40<00:56, 22.6MB/s]
Downloading knowledge_retriever.tgz:  40%|███▉      | 846M/2.13G [00:40<00:55, 23.0MB/s]
Downloading knowledge_retriever.tgz:  40%|███▉      | 848M/2.13G [00:40<01:04, 19.9MB/s]
Downloading knowledge_retriever.tgz:  40%|███▉      | 850M/2.13G [00:40<01:02, 20.4MB/s]
Downloading knowledge_retriever.tgz:  40%|████      | 852M/2.13G [00:41<01:01, 20.7MB/s]
Downloading knowledge_retriever.tgz:  40%|████      | 855M/2.13G [00:41<00:59, 21.3MB/s]
Downloading knowledge_retriever.tgz:  40%|████      | 857M/2.13G [00:41<00:59, 21.5MB/s]
Downloading knowledge_retriever.tgz:  40%|████      | 859M/2.13G [00:41<00:58, 21.9MB/s]
Downloading knowledge_retriever.tgz:  40%|████      | 861M/2.13G [00:41<01:30, 14.0MB/s]
Downloading knowledge_retriever.tgz:  41%|████      | 868M/2.13G [00:41<01:09, 18.3MB/s]
Downloading knowledge_retriever.tgz:  41%|████      | 871M/2.13G [00:41<01:10, 17.8MB/s]
Downloading knowledge_retriever.tgz:  41%|████      | 874M/2.13G [00:42<01:03, 19.7MB/s]
Downloading knowledge_retriever.tgz:  41%|████      | 877M/2.13G [00:42<01:00, 20.5MB/s]
Downloading knowledge_retriever.tgz:  41%|████▏     | 879M/2.13G [00:42<01:01, 20.4MB/s]
Downloading knowledge_retriever.tgz:  41%|████▏     | 882M/2.13G [00:42<01:03, 19.7MB/s]
Downloading knowledge_retriever.tgz:  42%|████▏     | 884M/2.13G [00:42<01:02, 19.9MB/s]
Downloading knowledge_retriever.tgz:  42%|████▏     | 887M/2.13G [00:42<01:00, 20.6MB/s]
Downloading knowledge_retriever.tgz:  42%|████▏     | 889M/2.13G [00:42<00:59, 20.9MB/s]
Downloading knowledge_retriever.tgz:  42%|████▏     | 891M/2.13G [00:42<00:56, 21.8MB/s]
Downloading knowledge_retriever.tgz:  42%|████▏     | 894M/2.13G [00:43<01:00, 20.5MB/s]
Downloading knowledge_retriever.tgz:  42%|████▏     | 896M/2.13G [00:43<00:57, 21.3MB/s]
Downloading knowledge_retriever.tgz:  42%|████▏     | 898M/2.13G [00:43<00:56, 21.7MB/s]
Downloading knowledge_retriever.tgz:  42%|████▏     | 901M/2.13G [00:43<00:56, 21.7MB/s]
Downloading knowledge_retriever.tgz:  42%|████▏     | 903M/2.13G [00:43<00:58, 21.1MB/s]
Downloading knowledge_retriever.tgz:  43%|████▎     | 905M/2.13G [00:43<00:59, 20.7MB/s]
Downloading knowledge_retriever.tgz:  43%|████▎     | 907M/2.13G [00:43<00:58, 20.9MB/s]
Downloading knowledge_retriever.tgz:  43%|████▎     | 910M/2.13G [00:43<00:56, 21.6MB/s]
Downloading knowledge_retriever.tgz:  43%|████▎     | 912M/2.13G [00:43<00:56, 21.7MB/s]
Downloading knowledge_retriever.tgz:  43%|████▎     | 914M/2.13G [00:43<00:55, 21.9MB/s]
Downloading knowledge_retriever.tgz:  43%|████▎     | 916M/2.13G [00:44<00:55, 21.9MB/s]
Downloading knowledge_retriever.tgz:  43%|████▎     | 919M/2.13G [00:44<01:17, 15.6MB/s]
Downloading knowledge_retriever.tgz:  43%|████▎     | 924M/2.13G [00:44<01:01, 19.6MB/s]
Downloading knowledge_retriever.tgz:  43%|████▎     | 926M/2.13G [00:44<00:59, 20.2MB/s]
Downloading knowledge_retriever.tgz:  44%|████▎     | 929M/2.13G [00:44<00:59, 20.3MB/s]
Downloading knowledge_retriever.tgz:  44%|████▎     | 931M/2.13G [00:44<00:56, 21.3MB/s]
Downloading knowledge_retriever.tgz:  44%|████▍     | 934M/2.13G [00:44<00:54, 22.0MB/s]
Downloading knowledge_retriever.tgz:  44%|████▍     | 936M/2.13G [00:44<00:58, 20.5MB/s]
Downloading knowledge_retriever.tgz:  44%|████▍     | 938M/2.13G [00:45<00:56, 20.9MB/s]
Downloading knowledge_retriever.tgz:  44%|████▍     | 941M/2.13G [00:45<00:55, 21.3MB/s]
Downloading knowledge_retriever.tgz:  44%|████▍     | 943M/2.13G [00:45<00:55, 21.4MB/s]
Downloading knowledge_retriever.tgz:  44%|████▍     | 945M/2.13G [00:45<00:57, 20.6MB/s]
Downloading knowledge_retriever.tgz:  44%|████▍     | 947M/2.13G [00:45<00:56, 20.8MB/s]
Downloading knowledge_retriever.tgz:  45%|████▍     | 950M/2.13G [00:45<00:55, 21.4MB/s]
Downloading knowledge_retriever.tgz:  45%|████▍     | 952M/2.13G [00:45<00:54, 21.5MB/s]
Downloading knowledge_retriever.tgz:  45%|████▍     | 954M/2.13G [00:45<00:55, 21.2MB/s]
Downloading knowledge_retriever.tgz:  45%|████▍     | 956M/2.13G [00:45<00:55, 21.2MB/s]
Downloading knowledge_retriever.tgz:  45%|████▌     | 959M/2.13G [00:46<00:53, 21.9MB/s]
Downloading knowledge_retriever.tgz:  45%|████▌     | 961M/2.13G [00:46<00:53, 21.7MB/s]
Downloading knowledge_retriever.tgz:  45%|████▌     | 963M/2.13G [00:46<00:52, 22.1MB/s]
Downloading knowledge_retriever.tgz:  45%|████▌     | 966M/2.13G [00:46<00:52, 22.0MB/s]
Downloading knowledge_retriever.tgz:  45%|████▌     | 968M/2.13G [00:46<00:52, 22.0MB/s]
Downloading knowledge_retriever.tgz:  46%|████▌     | 970M/2.13G [00:46<00:55, 20.7MB/s]
Downloading knowledge_retriever.tgz:  46%|████▌     | 972M/2.13G [00:46<00:56, 20.3MB/s]
Downloading knowledge_retriever.tgz:  46%|████▌     | 975M/2.13G [00:46<00:53, 21.6MB/s]
Downloading knowledge_retriever.tgz:  46%|████▌     | 977M/2.13G [00:46<00:54, 21.0MB/s]
Downloading knowledge_retriever.tgz:  46%|████▌     | 979M/2.13G [00:46<00:53, 21.5MB/s]
Downloading knowledge_retriever.tgz:  46%|████▌     | 981M/2.13G [00:47<00:53, 21.6MB/s]
Downloading knowledge_retriever.tgz:  46%|████▌     | 984M/2.13G [00:47<00:52, 21.8MB/s]
Downloading knowledge_retriever.tgz:  46%|████▋     | 986M/2.13G [00:47<00:52, 21.9MB/s]
Downloading knowledge_retriever.tgz:  46%|████▋     | 988M/2.13G [00:47<00:52, 21.8MB/s]
Downloading knowledge_retriever.tgz:  47%|████▋     | 991M/2.13G [00:47<00:51, 22.3MB/s]
Downloading knowledge_retriever.tgz:  47%|████▋     | 993M/2.13G [00:47<00:53, 21.1MB/s]
Downloading knowledge_retriever.tgz:  47%|████▋     | 995M/2.13G [00:47<00:55, 20.3MB/s]
Downloading knowledge_retriever.tgz:  47%|████▋     | 997M/2.13G [00:47<00:56, 19.9MB/s]
Downloading knowledge_retriever.tgz:  47%|████▋     | 1.00G/2.13G [00:47<00:53, 21.1MB/s]
Downloading knowledge_retriever.tgz:  47%|████▋     | 1.00G/2.13G [00:48<00:51, 21.8MB/s]
Downloading knowledge_retriever.tgz:  47%|████▋     | 1.00G/2.13G [00:48<00:53, 20.9MB/s]
Downloading knowledge_retriever.tgz:  47%|████▋     | 1.01G/2.13G [00:48<00:51, 21.7MB/s]
Downloading knowledge_retriever.tgz:  47%|████▋     | 1.01G/2.13G [00:48<00:51, 21.8MB/s]
Downloading knowledge_retriever.tgz:  47%|████▋     | 1.01G/2.13G [00:48<00:54, 20.7MB/s]
Downloading knowledge_retriever.tgz:  48%|████▊     | 1.01G/2.13G [00:48<00:53, 21.0MB/s]
Downloading knowledge_retriever.tgz:  48%|████▊     | 1.02G/2.13G [00:48<00:52, 21.0MB/s]
Downloading knowledge_retriever.tgz:  48%|████▊     | 1.02G/2.13G [00:48<00:52, 21.1MB/s]
Downloading knowledge_retriever.tgz:  48%|████▊     | 1.02G/2.13G [00:48<00:53, 20.8MB/s]
Downloading knowledge_retriever.tgz:  48%|████▊     | 1.02G/2.13G [00:48<00:53, 20.9MB/s]
Downloading knowledge_retriever.tgz:  48%|████▊     | 1.02G/2.13G [00:49<00:53, 20.6MB/s]
Downloading knowledge_retriever.tgz:  48%|████▊     | 1.03G/2.13G [00:49<00:50, 21.9MB/s]
Downloading knowledge_retriever.tgz:  48%|████▊     | 1.03G/2.13G [00:49<00:50, 21.7MB/s]
Downloading knowledge_retriever.tgz:  48%|████▊     | 1.03G/2.13G [00:49<00:50, 21.9MB/s]
Downloading knowledge_retriever.tgz:  49%|████▊     | 1.03G/2.13G [00:49<00:50, 21.9MB/s]
Downloading knowledge_retriever.tgz:  49%|████▊     | 1.04G/2.13G [00:49<00:52, 20.9MB/s]
Downloading knowledge_retriever.tgz:  49%|████▊     | 1.04G/2.13G [00:49<00:51, 21.1MB/s]
Downloading knowledge_retriever.tgz:  49%|████▉     | 1.04G/2.13G [00:49<00:51, 21.2MB/s]
Downloading knowledge_retriever.tgz:  49%|████▉     | 1.04G/2.13G [00:49<00:49, 21.9MB/s]
Downloading knowledge_retriever.tgz:  49%|████▉     | 1.04G/2.13G [00:50<00:49, 21.9MB/s]
Downloading knowledge_retriever.tgz:  49%|████▉     | 1.05G/2.13G [00:50<00:49, 21.7MB/s]
Downloading knowledge_retriever.tgz:  49%|████▉     | 1.05G/2.13G [00:50<00:54, 19.7MB/s]
Downloading knowledge_retriever.tgz:  49%|████▉     | 1.05G/2.13G [00:50<00:49, 21.7MB/s]
Downloading knowledge_retriever.tgz:  49%|████▉     | 1.05G/2.13G [00:50<00:50, 21.4MB/s]
Downloading knowledge_retriever.tgz:  50%|████▉     | 1.06G/2.13G [00:50<00:50, 21.3MB/s]
Downloading knowledge_retriever.tgz:  50%|████▉     | 1.06G/2.13G [00:50<00:49, 21.5MB/s]
Downloading knowledge_retriever.tgz:  50%|████▉     | 1.06G/2.13G [00:50<00:49, 21.6MB/s]
Downloading knowledge_retriever.tgz:  50%|████▉     | 1.06G/2.13G [00:50<00:49, 21.4MB/s]
Downloading knowledge_retriever.tgz:  50%|█████     | 1.07G/2.13G [00:51<00:51, 20.6MB/s]
Downloading knowledge_retriever.tgz:  50%|█████     | 1.07G/2.13G [00:51<00:48, 21.8MB/s]
Downloading knowledge_retriever.tgz:  50%|█████     | 1.07G/2.13G [00:51<00:49, 21.3MB/s]
Downloading knowledge_retriever.tgz:  50%|█████     | 1.07G/2.13G [00:51<00:48, 21.9MB/s]
Downloading knowledge_retriever.tgz:  50%|█████     | 1.07G/2.13G [00:51<00:50, 21.1MB/s]
Downloading knowledge_retriever.tgz:  51%|█████     | 1.08G/2.13G [00:51<00:49, 21.4MB/s]
Downloading knowledge_retriever.tgz:  51%|█████     | 1.08G/2.13G [00:51<00:48, 21.5MB/s]
Downloading knowledge_retriever.tgz:  51%|█████     | 1.08G/2.13G [00:51<00:48, 21.5MB/s]
Downloading knowledge_retriever.tgz:  51%|█████     | 1.08G/2.13G [00:51<00:48, 21.6MB/s]
Downloading knowledge_retriever.tgz:  51%|█████     | 1.09G/2.13G [00:51<00:47, 21.8MB/s]
Downloading knowledge_retriever.tgz:  51%|█████     | 1.09G/2.13G [00:52<00:48, 21.3MB/s]
Downloading knowledge_retriever.tgz:  51%|█████     | 1.09G/2.13G [00:52<00:48, 21.6MB/s]
Downloading knowledge_retriever.tgz:  51%|█████▏    | 1.09G/2.13G [00:52<00:47, 21.8MB/s]
Downloading knowledge_retriever.tgz:  51%|█████▏    | 1.09G/2.13G [00:52<00:47, 21.9MB/s]
Downloading knowledge_retriever.tgz:  51%|█████▏    | 1.10G/2.13G [00:52<00:47, 21.8MB/s]
Downloading knowledge_retriever.tgz:  52%|█████▏    | 1.10G/2.13G [00:52<00:47, 21.6MB/s]
Downloading knowledge_retriever.tgz:  52%|█████▏    | 1.10G/2.13G [00:52<00:48, 21.3MB/s]
Downloading knowledge_retriever.tgz:  52%|█████▏    | 1.10G/2.13G [00:52<00:49, 20.7MB/s]
Downloading knowledge_retriever.tgz:  52%|█████▏    | 1.11G/2.13G [00:52<00:49, 20.8MB/s]
Downloading knowledge_retriever.tgz:  52%|█████▏    | 1.11G/2.13G [00:52<00:49, 20.5MB/s]
Downloading knowledge_retriever.tgz:  52%|█████▏    | 1.11G/2.13G [00:53<00:48, 21.0MB/s]
Downloading knowledge_retriever.tgz:  52%|█████▏    | 1.11G/2.13G [00:53<00:47, 21.5MB/s]
Downloading knowledge_retriever.tgz:  52%|█████▏    | 1.11G/2.13G [00:53<00:46, 21.7MB/s]
Downloading knowledge_retriever.tgz:  52%|█████▏    | 1.12G/2.13G [00:53<00:46, 21.8MB/s]
Downloading knowledge_retriever.tgz:  53%|█████▎    | 1.12G/2.13G [00:53<00:46, 21.8MB/s]
Downloading knowledge_retriever.tgz:  53%|█████▎    | 1.12G/2.13G [00:53<00:46, 21.7MB/s]
Downloading knowledge_retriever.tgz:  53%|█████▎    | 1.12G/2.13G [00:53<00:46, 21.7MB/s]
Downloading knowledge_retriever.tgz:  53%|█████▎    | 1.13G/2.13G [00:53<00:46, 21.5MB/s]
Downloading knowledge_retriever.tgz:  53%|█████▎    | 1.13G/2.13G [00:53<00:45, 21.8MB/s]
Downloading knowledge_retriever.tgz:  53%|█████▎    | 1.13G/2.13G [00:54<00:46, 21.4MB/s]
Downloading knowledge_retriever.tgz:  53%|█████▎    | 1.13G/2.13G [00:54<00:45, 21.9MB/s]
Downloading knowledge_retriever.tgz:  53%|█████▎    | 1.13G/2.13G [00:54<00:45, 21.8MB/s]
Downloading knowledge_retriever.tgz:  53%|█████▎    | 1.14G/2.13G [00:54<00:47, 21.1MB/s]
Downloading knowledge_retriever.tgz:  53%|█████▎    | 1.14G/2.13G [00:54<00:46, 21.3MB/s]
Downloading knowledge_retriever.tgz:  54%|█████▎    | 1.14G/2.13G [00:54<00:45, 21.5MB/s]
Downloading knowledge_retriever.tgz:  54%|█████▎    | 1.14G/2.13G [00:54<00:45, 21.7MB/s]
Downloading knowledge_retriever.tgz:  54%|█████▍    | 1.15G/2.13G [00:54<00:46, 21.3MB/s]
Downloading knowledge_retriever.tgz:  54%|█████▍    | 1.15G/2.13G [00:54<00:47, 20.7MB/s]
Downloading knowledge_retriever.tgz:  54%|█████▍    | 1.15G/2.13G [00:54<00:45, 21.6MB/s]
Downloading knowledge_retriever.tgz:  54%|█████▍    | 1.15G/2.13G [00:55<00:45, 21.6MB/s]
Downloading knowledge_retriever.tgz:  54%|█████▍    | 1.15G/2.13G [00:55<00:44, 22.0MB/s]
Downloading knowledge_retriever.tgz:  54%|█████▍    | 1.16G/2.13G [00:55<00:44, 21.7MB/s]
Downloading knowledge_retriever.tgz:  54%|█████▍    | 1.16G/2.13G [00:55<00:44, 21.6MB/s]
Downloading knowledge_retriever.tgz:  55%|█████▍    | 1.16G/2.13G [00:55<00:43, 22.3MB/s]
Downloading knowledge_retriever.tgz:  55%|█████▍    | 1.16G/2.13G [00:55<00:44, 21.7MB/s]
Downloading knowledge_retriever.tgz:  55%|█████▍    | 1.17G/2.13G [00:55<00:44, 21.6MB/s]
Downloading knowledge_retriever.tgz:  55%|█████▍    | 1.17G/2.13G [00:55<00:45, 21.2MB/s]
Downloading knowledge_retriever.tgz:  55%|█████▍    | 1.17G/2.13G [00:55<00:44, 21.4MB/s]
Downloading knowledge_retriever.tgz:  55%|█████▌    | 1.17G/2.13G [00:55<00:44, 21.4MB/s]
Downloading knowledge_retriever.tgz:  55%|█████▌    | 1.17G/2.13G [00:56<00:44, 21.6MB/s]
Downloading knowledge_retriever.tgz:  55%|█████▌    | 1.18G/2.13G [00:56<00:43, 21.7MB/s]
Downloading knowledge_retriever.tgz:  55%|█████▌    | 1.18G/2.13G [00:56<00:44, 21.5MB/s]
Downloading knowledge_retriever.tgz:  55%|█████▌    | 1.18G/2.13G [00:56<00:44, 21.4MB/s]
Downloading knowledge_retriever.tgz:  56%|█████▌    | 1.18G/2.13G [00:56<00:44, 21.1MB/s]
Downloading knowledge_retriever.tgz:  56%|█████▌    | 1.19G/2.13G [00:56<00:44, 21.2MB/s]
Downloading knowledge_retriever.tgz:  56%|█████▌    | 1.19G/2.13G [00:56<00:44, 21.4MB/s]
Downloading knowledge_retriever.tgz:  56%|█████▌    | 1.19G/2.13G [00:56<00:43, 21.5MB/s]
Downloading knowledge_retriever.tgz:  56%|█████▌    | 1.19G/2.13G [00:56<00:44, 21.1MB/s]
Downloading knowledge_retriever.tgz:  56%|█████▌    | 1.19G/2.13G [00:57<00:42, 21.9MB/s]
Downloading knowledge_retriever.tgz:  56%|█████▌    | 1.20G/2.13G [00:57<00:42, 21.8MB/s]
Downloading knowledge_retriever.tgz:  56%|█████▋    | 1.20G/2.13G [00:57<00:42, 21.9MB/s]
Downloading knowledge_retriever.tgz:  56%|█████▋    | 1.20G/2.13G [00:57<00:43, 21.3MB/s]
Downloading knowledge_retriever.tgz:  57%|█████▋    | 1.20G/2.13G [00:57<00:44, 21.0MB/s]
Downloading knowledge_retriever.tgz:  57%|█████▋    | 1.21G/2.13G [00:57<00:44, 20.7MB/s]
Downloading knowledge_retriever.tgz:  57%|█████▋    | 1.21G/2.13G [00:57<00:42, 21.4MB/s]
Downloading knowledge_retriever.tgz:  57%|█████▋    | 1.21G/2.13G [00:57<00:43, 21.3MB/s]
Downloading knowledge_retriever.tgz:  57%|█████▋    | 1.21G/2.13G [00:57<00:43, 21.3MB/s]
Downloading knowledge_retriever.tgz:  57%|█████▋    | 1.21G/2.13G [00:57<00:42, 21.6MB/s]
Downloading knowledge_retriever.tgz:  57%|█████▋    | 1.22G/2.13G [00:58<00:41, 21.8MB/s]
Downloading knowledge_retriever.tgz:  57%|█████▋    | 1.22G/2.13G [00:58<00:41, 22.1MB/s]
Downloading knowledge_retriever.tgz:  57%|█████▋    | 1.22G/2.13G [00:58<00:42, 21.3MB/s]
Downloading knowledge_retriever.tgz:  57%|█████▋    | 1.22G/2.13G [00:58<00:41, 21.7MB/s]
Downloading knowledge_retriever.tgz:  58%|█████▊    | 1.23G/2.13G [00:58<00:40, 22.2MB/s]
Downloading knowledge_retriever.tgz:  58%|█████▊    | 1.23G/2.13G [00:58<00:43, 20.9MB/s]
Downloading knowledge_retriever.tgz:  58%|█████▊    | 1.23G/2.13G [00:58<00:42, 21.0MB/s]
Downloading knowledge_retriever.tgz:  58%|█████▊    | 1.23G/2.13G [00:58<00:42, 21.1MB/s]
Downloading knowledge_retriever.tgz:  58%|█████▊    | 1.23G/2.13G [00:58<00:42, 21.2MB/s]
Downloading knowledge_retriever.tgz:  58%|█████▊    | 1.24G/2.13G [00:58<00:42, 21.2MB/s]
Downloading knowledge_retriever.tgz:  58%|█████▊    | 1.24G/2.13G [00:59<00:40, 21.8MB/s]
Downloading knowledge_retriever.tgz:  58%|█████▊    | 1.24G/2.13G [00:59<00:40, 22.0MB/s]
Downloading knowledge_retriever.tgz:  58%|█████▊    | 1.24G/2.13G [00:59<00:40, 22.0MB/s]
Downloading knowledge_retriever.tgz:  59%|█████▊    | 1.25G/2.13G [00:59<00:40, 22.1MB/s]
Downloading knowledge_retriever.tgz:  59%|█████▊    | 1.25G/2.13G [00:59<00:39, 22.2MB/s]
Downloading knowledge_retriever.tgz:  59%|█████▊    | 1.25G/2.13G [00:59<00:39, 22.0MB/s]
Downloading knowledge_retriever.tgz:  59%|█████▉    | 1.25G/2.13G [00:59<00:40, 21.7MB/s]
Downloading knowledge_retriever.tgz:  59%|█████▉    | 1.26G/2.13G [00:59<00:42, 20.6MB/s]
Downloading knowledge_retriever.tgz:  59%|█████▉    | 1.26G/2.13G [00:59<00:40, 21.4MB/s]
Downloading knowledge_retriever.tgz:  59%|█████▉    | 1.26G/2.13G [01:00<00:40, 21.3MB/s]
Downloading knowledge_retriever.tgz:  59%|█████▉    | 1.26G/2.13G [01:00<00:40, 21.5MB/s]
Downloading knowledge_retriever.tgz:  59%|█████▉    | 1.26G/2.13G [01:00<00:40, 21.3MB/s]
Downloading knowledge_retriever.tgz:  59%|█████▉    | 1.27G/2.13G [01:00<00:39, 21.6MB/s]
Downloading knowledge_retriever.tgz:  60%|█████▉    | 1.27G/2.13G [01:00<00:40, 21.4MB/s]
Downloading knowledge_retriever.tgz:  60%|█████▉    | 1.27G/2.13G [01:00<00:39, 22.0MB/s]
Downloading knowledge_retriever.tgz:  60%|█████▉    | 1.27G/2.13G [01:00<00:38, 22.2MB/s]
Downloading knowledge_retriever.tgz:  60%|█████▉    | 1.28G/2.13G [01:00<00:38, 22.2MB/s]
Downloading knowledge_retriever.tgz:  60%|█████▉    | 1.28G/2.13G [01:00<00:39, 21.7MB/s]
Downloading knowledge_retriever.tgz:  60%|██████    | 1.28G/2.13G [01:00<00:40, 20.7MB/s]
Downloading knowledge_retriever.tgz:  60%|██████    | 1.28G/2.13G [01:01<00:42, 19.9MB/s]
Downloading knowledge_retriever.tgz:  60%|██████    | 1.28G/2.13G [01:01<00:43, 19.6MB/s]
Downloading knowledge_retriever.tgz:  60%|██████    | 1.29G/2.13G [01:01<00:44, 18.9MB/s]
Downloading knowledge_retriever.tgz:  60%|██████    | 1.29G/2.13G [01:01<00:44, 18.9MB/s]
Downloading knowledge_retriever.tgz:  61%|██████    | 1.29G/2.13G [01:01<00:40, 20.5MB/s]
Downloading knowledge_retriever.tgz:  61%|██████    | 1.29G/2.13G [01:01<00:39, 21.2MB/s]
Downloading knowledge_retriever.tgz:  61%|██████    | 1.29G/2.13G [01:01<00:38, 21.4MB/s]
Downloading knowledge_retriever.tgz:  61%|██████    | 1.30G/2.13G [01:01<00:39, 21.2MB/s]
Downloading knowledge_retriever.tgz:  61%|██████    | 1.30G/2.13G [01:01<00:38, 21.7MB/s]
Downloading knowledge_retriever.tgz:  61%|██████    | 1.30G/2.13G [01:02<00:40, 20.2MB/s]
Downloading knowledge_retriever.tgz:  61%|██████    | 1.30G/2.13G [01:02<00:39, 20.7MB/s]
Downloading knowledge_retriever.tgz:  61%|██████▏   | 1.31G/2.13G [01:02<00:41, 20.0MB/s]
Downloading knowledge_retriever.tgz:  61%|██████▏   | 1.31G/2.13G [01:02<00:40, 20.4MB/s]
Downloading knowledge_retriever.tgz:  62%|██████▏   | 1.31G/2.13G [01:02<00:39, 20.6MB/s]
Downloading knowledge_retriever.tgz:  62%|██████▏   | 1.31G/2.13G [01:02<00:38, 21.3MB/s]
Downloading knowledge_retriever.tgz:  62%|██████▏   | 1.31G/2.13G [01:02<00:38, 21.1MB/s]
Downloading knowledge_retriever.tgz:  62%|██████▏   | 1.32G/2.13G [01:02<00:39, 20.7MB/s]
Downloading knowledge_retriever.tgz:  62%|██████▏   | 1.32G/2.13G [01:02<00:37, 21.6MB/s]
Downloading knowledge_retriever.tgz:  62%|██████▏   | 1.32G/2.13G [01:03<00:39, 20.5MB/s]
Downloading knowledge_retriever.tgz:  62%|██████▏   | 1.32G/2.13G [01:03<00:39, 20.6MB/s]
Downloading knowledge_retriever.tgz:  62%|██████▏   | 1.33G/2.13G [01:03<00:38, 21.1MB/s]
Downloading knowledge_retriever.tgz:  62%|██████▏   | 1.33G/2.13G [01:03<00:38, 21.1MB/s]
Downloading knowledge_retriever.tgz:  62%|██████▏   | 1.33G/2.13G [01:03<00:38, 20.7MB/s]
Downloading knowledge_retriever.tgz:  63%|██████▎   | 1.33G/2.13G [01:03<00:37, 21.1MB/s]
Downloading knowledge_retriever.tgz:  63%|██████▎   | 1.34G/2.13G [01:03<00:36, 21.7MB/s]
Downloading knowledge_retriever.tgz:  63%|██████▎   | 1.34G/2.13G [01:03<00:37, 21.1MB/s]
Downloading knowledge_retriever.tgz:  63%|██████▎   | 1.34G/2.13G [01:03<00:38, 20.4MB/s]
Downloading knowledge_retriever.tgz:  63%|██████▎   | 1.34G/2.13G [01:03<00:37, 21.0MB/s]
Downloading knowledge_retriever.tgz:  63%|██████▎   | 1.34G/2.13G [01:04<00:36, 21.3MB/s]
Downloading knowledge_retriever.tgz:  63%|██████▎   | 1.35G/2.13G [01:04<00:36, 21.5MB/s]
Downloading knowledge_retriever.tgz:  63%|██████▎   | 1.35G/2.13G [01:04<00:54, 14.5MB/s]
Downloading knowledge_retriever.tgz:  64%|██████▎   | 1.35G/2.13G [01:04<00:41, 18.5MB/s]
Downloading knowledge_retriever.tgz:  64%|██████▎   | 1.36G/2.13G [01:04<00:39, 19.5MB/s]
Downloading knowledge_retriever.tgz:  64%|██████▍   | 1.36G/2.13G [01:04<00:37, 20.3MB/s]
Downloading knowledge_retriever.tgz:  64%|██████▍   | 1.36G/2.13G [01:04<00:36, 21.3MB/s]
Downloading knowledge_retriever.tgz:  64%|██████▍   | 1.36G/2.13G [01:05<00:37, 20.3MB/s]
Downloading knowledge_retriever.tgz:  64%|██████▍   | 1.37G/2.13G [01:05<00:35, 21.2MB/s]
Downloading knowledge_retriever.tgz:  64%|██████▍   | 1.37G/2.13G [01:05<00:36, 21.0MB/s]
Downloading knowledge_retriever.tgz:  64%|██████▍   | 1.37G/2.13G [01:05<00:35, 21.3MB/s]
Downloading knowledge_retriever.tgz:  65%|██████▍   | 1.37G/2.13G [01:05<00:35, 21.2MB/s]
Downloading knowledge_retriever.tgz:  65%|██████▍   | 1.38G/2.13G [01:05<00:34, 21.8MB/s]
Downloading knowledge_retriever.tgz:  65%|██████▍   | 1.38G/2.13G [01:05<00:34, 21.9MB/s]
Downloading knowledge_retriever.tgz:  65%|██████▍   | 1.38G/2.13G [01:05<00:36, 20.4MB/s]
Downloading knowledge_retriever.tgz:  65%|██████▍   | 1.38G/2.13G [01:05<00:35, 20.8MB/s]
Downloading knowledge_retriever.tgz:  65%|██████▌   | 1.39G/2.13G [01:05<00:35, 21.0MB/s]
Downloading knowledge_retriever.tgz:  65%|██████▌   | 1.39G/2.13G [01:06<00:34, 21.2MB/s]
Downloading knowledge_retriever.tgz:  65%|██████▌   | 1.39G/2.13G [01:06<00:35, 20.9MB/s]
Downloading knowledge_retriever.tgz:  65%|██████▌   | 1.39G/2.13G [01:06<00:34, 21.7MB/s]
Downloading knowledge_retriever.tgz:  65%|██████▌   | 1.39G/2.13G [01:06<00:33, 21.7MB/s]
Downloading knowledge_retriever.tgz:  66%|██████▌   | 1.40G/2.13G [01:06<00:33, 21.9MB/s]
Downloading knowledge_retriever.tgz:  66%|██████▌   | 1.40G/2.13G [01:06<00:33, 22.1MB/s]
Downloading knowledge_retriever.tgz:  66%|██████▌   | 1.40G/2.13G [01:06<00:33, 21.7MB/s]
Downloading knowledge_retriever.tgz:  66%|██████▌   | 1.40G/2.13G [01:06<00:42, 16.9MB/s]
Downloading knowledge_retriever.tgz:  66%|██████▌   | 1.41G/2.13G [01:07<00:35, 20.2MB/s]
Downloading knowledge_retriever.tgz:  66%|██████▌   | 1.41G/2.13G [01:07<00:35, 20.4MB/s]
Downloading knowledge_retriever.tgz:  66%|██████▋   | 1.41G/2.13G [01:07<00:35, 20.4MB/s]
Downloading knowledge_retriever.tgz:  66%|██████▋   | 1.41G/2.13G [01:07<00:33, 21.2MB/s]
Downloading knowledge_retriever.tgz:  67%|██████▋   | 1.42G/2.13G [01:07<00:33, 21.6MB/s]
Downloading knowledge_retriever.tgz:  67%|██████▋   | 1.42G/2.13G [01:07<00:32, 21.8MB/s]
Downloading knowledge_retriever.tgz:  67%|██████▋   | 1.42G/2.13G [01:07<00:32, 21.8MB/s]
Downloading knowledge_retriever.tgz:  67%|██████▋   | 1.42G/2.13G [01:07<00:31, 22.1MB/s]
Downloading knowledge_retriever.tgz:  67%|██████▋   | 1.43G/2.13G [01:07<00:31, 22.2MB/s]
Downloading knowledge_retriever.tgz:  67%|██████▋   | 1.43G/2.13G [01:07<00:33, 21.2MB/s]
Downloading knowledge_retriever.tgz:  67%|██████▋   | 1.43G/2.13G [01:08<00:33, 20.9MB/s]
Downloading knowledge_retriever.tgz:  67%|██████▋   | 1.43G/2.13G [01:08<00:33, 20.9MB/s]
Downloading knowledge_retriever.tgz:  67%|██████▋   | 1.43G/2.13G [01:08<00:32, 21.3MB/s]
Downloading knowledge_retriever.tgz:  67%|██████▋   | 1.44G/2.13G [01:08<00:32, 21.3MB/s]
Downloading knowledge_retriever.tgz:  68%|██████▊   | 1.44G/2.13G [01:08<00:32, 21.2MB/s]
Downloading knowledge_retriever.tgz:  68%|██████▊   | 1.44G/2.13G [01:08<00:32, 21.1MB/s]
Downloading knowledge_retriever.tgz:  68%|██████▊   | 1.44G/2.13G [01:08<00:32, 21.3MB/s]
Downloading knowledge_retriever.tgz:  68%|██████▊   | 1.45G/2.13G [01:08<00:31, 21.8MB/s]
Downloading knowledge_retriever.tgz:  68%|██████▊   | 1.45G/2.13G [01:08<00:31, 21.9MB/s]
Downloading knowledge_retriever.tgz:  68%|██████▊   | 1.45G/2.13G [01:08<00:31, 21.9MB/s]
Downloading knowledge_retriever.tgz:  68%|██████▊   | 1.45G/2.13G [01:09<00:31, 21.8MB/s]
Downloading knowledge_retriever.tgz:  68%|██████▊   | 1.45G/2.13G [01:09<00:30, 21.8MB/s]
Downloading knowledge_retriever.tgz:  68%|██████▊   | 1.46G/2.13G [01:09<00:31, 21.0MB/s]
Downloading knowledge_retriever.tgz:  69%|██████▊   | 1.46G/2.13G [01:09<00:32, 20.5MB/s]
Downloading knowledge_retriever.tgz:  69%|██████▊   | 1.46G/2.13G [01:09<00:32, 20.5MB/s]
Downloading knowledge_retriever.tgz:  69%|██████▊   | 1.46G/2.13G [01:09<00:31, 21.2MB/s]
Downloading knowledge_retriever.tgz:  69%|██████▉   | 1.47G/2.13G [01:09<00:31, 21.3MB/s]
Downloading knowledge_retriever.tgz:  69%|██████▉   | 1.47G/2.13G [01:09<00:30, 21.4MB/s]
Downloading knowledge_retriever.tgz:  69%|██████▉   | 1.47G/2.13G [01:09<00:30, 21.3MB/s]
Downloading knowledge_retriever.tgz:  69%|██████▉   | 1.47G/2.13G [01:10<00:31, 21.1MB/s]
Downloading knowledge_retriever.tgz:  69%|██████▉   | 1.47G/2.13G [01:10<00:30, 21.4MB/s]
Downloading knowledge_retriever.tgz:  69%|██████▉   | 1.48G/2.13G [01:10<00:30, 21.3MB/s]
Downloading knowledge_retriever.tgz:  69%|██████▉   | 1.48G/2.13G [01:10<00:30, 21.5MB/s]
Downloading knowledge_retriever.tgz:  70%|██████▉   | 1.48G/2.13G [01:10<00:29, 21.9MB/s]
Downloading knowledge_retriever.tgz:  70%|██████▉   | 1.48G/2.13G [01:10<00:30, 21.5MB/s]
Downloading knowledge_retriever.tgz:  70%|██████▉   | 1.49G/2.13G [01:10<00:29, 21.5MB/s]
Downloading knowledge_retriever.tgz:  70%|██████▉   | 1.49G/2.13G [01:10<00:30, 21.1MB/s]
Downloading knowledge_retriever.tgz:  70%|██████▉   | 1.49G/2.13G [01:10<00:29, 21.6MB/s]
Downloading knowledge_retriever.tgz:  70%|███████   | 1.49G/2.13G [01:10<00:29, 21.5MB/s]
Downloading knowledge_retriever.tgz:  70%|███████   | 1.49G/2.13G [01:11<00:29, 21.3MB/s]
Downloading knowledge_retriever.tgz:  70%|███████   | 1.50G/2.13G [01:11<00:29, 21.5MB/s]
Downloading knowledge_retriever.tgz:  70%|███████   | 1.50G/2.13G [01:11<00:29, 21.7MB/s]
Downloading knowledge_retriever.tgz:  70%|███████   | 1.50G/2.13G [01:11<00:29, 21.6MB/s]
Downloading knowledge_retriever.tgz:  71%|███████   | 1.50G/2.13G [01:11<00:28, 21.9MB/s]
Downloading knowledge_retriever.tgz:  71%|███████   | 1.51G/2.13G [01:11<00:28, 22.0MB/s]
Downloading knowledge_retriever.tgz:  71%|███████   | 1.51G/2.13G [01:11<00:28, 22.0MB/s]
Downloading knowledge_retriever.tgz:  71%|███████   | 1.51G/2.13G [01:11<00:28, 21.4MB/s]
Downloading knowledge_retriever.tgz:  71%|███████   | 1.51G/2.13G [01:11<00:28, 21.5MB/s]
Downloading knowledge_retriever.tgz:  71%|███████   | 1.51G/2.13G [01:12<00:28, 21.4MB/s]
Downloading knowledge_retriever.tgz:  71%|███████   | 1.52G/2.13G [01:12<00:28, 21.5MB/s]
Downloading knowledge_retriever.tgz:  71%|███████▏  | 1.52G/2.13G [01:12<00:29, 21.0MB/s]
Downloading knowledge_retriever.tgz:  71%|███████▏  | 1.52G/2.13G [01:12<00:30, 20.1MB/s]
Downloading knowledge_retriever.tgz:  72%|███████▏  | 1.52G/2.13G [01:12<00:28, 21.6MB/s]
Downloading knowledge_retriever.tgz:  72%|███████▏  | 1.53G/2.13G [01:12<00:27, 21.7MB/s]
Downloading knowledge_retriever.tgz:  72%|███████▏  | 1.53G/2.13G [01:12<00:27, 21.8MB/s]
Downloading knowledge_retriever.tgz:  72%|███████▏  | 1.53G/2.13G [01:12<00:27, 22.1MB/s]
Downloading knowledge_retriever.tgz:  72%|███████▏  | 1.53G/2.13G [01:12<00:27, 21.9MB/s]
Downloading knowledge_retriever.tgz:  72%|███████▏  | 1.54G/2.13G [01:12<00:27, 21.7MB/s]
Downloading knowledge_retriever.tgz:  72%|███████▏  | 1.54G/2.13G [01:13<00:27, 21.6MB/s]
Downloading knowledge_retriever.tgz:  72%|███████▏  | 1.54G/2.13G [01:13<00:27, 21.6MB/s]
Downloading knowledge_retriever.tgz:  72%|███████▏  | 1.54G/2.13G [01:13<00:27, 21.5MB/s]
Downloading knowledge_retriever.tgz:  72%|███████▏  | 1.54G/2.13G [01:13<00:28, 20.8MB/s]
Downloading knowledge_retriever.tgz:  73%|███████▎  | 1.55G/2.13G [01:13<00:27, 21.4MB/s]
Downloading knowledge_retriever.tgz:  73%|███████▎  | 1.55G/2.13G [01:13<00:26, 21.6MB/s]
Downloading knowledge_retriever.tgz:  73%|███████▎  | 1.55G/2.13G [01:13<00:26, 21.6MB/s]
Downloading knowledge_retriever.tgz:  73%|███████▎  | 1.55G/2.13G [01:13<00:26, 21.5MB/s]
Downloading knowledge_retriever.tgz:  73%|███████▎  | 1.56G/2.13G [01:13<00:26, 21.5MB/s]
Downloading knowledge_retriever.tgz:  73%|███████▎  | 1.56G/2.13G [01:13<00:26, 21.6MB/s]
Downloading knowledge_retriever.tgz:  73%|███████▎  | 1.56G/2.13G [01:14<00:26, 21.3MB/s]
Downloading knowledge_retriever.tgz:  73%|███████▎  | 1.56G/2.13G [01:14<00:26, 21.5MB/s]
Downloading knowledge_retriever.tgz:  73%|███████▎  | 1.56G/2.13G [01:14<00:26, 21.5MB/s]
Downloading knowledge_retriever.tgz:  74%|███████▎  | 1.57G/2.13G [01:14<00:26, 21.4MB/s]
Downloading knowledge_retriever.tgz:  74%|███████▎  | 1.57G/2.13G [01:14<00:26, 21.6MB/s]
Downloading knowledge_retriever.tgz:  74%|███████▍  | 1.57G/2.13G [01:14<00:25, 21.5MB/s]
Downloading knowledge_retriever.tgz:  74%|███████▍  | 1.57G/2.13G [01:14<00:26, 21.2MB/s]
Downloading knowledge_retriever.tgz:  74%|███████▍  | 1.57G/2.13G [01:14<00:25, 21.6MB/s]
Downloading knowledge_retriever.tgz:  74%|███████▍  | 1.58G/2.13G [01:14<00:25, 21.7MB/s]
Downloading knowledge_retriever.tgz:  74%|███████▍  | 1.58G/2.13G [01:15<00:25, 21.9MB/s]
Downloading knowledge_retriever.tgz:  74%|███████▍  | 1.58G/2.13G [01:15<00:25, 21.6MB/s]
Downloading knowledge_retriever.tgz:  74%|███████▍  | 1.58G/2.13G [01:15<00:25, 21.6MB/s]
Downloading knowledge_retriever.tgz:  74%|███████▍  | 1.59G/2.13G [01:15<00:25, 21.3MB/s]
Downloading knowledge_retriever.tgz:  75%|███████▍  | 1.59G/2.13G [01:15<00:24, 21.8MB/s]
Downloading knowledge_retriever.tgz:  75%|███████▍  | 1.59G/2.13G [01:15<00:24, 21.6MB/s]
Downloading knowledge_retriever.tgz:  75%|███████▍  | 1.59G/2.13G [01:15<00:24, 21.5MB/s]
Downloading knowledge_retriever.tgz:  75%|███████▍  | 1.59G/2.13G [01:15<00:25, 21.3MB/s]
Downloading knowledge_retriever.tgz:  75%|███████▍  | 1.60G/2.13G [01:15<00:24, 21.5MB/s]
Downloading knowledge_retriever.tgz:  75%|███████▌  | 1.60G/2.13G [01:15<00:25, 20.9MB/s]
Downloading knowledge_retriever.tgz:  75%|███████▌  | 1.60G/2.13G [01:16<00:24, 21.3MB/s]
Downloading knowledge_retriever.tgz:  75%|███████▌  | 1.60G/2.13G [01:16<00:24, 21.1MB/s]
Downloading knowledge_retriever.tgz:  75%|███████▌  | 1.61G/2.13G [01:16<00:24, 21.4MB/s]
Downloading knowledge_retriever.tgz:  76%|███████▌  | 1.61G/2.13G [01:16<00:23, 21.8MB/s]
Downloading knowledge_retriever.tgz:  76%|███████▌  | 1.61G/2.13G [01:16<00:28, 18.5MB/s]
Downloading knowledge_retriever.tgz:  76%|███████▌  | 1.61G/2.13G [01:16<00:24, 21.3MB/s]
Downloading knowledge_retriever.tgz:  76%|███████▌  | 1.62G/2.13G [01:16<00:23, 21.8MB/s]
Downloading knowledge_retriever.tgz:  76%|███████▌  | 1.62G/2.13G [01:16<00:23, 21.8MB/s]
Downloading knowledge_retriever.tgz:  76%|███████▌  | 1.62G/2.13G [01:16<00:23, 22.0MB/s]
Downloading knowledge_retriever.tgz:  76%|███████▌  | 1.62G/2.13G [01:17<00:23, 21.8MB/s]
Downloading knowledge_retriever.tgz:  76%|███████▋  | 1.63G/2.13G [01:17<00:23, 21.8MB/s]
Downloading knowledge_retriever.tgz:  76%|███████▋  | 1.63G/2.13G [01:17<00:23, 21.6MB/s]
Downloading knowledge_retriever.tgz:  77%|███████▋  | 1.63G/2.13G [01:17<00:22, 22.0MB/s]
Downloading knowledge_retriever.tgz:  77%|███████▋  | 1.63G/2.13G [01:17<00:24, 20.2MB/s]
Downloading knowledge_retriever.tgz:  77%|███████▋  | 1.63G/2.13G [01:17<00:23, 21.1MB/s]
Downloading knowledge_retriever.tgz:  77%|███████▋  | 1.64G/2.13G [01:17<00:23, 21.2MB/s]
Downloading knowledge_retriever.tgz:  77%|███████▋  | 1.64G/2.13G [01:17<00:23, 20.7MB/s]
Downloading knowledge_retriever.tgz:  77%|███████▋  | 1.64G/2.13G [01:17<00:21, 22.3MB/s]
Downloading knowledge_retriever.tgz:  77%|███████▋  | 1.64G/2.13G [01:18<00:22, 21.4MB/s]
Downloading knowledge_retriever.tgz:  77%|███████▋  | 1.65G/2.13G [01:18<00:21, 22.1MB/s]
Downloading knowledge_retriever.tgz:  77%|███████▋  | 1.65G/2.13G [01:18<00:22, 21.8MB/s]
Downloading knowledge_retriever.tgz:  78%|███████▊  | 1.65G/2.13G [01:18<00:23, 20.2MB/s]
Downloading knowledge_retriever.tgz:  78%|███████▊  | 1.65G/2.13G [01:18<00:22, 20.8MB/s]
Downloading knowledge_retriever.tgz:  78%|███████▊  | 1.66G/2.13G [01:18<00:22, 21.0MB/s]
Downloading knowledge_retriever.tgz:  78%|███████▊  | 1.66G/2.13G [01:18<00:21, 21.6MB/s]
Downloading knowledge_retriever.tgz:  78%|███████▊  | 1.66G/2.13G [01:18<00:21, 21.8MB/s]
Downloading knowledge_retriever.tgz:  78%|███████▊  | 1.66G/2.13G [01:18<00:21, 21.4MB/s]
Downloading knowledge_retriever.tgz:  78%|███████▊  | 1.66G/2.13G [01:18<00:21, 21.5MB/s]
Downloading knowledge_retriever.tgz:  78%|███████▊  | 1.67G/2.13G [01:19<00:21, 22.0MB/s]
Downloading knowledge_retriever.tgz:  78%|███████▊  | 1.67G/2.13G [01:19<00:21, 21.6MB/s]
Downloading knowledge_retriever.tgz:  78%|███████▊  | 1.67G/2.13G [01:19<00:21, 21.7MB/s]
Downloading knowledge_retriever.tgz:  79%|███████▊  | 1.67G/2.13G [01:19<00:22, 20.7MB/s]
Downloading knowledge_retriever.tgz:  79%|███████▊  | 1.68G/2.13G [01:19<00:21, 20.8MB/s]
Downloading knowledge_retriever.tgz:  79%|███████▉  | 1.68G/2.13G [01:19<00:21, 21.1MB/s]
Downloading knowledge_retriever.tgz:  79%|███████▉  | 1.68G/2.13G [01:19<00:20, 21.8MB/s]
Downloading knowledge_retriever.tgz:  79%|███████▉  | 1.68G/2.13G [01:19<00:20, 22.1MB/s]
Downloading knowledge_retriever.tgz:  79%|███████▉  | 1.68G/2.13G [01:19<00:20, 22.0MB/s]
Downloading knowledge_retriever.tgz:  79%|███████▉  | 1.69G/2.13G [01:20<00:19, 22.3MB/s]
Downloading knowledge_retriever.tgz:  79%|███████▉  | 1.69G/2.13G [01:20<00:20, 21.3MB/s]
Downloading knowledge_retriever.tgz:  79%|███████▉  | 1.69G/2.13G [01:20<00:20, 21.7MB/s]
Downloading knowledge_retriever.tgz:  80%|███████▉  | 1.69G/2.13G [01:20<00:20, 21.4MB/s]
Downloading knowledge_retriever.tgz:  80%|███████▉  | 1.70G/2.13G [01:20<00:20, 21.4MB/s]
Downloading knowledge_retriever.tgz:  80%|███████▉  | 1.70G/2.13G [01:20<00:21, 20.3MB/s]
Downloading knowledge_retriever.tgz:  80%|███████▉  | 1.70G/2.13G [01:20<00:20, 20.8MB/s]
Downloading knowledge_retriever.tgz:  80%|███████▉  | 1.70G/2.13G [01:20<00:20, 21.1MB/s]
Downloading knowledge_retriever.tgz:  80%|████████  | 1.71G/2.13G [01:20<00:19, 22.1MB/s]
Downloading knowledge_retriever.tgz:  80%|████████  | 1.71G/2.13G [01:20<00:18, 22.3MB/s]
Downloading knowledge_retriever.tgz:  80%|████████  | 1.71G/2.13G [01:21<00:18, 22.2MB/s]
Downloading knowledge_retriever.tgz:  80%|████████  | 1.71G/2.13G [01:21<00:19, 21.8MB/s]
Downloading knowledge_retriever.tgz:  81%|████████  | 1.71G/2.13G [01:21<00:19, 21.5MB/s]
Downloading knowledge_retriever.tgz:  81%|████████  | 1.72G/2.13G [01:21<00:19, 21.2MB/s]
Downloading knowledge_retriever.tgz:  81%|████████  | 1.72G/2.13G [01:21<00:19, 21.0MB/s]
Downloading knowledge_retriever.tgz:  81%|████████  | 1.72G/2.13G [01:21<00:20, 20.2MB/s]
Downloading knowledge_retriever.tgz:  81%|████████  | 1.72G/2.13G [01:21<00:19, 20.7MB/s]
Downloading knowledge_retriever.tgz:  81%|████████  | 1.73G/2.13G [01:21<00:18, 21.7MB/s]
Downloading knowledge_retriever.tgz:  81%|████████  | 1.73G/2.13G [01:21<00:18, 21.8MB/s]
Downloading knowledge_retriever.tgz:  81%|████████  | 1.73G/2.13G [01:22<00:18, 21.9MB/s]
Downloading knowledge_retriever.tgz:  81%|████████▏ | 1.73G/2.13G [01:22<00:17, 22.1MB/s]
Downloading knowledge_retriever.tgz:  81%|████████▏ | 1.73G/2.13G [01:22<00:17, 22.2MB/s]
Downloading knowledge_retriever.tgz:  82%|████████▏ | 1.74G/2.13G [01:22<00:17, 21.9MB/s]
Downloading knowledge_retriever.tgz:  82%|████████▏ | 1.74G/2.13G [01:22<00:17, 21.7MB/s]
Downloading knowledge_retriever.tgz:  82%|████████▏ | 1.74G/2.13G [01:22<00:17, 21.8MB/s]
Downloading knowledge_retriever.tgz:  82%|████████▏ | 1.74G/2.13G [01:22<00:17, 21.6MB/s]
Downloading knowledge_retriever.tgz:  82%|████████▏ | 1.75G/2.13G [01:22<00:17, 21.4MB/s]
Downloading knowledge_retriever.tgz:  82%|████████▏ | 1.75G/2.13G [01:22<00:18, 20.4MB/s]
Downloading knowledge_retriever.tgz:  82%|████████▏ | 1.75G/2.13G [01:22<00:18, 20.6MB/s]
Downloading knowledge_retriever.tgz:  82%|████████▏ | 1.75G/2.13G [01:23<00:17, 21.1MB/s]
Downloading knowledge_retriever.tgz:  82%|████████▏ | 1.75G/2.13G [01:23<00:17, 21.3MB/s]
Downloading knowledge_retriever.tgz:  82%|████████▏ | 1.76G/2.13G [01:23<00:17, 21.7MB/s]
Downloading knowledge_retriever.tgz:  83%|████████▎ | 1.76G/2.13G [01:23<00:17, 21.3MB/s]
Downloading knowledge_retriever.tgz:  83%|████████▎ | 1.76G/2.13G [01:23<00:16, 22.4MB/s]
Downloading knowledge_retriever.tgz:  83%|████████▎ | 1.76G/2.13G [01:23<00:16, 22.6MB/s]
Downloading knowledge_retriever.tgz:  83%|████████▎ | 1.77G/2.13G [01:23<00:16, 22.2MB/s]
Downloading knowledge_retriever.tgz:  83%|████████▎ | 1.77G/2.13G [01:23<00:16, 21.5MB/s]
Downloading knowledge_retriever.tgz:  83%|████████▎ | 1.77G/2.13G [01:23<00:17, 20.4MB/s]
Downloading knowledge_retriever.tgz:  83%|████████▎ | 1.77G/2.13G [01:24<00:17, 20.8MB/s]
Downloading knowledge_retriever.tgz:  83%|████████▎ | 1.78G/2.13G [01:24<00:16, 21.3MB/s]
Downloading knowledge_retriever.tgz:  83%|████████▎ | 1.78G/2.13G [01:24<00:16, 21.6MB/s]
Downloading knowledge_retriever.tgz:  84%|████████▎ | 1.78G/2.13G [01:24<00:16, 21.7MB/s]
Downloading knowledge_retriever.tgz:  84%|████████▎ | 1.78G/2.13G [01:24<00:16, 21.4MB/s]
Downloading knowledge_retriever.tgz:  84%|████████▍ | 1.78G/2.13G [01:24<00:15, 21.7MB/s]
Downloading knowledge_retriever.tgz:  84%|████████▍ | 1.79G/2.13G [01:24<00:15, 22.2MB/s]
Downloading knowledge_retriever.tgz:  84%|████████▍ | 1.79G/2.13G [01:24<00:15, 22.2MB/s]
Downloading knowledge_retriever.tgz:  84%|████████▍ | 1.79G/2.13G [01:24<00:15, 22.3MB/s]
Downloading knowledge_retriever.tgz:  84%|████████▍ | 1.79G/2.13G [01:24<00:15, 21.8MB/s]
Downloading knowledge_retriever.tgz:  84%|████████▍ | 1.80G/2.13G [01:25<00:15, 21.8MB/s]
Downloading knowledge_retriever.tgz:  84%|████████▍ | 1.80G/2.13G [01:25<00:16, 20.7MB/s]
Downloading knowledge_retriever.tgz:  85%|████████▍ | 1.80G/2.13G [01:25<00:15, 20.9MB/s]
Downloading knowledge_retriever.tgz:  85%|████████▍ | 1.80G/2.13G [01:25<00:15, 20.7MB/s]
Downloading knowledge_retriever.tgz:  85%|████████▍ | 1.80G/2.13G [01:25<00:15, 21.2MB/s]
Downloading knowledge_retriever.tgz:  85%|████████▍ | 1.81G/2.13G [01:25<00:15, 21.4MB/s]
Downloading knowledge_retriever.tgz:  85%|████████▍ | 1.81G/2.13G [01:25<00:14, 21.4MB/s]
Downloading knowledge_retriever.tgz:  85%|████████▌ | 1.81G/2.13G [01:25<00:14, 21.7MB/s]
Downloading knowledge_retriever.tgz:  85%|████████▌ | 1.81G/2.13G [01:25<00:14, 21.8MB/s]
Downloading knowledge_retriever.tgz:  85%|████████▌ | 1.82G/2.13G [01:25<00:14, 22.1MB/s]
Downloading knowledge_retriever.tgz:  85%|████████▌ | 1.82G/2.13G [01:26<00:14, 22.0MB/s]
Downloading knowledge_retriever.tgz:  85%|████████▌ | 1.82G/2.13G [01:26<00:14, 21.7MB/s]
Downloading knowledge_retriever.tgz:  86%|████████▌ | 1.82G/2.13G [01:26<00:14, 21.9MB/s]
Downloading knowledge_retriever.tgz:  86%|████████▌ | 1.82G/2.13G [01:26<00:14, 21.7MB/s]
Downloading knowledge_retriever.tgz:  86%|████████▌ | 1.83G/2.13G [01:26<00:14, 21.0MB/s]
Downloading knowledge_retriever.tgz:  86%|████████▌ | 1.83G/2.13G [01:26<00:13, 21.6MB/s]
Downloading knowledge_retriever.tgz:  86%|████████▌ | 1.83G/2.13G [01:26<00:14, 21.1MB/s]
Downloading knowledge_retriever.tgz:  86%|████████▌ | 1.83G/2.13G [01:26<00:13, 21.4MB/s]
Downloading knowledge_retriever.tgz:  86%|████████▌ | 1.84G/2.13G [01:26<00:13, 21.6MB/s]
Downloading knowledge_retriever.tgz:  86%|████████▋ | 1.84G/2.13G [01:27<00:13, 21.6MB/s]
Downloading knowledge_retriever.tgz:  86%|████████▋ | 1.84G/2.13G [01:27<00:13, 21.3MB/s]
Downloading knowledge_retriever.tgz:  87%|████████▋ | 1.84G/2.13G [01:27<00:13, 21.6MB/s]
Downloading knowledge_retriever.tgz:  87%|████████▋ | 1.84G/2.13G [01:27<00:13, 21.6MB/s]
Downloading knowledge_retriever.tgz:  87%|████████▋ | 1.85G/2.13G [01:27<00:12, 22.1MB/s]
Downloading knowledge_retriever.tgz:  87%|████████▋ | 1.85G/2.13G [01:27<00:12, 21.9MB/s]
Downloading knowledge_retriever.tgz:  87%|████████▋ | 1.85G/2.13G [01:27<00:12, 21.8MB/s]
Downloading knowledge_retriever.tgz:  87%|████████▋ | 1.85G/2.13G [01:27<00:12, 21.8MB/s]
Downloading knowledge_retriever.tgz:  87%|████████▋ | 1.86G/2.13G [01:27<00:13, 21.0MB/s]
Downloading knowledge_retriever.tgz:  87%|████████▋ | 1.86G/2.13G [01:27<00:12, 21.2MB/s]
Downloading knowledge_retriever.tgz:  87%|████████▋ | 1.86G/2.13G [01:28<00:12, 21.6MB/s]
Downloading knowledge_retriever.tgz:  87%|████████▋ | 1.86G/2.13G [01:28<00:12, 21.3MB/s]
Downloading knowledge_retriever.tgz:  88%|████████▊ | 1.86G/2.13G [01:28<00:12, 21.2MB/s]
Downloading knowledge_retriever.tgz:  88%|████████▊ | 1.87G/2.13G [01:28<00:12, 21.1MB/s]
Downloading knowledge_retriever.tgz:  88%|████████▊ | 1.87G/2.13G [01:28<00:11, 21.8MB/s]
Downloading knowledge_retriever.tgz:  88%|████████▊ | 1.87G/2.13G [01:28<00:11, 21.5MB/s]
Downloading knowledge_retriever.tgz:  88%|████████▊ | 1.87G/2.13G [01:28<00:11, 21.7MB/s]
Downloading knowledge_retriever.tgz:  88%|████████▊ | 1.88G/2.13G [01:28<00:11, 21.7MB/s]
Downloading knowledge_retriever.tgz:  88%|████████▊ | 1.88G/2.13G [01:28<00:11, 21.6MB/s]
Downloading knowledge_retriever.tgz:  88%|████████▊ | 1.88G/2.13G [01:28<00:11, 21.7MB/s]
Downloading knowledge_retriever.tgz:  88%|████████▊ | 1.88G/2.13G [01:29<00:11, 21.3MB/s]
Downloading knowledge_retriever.tgz:  88%|████████▊ | 1.88G/2.13G [01:29<00:11, 21.3MB/s]
Downloading knowledge_retriever.tgz:  89%|████████▊ | 1.89G/2.13G [01:29<00:11, 20.9MB/s]
Downloading knowledge_retriever.tgz:  89%|████████▊ | 1.89G/2.13G [01:29<00:11, 21.4MB/s]
Downloading knowledge_retriever.tgz:  89%|████████▉ | 1.89G/2.13G [01:29<00:11, 21.4MB/s]
Downloading knowledge_retriever.tgz:  89%|████████▉ | 1.89G/2.13G [01:29<00:10, 21.7MB/s]
Downloading knowledge_retriever.tgz:  89%|████████▉ | 1.90G/2.13G [01:29<00:10, 21.7MB/s]
Downloading knowledge_retriever.tgz:  89%|████████▉ | 1.90G/2.13G [01:29<00:10, 21.7MB/s]
Downloading knowledge_retriever.tgz:  89%|████████▉ | 1.90G/2.13G [01:29<00:10, 21.3MB/s]
Downloading knowledge_retriever.tgz:  89%|████████▉ | 1.90G/2.13G [01:30<00:10, 21.7MB/s]
Downloading knowledge_retriever.tgz:  89%|████████▉ | 1.90G/2.13G [01:30<00:10, 21.7MB/s]
Downloading knowledge_retriever.tgz:  90%|████████▉ | 1.91G/2.13G [01:30<00:10, 21.5MB/s]
Downloading knowledge_retriever.tgz:  90%|████████▉ | 1.91G/2.13G [01:30<00:10, 21.4MB/s]
Downloading knowledge_retriever.tgz:  90%|████████▉ | 1.91G/2.13G [01:30<00:10, 21.3MB/s]
Downloading knowledge_retriever.tgz:  90%|████████▉ | 1.91G/2.13G [01:30<00:10, 21.1MB/s]
Downloading knowledge_retriever.tgz:  90%|████████▉ | 1.92G/2.13G [01:30<00:09, 21.6MB/s]
Downloading knowledge_retriever.tgz:  90%|█████████ | 1.92G/2.13G [01:30<00:10, 20.9MB/s]
Downloading knowledge_retriever.tgz:  90%|█████████ | 1.92G/2.13G [01:30<00:09, 21.4MB/s]
Downloading knowledge_retriever.tgz:  90%|█████████ | 1.92G/2.13G [01:30<00:09, 21.3MB/s]
Downloading knowledge_retriever.tgz:  90%|█████████ | 1.92G/2.13G [01:31<00:10, 20.4MB/s]
Downloading knowledge_retriever.tgz:  90%|█████████ | 1.93G/2.13G [01:31<00:10, 19.6MB/s]
Downloading knowledge_retriever.tgz:  91%|█████████ | 1.93G/2.13G [01:31<00:09, 21.7MB/s]
Downloading knowledge_retriever.tgz:  91%|█████████ | 1.93G/2.13G [01:31<00:09, 21.8MB/s]
Downloading knowledge_retriever.tgz:  91%|█████████ | 1.93G/2.13G [01:31<00:08, 22.0MB/s]
Downloading knowledge_retriever.tgz:  91%|█████████ | 1.94G/2.13G [01:31<00:08, 21.7MB/s]
Downloading knowledge_retriever.tgz:  91%|█████████ | 1.94G/2.13G [01:31<00:08, 21.5MB/s]
Downloading knowledge_retriever.tgz:  91%|█████████ | 1.94G/2.13G [01:31<00:08, 21.3MB/s]
Downloading knowledge_retriever.tgz:  91%|█████████ | 1.94G/2.13G [01:31<00:09, 20.6MB/s]
Downloading knowledge_retriever.tgz:  91%|█████████▏| 1.94G/2.13G [01:32<00:08, 21.0MB/s]
Downloading knowledge_retriever.tgz:  91%|█████████▏| 1.95G/2.13G [01:32<00:08, 21.2MB/s]
Downloading knowledge_retriever.tgz:  92%|█████████▏| 1.95G/2.13G [01:32<00:08, 21.3MB/s]
Downloading knowledge_retriever.tgz:  92%|█████████▏| 1.95G/2.13G [01:32<00:08, 21.9MB/s]
Downloading knowledge_retriever.tgz:  92%|█████████▏| 1.95G/2.13G [01:32<00:07, 22.0MB/s]
Downloading knowledge_retriever.tgz:  92%|█████████▏| 1.96G/2.13G [01:32<00:07, 22.0MB/s]
Downloading knowledge_retriever.tgz:  92%|█████████▏| 1.96G/2.13G [01:32<00:08, 21.4MB/s]
Downloading knowledge_retriever.tgz:  92%|█████████▏| 1.96G/2.13G [01:32<00:07, 21.7MB/s]
Downloading knowledge_retriever.tgz:  92%|█████████▏| 1.96G/2.13G [01:32<00:07, 21.8MB/s]
Downloading knowledge_retriever.tgz:  92%|█████████▏| 1.97G/2.13G [01:32<00:07, 21.7MB/s]
Downloading knowledge_retriever.tgz:  92%|█████████▏| 1.97G/2.13G [01:33<00:07, 22.0MB/s]
Downloading knowledge_retriever.tgz:  92%|█████████▏| 1.97G/2.13G [01:33<00:07, 20.8MB/s]
Downloading knowledge_retriever.tgz:  93%|█████████▎| 1.97G/2.13G [01:33<00:07, 21.0MB/s]
Downloading knowledge_retriever.tgz:  93%|█████████▎| 1.97G/2.13G [01:33<00:07, 20.9MB/s]
Downloading knowledge_retriever.tgz:  93%|█████████▎| 1.98G/2.13G [01:33<00:07, 21.2MB/s]
Downloading knowledge_retriever.tgz:  93%|█████████▎| 1.98G/2.13G [01:33<00:07, 21.1MB/s]
Downloading knowledge_retriever.tgz:  93%|█████████▎| 1.98G/2.13G [01:33<00:07, 21.1MB/s]
Downloading knowledge_retriever.tgz:  93%|█████████▎| 1.98G/2.13G [01:33<00:06, 21.4MB/s]
Downloading knowledge_retriever.tgz:  93%|█████████▎| 1.98G/2.13G [01:33<00:06, 21.4MB/s]
Downloading knowledge_retriever.tgz:  93%|█████████▎| 1.99G/2.13G [01:33<00:06, 21.5MB/s]
Downloading knowledge_retriever.tgz:  93%|█████████▎| 1.99G/2.13G [01:34<00:06, 22.1MB/s]
Downloading knowledge_retriever.tgz:  94%|█████████▎| 1.99G/2.13G [01:34<00:06, 21.8MB/s]
Downloading knowledge_retriever.tgz:  94%|█████████▎| 1.99G/2.13G [01:34<00:06, 22.2MB/s]
Downloading knowledge_retriever.tgz:  94%|█████████▎| 2.00G/2.13G [01:34<00:05, 22.3MB/s]
Downloading knowledge_retriever.tgz:  94%|█████████▍| 2.00G/2.13G [01:34<00:06, 21.4MB/s]
Downloading knowledge_retriever.tgz:  94%|█████████▍| 2.00G/2.13G [01:34<00:05, 21.7MB/s]
Downloading knowledge_retriever.tgz:  94%|█████████▍| 2.00G/2.13G [01:34<00:05, 21.4MB/s]
Downloading knowledge_retriever.tgz:  94%|█████████▍| 2.01G/2.13G [01:34<00:05, 21.2MB/s]
Downloading knowledge_retriever.tgz:  94%|█████████▍| 2.01G/2.13G [01:34<00:05, 21.2MB/s]
Downloading knowledge_retriever.tgz:  94%|█████████▍| 2.01G/2.13G [01:35<00:05, 21.2MB/s]
Downloading knowledge_retriever.tgz:  94%|█████████▍| 2.01G/2.13G [01:35<00:05, 21.1MB/s]
Downloading knowledge_retriever.tgz:  95%|█████████▍| 2.01G/2.13G [01:35<00:05, 21.6MB/s]
Downloading knowledge_retriever.tgz:  95%|█████████▍| 2.02G/2.13G [01:35<00:05, 21.2MB/s]
Downloading knowledge_retriever.tgz:  95%|█████████▍| 2.02G/2.13G [01:35<00:05, 21.3MB/s]
Downloading knowledge_retriever.tgz:  95%|█████████▍| 2.02G/2.13G [01:35<00:04, 21.9MB/s]
Downloading knowledge_retriever.tgz:  95%|█████████▍| 2.02G/2.13G [01:35<00:05, 21.2MB/s]
Downloading knowledge_retriever.tgz:  95%|█████████▌| 2.03G/2.13G [01:35<00:04, 21.7MB/s]
Downloading knowledge_retriever.tgz:  95%|█████████▌| 2.03G/2.13G [01:35<00:04, 21.8MB/s]
Downloading knowledge_retriever.tgz:  95%|█████████▌| 2.03G/2.13G [01:35<00:04, 22.0MB/s]
Downloading knowledge_retriever.tgz:  95%|█████████▌| 2.03G/2.13G [01:36<00:04, 22.1MB/s]
Downloading knowledge_retriever.tgz:  96%|█████████▌| 2.03G/2.13G [01:36<00:04, 21.7MB/s]
Downloading knowledge_retriever.tgz:  96%|█████████▌| 2.04G/2.13G [01:36<00:04, 21.6MB/s]
Downloading knowledge_retriever.tgz:  96%|█████████▌| 2.04G/2.13G [01:36<00:04, 21.5MB/s]
Downloading knowledge_retriever.tgz:  96%|█████████▌| 2.04G/2.13G [01:36<00:04, 20.9MB/s]
Downloading knowledge_retriever.tgz:  96%|█████████▌| 2.04G/2.13G [01:36<00:04, 21.2MB/s]
Downloading knowledge_retriever.tgz:  96%|█████████▌| 2.05G/2.13G [01:36<00:03, 21.1MB/s]
Downloading knowledge_retriever.tgz:  96%|█████████▌| 2.05G/2.13G [01:36<00:03, 21.4MB/s]
Downloading knowledge_retriever.tgz:  96%|█████████▌| 2.05G/2.13G [01:36<00:03, 20.3MB/s]
Downloading knowledge_retriever.tgz:  96%|█████████▋| 2.05G/2.13G [01:37<00:03, 20.7MB/s]
Downloading knowledge_retriever.tgz:  96%|█████████▋| 2.05G/2.13G [01:37<00:03, 21.5MB/s]
Downloading knowledge_retriever.tgz:  97%|█████████▋| 2.06G/2.13G [01:37<00:03, 21.6MB/s]
Downloading knowledge_retriever.tgz:  97%|█████████▋| 2.06G/2.13G [01:37<00:03, 21.6MB/s]
Downloading knowledge_retriever.tgz:  97%|█████████▋| 2.06G/2.13G [01:37<00:03, 20.8MB/s]
Downloading knowledge_retriever.tgz:  97%|█████████▋| 2.06G/2.13G [01:37<00:03, 21.0MB/s]
Downloading knowledge_retriever.tgz:  97%|█████████▋| 2.07G/2.13G [01:37<00:02, 21.6MB/s]
Downloading knowledge_retriever.tgz:  97%|█████████▋| 2.07G/2.13G [01:37<00:02, 21.7MB/s]
Downloading knowledge_retriever.tgz:  97%|█████████▋| 2.07G/2.13G [01:37<00:02, 22.1MB/s]
Downloading knowledge_retriever.tgz:  97%|█████████▋| 2.07G/2.13G [01:37<00:02, 22.0MB/s]
Downloading knowledge_retriever.tgz:  97%|█████████▋| 2.07G/2.13G [01:38<00:02, 22.2MB/s]
Downloading knowledge_retriever.tgz:  98%|█████████▊| 2.08G/2.13G [01:38<00:02, 20.2MB/s]
Downloading knowledge_retriever.tgz:  98%|█████████▊| 2.08G/2.13G [01:38<00:02, 21.0MB/s]
Downloading knowledge_retriever.tgz:  98%|█████████▊| 2.08G/2.13G [01:38<00:02, 21.4MB/s]
Downloading knowledge_retriever.tgz:  98%|█████████▊| 2.08G/2.13G [01:38<00:02, 20.8MB/s]
Downloading knowledge_retriever.tgz:  98%|█████████▊| 2.09G/2.13G [01:38<00:02, 20.3MB/s]
Downloading knowledge_retriever.tgz:  98%|█████████▊| 2.09G/2.13G [01:38<00:01, 21.8MB/s]
Downloading knowledge_retriever.tgz:  98%|█████████▊| 2.09G/2.13G [01:38<00:01, 21.5MB/s]
Downloading knowledge_retriever.tgz:  98%|█████████▊| 2.09G/2.13G [01:38<00:01, 21.6MB/s]
Downloading knowledge_retriever.tgz:  98%|█████████▊| 2.09G/2.13G [01:38<00:01, 21.8MB/s]
Downloading knowledge_retriever.tgz:  98%|█████████▊| 2.10G/2.13G [01:39<00:01, 21.9MB/s]
Downloading knowledge_retriever.tgz:  99%|█████████▊| 2.10G/2.13G [01:39<00:01, 21.5MB/s]
Downloading knowledge_retriever.tgz:  99%|█████████▊| 2.10G/2.13G [01:39<00:01, 21.5MB/s]
Downloading knowledge_retriever.tgz:  99%|█████████▉| 2.10G/2.13G [01:39<00:01, 18.5MB/s]
Downloading knowledge_retriever.tgz:  99%|█████████▉| 2.11G/2.13G [01:39<00:01, 15.9MB/s]
Downloading knowledge_retriever.tgz:  99%|█████████▉| 2.11G/2.13G [01:39<00:01, 17.6MB/s]
Downloading knowledge_retriever.tgz:  99%|█████████▉| 2.11G/2.13G [01:39<00:01, 18.1MB/s]
Downloading knowledge_retriever.tgz:  99%|█████████▉| 2.11G/2.13G [01:39<00:00, 19.4MB/s]
Downloading knowledge_retriever.tgz:  99%|█████████▉| 2.11G/2.13G [01:40<00:00, 16.2MB/s]
Downloading knowledge_retriever.tgz:  99%|█████████▉| 2.12G/2.13G [01:40<00:00, 17.6MB/s]
Downloading knowledge_retriever.tgz: 100%|█████████▉| 2.12G/2.13G [01:40<00:00, 18.3MB/s]
Downloading knowledge_retriever.tgz: 100%|█████████▉| 2.12G/2.13G [01:40<00:00, 19.5MB/s]
Downloading knowledge_retriever.tgz: 100%|█████████▉| 2.12G/2.13G [01:40<00:00, 19.7MB/s]
Downloading knowledge_retriever.tgz: 100%|█████████▉| 2.13G/2.13G [01:40<00:00, 17.3MB/s]
Downloading knowledge_retriever.tgz: 100%|█████████▉| 2.13G/2.13G [01:40<00:00, 19.5MB/s]
Downloading knowledge_retriever.tgz: 100%|██████████| 2.13G/2.13G [01:40<00:00, 21.1MB/s]

Downloading model.tgz: 0.00B [00:00, ?B/s]
Downloading model.tgz:   0%|          | 32.8k/8.14G [00:00<56:13:04, 40.2kB/s]
Downloading model.tgz:   0%|          | 131k/8.14G [00:00<40:35:48, 55.7kB/s] 
Downloading model.tgz:   0%|          | 524k/8.14G [00:01<28:43:32, 78.7kB/s]
Downloading model.tgz:   0%|          | 1.93M/8.14G [00:01<20:09:09, 112kB/s]
Downloading model.tgz:   0%|          | 4.16M/8.14G [00:01<14:09:17, 160kB/s]
Downloading model.tgz:   0%|          | 6.72M/8.14G [00:01<9:55:55, 227kB/s] 
Downloading model.tgz:   0%|          | 9.37M/8.14G [00:01<6:59:35, 323kB/s]
Downloading model.tgz:   0%|          | 12.5M/8.14G [00:01<4:54:55, 459kB/s]
Downloading model.tgz:   0%|          | 15.0M/8.14G [00:01<3:29:06, 648kB/s]
Downloading model.tgz:   0%|          | 17.7M/8.14G [00:02<2:27:49, 916kB/s]
Downloading model.tgz:   0%|          | 20.6M/8.14G [00:02<1:44:50, 1.29MB/s]
Downloading model.tgz:   0%|          | 22.9M/8.14G [00:02<1:16:13, 1.77MB/s]
Downloading model.tgz:   0%|          | 25.9M/8.14G [00:02<54:42, 2.47MB/s]  
Downloading model.tgz:   0%|          | 28.5M/8.14G [00:02<40:52, 3.31MB/s]
Downloading model.tgz:   0%|          | 31.3M/8.14G [00:02<30:02, 4.50MB/s]
Downloading model.tgz:   0%|          | 34.4M/8.14G [00:02<22:20, 6.05MB/s]
Downloading model.tgz:   0%|          | 37.0M/8.14G [00:02<18:17, 7.38MB/s]
Downloading model.tgz:   0%|          | 39.8M/8.14G [00:03<14:13, 9.49MB/s]
Downloading model.tgz:   1%|          | 42.6M/8.14G [00:03<12:17, 11.0MB/s]
Downloading model.tgz:   1%|          | 45.2M/8.14G [00:03<10:12, 13.2MB/s]
Downloading model.tgz:   1%|          | 48.1M/8.14G [00:03<08:31, 15.8MB/s]
Downloading model.tgz:   1%|          | 50.8M/8.14G [00:03<08:19, 16.2MB/s]
Downloading model.tgz:   1%|          | 53.3M/8.14G [00:03<07:26, 18.1MB/s]
Downloading model.tgz:   1%|          | 56.2M/8.14G [00:03<06:36, 20.4MB/s]
Downloading model.tgz:   1%|          | 58.9M/8.14G [00:03<06:08, 22.0MB/s]
Downloading model.tgz:   1%|          | 61.5M/8.14G [00:04<06:45, 19.9MB/s]
Downloading model.tgz:   1%|          | 64.0M/8.14G [00:04<06:25, 21.0MB/s]
Downloading model.tgz:   1%|          | 66.9M/8.14G [00:04<06:20, 21.2MB/s]
Downloading model.tgz:   1%|          | 69.2M/8.14G [00:04<06:28, 20.8MB/s]
Downloading model.tgz:   1%|          | 71.9M/8.14G [00:04<06:03, 22.2MB/s]
Downloading model.tgz:   1%|          | 74.7M/8.14G [00:04<05:40, 23.7MB/s]
Downloading model.tgz:   1%|          | 77.2M/8.14G [00:04<06:13, 21.6MB/s]
Downloading model.tgz:   1%|          | 79.5M/8.14G [00:04<06:23, 21.0MB/s]
Downloading model.tgz:   1%|          | 82.5M/8.14G [00:04<05:47, 23.2MB/s]
Downloading model.tgz:   1%|          | 85.1M/8.14G [00:05<05:37, 23.9MB/s]
Downloading model.tgz:   1%|          | 87.6M/8.14G [00:05<06:29, 20.7MB/s]
Downloading model.tgz:   1%|          | 90.4M/8.14G [00:05<05:59, 22.4MB/s]
Downloading model.tgz:   1%|          | 93.2M/8.14G [00:05<05:39, 23.7MB/s]
Downloading model.tgz:   1%|          | 95.6M/8.14G [00:05<06:24, 20.9MB/s]
Downloading model.tgz:   1%|          | 98.2M/8.14G [00:05<06:02, 22.2MB/s]
Downloading model.tgz:   1%|          | 101M/8.14G [00:05<05:48, 23.1MB/s] 
Downloading model.tgz:   1%|▏         | 104M/8.14G [00:05<05:26, 24.6MB/s]
Downloading model.tgz:   1%|▏         | 106M/8.14G [00:06<06:18, 21.2MB/s]
Downloading model.tgz:   1%|▏         | 109M/8.14G [00:06<05:51, 22.9MB/s]
Downloading model.tgz:   1%|▏         | 112M/8.14G [00:06<05:30, 24.3MB/s]
Downloading model.tgz:   1%|▏         | 115M/8.14G [00:06<06:17, 21.3MB/s]
Downloading model.tgz:   1%|▏         | 117M/8.14G [00:06<05:57, 22.4MB/s]
Downloading model.tgz:   1%|▏         | 120M/8.14G [00:06<05:43, 23.4MB/s]
Downloading model.tgz:   2%|▏         | 122M/8.14G [00:06<05:52, 22.7MB/s]
Downloading model.tgz:   2%|▏         | 125M/8.14G [00:06<06:08, 21.7MB/s]
Downloading model.tgz:   2%|▏         | 127M/8.14G [00:06<06:00, 22.3MB/s]
Downloading model.tgz:   2%|▏         | 130M/8.14G [00:07<05:45, 23.2MB/s]
Downloading model.tgz:   2%|▏         | 133M/8.14G [00:07<05:51, 22.7MB/s]
Downloading model.tgz:   2%|▏         | 135M/8.14G [00:07<05:53, 22.6MB/s]
Downloading model.tgz:   2%|▏         | 137M/8.14G [00:07<05:57, 22.4MB/s]
Downloading model.tgz:   2%|▏         | 140M/8.14G [00:07<05:42, 23.4MB/s]
Downloading model.tgz:   2%|▏         | 143M/8.14G [00:07<05:51, 22.8MB/s]
Downloading model.tgz:   2%|▏         | 145M/8.14G [00:07<05:59, 22.2MB/s]
Downloading model.tgz:   2%|▏         | 148M/8.14G [00:07<05:59, 22.2MB/s]
Downloading model.tgz:   2%|▏         | 151M/8.14G [00:07<05:35, 23.8MB/s]
Downloading model.tgz:   2%|▏         | 153M/8.14G [00:08<05:50, 22.8MB/s]
Downloading model.tgz:   2%|▏         | 156M/8.14G [00:08<05:58, 22.3MB/s]
Downloading model.tgz:   2%|▏         | 158M/8.14G [00:08<05:50, 22.8MB/s]
Downloading model.tgz:   2%|▏         | 161M/8.14G [00:08<05:33, 24.0MB/s]
Downloading model.tgz:   2%|▏         | 164M/8.14G [00:08<05:52, 22.6MB/s]
Downloading model.tgz:   2%|▏         | 166M/8.14G [00:08<05:58, 22.3MB/s]
Downloading model.tgz:   2%|▏         | 169M/8.14G [00:08<05:41, 23.3MB/s]
Downloading model.tgz:   2%|▏         | 171M/8.14G [00:08<05:49, 22.8MB/s]
Downloading model.tgz:   2%|▏         | 174M/8.14G [00:08<06:01, 22.0MB/s]
Downloading model.tgz:   2%|▏         | 176M/8.14G [00:09<05:47, 22.9MB/s]
Downloading model.tgz:   2%|▏         | 179M/8.14G [00:09<05:46, 23.0MB/s]
Downloading model.tgz:   2%|▏         | 181M/8.14G [00:09<05:39, 23.5MB/s]
Downloading model.tgz:   2%|▏         | 184M/8.14G [00:09<05:31, 24.0MB/s]
Downloading model.tgz:   2%|▏         | 186M/8.14G [00:09<05:53, 22.5MB/s]
Downloading model.tgz:   2%|▏         | 189M/8.14G [00:09<05:47, 22.9MB/s]
Downloading model.tgz:   2%|▏         | 191M/8.14G [00:09<05:46, 22.9MB/s]
Downloading model.tgz:   2%|▏         | 194M/8.14G [00:09<05:51, 22.6MB/s]
Downloading model.tgz:   2%|▏         | 196M/8.14G [00:09<05:31, 23.9MB/s]
Downloading model.tgz:   2%|▏         | 199M/8.14G [00:10<05:54, 22.4MB/s]
Downloading model.tgz:   2%|▏         | 201M/8.14G [00:10<05:59, 22.1MB/s]
Downloading model.tgz:   3%|▎         | 204M/8.14G [00:10<05:43, 23.1MB/s]
Downloading model.tgz:   3%|▎         | 206M/8.14G [00:10<05:47, 22.8MB/s]
Downloading model.tgz:   3%|▎         | 209M/8.14G [00:10<05:36, 23.6MB/s]
Downloading model.tgz:   3%|▎         | 211M/8.14G [00:10<05:54, 22.3MB/s]
Downloading model.tgz:   3%|▎         | 213M/8.14G [00:10<05:59, 22.1MB/s]
Downloading model.tgz:   3%|▎         | 216M/8.14G [00:10<05:46, 22.8MB/s]
Downloading model.tgz:   3%|▎         | 218M/8.14G [00:10<05:37, 23.4MB/s]
Downloading model.tgz:   3%|▎         | 221M/8.14G [00:11<05:39, 23.3MB/s]
Downloading model.tgz:   3%|▎         | 223M/8.14G [00:11<05:58, 22.1MB/s]
Downloading model.tgz:   3%|▎         | 226M/8.14G [00:11<05:40, 23.3MB/s]
Downloading model.tgz:   3%|▎         | 228M/8.14G [00:11<05:57, 22.1MB/s]
Downloading model.tgz:   3%|▎         | 231M/8.14G [00:11<05:40, 23.2MB/s]
Downloading model.tgz:   3%|▎         | 233M/8.14G [00:11<05:36, 23.5MB/s]
Downloading model.tgz:   3%|▎         | 236M/8.14G [00:11<06:04, 21.7MB/s]
Downloading model.tgz:   3%|▎         | 238M/8.14G [00:11<05:51, 22.5MB/s]
Downloading model.tgz:   3%|▎         | 241M/8.14G [00:11<05:48, 22.7MB/s]
Downloading model.tgz:   3%|▎         | 243M/8.14G [00:11<05:41, 23.1MB/s]
Downloading model.tgz:   3%|▎         | 246M/8.14G [00:12<05:33, 23.7MB/s]
Downloading model.tgz:   3%|▎         | 248M/8.14G [00:12<05:51, 22.4MB/s]
Downloading model.tgz:   3%|▎         | 250M/8.14G [00:12<05:50, 22.5MB/s]
Downloading model.tgz:   3%|▎         | 253M/8.14G [00:12<05:54, 22.2MB/s]
Downloading model.tgz:   3%|▎         | 255M/8.14G [00:12<05:38, 23.3MB/s]
Downloading model.tgz:   3%|▎         | 258M/8.14G [00:12<05:47, 22.7MB/s]
Downloading model.tgz:   3%|▎         | 260M/8.14G [00:12<05:35, 23.5MB/s]
Downloading model.tgz:   3%|▎         | 263M/8.14G [00:12<05:54, 22.2MB/s]
Downloading model.tgz:   3%|▎         | 265M/8.14G [00:12<05:54, 22.2MB/s]
Downloading model.tgz:   3%|▎         | 267M/8.14G [00:13<05:50, 22.5MB/s]
Downloading model.tgz:   3%|▎         | 270M/8.14G [00:13<05:43, 22.9MB/s]
Downloading model.tgz:   3%|▎         | 272M/8.14G [00:13<05:49, 22.5MB/s]
Downloading model.tgz:   3%|▎         | 275M/8.14G [00:13<05:46, 22.7MB/s]
Downloading model.tgz:   3%|▎         | 277M/8.14G [00:13<05:41, 23.0MB/s]
Downloading model.tgz:   3%|▎         | 279M/8.14G [00:13<05:48, 22.6MB/s]
Downloading model.tgz:   3%|▎         | 282M/8.14G [00:13<05:35, 23.4MB/s]
Downloading model.tgz:   3%|▎         | 284M/8.14G [00:13<05:45, 22.7MB/s]
Downloading model.tgz:   4%|▎         | 287M/8.14G [00:13<05:45, 22.7MB/s]
Downloading model.tgz:   4%|▎         | 289M/8.14G [00:14<05:43, 22.8MB/s]
Downloading model.tgz:   4%|▎         | 292M/8.14G [00:14<05:50, 22.4MB/s]
Downloading model.tgz:   4%|▎         | 294M/8.14G [00:14<05:32, 23.6MB/s]
Downloading model.tgz:   4%|▎         | 297M/8.14G [00:14<05:40, 23.0MB/s]
Downloading model.tgz:   4%|▎         | 299M/8.14G [00:14<05:48, 22.5MB/s]
Downloading model.tgz:   4%|▎         | 302M/8.14G [00:14<05:44, 22.7MB/s]
Downloading model.tgz:   4%|▎         | 304M/8.14G [00:14<05:45, 22.7MB/s]
Downloading model.tgz:   4%|▍         | 307M/8.14G [00:14<05:32, 23.6MB/s]
Downloading model.tgz:   4%|▍         | 309M/8.14G [00:14<05:40, 23.0MB/s]
Downloading model.tgz:   4%|▍         | 311M/8.14G [00:14<05:42, 22.9MB/s]
Downloading model.tgz:   4%|▍         | 314M/8.14G [00:15<05:52, 22.2MB/s]
Downloading model.tgz:   4%|▍         | 316M/8.14G [00:15<05:41, 22.9MB/s]
Downloading model.tgz:   4%|▍         | 319M/8.14G [00:15<05:45, 22.6MB/s]
Downloading model.tgz:   4%|▍         | 321M/8.14G [00:15<05:32, 23.5MB/s]
Downloading model.tgz:   4%|▍         | 324M/8.14G [00:15<05:33, 23.4MB/s]
Downloading model.tgz:   4%|▍         | 326M/8.14G [00:15<05:37, 23.2MB/s]
Downloading model.tgz:   4%|▍         | 328M/8.14G [00:15<05:50, 22.3MB/s]
Downloading model.tgz:   4%|▍         | 331M/8.14G [00:15<05:41, 22.9MB/s]
Downloading model.tgz:   4%|▍         | 333M/8.14G [00:15<05:40, 22.9MB/s]
Downloading model.tgz:   4%|▍         | 335M/8.14G [00:16<05:42, 22.8MB/s]
Downloading model.tgz:   4%|▍         | 338M/8.14G [00:16<05:51, 22.2MB/s]
Downloading model.tgz:   4%|▍         | 341M/8.14G [00:16<05:42, 22.8MB/s]
Downloading model.tgz:   4%|▍         | 343M/8.14G [00:16<05:34, 23.3MB/s]
Downloading model.tgz:   4%|▍         | 346M/8.14G [00:16<05:34, 23.3MB/s]
Downloading model.tgz:   4%|▍         | 348M/8.14G [00:16<05:36, 23.1MB/s]
Downloading model.tgz:   4%|▍         | 351M/8.14G [00:16<05:24, 24.0MB/s]
Downloading model.tgz:   4%|▍         | 353M/8.14G [00:16<05:35, 23.2MB/s]
Downloading model.tgz:   4%|▍         | 355M/8.14G [00:16<05:47, 22.4MB/s]
Downloading model.tgz:   4%|▍         | 358M/8.14G [00:17<05:43, 22.7MB/s]
Downloading model.tgz:   4%|▍         | 360M/8.14G [00:17<05:39, 22.9MB/s]
Downloading model.tgz:   4%|▍         | 363M/8.14G [00:17<05:34, 23.3MB/s]
Downloading model.tgz:   4%|▍         | 365M/8.14G [00:17<05:39, 22.9MB/s]
Downloading model.tgz:   5%|▍         | 367M/8.14G [00:17<05:33, 23.3MB/s]
Downloading model.tgz:   5%|▍         | 370M/8.14G [00:17<05:59, 21.6MB/s]
Downloading model.tgz:   5%|▍         | 373M/8.14G [00:17<05:34, 23.2MB/s]
Downloading model.tgz:   5%|▍         | 375M/8.14G [00:17<05:35, 23.2MB/s]
Downloading model.tgz:   5%|▍         | 377M/8.14G [00:17<05:33, 23.3MB/s]
Downloading model.tgz:   5%|▍         | 380M/8.14G [00:17<05:33, 23.2MB/s]
Downloading model.tgz:   5%|▍         | 382M/8.14G [00:18<05:36, 23.0MB/s]
Downloading model.tgz:   5%|▍         | 384M/8.14G [00:18<05:43, 22.6MB/s]
Downloading model.tgz:   5%|▍         | 387M/8.14G [00:18<05:40, 22.8MB/s]
Downloading model.tgz:   5%|▍         | 389M/8.14G [00:18<05:33, 23.3MB/s]
Downloading model.tgz:   5%|▍         | 392M/8.14G [00:18<05:36, 23.0MB/s]
Downloading model.tgz:   5%|▍         | 394M/8.14G [00:18<05:35, 23.1MB/s]
Downloading model.tgz:   5%|▍         | 396M/8.14G [00:18<05:37, 22.9MB/s]
Downloading model.tgz:   5%|▍         | 399M/8.14G [00:18<05:45, 22.4MB/s]
Downloading model.tgz:   5%|▍         | 401M/8.14G [00:18<05:30, 23.4MB/s]
Downloading model.tgz:   5%|▍         | 404M/8.14G [00:19<05:28, 23.5MB/s]
Downloading model.tgz:   5%|▍         | 406M/8.14G [00:19<05:35, 23.1MB/s]
Downloading model.tgz:   5%|▌         | 409M/8.14G [00:19<05:33, 23.2MB/s]
Downloading model.tgz:   5%|▌         | 411M/8.14G [00:19<05:36, 22.9MB/s]
Downloading model.tgz:   5%|▌         | 413M/8.14G [00:19<05:49, 22.1MB/s]
Downloading model.tgz:   5%|▌         | 416M/8.14G [00:19<05:35, 23.0MB/s]
Downloading model.tgz:   5%|▌         | 418M/8.14G [00:19<05:31, 23.3MB/s]
Downloading model.tgz:   5%|▌         | 421M/8.14G [00:19<05:32, 23.2MB/s]
Downloading model.tgz:   5%|▌         | 423M/8.14G [00:19<05:25, 23.7MB/s]
Downloading model.tgz:   5%|▌         | 426M/8.14G [00:19<05:35, 23.0MB/s]
Downloading model.tgz:   5%|▌         | 428M/8.14G [00:20<08:28, 15.2MB/s]
Downloading model.tgz:   5%|▌         | 434M/8.14G [00:20<06:34, 19.5MB/s]
Downloading model.tgz:   5%|▌         | 437M/8.14G [00:20<06:08, 20.9MB/s]
Downloading model.tgz:   5%|▌         | 440M/8.14G [00:20<05:59, 21.4MB/s]
Downloading model.tgz:   5%|▌         | 443M/8.14G [00:20<05:58, 21.4MB/s]
Downloading model.tgz:   5%|▌         | 445M/8.14G [00:20<05:51, 21.9MB/s]
Downloading model.tgz:   6%|▌         | 448M/8.14G [00:20<05:35, 23.0MB/s]
Downloading model.tgz:   6%|▌         | 451M/8.14G [00:21<05:38, 22.7MB/s]
Downloading model.tgz:   6%|▌         | 453M/8.14G [00:21<05:39, 22.6MB/s]
Downloading model.tgz:   6%|▌         | 455M/8.14G [00:21<05:45, 22.3MB/s]
Downloading model.tgz:   6%|▌         | 458M/8.14G [00:21<05:51, 21.9MB/s]
Downloading model.tgz:   6%|▌         | 461M/8.14G [00:21<05:26, 23.5MB/s]
Downloading model.tgz:   6%|▌         | 463M/8.14G [00:21<05:27, 23.4MB/s]
Downloading model.tgz:   6%|▌         | 466M/8.14G [00:21<05:36, 22.8MB/s]
Downloading model.tgz:   6%|▌         | 468M/8.14G [00:21<05:34, 22.9MB/s]
Downloading model.tgz:   6%|▌         | 470M/8.14G [00:21<05:46, 22.2MB/s]
Downloading model.tgz:   6%|▌         | 473M/8.14G [00:22<05:37, 22.7MB/s]
Downloading model.tgz:   6%|▌         | 475M/8.14G [00:22<05:22, 23.7MB/s]
Downloading model.tgz:   6%|▌         | 478M/8.14G [00:22<05:33, 23.0MB/s]
Downloading model.tgz:   6%|▌         | 480M/8.14G [00:22<05:34, 22.9MB/s]
Downloading model.tgz:   6%|▌         | 482M/8.14G [00:22<05:33, 23.0MB/s]
Downloading model.tgz:   6%|▌         | 485M/8.14G [00:22<05:42, 22.4MB/s]
Downloading model.tgz:   6%|▌         | 487M/8.14G [00:22<05:35, 22.8MB/s]
Downloading model.tgz:   6%|▌         | 489M/8.14G [00:22<05:32, 23.0MB/s]
Downloading model.tgz:   6%|▌         | 492M/8.14G [00:22<05:34, 22.9MB/s]
Downloading model.tgz:   6%|▌         | 494M/8.14G [00:22<05:30, 23.2MB/s]
Downloading model.tgz:   6%|▌         | 497M/8.14G [00:23<05:26, 23.4MB/s]
Downloading model.tgz:   6%|▌         | 499M/8.14G [00:23<05:25, 23.5MB/s]
Downloading model.tgz:   6%|▌         | 501M/8.14G [00:23<05:35, 22.8MB/s]
Downloading model.tgz:   6%|▌         | 504M/8.14G [00:23<05:47, 22.0MB/s]
Downloading model.tgz:   6%|▌         | 506M/8.14G [00:23<05:37, 22.6MB/s]
Downloading model.tgz:   6%|▌         | 509M/8.14G [00:23<05:37, 22.6MB/s]
Downloading model.tgz:   6%|▋         | 511M/8.14G [00:23<05:21, 23.7MB/s]
Downloading model.tgz:   6%|▋         | 514M/8.14G [00:23<05:21, 23.7MB/s]
Downloading model.tgz:   6%|▋         | 516M/8.14G [00:23<05:38, 22.6MB/s]
Downloading model.tgz:   6%|▋         | 518M/8.14G [00:23<05:38, 22.5MB/s]
Downloading model.tgz:   6%|▋         | 521M/8.14G [00:24<05:38, 22.5MB/s]
Downloading model.tgz:   6%|▋         | 523M/8.14G [00:24<05:34, 22.8MB/s]
Downloading model.tgz:   6%|▋         | 525M/8.14G [00:24<05:29, 23.1MB/s]
Downloading model.tgz:   6%|▋         | 528M/8.14G [00:24<05:20, 23.7MB/s]
Downloading model.tgz:   7%|▋         | 531M/8.14G [00:24<05:19, 23.8MB/s]
Downloading model.tgz:   7%|▋         | 533M/8.14G [00:24<05:37, 22.6MB/s]
Downloading model.tgz:   7%|▋         | 535M/8.14G [00:24<05:40, 22.3MB/s]
Downloading model.tgz:   7%|▋         | 538M/8.14G [00:24<05:33, 22.8MB/s]
Downloading model.tgz:   7%|▋         | 540M/8.14G [00:24<05:30, 23.0MB/s]
Downloading model.tgz:   7%|▋         | 543M/8.14G [00:25<05:25, 23.3MB/s]
Downloading model.tgz:   7%|▋         | 545M/8.14G [00:25<05:20, 23.7MB/s]
Downloading model.tgz:   7%|▋         | 547M/8.14G [00:25<05:26, 23.2MB/s]
Downloading model.tgz:   7%|▋         | 550M/8.14G [00:25<05:38, 22.4MB/s]
Downloading model.tgz:   7%|▋         | 552M/8.14G [00:25<05:42, 22.1MB/s]
Downloading model.tgz:   7%|▋         | 555M/8.14G [00:25<05:31, 22.9MB/s]
Downloading model.tgz:   7%|▋         | 557M/8.14G [00:25<05:30, 22.9MB/s]
Downloading model.tgz:   7%|▋         | 559M/8.14G [00:25<05:20, 23.6MB/s]
Downloading model.tgz:   7%|▋         | 562M/8.14G [00:25<05:20, 23.6MB/s]
Downloading model.tgz:   7%|▋         | 564M/8.14G [00:25<05:23, 23.4MB/s]
Downloading model.tgz:   7%|▋         | 567M/8.14G [00:26<05:46, 21.8MB/s]
Downloading model.tgz:   7%|▋         | 569M/8.14G [00:26<05:30, 22.9MB/s]
Downloading model.tgz:   7%|▋         | 571M/8.14G [00:26<05:29, 23.0MB/s]
Downloading model.tgz:   7%|▋         | 574M/8.14G [00:26<05:21, 23.5MB/s]
Downloading model.tgz:   7%|▋         | 576M/8.14G [00:26<05:19, 23.7MB/s]
Downloading model.tgz:   7%|▋         | 579M/8.14G [00:26<05:19, 23.7MB/s]
Downloading model.tgz:   7%|▋         | 581M/8.14G [00:26<05:52, 21.5MB/s]
Downloading model.tgz:   7%|▋         | 584M/8.14G [00:26<05:34, 22.6MB/s]
Downloading model.tgz:   7%|▋         | 586M/8.14G [00:26<05:20, 23.6MB/s]
Downloading model.tgz:   7%|▋         | 589M/8.14G [00:27<05:20, 23.5MB/s]
Downloading model.tgz:   7%|▋         | 591M/8.14G [00:27<05:16, 23.8MB/s]
Downloading model.tgz:   7%|▋         | 594M/8.14G [00:27<05:48, 21.7MB/s]
Downloading model.tgz:   7%|▋         | 596M/8.14G [00:27<05:46, 21.8MB/s]
Downloading model.tgz:   7%|▋         | 599M/8.14G [00:27<05:24, 23.3MB/s]
Downloading model.tgz:   7%|▋         | 601M/8.14G [00:27<05:17, 23.7MB/s]
Downloading model.tgz:   7%|▋         | 604M/8.14G [00:27<05:16, 23.8MB/s]
Downloading model.tgz:   7%|▋         | 606M/8.14G [00:27<05:36, 22.4MB/s]
Downloading model.tgz:   7%|▋         | 608M/8.14G [00:27<05:46, 21.7MB/s]
Downloading model.tgz:   8%|▊         | 611M/8.14G [00:28<05:34, 22.5MB/s]
Downloading model.tgz:   8%|▊         | 614M/8.14G [00:28<05:19, 23.6MB/s]
Downloading model.tgz:   8%|▊         | 616M/8.14G [00:28<05:23, 23.2MB/s]
Downloading model.tgz:   8%|▊         | 618M/8.14G [00:28<05:25, 23.1MB/s]
Downloading model.tgz:   8%|▊         | 621M/8.14G [00:28<05:23, 23.3MB/s]
Downloading model.tgz:   8%|▊         | 623M/8.14G [00:28<05:41, 22.0MB/s]
Downloading model.tgz:   8%|▊         | 625M/8.14G [00:28<05:35, 22.4MB/s]
Downloading model.tgz:   8%|▊         | 628M/8.14G [00:28<05:32, 22.6MB/s]
Downloading model.tgz:   8%|▊         | 630M/8.14G [00:28<05:24, 23.1MB/s]
Downloading model.tgz:   8%|▊         | 633M/8.14G [00:28<05:30, 22.7MB/s]
Downloading model.tgz:   8%|▊         | 635M/8.14G [00:29<05:32, 22.6MB/s]
Downloading model.tgz:   8%|▊         | 637M/8.14G [00:29<05:29, 22.8MB/s]
Downloading model.tgz:   8%|▊         | 640M/8.14G [00:29<05:34, 22.4MB/s]
Downloading model.tgz:   8%|▊         | 642M/8.14G [00:29<05:38, 22.2MB/s]
Downloading model.tgz:   8%|▊         | 644M/8.14G [00:29<05:38, 22.2MB/s]
Downloading model.tgz:   8%|▊         | 646M/8.14G [00:29<05:40, 22.0MB/s]
Downloading model.tgz:   8%|▊         | 649M/8.14G [00:29<05:27, 22.9MB/s]
Downloading model.tgz:   8%|▊         | 651M/8.14G [00:29<05:30, 22.7MB/s]
Downloading model.tgz:   8%|▊         | 654M/8.14G [00:29<05:36, 22.3MB/s]
Downloading model.tgz:   8%|▊         | 656M/8.14G [00:30<05:23, 23.1MB/s]
Downloading model.tgz:   8%|▊         | 659M/8.14G [00:30<05:33, 22.5MB/s]
Downloading model.tgz:   8%|▊         | 661M/8.14G [00:30<05:28, 22.8MB/s]
Downloading model.tgz:   8%|▊         | 664M/8.14G [00:30<05:23, 23.1MB/s]
Downloading model.tgz:   8%|▊         | 666M/8.14G [00:30<05:23, 23.1MB/s]
Downloading model.tgz:   8%|▊         | 668M/8.14G [00:30<05:28, 22.7MB/s]
Downloading model.tgz:   8%|▊         | 671M/8.14G [00:30<05:22, 23.2MB/s]
Downloading model.tgz:   8%|▊         | 673M/8.14G [00:30<05:20, 23.3MB/s]
Downloading model.tgz:   8%|▊         | 676M/8.14G [00:30<05:29, 22.7MB/s]
Downloading model.tgz:   8%|▊         | 678M/8.14G [00:30<05:23, 23.1MB/s]
Downloading model.tgz:   8%|▊         | 680M/8.14G [00:31<05:25, 22.9MB/s]
Downloading model.tgz:   8%|▊         | 683M/8.14G [00:31<05:30, 22.6MB/s]
Downloading model.tgz:   8%|▊         | 685M/8.14G [00:31<05:29, 22.6MB/s]
Downloading model.tgz:   8%|▊         | 688M/8.14G [00:31<05:18, 23.4MB/s]
Downloading model.tgz:   8%|▊         | 690M/8.14G [00:31<05:21, 23.1MB/s]
Downloading model.tgz:   9%|▊         | 692M/8.14G [00:31<05:23, 23.0MB/s]
Downloading model.tgz:   9%|▊         | 695M/8.14G [00:31<05:28, 22.7MB/s]
Downloading model.tgz:   9%|▊         | 697M/8.14G [00:31<05:25, 22.8MB/s]
Downloading model.tgz:   9%|▊         | 699M/8.14G [00:31<05:29, 22.6MB/s]
Downloading model.tgz:   9%|▊         | 702M/8.14G [00:31<05:29, 22.6MB/s]
Downloading model.tgz:   9%|▊         | 704M/8.14G [00:32<05:15, 23.6MB/s]
Downloading model.tgz:   9%|▊         | 707M/8.14G [00:32<05:21, 23.1MB/s]
Downloading model.tgz:   9%|▊         | 709M/8.14G [00:32<05:35, 22.1MB/s]
Downloading model.tgz:   9%|▊         | 712M/8.14G [00:32<05:24, 22.9MB/s]
Downloading model.tgz:   9%|▉         | 714M/8.14G [00:32<05:39, 21.9MB/s]
Downloading model.tgz:   9%|▉         | 717M/8.14G [00:32<05:14, 23.6MB/s]
Downloading model.tgz:   9%|▉         | 719M/8.14G [00:32<05:26, 22.7MB/s]
Downloading model.tgz:   9%|▉         | 722M/8.14G [00:32<05:29, 22.5MB/s]
Downloading model.tgz:   9%|▉         | 724M/8.14G [00:33<08:03, 15.3MB/s]
Downloading model.tgz:   9%|▉         | 730M/8.14G [00:33<06:14, 19.8MB/s]
Downloading model.tgz:   9%|▉         | 733M/8.14G [00:33<05:56, 20.8MB/s]
Downloading model.tgz:   9%|▉         | 736M/8.14G [00:33<06:47, 18.2MB/s]
Downloading model.tgz:   9%|▉         | 740M/8.14G [00:33<05:40, 21.7MB/s]
Downloading model.tgz:   9%|▉         | 743M/8.14G [00:33<05:38, 21.8MB/s]
Downloading model.tgz:   9%|▉         | 746M/8.14G [00:33<05:26, 22.6MB/s]
Downloading model.tgz:   9%|▉         | 749M/8.14G [00:34<05:23, 22.9MB/s]
Downloading model.tgz:   9%|▉         | 751M/8.14G [00:34<05:20, 23.1MB/s]
Downloading model.tgz:   9%|▉         | 754M/8.14G [00:34<05:25, 22.7MB/s]
Downloading model.tgz:   9%|▉         | 756M/8.14G [00:34<05:41, 21.6MB/s]
Downloading model.tgz:   9%|▉         | 759M/8.14G [00:34<05:18, 23.2MB/s]
Downloading model.tgz:   9%|▉         | 761M/8.14G [00:34<05:23, 22.8MB/s]
Downloading model.tgz:   9%|▉         | 764M/8.14G [00:34<05:14, 23.5MB/s]
Downloading model.tgz:   9%|▉         | 766M/8.14G [00:34<05:27, 22.5MB/s]
Downloading model.tgz:   9%|▉         | 769M/8.14G [00:34<05:17, 23.2MB/s]
Downloading model.tgz:   9%|▉         | 771M/8.14G [00:35<05:17, 23.2MB/s]
Downloading model.tgz:  10%|▉         | 773M/8.14G [00:35<05:18, 23.1MB/s]
Downloading model.tgz:  10%|▉         | 776M/8.14G [00:35<05:22, 22.8MB/s]
Downloading model.tgz:  10%|▉         | 778M/8.14G [00:35<05:20, 22.9MB/s]
Downloading model.tgz:  10%|▉         | 781M/8.14G [00:35<05:14, 23.4MB/s]
Downloading model.tgz:  10%|▉         | 783M/8.14G [00:35<05:20, 22.9MB/s]
Downloading model.tgz:  10%|▉         | 785M/8.14G [00:35<05:20, 23.0MB/s]
Downloading model.tgz:  10%|▉         | 788M/8.14G [00:35<05:19, 23.0MB/s]
Downloading model.tgz:  10%|▉         | 790M/8.14G [00:35<05:25, 22.6MB/s]
Downloading model.tgz:  10%|▉         | 792M/8.14G [00:35<05:17, 23.1MB/s]
Downloading model.tgz:  10%|▉         | 795M/8.14G [00:36<05:22, 22.8MB/s]
Downloading model.tgz:  10%|▉         | 797M/8.14G [00:36<05:09, 23.7MB/s]
Downloading model.tgz:  10%|▉         | 800M/8.14G [00:36<05:20, 22.9MB/s]
Downloading model.tgz:  10%|▉         | 802M/8.14G [00:36<05:16, 23.2MB/s]
Downloading model.tgz:  10%|▉         | 805M/8.14G [00:36<05:21, 22.8MB/s]
Downloading model.tgz:  10%|▉         | 807M/8.14G [00:36<05:23, 22.7MB/s]
Downloading model.tgz:  10%|▉         | 809M/8.14G [00:36<05:21, 22.8MB/s]
Downloading model.tgz:  10%|▉         | 812M/8.14G [00:36<05:17, 23.1MB/s]
Downloading model.tgz:  10%|▉         | 814M/8.14G [00:36<05:15, 23.2MB/s]
Downloading model.tgz:  10%|█         | 816M/8.14G [00:36<05:15, 23.2MB/s]
Downloading model.tgz:  10%|█         | 819M/8.14G [00:37<05:16, 23.1MB/s]
Downloading model.tgz:  10%|█         | 821M/8.14G [00:37<05:16, 23.2MB/s]
Downloading model.tgz:  10%|█         | 823M/8.14G [00:37<05:18, 22.9MB/s]
Downloading model.tgz:  10%|█         | 826M/8.14G [00:37<05:20, 22.8MB/s]
Downloading model.tgz:  10%|█         | 828M/8.14G [00:37<05:20, 22.8MB/s]
Downloading model.tgz:  10%|█         | 830M/8.14G [00:37<05:17, 23.0MB/s]
Downloading model.tgz:  10%|█         | 833M/8.14G [00:37<05:21, 22.7MB/s]
Downloading model.tgz:  10%|█         | 835M/8.14G [00:37<05:12, 23.4MB/s]
Downloading model.tgz:  10%|█         | 838M/8.14G [00:37<05:14, 23.2MB/s]
Downloading model.tgz:  10%|█         | 840M/8.14G [00:38<05:27, 22.3MB/s]
Downloading model.tgz:  10%|█         | 842M/8.14G [00:38<05:16, 23.1MB/s]
Downloading model.tgz:  10%|█         | 845M/8.14G [00:38<05:13, 23.3MB/s]
Downloading model.tgz:  10%|█         | 847M/8.14G [00:38<05:10, 23.5MB/s]
Downloading model.tgz:  10%|█         | 850M/8.14G [00:38<05:15, 23.1MB/s]
Downloading model.tgz:  10%|█         | 852M/8.14G [00:38<05:14, 23.2MB/s]
Downloading model.tgz:  10%|█         | 854M/8.14G [00:38<05:28, 22.2MB/s]
Downloading model.tgz:  11%|█         | 857M/8.14G [00:38<05:16, 23.0MB/s]
Downloading model.tgz:  11%|█         | 859M/8.14G [00:38<05:16, 23.0MB/s]
Downloading model.tgz:  11%|█         | 862M/8.14G [00:38<05:06, 23.7MB/s]
Downloading model.tgz:  11%|█         | 864M/8.14G [00:39<05:15, 23.0MB/s]
Downloading model.tgz:  11%|█         | 867M/8.14G [00:39<05:17, 22.9MB/s]
Downloading model.tgz:  11%|█         | 869M/8.14G [00:39<05:24, 22.4MB/s]
Downloading model.tgz:  11%|█         | 871M/8.14G [00:39<05:22, 22.5MB/s]
Downloading model.tgz:  11%|█         | 874M/8.14G [00:39<05:13, 23.2MB/s]
Downloading model.tgz:  11%|█         | 876M/8.14G [00:39<05:13, 23.2MB/s]
Downloading model.tgz:  11%|█         | 878M/8.14G [00:39<05:09, 23.5MB/s]
Downloading model.tgz:  11%|█         | 881M/8.14G [00:39<05:12, 23.2MB/s]
Downloading model.tgz:  11%|█         | 883M/8.14G [00:39<05:14, 23.1MB/s]
Downloading model.tgz:  11%|█         | 885M/8.14G [00:39<05:23, 22.5MB/s]
Downloading model.tgz:  11%|█         | 888M/8.14G [00:40<05:22, 22.5MB/s]
Downloading model.tgz:  11%|█         | 890M/8.14G [00:40<05:10, 23.3MB/s]
Downloading model.tgz:  11%|█         | 893M/8.14G [00:40<05:13, 23.1MB/s]
Downloading model.tgz:  11%|█         | 895M/8.14G [00:40<05:13, 23.1MB/s]
Downloading model.tgz:  11%|█         | 897M/8.14G [00:40<05:15, 23.0MB/s]
Downloading model.tgz:  11%|█         | 900M/8.14G [00:40<05:06, 23.6MB/s]
Downloading model.tgz:  11%|█         | 902M/8.14G [00:40<05:20, 22.5MB/s]
Downloading model.tgz:  11%|█         | 905M/8.14G [00:40<05:19, 22.6MB/s]
Downloading model.tgz:  11%|█         | 907M/8.14G [00:40<05:13, 23.1MB/s]
Downloading model.tgz:  11%|█         | 909M/8.14G [00:41<05:08, 23.4MB/s]
Downloading model.tgz:  11%|█         | 912M/8.14G [00:41<05:11, 23.2MB/s]
Downloading model.tgz:  11%|█         | 914M/8.14G [00:41<05:15, 22.9MB/s]
Downloading model.tgz:  11%|█▏        | 917M/8.14G [00:41<05:08, 23.4MB/s]
Downloading model.tgz:  11%|█▏        | 919M/8.14G [00:41<05:20, 22.6MB/s]
Downloading model.tgz:  11%|█▏        | 921M/8.14G [00:41<05:20, 22.5MB/s]
Downloading model.tgz:  11%|█▏        | 924M/8.14G [00:41<05:12, 23.1MB/s]
Downloading model.tgz:  11%|█▏        | 926M/8.14G [00:41<05:12, 23.1MB/s]
Downloading model.tgz:  11%|█▏        | 929M/8.14G [00:41<05:13, 23.0MB/s]
Downloading model.tgz:  11%|█▏        | 931M/8.14G [00:41<05:12, 23.1MB/s]
Downloading model.tgz:  11%|█▏        | 933M/8.14G [00:42<05:15, 22.8MB/s]
Downloading model.tgz:  11%|█▏        | 936M/8.14G [00:42<05:15, 22.9MB/s]
Downloading model.tgz:  12%|█▏        | 938M/8.14G [00:42<05:09, 23.3MB/s]
Downloading model.tgz:  12%|█▏        | 941M/8.14G [00:42<05:11, 23.1MB/s]
Downloading model.tgz:  12%|█▏        | 943M/8.14G [00:42<05:08, 23.3MB/s]
Downloading model.tgz:  12%|█▏        | 945M/8.14G [00:42<07:13, 16.6MB/s]
Downloading model.tgz:  12%|█▏        | 951M/8.14G [00:42<05:42, 21.0MB/s]
Downloading model.tgz:  12%|█▏        | 954M/8.14G [00:42<05:36, 21.3MB/s]
Downloading model.tgz:  12%|█▏        | 956M/8.14G [00:43<05:33, 21.5MB/s]
Downloading model.tgz:  12%|█▏        | 959M/8.14G [00:43<05:18, 22.5MB/s]
Downloading model.tgz:  12%|█▏        | 962M/8.14G [00:43<05:17, 22.6MB/s]
Downloading model.tgz:  12%|█▏        | 964M/8.14G [00:43<05:25, 22.0MB/s]
Downloading model.tgz:  12%|█▏        | 967M/8.14G [00:43<05:12, 23.0MB/s]
Downloading model.tgz:  12%|█▏        | 969M/8.14G [00:43<05:17, 22.6MB/s]
Downloading model.tgz:  12%|█▏        | 971M/8.14G [00:43<05:18, 22.5MB/s]
Downloading model.tgz:  12%|█▏        | 974M/8.14G [00:43<05:15, 22.7MB/s]
Downloading model.tgz:  12%|█▏        | 977M/8.14G [00:43<05:06, 23.3MB/s]
Downloading model.tgz:  12%|█▏        | 979M/8.14G [00:44<05:09, 23.1MB/s]
Downloading model.tgz:  12%|█▏        | 981M/8.14G [00:44<05:16, 22.6MB/s]
Downloading model.tgz:  12%|█▏        | 984M/8.14G [00:44<05:18, 22.4MB/s]
Downloading model.tgz:  12%|█▏        | 986M/8.14G [00:44<05:09, 23.1MB/s]
Downloading model.tgz:  12%|█▏        | 989M/8.14G [00:44<05:13, 22.8MB/s]
Downloading model.tgz:  12%|█▏        | 991M/8.14G [00:44<05:02, 23.7MB/s]
Downloading model.tgz:  12%|█▏        | 994M/8.14G [00:44<05:05, 23.4MB/s]
Downloading model.tgz:  12%|█▏        | 996M/8.14G [00:44<05:04, 23.5MB/s]
Downloading model.tgz:  12%|█▏        | 998M/8.14G [00:44<05:11, 23.0MB/s]
Downloading model.tgz:  12%|█▏        | 1.00G/8.14G [00:44<05:09, 23.1MB/s]
Downloading model.tgz:  12%|█▏        | 1.00G/8.14G [00:45<05:07, 23.2MB/s]
Downloading model.tgz:  12%|█▏        | 1.01G/8.14G [00:45<05:11, 22.9MB/s]
Downloading model.tgz:  12%|█▏        | 1.01G/8.14G [00:45<05:10, 23.0MB/s]
Downloading model.tgz:  12%|█▏        | 1.01G/8.14G [00:45<05:07, 23.2MB/s]
Downloading model.tgz:  12%|█▏        | 1.01G/8.14G [00:45<05:03, 23.5MB/s]
Downloading model.tgz:  12%|█▏        | 1.02G/8.14G [00:45<05:14, 22.6MB/s]
Downloading model.tgz:  13%|█▎        | 1.02G/8.14G [00:45<05:10, 22.9MB/s]
Downloading model.tgz:  13%|█▎        | 1.02G/8.14G [00:45<05:06, 23.2MB/s]
Downloading model.tgz:  13%|█▎        | 1.02G/8.14G [00:45<05:05, 23.3MB/s]
Downloading model.tgz:  13%|█▎        | 1.02G/8.14G [00:46<05:11, 22.8MB/s]
Downloading model.tgz:  13%|█▎        | 1.03G/8.14G [00:46<05:07, 23.1MB/s]
Downloading model.tgz:  13%|█▎        | 1.03G/8.14G [00:46<05:05, 23.3MB/s]
Downloading model.tgz:  13%|█▎        | 1.03G/8.14G [00:46<05:19, 22.3MB/s]
Downloading model.tgz:  13%|█▎        | 1.03G/8.14G [00:46<05:08, 23.0MB/s]
Downloading model.tgz:  13%|█▎        | 1.04G/8.14G [00:46<05:05, 23.2MB/s]
Downloading model.tgz:  13%|█▎        | 1.04G/8.14G [00:46<05:08, 23.0MB/s]
Downloading model.tgz:  13%|█▎        | 1.04G/8.14G [00:46<05:02, 23.5MB/s]
Downloading model.tgz:  13%|█▎        | 1.04G/8.14G [00:46<04:59, 23.7MB/s]
Downloading model.tgz:  13%|█▎        | 1.05G/8.14G [00:46<05:14, 22.6MB/s]
Downloading model.tgz:  13%|█▎        | 1.05G/8.14G [00:47<05:11, 22.8MB/s]
Downloading model.tgz:  13%|█▎        | 1.05G/8.14G [00:47<05:07, 23.1MB/s]
Downloading model.tgz:  13%|█▎        | 1.05G/8.14G [00:47<11:08, 10.6MB/s]
Downloading model.tgz:  13%|█▎        | 1.07G/8.14G [00:47<08:05, 14.6MB/s]
Downloading model.tgz:  13%|█▎        | 1.07G/8.14G [00:47<07:11, 16.4MB/s]
Downloading model.tgz:  13%|█▎        | 1.07G/8.14G [00:48<06:35, 17.9MB/s]
Downloading model.tgz:  13%|█▎        | 1.08G/8.14G [00:48<06:05, 19.3MB/s]
Downloading model.tgz:  13%|█▎        | 1.08G/8.14G [00:48<05:49, 20.2MB/s]
Downloading model.tgz:  13%|█▎        | 1.08G/8.14G [00:48<05:34, 21.1MB/s]
Downloading model.tgz:  13%|█▎        | 1.09G/8.14G [00:48<05:21, 22.0MB/s]
Downloading model.tgz:  13%|█▎        | 1.09G/8.14G [00:48<05:21, 22.0MB/s]
Downloading model.tgz:  13%|█▎        | 1.09G/8.14G [00:48<05:20, 22.0MB/s]
Downloading model.tgz:  13%|█▎        | 1.09G/8.14G [00:48<05:11, 22.6MB/s]
Downloading model.tgz:  13%|█▎        | 1.10G/8.14G [00:49<05:14, 22.4MB/s]
Downloading model.tgz:  13%|█▎        | 1.10G/8.14G [00:49<05:05, 23.0MB/s]
Downloading model.tgz:  14%|█▎        | 1.10G/8.14G [00:49<05:11, 22.6MB/s]
Downloading model.tgz:  14%|█▎        | 1.10G/8.14G [00:49<05:08, 22.8MB/s]
Downloading model.tgz:  14%|█▎        | 1.11G/8.14G [00:49<05:06, 22.9MB/s]
Downloading model.tgz:  14%|█▎        | 1.11G/8.14G [00:49<05:01, 23.3MB/s]
Downloading model.tgz:  14%|█▎        | 1.11G/8.14G [00:49<05:10, 22.6MB/s]
Downloading model.tgz:  14%|█▎        | 1.11G/8.14G [00:49<05:02, 23.3MB/s]
Downloading model.tgz:  14%|█▎        | 1.12G/8.14G [00:49<05:02, 23.2MB/s]
Downloading model.tgz:  14%|█▎        | 1.12G/8.14G [00:50<05:11, 22.6MB/s]
Downloading model.tgz:  14%|█▍        | 1.12G/8.14G [00:50<05:06, 22.9MB/s]
Downloading model.tgz:  14%|█▍        | 1.12G/8.14G [00:50<05:05, 23.0MB/s]
Downloading model.tgz:  14%|█▍        | 1.12G/8.14G [00:50<05:02, 23.2MB/s]
Downloading model.tgz:  14%|█▍        | 1.13G/8.14G [00:50<05:07, 22.8MB/s]
Downloading model.tgz:  14%|█▍        | 1.13G/8.14G [00:50<05:08, 22.7MB/s]
Downloading model.tgz:  14%|█▍        | 1.13G/8.14G [00:50<05:07, 22.8MB/s]
Downloading model.tgz:  14%|█▍        | 1.13G/8.14G [00:50<05:05, 22.9MB/s]
Downloading model.tgz:  14%|█▍        | 1.14G/8.14G [00:50<05:00, 23.3MB/s]
Downloading model.tgz:  14%|█▍        | 1.14G/8.14G [00:50<04:58, 23.4MB/s]
Downloading model.tgz:  14%|█▍        | 1.14G/8.14G [00:51<05:01, 23.2MB/s]
Downloading model.tgz:  14%|█▍        | 1.14G/8.14G [00:51<05:02, 23.1MB/s]
Downloading model.tgz:  14%|█▍        | 1.15G/8.14G [00:51<05:09, 22.6MB/s]
Downloading model.tgz:  14%|█▍        | 1.15G/8.14G [00:51<05:09, 22.6MB/s]
Downloading model.tgz:  14%|█▍        | 1.15G/8.14G [00:51<05:03, 23.0MB/s]
Downloading model.tgz:  14%|█▍        | 1.15G/8.14G [00:51<05:02, 23.1MB/s]
Downloading model.tgz:  14%|█▍        | 1.16G/8.14G [00:51<04:59, 23.3MB/s]
Downloading model.tgz:  14%|█▍        | 1.16G/8.14G [00:51<04:57, 23.5MB/s]
Downloading model.tgz:  14%|█▍        | 1.16G/8.14G [00:51<05:01, 23.2MB/s]
Downloading model.tgz:  14%|█▍        | 1.16G/8.14G [00:52<05:03, 23.0MB/s]
Downloading model.tgz:  14%|█▍        | 1.17G/8.14G [00:52<05:10, 22.5MB/s]
Downloading model.tgz:  14%|█▍        | 1.17G/8.14G [00:52<05:14, 22.1MB/s]
Downloading model.tgz:  14%|█▍        | 1.17G/8.14G [00:52<04:58, 23.3MB/s]
Downloading model.tgz:  14%|█▍        | 1.17G/8.14G [00:52<04:59, 23.2MB/s]
Downloading model.tgz:  14%|█▍        | 1.17G/8.14G [00:52<04:58, 23.4MB/s]
Downloading model.tgz:  14%|█▍        | 1.18G/8.14G [00:52<05:02, 23.0MB/s]
Downloading model.tgz:  14%|█▍        | 1.18G/8.14G [00:52<05:06, 22.7MB/s]
Downloading model.tgz:  15%|█▍        | 1.18G/8.14G [00:52<05:08, 22.5MB/s]
Downloading model.tgz:  15%|█▍        | 1.18G/8.14G [00:52<05:12, 22.3MB/s]
Downloading model.tgz:  15%|█▍        | 1.19G/8.14G [00:53<04:56, 23.4MB/s]
Downloading model.tgz:  15%|█▍        | 1.19G/8.14G [00:53<04:53, 23.7MB/s]
Downloading model.tgz:  15%|█▍        | 1.19G/8.14G [00:53<05:02, 22.9MB/s]
Downloading model.tgz:  15%|█▍        | 1.19G/8.14G [00:53<05:06, 22.7MB/s]
Downloading model.tgz:  15%|█▍        | 1.20G/8.14G [00:53<05:05, 22.7MB/s]
Downloading model.tgz:  15%|█▍        | 1.20G/8.14G [00:53<05:05, 22.7MB/s]
Downloading model.tgz:  15%|█▍        | 1.20G/8.14G [00:53<05:04, 22.8MB/s]
Downloading model.tgz:  15%|█▍        | 1.20G/8.14G [00:53<04:57, 23.3MB/s]
Downloading model.tgz:  15%|█▍        | 1.21G/8.14G [00:53<05:04, 22.8MB/s]
Downloading model.tgz:  15%|█▍        | 1.21G/8.14G [00:53<04:58, 23.2MB/s]
Downloading model.tgz:  15%|█▍        | 1.21G/8.14G [00:54<05:01, 22.9MB/s]
Downloading model.tgz:  15%|█▍        | 1.21G/8.14G [00:54<05:00, 23.0MB/s]
Downloading model.tgz:  15%|█▍        | 1.22G/8.14G [00:54<05:01, 23.0MB/s]
Downloading model.tgz:  15%|█▍        | 1.22G/8.14G [00:54<04:59, 23.1MB/s]
Downloading model.tgz:  15%|█▍        | 1.22G/8.14G [00:54<04:53, 23.6MB/s]
Downloading model.tgz:  15%|█▌        | 1.22G/8.14G [00:54<04:56, 23.3MB/s]
Downloading model.tgz:  15%|█▌        | 1.23G/8.14G [00:54<04:56, 23.3MB/s]
Downloading model.tgz:  15%|█▌        | 1.23G/8.14G [00:54<05:08, 22.4MB/s]
Downloading model.tgz:  15%|█▌        | 1.23G/8.14G [00:54<05:01, 22.9MB/s]
Downloading model.tgz:  15%|█▌        | 1.23G/8.14G [00:55<05:03, 22.7MB/s]
Downloading model.tgz:  15%|█▌        | 1.23G/8.14G [00:55<05:07, 22.5MB/s]
Downloading model.tgz:  15%|█▌        | 1.24G/8.14G [00:55<04:51, 23.7MB/s]
Downloading model.tgz:  15%|█▌        | 1.24G/8.14G [00:55<04:54, 23.4MB/s]
Downloading model.tgz:  15%|█▌        | 1.24G/8.14G [00:55<05:05, 22.6MB/s]
Downloading model.tgz:  15%|█▌        | 1.24G/8.14G [00:55<05:02, 22.8MB/s]
Downloading model.tgz:  15%|█▌        | 1.25G/8.14G [00:55<05:00, 22.9MB/s]
Downloading model.tgz:  15%|█▌        | 1.25G/8.14G [00:55<05:00, 22.9MB/s]
Downloading model.tgz:  15%|█▌        | 1.25G/8.14G [00:55<05:01, 22.9MB/s]
Downloading model.tgz:  15%|█▌        | 1.25G/8.14G [00:55<04:51, 23.6MB/s]
Downloading model.tgz:  15%|█▌        | 1.26G/8.14G [00:56<05:02, 22.8MB/s]
Downloading model.tgz:  15%|█▌        | 1.26G/8.14G [00:56<05:00, 22.9MB/s]
Downloading model.tgz:  15%|█▌        | 1.26G/8.14G [00:56<04:56, 23.2MB/s]
Downloading model.tgz:  16%|█▌        | 1.26G/8.14G [00:56<04:57, 23.1MB/s]
Downloading model.tgz:  16%|█▌        | 1.27G/8.14G [00:56<05:00, 22.8MB/s]
Downloading model.tgz:  16%|█▌        | 1.27G/8.14G [00:56<04:58, 23.0MB/s]
Downloading model.tgz:  16%|█▌        | 1.27G/8.14G [00:56<04:58, 23.0MB/s]
Downloading model.tgz:  16%|█▌        | 1.27G/8.14G [00:56<05:00, 22.9MB/s]
Downloading model.tgz:  16%|█▌        | 1.28G/8.14G [00:56<05:01, 22.8MB/s]
Downloading model.tgz:  16%|█▌        | 1.28G/8.14G [00:57<04:58, 23.0MB/s]
Downloading model.tgz:  16%|█▌        | 1.28G/8.14G [00:57<04:55, 23.2MB/s]
Downloading model.tgz:  16%|█▌        | 1.28G/8.14G [00:57<04:50, 23.6MB/s]
Downloading model.tgz:  16%|█▌        | 1.29G/8.14G [00:57<05:09, 22.2MB/s]
Downloading model.tgz:  16%|█▌        | 1.29G/8.14G [00:57<05:01, 22.7MB/s]
Downloading model.tgz:  16%|█▌        | 1.29G/8.14G [00:57<04:56, 23.1MB/s]
Downloading model.tgz:  16%|█▌        | 1.29G/8.14G [00:57<05:00, 22.8MB/s]
Downloading model.tgz:  16%|█▌        | 1.29G/8.14G [00:57<04:54, 23.3MB/s]
Downloading model.tgz:  16%|█▌        | 1.30G/8.14G [00:57<04:54, 23.3MB/s]
Downloading model.tgz:  16%|█▌        | 1.30G/8.14G [00:57<04:59, 22.9MB/s]
Downloading model.tgz:  16%|█▌        | 1.30G/8.14G [00:58<05:05, 22.4MB/s]
Downloading model.tgz:  16%|█▌        | 1.30G/8.14G [00:58<05:02, 22.6MB/s]
Downloading model.tgz:  16%|█▌        | 1.31G/8.14G [00:58<04:57, 23.0MB/s]
Downloading model.tgz:  16%|█▌        | 1.31G/8.14G [00:58<04:56, 23.0MB/s]
Downloading model.tgz:  16%|█▌        | 1.31G/8.14G [00:58<04:59, 22.8MB/s]
Downloading model.tgz:  16%|█▌        | 1.31G/8.14G [00:58<04:53, 23.3MB/s]
Downloading model.tgz:  16%|█▌        | 1.32G/8.14G [00:58<04:53, 23.2MB/s]
Downloading model.tgz:  16%|█▌        | 1.32G/8.14G [00:58<04:57, 23.0MB/s]
Downloading model.tgz:  16%|█▌        | 1.32G/8.14G [00:58<04:59, 22.8MB/s]
Downloading model.tgz:  16%|█▋        | 1.32G/8.14G [00:58<04:59, 22.7MB/s]
Downloading model.tgz:  16%|█▋        | 1.33G/8.14G [00:59<04:56, 23.0MB/s]
Downloading model.tgz:  16%|█▋        | 1.33G/8.14G [00:59<04:56, 23.0MB/s]
Downloading model.tgz:  16%|█▋        | 1.33G/8.14G [00:59<04:52, 23.3MB/s]
Downloading model.tgz:  16%|█▋        | 1.33G/8.14G [00:59<04:55, 23.1MB/s]
Downloading model.tgz:  16%|█▋        | 1.34G/8.14G [00:59<04:56, 23.0MB/s]
Downloading model.tgz:  16%|█▋        | 1.34G/8.14G [00:59<04:56, 23.0MB/s]
Downloading model.tgz:  16%|█▋        | 1.34G/8.14G [00:59<04:57, 22.8MB/s]
Downloading model.tgz:  16%|█▋        | 1.34G/8.14G [00:59<05:02, 22.5MB/s]
Downloading model.tgz:  17%|█▋        | 1.34G/8.14G [00:59<04:53, 23.2MB/s]
Downloading model.tgz:  17%|█▋        | 1.35G/8.14G [01:00<04:56, 22.9MB/s]
Downloading model.tgz:  17%|█▋        | 1.35G/8.14G [01:00<04:54, 23.1MB/s]
Downloading model.tgz:  17%|█▋        | 1.35G/8.14G [01:00<04:55, 23.0MB/s]
Downloading model.tgz:  17%|█▋        | 1.35G/8.14G [01:00<04:48, 23.5MB/s]
Downloading model.tgz:  17%|█▋        | 1.36G/8.14G [01:00<04:55, 23.0MB/s]
Downloading model.tgz:  17%|█▋        | 1.36G/8.14G [01:00<04:54, 23.0MB/s]
Downloading model.tgz:  17%|█▋        | 1.36G/8.14G [01:00<04:54, 23.0MB/s]
Downloading model.tgz:  17%|█▋        | 1.36G/8.14G [01:00<05:00, 22.6MB/s]
Downloading model.tgz:  17%|█▋        | 1.37G/8.14G [01:00<04:59, 22.6MB/s]
Downloading model.tgz:  17%|█▋        | 1.37G/8.14G [01:00<04:52, 23.2MB/s]
Downloading model.tgz:  17%|█▋        | 1.37G/8.14G [01:01<04:52, 23.1MB/s]
Downloading model.tgz:  17%|█▋        | 1.37G/8.14G [01:01<04:48, 23.5MB/s]
Downloading model.tgz:  17%|█▋        | 1.38G/8.14G [01:01<04:52, 23.1MB/s]
Downloading model.tgz:  17%|█▋        | 1.38G/8.14G [01:01<04:52, 23.1MB/s]
Downloading model.tgz:  17%|█▋        | 1.38G/8.14G [01:01<05:02, 22.4MB/s]
Downloading model.tgz:  17%|█▋        | 1.38G/8.14G [01:01<05:05, 22.1MB/s]
Downloading model.tgz:  17%|█▋        | 1.39G/8.14G [01:01<04:50, 23.3MB/s]
Downloading model.tgz:  17%|█▋        | 1.39G/8.14G [01:01<04:56, 22.8MB/s]
Downloading model.tgz:  17%|█▋        | 1.39G/8.14G [01:01<04:47, 23.5MB/s]
Downloading model.tgz:  17%|█▋        | 1.39G/8.14G [01:01<04:47, 23.5MB/s]
Downloading model.tgz:  17%|█▋        | 1.39G/8.14G [01:02<05:03, 22.2MB/s]
Downloading model.tgz:  17%|█▋        | 1.40G/8.14G [01:02<04:52, 23.0MB/s]
Downloading model.tgz:  17%|█▋        | 1.40G/8.14G [01:02<04:48, 23.3MB/s]
Downloading model.tgz:  17%|█▋        | 1.40G/8.14G [01:02<04:53, 22.9MB/s]
Downloading model.tgz:  17%|█▋        | 1.40G/8.14G [01:02<04:44, 23.7MB/s]
Downloading model.tgz:  17%|█▋        | 1.41G/8.14G [01:02<04:51, 23.1MB/s]
Downloading model.tgz:  17%|█▋        | 1.41G/8.14G [01:02<05:01, 22.3MB/s]
Downloading model.tgz:  17%|█▋        | 1.41G/8.14G [01:02<04:50, 23.2MB/s]
Downloading model.tgz:  17%|█▋        | 1.41G/8.14G [01:02<04:58, 22.6MB/s]
Downloading model.tgz:  17%|█▋        | 1.42G/8.14G [01:03<04:58, 22.5MB/s]
Downloading model.tgz:  17%|█▋        | 1.42G/8.14G [01:03<04:48, 23.3MB/s]
Downloading model.tgz:  17%|█▋        | 1.42G/8.14G [01:03<04:54, 22.8MB/s]
Downloading model.tgz:  18%|█▊        | 1.42G/8.14G [01:03<04:48, 23.2MB/s]
Downloading model.tgz:  18%|█▊        | 1.43G/8.14G [01:03<04:46, 23.4MB/s]
Downloading model.tgz:  18%|█▊        | 1.43G/8.14G [01:03<04:58, 22.5MB/s]
Downloading model.tgz:  18%|█▊        | 1.43G/8.14G [01:03<04:59, 22.4MB/s]
Downloading model.tgz:  18%|█▊        | 1.43G/8.14G [01:03<04:48, 23.2MB/s]
Downloading model.tgz:  18%|█▊        | 1.44G/8.14G [01:03<04:47, 23.3MB/s]
Downloading model.tgz:  18%|█▊        | 1.44G/8.14G [01:04<04:48, 23.2MB/s]
Downloading model.tgz:  18%|█▊        | 1.44G/8.14G [01:04<04:45, 23.5MB/s]
Downloading model.tgz:  18%|█▊        | 1.44G/8.14G [01:04<04:47, 23.3MB/s]
Downloading model.tgz:  18%|█▊        | 1.45G/8.14G [01:04<05:04, 22.0MB/s]
Downloading model.tgz:  18%|█▊        | 1.45G/8.14G [01:04<04:49, 23.1MB/s]
Downloading model.tgz:  18%|█▊        | 1.45G/8.14G [01:04<04:49, 23.1MB/s]
Downloading model.tgz:  18%|█▊        | 1.45G/8.14G [01:04<04:52, 22.9MB/s]
Downloading model.tgz:  18%|█▊        | 1.46G/8.14G [01:04<04:49, 23.1MB/s]
Downloading model.tgz:  18%|█▊        | 1.46G/8.14G [01:04<04:50, 23.0MB/s]
Downloading model.tgz:  18%|█▊        | 1.46G/8.14G [01:04<05:05, 21.8MB/s]
Downloading model.tgz:  18%|█▊        | 1.46G/8.14G [01:05<04:42, 23.6MB/s]
Downloading model.tgz:  18%|█▊        | 1.47G/8.14G [01:05<04:49, 23.0MB/s]
Downloading model.tgz:  18%|█▊        | 1.47G/8.14G [01:05<04:48, 23.1MB/s]
Downloading model.tgz:  18%|█▊        | 1.47G/8.14G [01:05<04:43, 23.5MB/s]
Downloading model.tgz:  18%|█▊        | 1.47G/8.14G [01:05<05:04, 21.9MB/s]
Downloading model.tgz:  18%|█▊        | 1.48G/8.14G [01:05<04:51, 22.9MB/s]
Downloading model.tgz:  18%|█▊        | 1.48G/8.14G [01:05<04:40, 23.7MB/s]
Downloading model.tgz:  18%|█▊        | 1.48G/8.14G [01:05<04:45, 23.4MB/s]
Downloading model.tgz:  18%|█▊        | 1.48G/8.14G [01:05<04:45, 23.3MB/s]
Downloading model.tgz:  18%|█▊        | 1.49G/8.14G [01:06<05:02, 22.0MB/s]
Downloading model.tgz:  18%|█▊        | 1.49G/8.14G [01:06<05:00, 22.1MB/s]
Downloading model.tgz:  18%|█▊        | 1.49G/8.14G [01:06<04:51, 22.8MB/s]
Downloading model.tgz:  18%|█▊        | 1.49G/8.14G [01:06<04:48, 23.1MB/s]
Downloading model.tgz:  18%|█▊        | 1.50G/8.14G [01:06<04:39, 23.8MB/s]
Downloading model.tgz:  18%|█▊        | 1.50G/8.14G [01:06<04:44, 23.4MB/s]
Downloading model.tgz:  18%|█▊        | 1.50G/8.14G [01:06<04:54, 22.5MB/s]
Downloading model.tgz:  18%|█▊        | 1.50G/8.14G [01:06<04:58, 22.2MB/s]
Downloading model.tgz:  18%|█▊        | 1.50G/8.14G [01:06<04:53, 22.6MB/s]
Downloading model.tgz:  19%|█▊        | 1.51G/8.14G [01:06<04:44, 23.3MB/s]
Downloading model.tgz:  19%|█▊        | 1.51G/8.14G [01:07<04:39, 23.7MB/s]
Downloading model.tgz:  19%|█▊        | 1.51G/8.14G [01:07<04:40, 23.6MB/s]
Downloading model.tgz:  19%|█▊        | 1.51G/8.14G [01:07<04:51, 22.7MB/s]
Downloading model.tgz:  19%|█▊        | 1.52G/8.14G [01:07<04:57, 22.3MB/s]
Downloading model.tgz:  19%|█▊        | 1.52G/8.14G [01:07<04:48, 23.0MB/s]
Downloading model.tgz:  19%|█▊        | 1.52G/8.14G [01:07<04:43, 23.3MB/s]
Downloading model.tgz:  19%|█▊        | 1.52G/8.14G [01:07<04:46, 23.1MB/s]
Downloading model.tgz:  19%|█▉        | 1.53G/8.14G [01:07<04:41, 23.5MB/s]
Downloading model.tgz:  19%|█▉        | 1.53G/8.14G [01:07<04:45, 23.2MB/s]
Downloading model.tgz:  19%|█▉        | 1.53G/8.14G [01:08<05:02, 21.8MB/s]
Downloading model.tgz:  19%|█▉        | 1.53G/8.14G [01:08<05:15, 20.9MB/s]
Downloading model.tgz:  19%|█▉        | 1.54G/8.14G [01:08<04:45, 23.1MB/s]
Downloading model.tgz:  19%|█▉        | 1.54G/8.14G [01:08<04:54, 22.4MB/s]
Downloading model.tgz:  19%|█▉        | 1.54G/8.14G [01:08<04:44, 23.2MB/s]
Downloading model.tgz:  19%|█▉        | 1.54G/8.14G [01:08<04:53, 22.5MB/s]
Downloading model.tgz:  19%|█▉        | 1.55G/8.14G [01:08<05:18, 20.7MB/s]
Downloading model.tgz:  19%|█▉        | 1.55G/8.14G [01:08<05:02, 21.8MB/s]
Downloading model.tgz:  19%|█▉        | 1.55G/8.14G [01:08<04:36, 23.8MB/s]
Downloading model.tgz:  19%|█▉        | 1.55G/8.14G [01:09<04:41, 23.4MB/s]
Downloading model.tgz:  19%|█▉        | 1.56G/8.14G [01:09<04:43, 23.3MB/s]
Downloading model.tgz:  19%|█▉        | 1.56G/8.14G [01:09<04:44, 23.1MB/s]
Downloading model.tgz:  19%|█▉        | 1.56G/8.14G [01:09<04:37, 23.7MB/s]
Downloading model.tgz:  19%|█▉        | 1.56G/8.14G [01:09<04:40, 23.4MB/s]
Downloading model.tgz:  19%|█▉        | 1.57G/8.14G [01:09<04:45, 23.1MB/s]
Downloading model.tgz:  19%|█▉        | 1.57G/8.14G [01:09<04:50, 22.6MB/s]
Downloading model.tgz:  19%|█▉        | 1.57G/8.14G [01:09<04:52, 22.5MB/s]
Downloading model.tgz:  19%|█▉        | 1.57G/8.14G [01:09<04:43, 23.2MB/s]
Downloading model.tgz:  19%|█▉        | 1.58G/8.14G [01:09<04:44, 23.1MB/s]
Downloading model.tgz:  19%|█▉        | 1.58G/8.14G [01:10<04:37, 23.6MB/s]
Downloading model.tgz:  19%|█▉        | 1.58G/8.14G [01:10<04:46, 22.9MB/s]
Downloading model.tgz:  19%|█▉        | 1.58G/8.14G [01:10<04:48, 22.7MB/s]
Downloading model.tgz:  19%|█▉        | 1.59G/8.14G [01:10<04:50, 22.6MB/s]
Downloading model.tgz:  20%|█▉        | 1.59G/8.14G [01:10<04:44, 23.0MB/s]
Downloading model.tgz:  20%|█▉        | 1.59G/8.14G [01:10<04:44, 23.0MB/s]
Downloading model.tgz:  20%|█▉        | 1.59G/8.14G [01:10<04:35, 23.8MB/s]
Downloading model.tgz:  20%|█▉        | 1.60G/8.14G [01:10<04:41, 23.3MB/s]
Downloading model.tgz:  20%|█▉        | 1.60G/8.14G [01:10<04:44, 23.0MB/s]
Downloading model.tgz:  20%|█▉        | 1.60G/8.14G [01:11<04:45, 22.9MB/s]
Downloading model.tgz:  20%|█▉        | 1.60G/8.14G [01:11<04:47, 22.7MB/s]
Downloading model.tgz:  20%|█▉        | 1.60G/8.14G [01:11<04:46, 22.8MB/s]
Downloading model.tgz:  20%|█▉        | 1.61G/8.14G [01:11<04:42, 23.1MB/s]
Downloading model.tgz:  20%|█▉        | 1.61G/8.14G [01:11<04:35, 23.7MB/s]
Downloading model.tgz:  20%|█▉        | 1.61G/8.14G [01:11<04:42, 23.1MB/s]
Downloading model.tgz:  20%|█▉        | 1.61G/8.14G [01:11<04:46, 22.8MB/s]
Downloading model.tgz:  20%|█▉        | 1.62G/8.14G [01:11<04:43, 23.0MB/s]
Downloading model.tgz:  20%|█▉        | 1.62G/8.14G [01:11<04:44, 22.9MB/s]
Downloading model.tgz:  20%|█▉        | 1.62G/8.14G [01:11<04:44, 22.9MB/s]
Downloading model.tgz:  20%|█▉        | 1.62G/8.14G [01:12<04:41, 23.2MB/s]
Downloading model.tgz:  20%|█▉        | 1.63G/8.14G [01:12<04:39, 23.3MB/s]
Downloading model.tgz:  20%|██        | 1.63G/8.14G [01:12<04:37, 23.4MB/s]
Downloading model.tgz:  20%|██        | 1.63G/8.14G [01:12<04:43, 23.0MB/s]
Downloading model.tgz:  20%|██        | 1.63G/8.14G [01:12<04:42, 23.0MB/s]
Downloading model.tgz:  20%|██        | 1.64G/8.14G [01:12<04:45, 22.8MB/s]
Downloading model.tgz:  20%|██        | 1.64G/8.14G [01:12<04:44, 22.8MB/s]
Downloading model.tgz:  20%|██        | 1.64G/8.14G [01:12<04:42, 23.0MB/s]
Downloading model.tgz:  20%|██        | 1.64G/8.14G [01:12<04:46, 22.7MB/s]
Downloading model.tgz:  20%|██        | 1.65G/8.14G [01:12<04:39, 23.3MB/s]
Downloading model.tgz:  20%|██        | 1.65G/8.14G [01:13<04:37, 23.4MB/s]
Downloading model.tgz:  20%|██        | 1.65G/8.14G [01:13<04:43, 22.9MB/s]
Downloading model.tgz:  20%|██        | 1.65G/8.14G [01:13<04:41, 23.1MB/s]
Downloading model.tgz:  20%|██        | 1.65G/8.14G [01:13<04:42, 23.0MB/s]
Downloading model.tgz:  20%|██        | 1.66G/8.14G [01:13<04:41, 23.0MB/s]
Downloading model.tgz:  20%|██        | 1.66G/8.14G [01:13<04:52, 22.1MB/s]
Downloading model.tgz:  20%|██        | 1.66G/8.14G [01:13<04:53, 22.1MB/s]
Downloading model.tgz:  20%|██        | 1.66G/8.14G [01:13<04:47, 22.5MB/s]
Downloading model.tgz:  20%|██        | 1.67G/8.14G [01:13<04:34, 23.5MB/s]
Downloading model.tgz:  21%|██        | 1.67G/8.14G [01:14<04:36, 23.4MB/s]
Downloading model.tgz:  21%|██        | 1.67G/8.14G [01:14<04:53, 22.1MB/s]
Downloading model.tgz:  21%|██        | 1.67G/8.14G [01:14<04:49, 22.4MB/s]
Downloading model.tgz:  21%|██        | 1.68G/8.14G [01:14<04:50, 22.2MB/s]
Downloading model.tgz:  21%|██        | 1.68G/8.14G [01:14<04:44, 22.7MB/s]
Downloading model.tgz:  21%|██        | 1.68G/8.14G [01:14<04:35, 23.4MB/s]
Downloading model.tgz:  21%|██        | 1.68G/8.14G [01:14<04:31, 23.7MB/s]
Downloading model.tgz:  21%|██        | 1.69G/8.14G [01:14<04:42, 22.9MB/s]
Downloading model.tgz:  21%|██        | 1.69G/8.14G [01:14<04:57, 21.7MB/s]
Downloading model.tgz:  21%|██        | 1.69G/8.14G [01:14<04:43, 22.7MB/s]
Downloading model.tgz:  21%|██        | 1.69G/8.14G [01:15<04:36, 23.3MB/s]
Downloading model.tgz:  21%|██        | 1.70G/8.14G [01:15<04:29, 23.9MB/s]
Downloading model.tgz:  21%|██        | 1.70G/8.14G [01:15<04:43, 22.8MB/s]
Downloading model.tgz:  21%|██        | 1.70G/8.14G [01:15<04:44, 22.6MB/s]
Downloading model.tgz:  21%|██        | 1.70G/8.14G [01:15<04:48, 22.3MB/s]
Downloading model.tgz:  21%|██        | 1.71G/8.14G [01:15<04:40, 22.9MB/s]
Downloading model.tgz:  21%|██        | 1.71G/8.14G [01:15<04:38, 23.1MB/s]
Downloading model.tgz:  21%|██        | 1.71G/8.14G [01:15<04:29, 23.9MB/s]
Downloading model.tgz:  21%|██        | 1.71G/8.14G [01:15<04:29, 23.8MB/s]
Downloading model.tgz:  21%|██        | 1.72G/8.14G [01:16<04:58, 21.5MB/s]
Downloading model.tgz:  21%|██        | 1.72G/8.14G [01:16<04:49, 22.2MB/s]
Downloading model.tgz:  21%|██        | 1.72G/8.14G [01:16<04:40, 22.9MB/s]
Downloading model.tgz:  21%|██        | 1.72G/8.14G [01:16<04:39, 23.0MB/s]
Downloading model.tgz:  21%|██        | 1.73G/8.14G [01:16<04:27, 24.0MB/s]
Downloading model.tgz:  21%|██        | 1.73G/8.14G [01:16<04:41, 22.8MB/s]
Downloading model.tgz:  21%|██▏       | 1.73G/8.14G [01:16<04:52, 21.9MB/s]
Downloading model.tgz:  21%|██▏       | 1.73G/8.14G [01:16<04:38, 23.0MB/s]
Downloading model.tgz:  21%|██▏       | 1.74G/8.14G [01:16<04:31, 23.6MB/s]
Downloading model.tgz:  21%|██▏       | 1.74G/8.14G [01:16<04:27, 23.9MB/s]
Downloading model.tgz:  21%|██▏       | 1.74G/8.14G [01:17<04:41, 22.7MB/s]
Downloading model.tgz:  21%|██▏       | 1.74G/8.14G [01:17<05:14, 20.4MB/s]
Downloading model.tgz:  21%|██▏       | 1.75G/8.14G [01:17<04:33, 23.4MB/s]
Downloading model.tgz:  21%|██▏       | 1.75G/8.14G [01:17<04:54, 21.7MB/s]
Downloading model.tgz:  22%|██▏       | 1.75G/8.14G [01:17<04:45, 22.4MB/s]
Downloading model.tgz:  22%|██▏       | 1.75G/8.14G [01:17<04:38, 22.9MB/s]
Downloading model.tgz:  22%|██▏       | 1.76G/8.14G [01:17<04:31, 23.5MB/s]
Downloading model.tgz:  22%|██▏       | 1.76G/8.14G [01:17<04:32, 23.4MB/s]
Downloading model.tgz:  22%|██▏       | 1.76G/8.14G [01:18<04:30, 23.6MB/s]
Downloading model.tgz:  22%|██▏       | 1.76G/8.14G [01:18<04:51, 21.9MB/s]
Downloading model.tgz:  22%|██▏       | 1.77G/8.14G [01:18<04:37, 23.0MB/s]
Downloading model.tgz:  22%|██▏       | 1.77G/8.14G [01:18<04:38, 22.9MB/s]
Downloading model.tgz:  22%|██▏       | 1.77G/8.14G [01:18<04:34, 23.2MB/s]
Downloading model.tgz:  22%|██▏       | 1.77G/8.14G [01:18<04:29, 23.7MB/s]
Downloading model.tgz:  22%|██▏       | 1.78G/8.14G [01:18<04:49, 22.0MB/s]
Downloading model.tgz:  22%|██▏       | 1.78G/8.14G [01:18<04:40, 22.7MB/s]
Downloading model.tgz:  22%|██▏       | 1.78G/8.14G [01:18<04:38, 22.8MB/s]
Downloading model.tgz:  22%|██▏       | 1.78G/8.14G [01:18<04:38, 22.8MB/s]
Downloading model.tgz:  22%|██▏       | 1.79G/8.14G [01:19<04:33, 23.3MB/s]
Downloading model.tgz:  22%|██▏       | 1.79G/8.14G [01:19<04:34, 23.2MB/s]
Downloading model.tgz:  22%|██▏       | 1.79G/8.14G [01:19<04:34, 23.1MB/s]
Downloading model.tgz:  22%|██▏       | 1.79G/8.14G [01:19<04:42, 22.4MB/s]
Downloading model.tgz:  22%|██▏       | 1.80G/8.14G [01:19<04:38, 22.8MB/s]
Downloading model.tgz:  22%|██▏       | 1.80G/8.14G [01:19<04:34, 23.1MB/s]
Downloading model.tgz:  22%|██▏       | 1.80G/8.14G [01:19<04:34, 23.1MB/s]
Downloading model.tgz:  22%|██▏       | 1.80G/8.14G [01:19<04:29, 23.5MB/s]
Downloading model.tgz:  22%|██▏       | 1.80G/8.14G [01:19<04:34, 23.1MB/s]
Downloading model.tgz:  22%|██▏       | 1.81G/8.14G [01:20<04:33, 23.1MB/s]
Downloading model.tgz:  22%|██▏       | 1.81G/8.14G [01:20<04:39, 22.6MB/s]
Downloading model.tgz:  22%|██▏       | 1.81G/8.14G [01:20<04:40, 22.6MB/s]
Downloading model.tgz:  22%|██▏       | 1.81G/8.14G [01:20<04:33, 23.1MB/s]
Downloading model.tgz:  22%|██▏       | 1.82G/8.14G [01:20<04:37, 22.8MB/s]
Downloading model.tgz:  22%|██▏       | 1.82G/8.14G [01:20<04:28, 23.5MB/s]
Downloading model.tgz:  22%|██▏       | 1.82G/8.14G [01:20<04:34, 23.0MB/s]
Downloading model.tgz:  22%|██▏       | 1.82G/8.14G [01:20<04:31, 23.2MB/s]
Downloading model.tgz:  22%|██▏       | 1.83G/8.14G [01:20<04:40, 22.5MB/s]
Downloading model.tgz:  22%|██▏       | 1.83G/8.14G [01:20<04:39, 22.6MB/s]
Downloading model.tgz:  22%|██▏       | 1.83G/8.14G [01:21<04:35, 22.9MB/s]
Downloading model.tgz:  23%|██▎       | 1.83G/8.14G [01:21<04:33, 23.1MB/s]
Downloading model.tgz:  23%|██▎       | 1.84G/8.14G [01:21<04:33, 23.1MB/s]
Downloading model.tgz:  23%|██▎       | 1.84G/8.14G [01:21<04:33, 23.1MB/s]
Downloading model.tgz:  23%|██▎       | 1.84G/8.14G [01:21<04:34, 22.9MB/s]
Downloading model.tgz:  23%|██▎       | 1.84G/8.14G [01:21<04:29, 23.3MB/s]
Downloading model.tgz:  23%|██▎       | 1.85G/8.14G [01:21<04:38, 22.6MB/s]
Downloading model.tgz:  23%|██▎       | 1.85G/8.14G [01:21<04:31, 23.2MB/s]
Downloading model.tgz:  23%|██▎       | 1.85G/8.14G [01:21<04:32, 23.1MB/s]
Downloading model.tgz:  23%|██▎       | 1.85G/8.14G [01:21<04:30, 23.3MB/s]
Downloading model.tgz:  23%|██▎       | 1.85G/8.14G [01:22<04:34, 22.9MB/s]
Downloading model.tgz:  23%|██▎       | 1.86G/8.14G [01:22<04:28, 23.4MB/s]
Downloading model.tgz:  23%|██▎       | 1.86G/8.14G [01:22<04:31, 23.1MB/s]
Downloading model.tgz:  23%|██▎       | 1.86G/8.14G [01:22<04:39, 22.4MB/s]
Downloading model.tgz:  23%|██▎       | 1.86G/8.14G [01:22<04:32, 23.0MB/s]
Downloading model.tgz:  23%|██▎       | 1.87G/8.14G [01:22<04:29, 23.3MB/s]
Downloading model.tgz:  23%|██▎       | 1.87G/8.14G [01:22<04:50, 21.6MB/s]
Downloading model.tgz:  23%|██▎       | 1.87G/8.14G [01:22<04:29, 23.2MB/s]
Downloading model.tgz:  23%|██▎       | 1.87G/8.14G [01:22<04:38, 22.5MB/s]
Downloading model.tgz:  23%|██▎       | 1.88G/8.14G [01:23<04:28, 23.3MB/s]
Downloading model.tgz:  23%|██▎       | 1.88G/8.14G [01:23<04:30, 23.2MB/s]
Downloading model.tgz:  23%|██▎       | 1.88G/8.14G [01:23<04:27, 23.4MB/s]
Downloading model.tgz:  23%|██▎       | 1.88G/8.14G [01:23<04:33, 22.9MB/s]
Downloading model.tgz:  23%|██▎       | 1.89G/8.14G [01:23<04:28, 23.3MB/s]
Downloading model.tgz:  23%|██▎       | 1.89G/8.14G [01:23<04:39, 22.4MB/s]
Downloading model.tgz:  23%|██▎       | 1.89G/8.14G [01:23<04:36, 22.6MB/s]
Downloading model.tgz:  23%|██▎       | 1.89G/8.14G [01:23<04:25, 23.5MB/s]
Downloading model.tgz:  23%|██▎       | 1.90G/8.14G [01:23<04:24, 23.6MB/s]
Downloading model.tgz:  23%|██▎       | 1.90G/8.14G [01:24<04:31, 23.0MB/s]
Downloading model.tgz:  23%|██▎       | 1.90G/8.14G [01:24<04:32, 22.9MB/s]
Downloading model.tgz:  23%|██▎       | 1.90G/8.14G [01:24<04:39, 22.3MB/s]
Downloading model.tgz:  23%|██▎       | 1.91G/8.14G [01:24<04:35, 22.6MB/s]
Downloading model.tgz:  23%|██▎       | 1.91G/8.14G [01:24<04:44, 21.9MB/s]
Downloading model.tgz:  23%|██▎       | 1.91G/8.14G [01:24<04:25, 23.4MB/s]
Downloading model.tgz:  24%|██▎       | 1.91G/8.14G [01:24<04:29, 23.1MB/s]
Downloading model.tgz:  24%|██▎       | 1.92G/8.14G [01:24<04:33, 22.8MB/s]
Downloading model.tgz:  24%|██▎       | 1.92G/8.14G [01:24<04:37, 22.4MB/s]
Downloading model.tgz:  24%|██▎       | 1.92G/8.14G [01:24<04:28, 23.2MB/s]
Downloading model.tgz:  24%|██▎       | 1.92G/8.14G [01:25<04:22, 23.7MB/s]
Downloading model.tgz:  24%|██▎       | 1.93G/8.14G [01:25<04:26, 23.4MB/s]
Downloading model.tgz:  24%|██▎       | 1.93G/8.14G [01:25<04:32, 22.8MB/s]
Downloading model.tgz:  24%|██▎       | 1.93G/8.14G [01:25<04:31, 22.9MB/s]
Downloading model.tgz:  24%|██▎       | 1.93G/8.14G [01:25<04:30, 22.9MB/s]
Downloading model.tgz:  24%|██▍       | 1.94G/8.14G [01:25<04:34, 22.6MB/s]
Downloading model.tgz:  24%|██▍       | 1.94G/8.14G [01:25<04:29, 23.0MB/s]
Downloading model.tgz:  24%|██▍       | 1.94G/8.14G [01:25<04:23, 23.6MB/s]
Downloading model.tgz:  24%|██▍       | 1.94G/8.14G [01:25<04:27, 23.1MB/s]
Downloading model.tgz:  24%|██▍       | 1.94G/8.14G [01:26<04:33, 22.6MB/s]
Downloading model.tgz:  24%|██▍       | 1.95G/8.14G [01:26<04:33, 22.6MB/s]
Downloading model.tgz:  24%|██▍       | 1.95G/8.14G [01:26<04:31, 22.8MB/s]
Downloading model.tgz:  24%|██▍       | 1.95G/8.14G [01:26<04:26, 23.2MB/s]
Downloading model.tgz:  24%|██▍       | 1.95G/8.14G [01:26<04:27, 23.1MB/s]
Downloading model.tgz:  24%|██▍       | 1.96G/8.14G [01:26<04:26, 23.2MB/s]
Downloading model.tgz:  24%|██▍       | 1.96G/8.14G [01:26<04:29, 22.9MB/s]
Downloading model.tgz:  24%|██▍       | 1.96G/8.14G [01:26<04:25, 23.2MB/s]
Downloading model.tgz:  24%|██▍       | 1.96G/8.14G [01:26<04:31, 22.7MB/s]
Downloading model.tgz:  24%|██▍       | 1.97G/8.14G [01:26<04:28, 23.0MB/s]
Downloading model.tgz:  24%|██▍       | 1.97G/8.14G [01:27<04:32, 22.7MB/s]
Downloading model.tgz:  24%|██▍       | 1.97G/8.14G [01:27<04:28, 23.0MB/s]
Downloading model.tgz:  24%|██▍       | 1.97G/8.14G [01:27<04:23, 23.4MB/s]
Downloading model.tgz:  24%|██▍       | 1.98G/8.14G [01:27<04:32, 22.6MB/s]
Downloading model.tgz:  24%|██▍       | 1.98G/8.14G [01:27<04:30, 22.8MB/s]
Downloading model.tgz:  24%|██▍       | 1.98G/8.14G [01:27<04:24, 23.3MB/s]
Downloading model.tgz:  24%|██▍       | 1.98G/8.14G [01:27<04:29, 22.8MB/s]
Downloading model.tgz:  24%|██▍       | 1.99G/8.14G [01:27<04:26, 23.1MB/s]
Downloading model.tgz:  24%|██▍       | 1.99G/8.14G [01:27<04:22, 23.4MB/s]
Downloading model.tgz:  24%|██▍       | 1.99G/8.14G [01:27<04:33, 22.5MB/s]
Downloading model.tgz:  24%|██▍       | 1.99G/8.14G [01:28<04:29, 22.8MB/s]
Downloading model.tgz:  25%|██▍       | 2.00G/8.14G [01:28<04:27, 23.0MB/s]
Downloading model.tgz:  25%|██▍       | 2.00G/8.14G [01:28<04:26, 23.1MB/s]
Downloading model.tgz:  25%|██▍       | 2.00G/8.14G [01:28<04:31, 22.6MB/s]
Downloading model.tgz:  25%|██▍       | 2.00G/8.14G [01:28<04:22, 23.4MB/s]
Downloading model.tgz:  25%|██▍       | 2.00G/8.14G [01:28<04:29, 22.8MB/s]
Downloading model.tgz:  25%|██▍       | 2.01G/8.14G [01:28<04:28, 22.8MB/s]
Downloading model.tgz:  25%|██▍       | 2.01G/8.14G [01:28<04:26, 23.0MB/s]
Downloading model.tgz:  25%|██▍       | 2.01G/8.14G [01:28<04:23, 23.2MB/s]
Downloading model.tgz:  25%|██▍       | 2.01G/8.14G [01:29<04:28, 22.8MB/s]
Downloading model.tgz:  25%|██▍       | 2.02G/8.14G [01:29<04:19, 23.6MB/s]
Downloading model.tgz:  25%|██▍       | 2.02G/8.14G [01:29<04:31, 22.6MB/s]
Downloading model.tgz:  25%|██▍       | 2.02G/8.14G [01:29<04:30, 22.6MB/s]
Downloading model.tgz:  25%|██▍       | 2.02G/8.14G [01:29<04:25, 23.0MB/s]
Downloading model.tgz:  25%|██▍       | 2.03G/8.14G [01:29<06:17, 16.2MB/s]
Downloading model.tgz:  25%|██▍       | 2.03G/8.14G [01:29<04:58, 20.5MB/s]
Downloading model.tgz:  25%|██▌       | 2.03G/8.14G [01:29<04:48, 21.2MB/s]
Downloading model.tgz:  25%|██▌       | 2.04G/8.14G [01:30<04:35, 22.2MB/s]
Downloading model.tgz:  25%|██▌       | 2.04G/8.14G [01:30<04:36, 22.0MB/s]
Downloading model.tgz:  25%|██▌       | 2.04G/8.14G [01:30<04:32, 22.4MB/s]
Downloading model.tgz:  25%|██▌       | 2.05G/8.14G [01:30<04:31, 22.5MB/s]
Downloading model.tgz:  25%|██▌       | 2.05G/8.14G [01:30<04:26, 22.9MB/s]
Downloading model.tgz:  25%|██▌       | 2.05G/8.14G [01:30<04:34, 22.2MB/s]
Downloading model.tgz:  25%|██▌       | 2.05G/8.14G [01:30<04:37, 22.0MB/s]
Downloading model.tgz:  25%|██▌       | 2.06G/8.14G [01:30<04:25, 22.9MB/s]
Downloading model.tgz:  25%|██▌       | 2.06G/8.14G [01:30<04:23, 23.1MB/s]
Downloading model.tgz:  25%|██▌       | 2.06G/8.14G [01:31<04:24, 23.0MB/s]
Downloading model.tgz:  25%|██▌       | 2.06G/8.14G [01:31<04:24, 23.0MB/s]
Downloading model.tgz:  25%|██▌       | 2.06G/8.14G [01:31<04:27, 22.7MB/s]
Downloading model.tgz:  25%|██▌       | 2.07G/8.14G [01:31<04:22, 23.2MB/s]
Downloading model.tgz:  25%|██▌       | 2.07G/8.14G [01:31<04:17, 23.5MB/s]
Downloading model.tgz:  25%|██▌       | 2.07G/8.14G [01:31<04:26, 22.8MB/s]
Downloading model.tgz:  25%|██▌       | 2.07G/8.14G [01:31<04:28, 22.6MB/s]
Downloading model.tgz:  26%|██▌       | 2.08G/8.14G [01:31<04:23, 23.0MB/s]
Downloading model.tgz:  26%|██▌       | 2.08G/8.14G [01:31<04:27, 22.7MB/s]
Downloading model.tgz:  26%|██▌       | 2.08G/8.14G [01:31<04:22, 23.1MB/s]
Downloading model.tgz:  26%|██▌       | 2.08G/8.14G [01:32<04:16, 23.6MB/s]
Downloading model.tgz:  26%|██▌       | 2.09G/8.14G [01:32<04:20, 23.2MB/s]
Downloading model.tgz:  26%|██▌       | 2.09G/8.14G [01:32<04:48, 21.0MB/s]
Downloading model.tgz:  26%|██▌       | 2.09G/8.14G [01:32<04:29, 22.5MB/s]
Downloading model.tgz:  26%|██▌       | 2.09G/8.14G [01:32<04:22, 23.1MB/s]
Downloading model.tgz:  26%|██▌       | 2.10G/8.14G [01:32<04:16, 23.6MB/s]
Downloading model.tgz:  26%|██▌       | 2.10G/8.14G [01:32<04:19, 23.3MB/s]
Downloading model.tgz:  26%|██▌       | 2.10G/8.14G [01:32<04:20, 23.2MB/s]
Downloading model.tgz:  26%|██▌       | 2.10G/8.14G [01:32<04:24, 22.8MB/s]
Downloading model.tgz:  26%|██▌       | 2.11G/8.14G [01:33<04:25, 22.7MB/s]
Downloading model.tgz:  26%|██▌       | 2.11G/8.14G [01:33<04:27, 22.5MB/s]
Downloading model.tgz:  26%|██▌       | 2.11G/8.14G [01:33<04:23, 22.9MB/s]
Downloading model.tgz:  26%|██▌       | 2.11G/8.14G [01:33<04:11, 23.9MB/s]
Downloading model.tgz:  26%|██▌       | 2.12G/8.14G [01:33<04:18, 23.3MB/s]
Downloading model.tgz:  26%|██▌       | 2.12G/8.14G [01:33<04:29, 22.3MB/s]
Downloading model.tgz:  26%|██▌       | 2.12G/8.14G [01:33<06:36, 15.2MB/s]
Downloading model.tgz:  26%|██▌       | 2.13G/8.14G [01:33<05:05, 19.7MB/s]
Downloading model.tgz:  26%|██▌       | 2.13G/8.14G [01:34<04:50, 20.7MB/s]
Downloading model.tgz:  26%|██▌       | 2.13G/8.14G [01:34<04:46, 20.9MB/s]
Downloading model.tgz:  26%|██▌       | 2.14G/8.14G [01:34<04:40, 21.4MB/s]
Downloading model.tgz:  26%|██▋       | 2.14G/8.14G [01:34<04:26, 22.5MB/s]
Downloading model.tgz:  26%|██▋       | 2.14G/8.14G [01:34<04:25, 22.6MB/s]
Downloading model.tgz:  26%|██▋       | 2.14G/8.14G [01:34<04:30, 22.2MB/s]
Downloading model.tgz:  26%|██▋       | 2.15G/8.14G [01:34<04:27, 22.4MB/s]
Downloading model.tgz:  26%|██▋       | 2.15G/8.14G [01:34<04:27, 22.4MB/s]
Downloading model.tgz:  26%|██▋       | 2.15G/8.14G [01:34<04:17, 23.3MB/s]
Downloading model.tgz:  26%|██▋       | 2.15G/8.14G [01:35<04:15, 23.4MB/s]
Downloading model.tgz:  26%|██▋       | 2.16G/8.14G [01:35<04:14, 23.5MB/s]
Downloading model.tgz:  27%|██▋       | 2.16G/8.14G [01:35<04:27, 22.4MB/s]
Downloading model.tgz:  27%|██▋       | 2.16G/8.14G [01:35<04:25, 22.5MB/s]
Downloading model.tgz:  27%|██▋       | 2.16G/8.14G [01:35<04:21, 22.9MB/s]
Downloading model.tgz:  27%|██▋       | 2.16G/8.14G [01:35<04:21, 22.8MB/s]
Downloading model.tgz:  27%|██▋       | 2.17G/8.14G [01:35<04:11, 23.7MB/s]
Downloading model.tgz:  27%|██▋       | 2.17G/8.14G [01:35<04:12, 23.7MB/s]
Downloading model.tgz:  27%|██▋       | 2.17G/8.14G [01:35<04:21, 22.8MB/s]
Downloading model.tgz:  27%|██▋       | 2.17G/8.14G [01:35<04:24, 22.6MB/s]
Downloading model.tgz:  27%|██▋       | 2.18G/8.14G [01:36<04:18, 23.0MB/s]
Downloading model.tgz:  27%|██▋       | 2.18G/8.14G [01:36<04:21, 22.8MB/s]
Downloading model.tgz:  27%|██▋       | 2.18G/8.14G [01:36<04:23, 22.6MB/s]
Downloading model.tgz:  27%|██▋       | 2.18G/8.14G [01:36<04:22, 22.7MB/s]
Downloading model.tgz:  27%|██▋       | 2.19G/8.14G [01:36<04:13, 23.5MB/s]
Downloading model.tgz:  27%|██▋       | 2.19G/8.14G [01:36<04:14, 23.4MB/s]
Downloading model.tgz:  27%|██▋       | 2.19G/8.14G [01:36<04:18, 23.0MB/s]
Downloading model.tgz:  27%|██▋       | 2.19G/8.14G [01:36<04:17, 23.1MB/s]
Downloading model.tgz:  27%|██▋       | 2.20G/8.14G [01:36<04:17, 23.1MB/s]
Downloading model.tgz:  27%|██▋       | 2.20G/8.14G [01:37<04:21, 22.7MB/s]
Downloading model.tgz:  27%|██▋       | 2.20G/8.14G [01:37<04:25, 22.4MB/s]
Downloading model.tgz:  27%|██▋       | 2.20G/8.14G [01:37<04:14, 23.4MB/s]
Downloading model.tgz:  27%|██▋       | 2.21G/8.14G [01:37<04:14, 23.3MB/s]
Downloading model.tgz:  27%|██▋       | 2.21G/8.14G [01:37<04:19, 22.9MB/s]
Downloading model.tgz:  27%|██▋       | 2.21G/8.14G [01:37<04:16, 23.1MB/s]
Downloading model.tgz:  27%|██▋       | 2.21G/8.14G [01:37<04:15, 23.2MB/s]
Downloading model.tgz:  27%|██▋       | 2.22G/8.14G [01:37<04:23, 22.5MB/s]
Downloading model.tgz:  27%|██▋       | 2.22G/8.14G [01:37<04:25, 22.3MB/s]
Downloading model.tgz:  27%|██▋       | 2.22G/8.14G [01:37<04:15, 23.2MB/s]
Downloading model.tgz:  27%|██▋       | 2.22G/8.14G [01:38<04:14, 23.3MB/s]
Downloading model.tgz:  27%|██▋       | 2.22G/8.14G [01:38<04:15, 23.1MB/s]
Downloading model.tgz:  27%|██▋       | 2.23G/8.14G [01:38<04:13, 23.3MB/s]
Downloading model.tgz:  27%|██▋       | 2.23G/8.14G [01:38<04:12, 23.4MB/s]
Downloading model.tgz:  27%|██▋       | 2.23G/8.14G [01:38<04:21, 22.6MB/s]
Downloading model.tgz:  27%|██▋       | 2.23G/8.14G [01:38<04:24, 22.3MB/s]
Downloading model.tgz:  27%|██▋       | 2.24G/8.14G [01:38<04:15, 23.1MB/s]
Downloading model.tgz:  28%|██▊       | 2.24G/8.14G [01:38<04:16, 23.0MB/s]
Downloading model.tgz:  28%|██▊       | 2.24G/8.14G [01:38<04:15, 23.1MB/s]
Downloading model.tgz:  28%|██▊       | 2.24G/8.14G [01:38<04:08, 23.7MB/s]
Downloading model.tgz:  28%|██▊       | 2.25G/8.14G [01:39<04:13, 23.2MB/s]
Downloading model.tgz:  28%|██▊       | 2.25G/8.14G [01:39<04:22, 22.4MB/s]
Downloading model.tgz:  28%|██▊       | 2.25G/8.14G [01:39<04:21, 22.6MB/s]
Downloading model.tgz:  28%|██▊       | 2.25G/8.14G [01:39<04:25, 22.1MB/s]
Downloading model.tgz:  28%|██▊       | 2.26G/8.14G [01:39<04:20, 22.6MB/s]
Downloading model.tgz:  28%|██▊       | 2.26G/8.14G [01:39<04:13, 23.2MB/s]
Downloading model.tgz:  28%|██▊       | 2.26G/8.14G [01:39<04:10, 23.5MB/s]
Downloading model.tgz:  28%|██▊       | 2.26G/8.14G [01:39<04:08, 23.6MB/s]
Downloading model.tgz:  28%|██▊       | 2.27G/8.14G [01:39<04:16, 22.9MB/s]
Downloading model.tgz:  28%|██▊       | 2.27G/8.14G [01:40<04:15, 23.0MB/s]
Downloading model.tgz:  28%|██▊       | 2.27G/8.14G [01:40<04:23, 22.3MB/s]
Downloading model.tgz:  28%|██▊       | 2.27G/8.14G [01:40<04:18, 22.7MB/s]
Downloading model.tgz:  28%|██▊       | 2.27G/8.14G [01:40<04:14, 23.0MB/s]
Downloading model.tgz:  28%|██▊       | 2.28G/8.14G [01:40<04:12, 23.2MB/s]
Downloading model.tgz:  28%|██▊       | 2.28G/8.14G [01:40<04:12, 23.2MB/s]
Downloading model.tgz:  28%|██▊       | 2.28G/8.14G [01:40<04:14, 23.1MB/s]
Downloading model.tgz:  28%|██▊       | 2.28G/8.14G [01:40<04:12, 23.2MB/s]
Downloading model.tgz:  28%|██▊       | 2.29G/8.14G [01:40<04:21, 22.4MB/s]
Downloading model.tgz:  28%|██▊       | 2.29G/8.14G [01:40<04:17, 22.8MB/s]
Downloading model.tgz:  28%|██▊       | 2.29G/8.14G [01:41<04:24, 22.1MB/s]
Downloading model.tgz:  28%|██▊       | 2.29G/8.14G [01:41<04:27, 21.8MB/s]
Downloading model.tgz:  28%|██▊       | 2.30G/8.14G [01:41<04:13, 23.0MB/s]
Downloading model.tgz:  28%|██▊       | 2.30G/8.14G [01:41<04:12, 23.1MB/s]
Downloading model.tgz:  28%|██▊       | 2.30G/8.14G [01:41<04:16, 22.8MB/s]
Downloading model.tgz:  28%|██▊       | 2.30G/8.14G [01:41<04:15, 22.9MB/s]
Downloading model.tgz:  28%|██▊       | 2.31G/8.14G [01:41<04:14, 22.9MB/s]
Downloading model.tgz:  28%|██▊       | 2.31G/8.14G [01:41<04:15, 22.9MB/s]
Downloading model.tgz:  28%|██▊       | 2.31G/8.14G [01:41<04:15, 22.8MB/s]
Downloading model.tgz:  28%|██▊       | 2.31G/8.14G [01:42<04:16, 22.7MB/s]
Downloading model.tgz:  28%|██▊       | 2.32G/8.14G [01:42<04:10, 23.2MB/s]
Downloading model.tgz:  28%|██▊       | 2.32G/8.14G [01:42<04:12, 23.1MB/s]
Downloading model.tgz:  29%|██▊       | 2.32G/8.14G [01:42<04:10, 23.3MB/s]
Downloading model.tgz:  29%|██▊       | 2.32G/8.14G [01:42<04:13, 22.9MB/s]
Downloading model.tgz:  29%|██▊       | 2.32G/8.14G [01:42<04:10, 23.2MB/s]
Downloading model.tgz:  29%|██▊       | 2.33G/8.14G [01:42<04:09, 23.3MB/s]
Downloading model.tgz:  29%|██▊       | 2.33G/8.14G [01:42<04:10, 23.2MB/s]
Downloading model.tgz:  29%|██▊       | 2.33G/8.14G [01:42<04:13, 22.9MB/s]
Downloading model.tgz:  29%|██▊       | 2.33G/8.14G [01:42<04:14, 22.8MB/s]
Downloading model.tgz:  29%|██▊       | 2.34G/8.14G [01:43<04:10, 23.1MB/s]
Downloading model.tgz:  29%|██▊       | 2.34G/8.14G [01:43<04:11, 23.0MB/s]
Downloading model.tgz:  29%|██▉       | 2.34G/8.14G [01:43<04:14, 22.8MB/s]
Downloading model.tgz:  29%|██▉       | 2.34G/8.14G [01:43<04:12, 23.0MB/s]
Downloading model.tgz:  29%|██▉       | 2.35G/8.14G [01:43<04:09, 23.2MB/s]
Downloading model.tgz:  29%|██▉       | 2.35G/8.14G [01:43<04:10, 23.1MB/s]
Downloading model.tgz:  29%|██▉       | 2.35G/8.14G [01:43<04:13, 22.8MB/s]
Downloading model.tgz:  29%|██▉       | 2.35G/8.14G [01:43<04:15, 22.7MB/s]
Downloading model.tgz:  29%|██▉       | 2.36G/8.14G [01:43<04:09, 23.2MB/s]
Downloading model.tgz:  29%|██▉       | 2.36G/8.14G [01:43<04:11, 23.0MB/s]
Downloading model.tgz:  29%|██▉       | 2.36G/8.14G [01:44<04:08, 23.3MB/s]
Downloading model.tgz:  29%|██▉       | 2.36G/8.14G [01:44<04:14, 22.7MB/s]
Downloading model.tgz:  29%|██▉       | 2.36G/8.14G [01:44<04:09, 23.2MB/s]
Downloading model.tgz:  29%|██▉       | 2.37G/8.14G [01:44<04:10, 23.0MB/s]
Downloading model.tgz:  29%|██▉       | 2.37G/8.14G [01:44<04:16, 22.5MB/s]
Downloading model.tgz:  29%|██▉       | 2.37G/8.14G [01:44<04:08, 23.2MB/s]
Downloading model.tgz:  29%|██▉       | 2.37G/8.14G [01:44<04:10, 23.0MB/s]
Downloading model.tgz:  29%|██▉       | 2.38G/8.14G [01:44<04:07, 23.3MB/s]
Downloading model.tgz:  29%|██▉       | 2.38G/8.14G [01:44<04:09, 23.1MB/s]
Downloading model.tgz:  29%|██▉       | 2.38G/8.14G [01:45<05:49, 16.5MB/s]
Downloading model.tgz:  29%|██▉       | 2.39G/8.14G [01:45<04:37, 20.7MB/s]
Downloading model.tgz:  29%|██▉       | 2.39G/8.14G [01:45<04:23, 21.8MB/s]
Downloading model.tgz:  29%|██▉       | 2.39G/8.14G [01:45<04:24, 21.8MB/s]
Downloading model.tgz:  29%|██▉       | 2.40G/8.14G [01:45<04:16, 22.4MB/s]
Downloading model.tgz:  29%|██▉       | 2.40G/8.14G [01:45<04:16, 22.4MB/s]
Downloading model.tgz:  29%|██▉       | 2.40G/8.14G [01:45<04:09, 23.0MB/s]
Downloading model.tgz:  30%|██▉       | 2.40G/8.14G [01:45<04:10, 22.9MB/s]
Downloading model.tgz:  30%|██▉       | 2.41G/8.14G [01:46<04:14, 22.5MB/s]
Downloading model.tgz:  30%|██▉       | 2.41G/8.14G [01:46<04:09, 23.0MB/s]
Downloading model.tgz:  30%|██▉       | 2.41G/8.14G [01:46<04:07, 23.1MB/s]
Downloading model.tgz:  30%|██▉       | 2.41G/8.14G [01:46<04:06, 23.2MB/s]
Downloading model.tgz:  30%|██▉       | 2.41G/8.14G [01:46<04:19, 22.1MB/s]
Downloading model.tgz:  30%|██▉       | 2.42G/8.14G [01:46<04:06, 23.2MB/s]
Downloading model.tgz:  30%|██▉       | 2.42G/8.14G [01:46<04:11, 22.8MB/s]
Downloading model.tgz:  30%|██▉       | 2.42G/8.14G [01:46<04:11, 22.7MB/s]
Downloading model.tgz:  30%|██▉       | 2.42G/8.14G [01:46<04:01, 23.6MB/s]
Downloading model.tgz:  30%|██▉       | 2.43G/8.14G [01:46<04:08, 23.0MB/s]
Downloading model.tgz:  30%|██▉       | 2.43G/8.14G [01:47<04:03, 23.4MB/s]
Downloading model.tgz:  30%|██▉       | 2.43G/8.14G [01:47<04:04, 23.3MB/s]
Downloading model.tgz:  30%|██▉       | 2.43G/8.14G [01:47<04:12, 22.6MB/s]
Downloading model.tgz:  30%|██▉       | 2.44G/8.14G [01:47<04:11, 22.6MB/s]
Downloading model.tgz:  30%|██▉       | 2.44G/8.14G [01:47<04:09, 22.9MB/s]
Downloading model.tgz:  30%|██▉       | 2.44G/8.14G [01:47<04:02, 23.5MB/s]
Downloading model.tgz:  30%|███       | 2.44G/8.14G [01:47<04:05, 23.2MB/s]
Downloading model.tgz:  30%|███       | 2.45G/8.14G [01:47<04:06, 23.1MB/s]
Downloading model.tgz:  30%|███       | 2.45G/8.14G [01:47<04:06, 23.1MB/s]
Downloading model.tgz:  30%|███       | 2.45G/8.14G [01:48<04:08, 22.9MB/s]
Downloading model.tgz:  30%|███       | 2.45G/8.14G [01:48<04:11, 22.6MB/s]
Downloading model.tgz:  30%|███       | 2.46G/8.14G [01:48<04:12, 22.5MB/s]
Downloading model.tgz:  30%|███       | 2.46G/8.14G [01:48<04:02, 23.4MB/s]
Downloading model.tgz:  30%|███       | 2.46G/8.14G [01:48<04:02, 23.4MB/s]
Downloading model.tgz:  30%|███       | 2.46G/8.14G [01:48<04:03, 23.3MB/s]
Downloading model.tgz:  30%|███       | 2.47G/8.14G [01:48<04:06, 23.0MB/s]
Downloading model.tgz:  30%|███       | 2.47G/8.14G [01:48<04:05, 23.1MB/s]
Downloading model.tgz:  30%|███       | 2.47G/8.14G [01:48<04:08, 22.8MB/s]
Downloading model.tgz:  30%|███       | 2.47G/8.14G [01:48<04:11, 22.5MB/s]
Downloading model.tgz:  30%|███       | 2.47G/8.14G [01:49<04:05, 23.1MB/s]
Downloading model.tgz:  30%|███       | 2.48G/8.14G [01:49<04:03, 23.2MB/s]
Downloading model.tgz:  30%|███       | 2.48G/8.14G [01:49<04:03, 23.3MB/s]
Downloading model.tgz:  30%|███       | 2.48G/8.14G [01:49<04:05, 23.1MB/s]
Downloading model.tgz:  31%|███       | 2.48G/8.14G [01:49<04:04, 23.1MB/s]
Downloading model.tgz:  31%|███       | 2.49G/8.14G [01:49<04:04, 23.1MB/s]
Downloading model.tgz:  31%|███       | 2.49G/8.14G [01:49<04:12, 22.3MB/s]
Downloading model.tgz:  31%|███       | 2.49G/8.14G [01:49<04:05, 23.0MB/s]
Downloading model.tgz:  31%|███       | 2.49G/8.14G [01:49<04:00, 23.5MB/s]
Downloading model.tgz:  31%|███       | 2.50G/8.14G [01:49<04:07, 22.8MB/s]
Downloading model.tgz:  31%|███       | 2.50G/8.14G [01:50<04:07, 22.8MB/s]
Downloading model.tgz:  31%|███       | 2.50G/8.14G [01:50<04:06, 22.9MB/s]
Downloading model.tgz:  31%|███       | 2.50G/8.14G [01:50<04:06, 22.9MB/s]
Downloading model.tgz:  31%|███       | 2.51G/8.14G [01:50<04:09, 22.6MB/s]
Downloading model.tgz:  31%|███       | 2.51G/8.14G [01:50<04:05, 22.9MB/s]
Downloading model.tgz:  31%|███       | 2.51G/8.14G [01:50<04:00, 23.4MB/s]
Downloading model.tgz:  31%|███       | 2.51G/8.14G [01:50<04:02, 23.2MB/s]
Downloading model.tgz:  31%|███       | 2.52G/8.14G [01:50<04:03, 23.1MB/s]
Downloading model.tgz:  31%|███       | 2.52G/8.14G [01:50<04:04, 23.0MB/s]
Downloading model.tgz:  31%|███       | 2.52G/8.14G [01:50<04:02, 23.1MB/s]
Downloading model.tgz:  31%|███       | 2.52G/8.14G [01:51<04:04, 23.0MB/s]
Downloading model.tgz:  31%|███       | 2.52G/8.14G [01:51<04:07, 22.7MB/s]
Downloading model.tgz:  31%|███       | 2.53G/8.14G [01:51<04:07, 22.7MB/s]
Downloading model.tgz:  31%|███       | 2.53G/8.14G [01:51<03:59, 23.4MB/s]
Downloading model.tgz:  31%|███       | 2.53G/8.14G [01:51<04:00, 23.3MB/s]
Downloading model.tgz:  31%|███       | 2.53G/8.14G [01:51<04:03, 23.0MB/s]
Downloading model.tgz:  31%|███       | 2.54G/8.14G [01:51<04:04, 22.9MB/s]
Downloading model.tgz:  31%|███       | 2.54G/8.14G [01:51<04:01, 23.2MB/s]
Downloading model.tgz:  31%|███       | 2.54G/8.14G [01:51<04:07, 22.6MB/s]
Downloading model.tgz:  31%|███       | 2.54G/8.14G [01:52<04:04, 22.9MB/s]
Downloading model.tgz:  31%|███▏      | 2.55G/8.14G [01:52<04:01, 23.2MB/s]
Downloading model.tgz:  31%|███▏      | 2.55G/8.14G [01:52<04:02, 23.1MB/s]
Downloading model.tgz:  31%|███▏      | 2.55G/8.14G [01:52<04:00, 23.2MB/s]
Downloading model.tgz:  31%|███▏      | 2.55G/8.14G [01:52<04:03, 23.0MB/s]
Downloading model.tgz:  31%|███▏      | 2.56G/8.14G [01:52<04:02, 23.0MB/s]
Downloading model.tgz:  31%|███▏      | 2.56G/8.14G [01:52<04:03, 22.9MB/s]
Downloading model.tgz:  31%|███▏      | 2.56G/8.14G [01:52<04:05, 22.8MB/s]
Downloading model.tgz:  31%|███▏      | 2.56G/8.14G [01:52<04:03, 22.9MB/s]
Downloading model.tgz:  32%|███▏      | 2.56G/8.14G [01:52<04:00, 23.2MB/s]
Downloading model.tgz:  32%|███▏      | 2.57G/8.14G [01:53<04:02, 23.0MB/s]
Downloading model.tgz:  32%|███▏      | 2.57G/8.14G [01:53<04:01, 23.0MB/s]
Downloading model.tgz:  32%|███▏      | 2.57G/8.14G [01:53<04:01, 23.1MB/s]
Downloading model.tgz:  32%|███▏      | 2.57G/8.14G [01:53<04:00, 23.1MB/s]
Downloading model.tgz:  32%|███▏      | 2.58G/8.14G [01:53<04:02, 22.9MB/s]
Downloading model.tgz:  32%|███▏      | 2.58G/8.14G [01:53<04:02, 22.9MB/s]
Downloading model.tgz:  32%|███▏      | 2.58G/8.14G [01:53<04:02, 22.9MB/s]
Downloading model.tgz:  32%|███▏      | 2.58G/8.14G [01:53<03:57, 23.4MB/s]
Downloading model.tgz:  32%|███▏      | 2.59G/8.14G [01:53<04:01, 23.0MB/s]
Downloading model.tgz:  32%|███▏      | 2.59G/8.14G [01:53<04:00, 23.0MB/s]
Downloading model.tgz:  32%|███▏      | 2.59G/8.14G [01:54<04:06, 22.5MB/s]
Downloading model.tgz:  32%|███▏      | 2.59G/8.14G [01:54<04:04, 22.7MB/s]
Downloading model.tgz:  32%|███▏      | 2.60G/8.14G [01:54<03:59, 23.2MB/s]
Downloading model.tgz:  32%|███▏      | 2.60G/8.14G [01:54<03:59, 23.2MB/s]
Downloading model.tgz:  32%|███▏      | 2.60G/8.14G [01:54<04:01, 23.0MB/s]
Downloading model.tgz:  32%|███▏      | 2.60G/8.14G [01:54<03:58, 23.2MB/s]
Downloading model.tgz:  32%|███▏      | 2.60G/8.14G [01:54<04:02, 22.8MB/s]
Downloading model.tgz:  32%|███▏      | 2.61G/8.14G [01:54<04:02, 22.8MB/s]
Downloading model.tgz:  32%|███▏      | 2.61G/8.14G [01:54<04:07, 22.3MB/s]
Downloading model.tgz:  32%|███▏      | 2.61G/8.14G [01:55<03:56, 23.4MB/s]
Downloading model.tgz:  32%|███▏      | 2.61G/8.14G [01:55<04:00, 23.0MB/s]
Downloading model.tgz:  32%|███▏      | 2.62G/8.14G [01:55<03:59, 23.0MB/s]
Downloading model.tgz:  32%|███▏      | 2.62G/8.14G [01:55<03:59, 23.1MB/s]
Downloading model.tgz:  32%|███▏      | 2.62G/8.14G [01:55<04:01, 22.8MB/s]
Downloading model.tgz:  32%|███▏      | 2.62G/8.14G [01:55<04:04, 22.6MB/s]
Downloading model.tgz:  32%|███▏      | 2.63G/8.14G [01:55<04:06, 22.4MB/s]
Downloading model.tgz:  32%|███▏      | 2.63G/8.14G [01:55<04:07, 22.3MB/s]
Downloading model.tgz:  32%|███▏      | 2.63G/8.14G [01:55<03:58, 23.1MB/s]
Downloading model.tgz:  32%|███▏      | 2.63G/8.14G [01:55<03:55, 23.4MB/s]
Downloading model.tgz:  32%|███▏      | 2.64G/8.14G [01:56<03:54, 23.4MB/s]
Downloading model.tgz:  32%|███▏      | 2.64G/8.14G [01:56<04:07, 22.2MB/s]
Downloading model.tgz:  32%|███▏      | 2.64G/8.14G [01:56<04:02, 22.7MB/s]
Downloading model.tgz:  32%|███▏      | 2.64G/8.14G [01:56<04:06, 22.3MB/s]
Downloading model.tgz:  33%|███▎      | 2.65G/8.14G [01:56<03:57, 23.1MB/s]
Downloading model.tgz:  33%|███▎      | 2.65G/8.14G [01:56<03:54, 23.4MB/s]
Downloading model.tgz:  33%|███▎      | 2.65G/8.14G [01:56<03:53, 23.6MB/s]
Downloading model.tgz:  33%|███▎      | 2.65G/8.14G [01:56<04:07, 22.2MB/s]
Downloading model.tgz:  33%|███▎      | 2.66G/8.14G [01:56<04:03, 22.5MB/s]
Downloading model.tgz:  33%|███▎      | 2.66G/8.14G [01:57<04:01, 22.7MB/s]
Downloading model.tgz:  33%|███▎      | 2.66G/8.14G [01:57<03:58, 23.0MB/s]
Downloading model.tgz:  33%|███▎      | 2.66G/8.14G [01:57<03:56, 23.2MB/s]
Downloading model.tgz:  33%|███▎      | 2.66G/8.14G [01:57<03:52, 23.6MB/s]
Downloading model.tgz:  33%|███▎      | 2.67G/8.14G [01:57<03:53, 23.4MB/s]
Downloading model.tgz:  33%|███▎      | 2.67G/8.14G [01:57<04:02, 22.5MB/s]
Downloading model.tgz:  33%|███▎      | 2.67G/8.14G [01:57<04:00, 22.7MB/s]
Downloading model.tgz:  33%|███▎      | 2.67G/8.14G [01:57<03:59, 22.8MB/s]
Downloading model.tgz:  33%|███▎      | 2.68G/8.14G [01:57<03:56, 23.1MB/s]
Downloading model.tgz:  33%|███▎      | 2.68G/8.14G [01:57<03:56, 23.1MB/s]
Downloading model.tgz:  33%|███▎      | 2.68G/8.14G [01:58<03:49, 23.8MB/s]
Downloading model.tgz:  33%|███▎      | 2.68G/8.14G [01:58<04:02, 22.5MB/s]
Downloading model.tgz:  33%|███▎      | 2.69G/8.14G [01:58<04:02, 22.5MB/s]
Downloading model.tgz:  33%|███▎      | 2.69G/8.14G [01:58<03:56, 23.1MB/s]
Downloading model.tgz:  33%|███▎      | 2.69G/8.14G [01:58<03:57, 23.0MB/s]
Downloading model.tgz:  33%|███▎      | 2.69G/8.14G [01:58<03:59, 22.7MB/s]
Downloading model.tgz:  33%|███▎      | 2.70G/8.14G [01:58<03:55, 23.1MB/s]
Downloading model.tgz:  33%|███▎      | 2.70G/8.14G [01:58<03:55, 23.1MB/s]
Downloading model.tgz:  33%|███▎      | 2.70G/8.14G [01:58<04:08, 21.9MB/s]
Downloading model.tgz:  33%|███▎      | 2.70G/8.14G [01:58<03:58, 22.8MB/s]
Downloading model.tgz:  33%|███▎      | 2.71G/8.14G [01:59<03:51, 23.5MB/s]
Downloading model.tgz:  33%|███▎      | 2.71G/8.14G [01:59<03:54, 23.1MB/s]
Downloading model.tgz:  33%|███▎      | 2.71G/8.14G [01:59<03:54, 23.1MB/s]
Downloading model.tgz:  33%|███▎      | 2.71G/8.14G [01:59<03:54, 23.2MB/s]
Downloading model.tgz:  33%|███▎      | 2.72G/8.14G [01:59<04:11, 21.6MB/s]
Downloading model.tgz:  33%|███▎      | 2.72G/8.14G [01:59<03:58, 22.7MB/s]
Downloading model.tgz:  33%|███▎      | 2.72G/8.14G [01:59<03:51, 23.4MB/s]
Downloading model.tgz:  33%|███▎      | 2.72G/8.14G [01:59<03:56, 22.9MB/s]
Downloading model.tgz:  33%|███▎      | 2.73G/8.14G [01:59<03:55, 23.0MB/s]
Downloading model.tgz:  34%|███▎      | 2.73G/8.14G [02:00<04:09, 21.7MB/s]
Downloading model.tgz:  34%|███▎      | 2.73G/8.14G [02:00<03:57, 22.8MB/s]
Downloading model.tgz:  34%|███▎      | 2.73G/8.14G [02:00<03:49, 23.5MB/s]
Downloading model.tgz:  34%|███▎      | 2.74G/8.14G [02:00<03:49, 23.6MB/s]
Downloading model.tgz:  34%|███▎      | 2.74G/8.14G [02:00<03:56, 22.9MB/s]
Downloading model.tgz:  34%|███▎      | 2.74G/8.14G [02:00<04:15, 21.2MB/s]
Downloading model.tgz:  34%|███▎      | 2.74G/8.14G [02:00<04:05, 22.0MB/s]
Downloading model.tgz:  34%|███▎      | 2.75G/8.14G [02:00<03:49, 23.5MB/s]
Downloading model.tgz:  34%|███▍      | 2.75G/8.14G [02:00<03:45, 23.9MB/s]
Downloading model.tgz:  34%|███▍      | 2.75G/8.14G [02:01<03:49, 23.5MB/s]
Downloading model.tgz:  34%|███▍      | 2.75G/8.14G [02:01<04:05, 21.9MB/s]
Downloading model.tgz:  34%|███▍      | 2.75G/8.14G [02:01<04:08, 21.7MB/s]
Downloading model.tgz:  34%|███▍      | 2.76G/8.14G [02:01<04:14, 21.2MB/s]
Downloading model.tgz:  34%|███▍      | 2.76G/8.14G [02:01<04:14, 21.2MB/s]
Downloading model.tgz:  34%|███▍      | 2.76G/8.14G [02:01<04:09, 21.5MB/s]
Downloading model.tgz:  34%|███▍      | 2.76G/8.14G [02:01<03:54, 23.0MB/s]
Downloading model.tgz:  34%|███▍      | 2.77G/8.14G [02:01<03:53, 23.0MB/s]
Downloading model.tgz:  34%|███▍      | 2.77G/8.14G [02:01<03:55, 22.8MB/s]
Downloading model.tgz:  34%|███▍      | 2.77G/8.14G [02:02<03:44, 23.9MB/s]
Downloading model.tgz:  34%|███▍      | 2.77G/8.14G [02:02<03:50, 23.3MB/s]
Downloading model.tgz:  34%|███▍      | 2.78G/8.14G [02:02<03:52, 23.1MB/s]
Downloading model.tgz:  34%|███▍      | 2.78G/8.14G [02:02<04:01, 22.2MB/s]
Downloading model.tgz:  34%|███▍      | 2.78G/8.14G [02:02<04:00, 22.3MB/s]
Downloading model.tgz:  34%|███▍      | 2.78G/8.14G [02:02<03:51, 23.1MB/s]
Downloading model.tgz:  34%|███▍      | 2.79G/8.14G [02:02<03:52, 23.0MB/s]
Downloading model.tgz:  34%|███▍      | 2.79G/8.14G [02:02<03:41, 24.1MB/s]
Downloading model.tgz:  34%|███▍      | 2.79G/8.14G [02:02<03:48, 23.4MB/s]
Downloading model.tgz:  34%|███▍      | 2.79G/8.14G [02:02<04:01, 22.2MB/s]
Downloading model.tgz:  34%|███▍      | 2.80G/8.14G [02:03<03:56, 22.6MB/s]
Downloading model.tgz:  34%|███▍      | 2.80G/8.14G [02:03<03:58, 22.4MB/s]
Downloading model.tgz:  34%|███▍      | 2.80G/8.14G [02:03<03:49, 23.2MB/s]
Downloading model.tgz:  34%|███▍      | 2.80G/8.14G [02:03<03:44, 23.7MB/s]
Downloading model.tgz:  34%|███▍      | 2.81G/8.14G [02:03<03:54, 22.7MB/s]
Downloading model.tgz:  35%|███▍      | 2.81G/8.14G [02:03<03:59, 22.3MB/s]
Downloading model.tgz:  35%|███▍      | 2.81G/8.14G [02:03<03:53, 22.8MB/s]
Downloading model.tgz:  35%|███▍      | 2.81G/8.14G [02:03<03:57, 22.4MB/s]
Downloading model.tgz:  35%|███▍      | 2.82G/8.14G [02:03<03:47, 23.4MB/s]
Downloading model.tgz:  35%|███▍      | 2.82G/8.14G [02:04<03:42, 23.9MB/s]
Downloading model.tgz:  35%|███▍      | 2.82G/8.14G [02:04<03:57, 22.4MB/s]
Downloading model.tgz:  35%|███▍      | 2.82G/8.14G [02:04<03:57, 22.4MB/s]
Downloading model.tgz:  35%|███▍      | 2.83G/8.14G [02:04<03:56, 22.4MB/s]
Downloading model.tgz:  35%|███▍      | 2.83G/8.14G [02:04<03:53, 22.8MB/s]
Downloading model.tgz:  35%|███▍      | 2.83G/8.14G [02:04<03:47, 23.3MB/s]
Downloading model.tgz:  35%|███▍      | 2.83G/8.14G [02:04<03:45, 23.5MB/s]
Downloading model.tgz:  35%|███▍      | 2.84G/8.14G [02:04<03:50, 23.0MB/s]
Downloading model.tgz:  35%|███▍      | 2.84G/8.14G [02:04<03:54, 22.6MB/s]
Downloading model.tgz:  35%|███▍      | 2.84G/8.14G [02:04<03:53, 22.7MB/s]
Downloading model.tgz:  35%|███▍      | 2.84G/8.14G [02:05<03:48, 23.1MB/s]
Downloading model.tgz:  35%|███▍      | 2.85G/8.14G [02:05<03:53, 22.6MB/s]
Downloading model.tgz:  35%|███▍      | 2.85G/8.14G [02:05<03:48, 23.2MB/s]
Downloading model.tgz:  35%|███▌      | 2.85G/8.14G [02:05<03:49, 23.1MB/s]
Downloading model.tgz:  35%|███▌      | 2.85G/8.14G [02:05<03:48, 23.1MB/s]
Downloading model.tgz:  35%|███▌      | 2.85G/8.14G [02:05<03:49, 23.0MB/s]
Downloading model.tgz:  35%|███▌      | 2.86G/8.14G [02:05<03:52, 22.7MB/s]
Downloading model.tgz:  35%|███▌      | 2.86G/8.14G [02:05<03:49, 23.0MB/s]
Downloading model.tgz:  35%|███▌      | 2.86G/8.14G [02:05<03:54, 22.5MB/s]
Downloading model.tgz:  35%|███▌      | 2.86G/8.14G [02:06<03:54, 22.5MB/s]
Downloading model.tgz:  35%|███▌      | 2.87G/8.14G [02:06<03:46, 23.2MB/s]
Downloading model.tgz:  35%|███▌      | 2.87G/8.14G [02:06<03:47, 23.2MB/s]
Downloading model.tgz:  35%|███▌      | 2.87G/8.14G [02:06<03:47, 23.1MB/s]
Downloading model.tgz:  35%|███▌      | 2.87G/8.14G [02:06<03:48, 23.1MB/s]
Downloading model.tgz:  35%|███▌      | 2.88G/8.14G [02:06<03:48, 23.0MB/s]
Downloading model.tgz:  35%|███▌      | 2.88G/8.14G [02:06<03:52, 22.7MB/s]
Downloading model.tgz:  35%|███▌      | 2.88G/8.14G [02:06<03:51, 22.7MB/s]
Downloading model.tgz:  35%|███▌      | 2.88G/8.14G [02:06<03:49, 22.9MB/s]
Downloading model.tgz:  35%|███▌      | 2.89G/8.14G [02:06<03:47, 23.1MB/s]
Downloading model.tgz:  35%|███▌      | 2.89G/8.14G [02:07<03:42, 23.6MB/s]
Downloading model.tgz:  36%|███▌      | 2.89G/8.14G [02:07<03:46, 23.2MB/s]
Downloading model.tgz:  36%|███▌      | 2.89G/8.14G [02:07<03:44, 23.3MB/s]
Downloading model.tgz:  36%|███▌      | 2.90G/8.14G [02:07<03:55, 22.3MB/s]
Downloading model.tgz:  36%|███▌      | 2.90G/8.14G [02:07<03:49, 22.8MB/s]
Downloading model.tgz:  36%|███▌      | 2.90G/8.14G [02:07<03:49, 22.8MB/s]
Downloading model.tgz:  36%|███▌      | 2.90G/8.14G [02:07<03:50, 22.7MB/s]
Downloading model.tgz:  36%|███▌      | 2.91G/8.14G [02:07<03:40, 23.7MB/s]
Downloading model.tgz:  36%|███▌      | 2.91G/8.14G [02:07<03:41, 23.6MB/s]
Downloading model.tgz:  36%|███▌      | 2.91G/8.14G [02:07<03:45, 23.2MB/s]
Downloading model.tgz:  36%|███▌      | 2.91G/8.14G [02:08<03:53, 22.4MB/s]
Downloading model.tgz:  36%|███▌      | 2.91G/8.14G [02:08<03:51, 22.6MB/s]
Downloading model.tgz:  36%|███▌      | 2.92G/8.14G [02:08<03:48, 22.9MB/s]
Downloading model.tgz:  36%|███▌      | 2.92G/8.14G [02:08<03:49, 22.7MB/s]
Downloading model.tgz:  36%|███▌      | 2.92G/8.14G [02:08<03:46, 23.1MB/s]
Downloading model.tgz:  36%|███▌      | 2.92G/8.14G [02:08<03:45, 23.1MB/s]
Downloading model.tgz:  36%|███▌      | 2.93G/8.14G [02:08<03:40, 23.7MB/s]
Downloading model.tgz:  36%|███▌      | 2.93G/8.14G [02:08<03:50, 22.6MB/s]
Downloading model.tgz:  36%|███▌      | 2.93G/8.14G [02:08<03:48, 22.7MB/s]
Downloading model.tgz:  36%|███▌      | 2.93G/8.14G [02:09<03:47, 22.9MB/s]
Downloading model.tgz:  36%|███▌      | 2.94G/8.14G [02:09<03:51, 22.5MB/s]
Downloading model.tgz:  36%|███▌      | 2.94G/8.14G [02:09<03:48, 22.7MB/s]
Downloading model.tgz:  36%|███▌      | 2.94G/8.14G [02:09<03:39, 23.7MB/s]
Downloading model.tgz:  36%|███▌      | 2.94G/8.14G [02:09<03:43, 23.2MB/s]
Downloading model.tgz:  36%|███▌      | 2.95G/8.14G [02:09<03:47, 22.8MB/s]
Downloading model.tgz:  36%|███▌      | 2.95G/8.14G [02:09<03:45, 23.0MB/s]
Downloading model.tgz:  36%|███▌      | 2.95G/8.14G [02:09<03:48, 22.7MB/s]
Downloading model.tgz:  36%|███▋      | 2.95G/8.14G [02:09<03:50, 22.5MB/s]
Downloading model.tgz:  36%|███▋      | 2.96G/8.14G [02:09<03:45, 23.0MB/s]
Downloading model.tgz:  36%|███▋      | 2.96G/8.14G [02:10<03:43, 23.2MB/s]
Downloading model.tgz:  36%|███▋      | 2.96G/8.14G [02:10<05:43, 15.1MB/s]
Downloading model.tgz:  36%|███▋      | 2.97G/8.14G [02:10<04:23, 19.6MB/s]
Downloading model.tgz:  36%|███▋      | 2.97G/8.14G [02:10<04:15, 20.2MB/s]
Downloading model.tgz:  37%|███▋      | 2.97G/8.14G [02:10<04:00, 21.5MB/s]
Downloading model.tgz:  37%|███▋      | 2.98G/8.14G [02:10<04:04, 21.1MB/s]
Downloading model.tgz:  37%|███▋      | 2.98G/8.14G [02:10<03:56, 21.8MB/s]
Downloading model.tgz:  37%|███▋      | 2.98G/8.14G [02:11<03:48, 22.5MB/s]
Downloading model.tgz:  37%|███▋      | 2.98G/8.14G [02:11<03:42, 23.2MB/s]
Downloading model.tgz:  37%|███▋      | 2.99G/8.14G [02:11<03:44, 22.9MB/s]
Downloading model.tgz:  37%|███▋      | 2.99G/8.14G [02:11<03:54, 21.9MB/s]
Downloading model.tgz:  37%|███▋      | 2.99G/8.14G [02:11<03:51, 22.3MB/s]
Downloading model.tgz:  37%|███▋      | 2.99G/8.14G [02:11<03:45, 22.8MB/s]
Downloading model.tgz:  37%|███▋      | 3.00G/8.14G [02:11<03:47, 22.6MB/s]
Downloading model.tgz:  37%|███▋      | 3.00G/8.14G [02:11<03:38, 23.5MB/s]
Downloading model.tgz:  37%|███▋      | 3.00G/8.14G [02:11<03:41, 23.2MB/s]
Downloading model.tgz:  37%|███▋      | 3.00G/8.14G [02:12<03:47, 22.5MB/s]
Downloading model.tgz:  37%|███▋      | 3.01G/8.14G [02:12<03:41, 23.1MB/s]
Downloading model.tgz:  37%|███▋      | 3.01G/8.14G [02:12<03:43, 22.9MB/s]
Downloading model.tgz:  37%|███▋      | 3.01G/8.14G [02:12<03:45, 22.8MB/s]
Downloading model.tgz:  37%|███▋      | 3.01G/8.14G [02:12<03:35, 23.8MB/s]
Downloading model.tgz:  37%|███▋      | 3.01G/8.14G [02:12<03:41, 23.2MB/s]
Downloading model.tgz:  37%|███▋      | 3.02G/8.14G [02:12<03:44, 22.8MB/s]
Downloading model.tgz:  37%|███▋      | 3.02G/8.14G [02:12<03:47, 22.5MB/s]
Downloading model.tgz:  37%|███▋      | 3.02G/8.14G [02:12<03:44, 22.8MB/s]
Downloading model.tgz:  37%|███▋      | 3.02G/8.14G [02:12<03:44, 22.8MB/s]
Downloading model.tgz:  37%|███▋      | 3.03G/8.14G [02:13<03:38, 23.4MB/s]
Downloading model.tgz:  37%|███▋      | 3.03G/8.14G [02:13<03:34, 23.8MB/s]
Downloading model.tgz:  37%|███▋      | 3.03G/8.14G [02:13<03:44, 22.8MB/s]
Downloading model.tgz:  37%|███▋      | 3.03G/8.14G [02:13<03:43, 22.9MB/s]
Downloading model.tgz:  37%|███▋      | 3.04G/8.14G [02:13<03:45, 22.6MB/s]
Downloading model.tgz:  37%|███▋      | 3.04G/8.14G [02:13<03:45, 22.6MB/s]
Downloading model.tgz:  37%|███▋      | 3.04G/8.14G [02:13<03:44, 22.7MB/s]
Downloading model.tgz:  37%|███▋      | 3.04G/8.14G [02:13<03:40, 23.1MB/s]
Downloading model.tgz:  37%|███▋      | 3.05G/8.14G [02:13<03:35, 23.6MB/s]
Downloading model.tgz:  37%|███▋      | 3.05G/8.14G [02:14<03:36, 23.5MB/s]
Downloading model.tgz:  37%|███▋      | 3.05G/8.14G [02:14<04:16, 19.8MB/s]
Downloading model.tgz:  38%|███▊      | 3.05G/8.14G [02:14<03:41, 22.9MB/s]
Downloading model.tgz:  38%|███▊      | 3.06G/8.14G [02:14<03:41, 22.9MB/s]
Downloading model.tgz:  38%|███▊      | 3.06G/8.14G [02:14<03:46, 22.4MB/s]
Downloading model.tgz:  38%|███▊      | 3.06G/8.14G [02:14<03:47, 22.4MB/s]
Downloading model.tgz:  38%|███▊      | 3.06G/8.14G [02:14<03:43, 22.7MB/s]
Downloading model.tgz:  38%|███▊      | 3.07G/8.14G [02:14<03:36, 23.4MB/s]
Downloading model.tgz:  38%|███▊      | 3.07G/8.14G [02:14<03:37, 23.3MB/s]
Downloading model.tgz:  38%|███▊      | 3.07G/8.14G [02:15<03:37, 23.3MB/s]
Downloading model.tgz:  38%|███▊      | 3.07G/8.14G [02:15<03:45, 22.5MB/s]
Downloading model.tgz:  38%|███▊      | 3.08G/8.14G [02:15<03:41, 22.9MB/s]
Downloading model.tgz:  38%|███▊      | 3.08G/8.14G [02:15<03:44, 22.6MB/s]
Downloading model.tgz:  38%|███▊      | 3.08G/8.14G [02:15<03:45, 22.5MB/s]
Downloading model.tgz:  38%|███▊      | 3.08G/8.14G [02:15<03:58, 21.2MB/s]
Downloading model.tgz:  38%|███▊      | 3.09G/8.14G [02:15<03:36, 23.4MB/s]
Downloading model.tgz:  38%|███▊      | 3.09G/8.14G [02:15<03:37, 23.2MB/s]
Downloading model.tgz:  38%|███▊      | 3.09G/8.14G [02:15<03:47, 22.2MB/s]
Downloading model.tgz:  38%|███▊      | 3.09G/8.14G [02:15<03:42, 22.7MB/s]
Downloading model.tgz:  38%|███▊      | 3.10G/8.14G [02:16<03:36, 23.3MB/s]
Downloading model.tgz:  38%|███▊      | 3.10G/8.14G [02:16<03:30, 24.0MB/s]
Downloading model.tgz:  38%|███▊      | 3.10G/8.14G [02:16<03:38, 23.1MB/s]
Downloading model.tgz:  38%|███▊      | 3.10G/8.14G [02:16<03:39, 22.9MB/s]
Downloading model.tgz:  38%|███▊      | 3.11G/8.14G [02:16<03:49, 22.0MB/s]
Downloading model.tgz:  38%|███▊      | 3.11G/8.14G [02:16<03:38, 23.1MB/s]
Downloading model.tgz:  38%|███▊      | 3.11G/8.14G [02:16<03:37, 23.1MB/s]
Downloading model.tgz:  38%|███▊      | 3.11G/8.14G [02:16<03:33, 23.6MB/s]
Downloading model.tgz:  38%|███▊      | 3.12G/8.14G [02:16<03:35, 23.3MB/s]
Downloading model.tgz:  38%|███▊      | 3.12G/8.14G [02:17<03:37, 23.1MB/s]
Downloading model.tgz:  38%|███▊      | 3.12G/8.14G [02:17<03:44, 22.4MB/s]
Downloading model.tgz:  38%|███▊      | 3.12G/8.14G [02:17<03:42, 22.6MB/s]
Downloading model.tgz:  38%|███▊      | 3.13G/8.14G [02:17<03:37, 23.1MB/s]
Downloading model.tgz:  38%|███▊      | 3.13G/8.14G [02:17<03:31, 23.7MB/s]
Downloading model.tgz:  38%|███▊      | 3.13G/8.14G [02:17<03:33, 23.5MB/s]
Downloading model.tgz:  38%|███▊      | 3.13G/8.14G [02:17<03:35, 23.2MB/s]
Downloading model.tgz:  39%|███▊      | 3.14G/8.14G [02:17<03:44, 22.3MB/s]
Downloading model.tgz:  39%|███▊      | 3.14G/8.14G [02:17<03:40, 22.7MB/s]
Downloading model.tgz:  39%|███▊      | 3.14G/8.14G [02:17<03:35, 23.2MB/s]
Downloading model.tgz:  39%|███▊      | 3.14G/8.14G [02:18<03:32, 23.6MB/s]
Downloading model.tgz:  39%|███▊      | 3.14G/8.14G [02:18<03:31, 23.6MB/s]
Downloading model.tgz:  39%|███▊      | 3.15G/8.14G [02:18<03:36, 23.1MB/s]
Downloading model.tgz:  39%|███▊      | 3.15G/8.14G [02:18<03:35, 23.1MB/s]
Downloading model.tgz:  39%|███▊      | 3.15G/8.14G [02:18<03:41, 22.5MB/s]
Downloading model.tgz:  39%|███▊      | 3.15G/8.14G [02:18<03:39, 22.7MB/s]
Downloading model.tgz:  39%|███▉      | 3.16G/8.14G [02:18<03:37, 22.9MB/s]
Downloading model.tgz:  39%|███▉      | 3.16G/8.14G [02:18<03:38, 22.8MB/s]
Downloading model.tgz:  39%|███▉      | 3.16G/8.14G [02:18<03:27, 24.0MB/s]
Downloading model.tgz:  39%|███▉      | 3.16G/8.14G [02:19<03:37, 22.8MB/s]
Downloading model.tgz:  39%|███▉      | 3.17G/8.14G [02:19<03:42, 22.3MB/s]
Downloading model.tgz:  39%|███▉      | 3.17G/8.14G [02:19<03:34, 23.1MB/s]
Downloading model.tgz:  39%|███▉      | 3.17G/8.14G [02:19<03:34, 23.2MB/s]
Downloading model.tgz:  39%|███▉      | 3.17G/8.14G [02:19<03:35, 23.0MB/s]
Downloading model.tgz:  39%|███▉      | 3.18G/8.14G [02:19<03:27, 23.9MB/s]
Downloading model.tgz:  39%|███▉      | 3.18G/8.14G [02:19<03:36, 22.9MB/s]
Downloading model.tgz:  39%|███▉      | 3.18G/8.14G [02:19<03:39, 22.6MB/s]
Downloading model.tgz:  39%|███▉      | 3.18G/8.14G [02:19<03:34, 23.1MB/s]
Downloading model.tgz:  39%|███▉      | 3.19G/8.14G [02:19<03:35, 23.0MB/s]
Downloading model.tgz:  39%|███▉      | 3.19G/8.14G [02:20<03:37, 22.8MB/s]
Downloading model.tgz:  39%|███▉      | 3.19G/8.14G [02:20<03:29, 23.6MB/s]
Downloading model.tgz:  39%|███▉      | 3.19G/8.14G [02:20<03:31, 23.4MB/s]
Downloading model.tgz:  39%|███▉      | 3.20G/8.14G [02:20<03:42, 22.2MB/s]
Downloading model.tgz:  39%|███▉      | 3.20G/8.14G [02:20<03:43, 22.1MB/s]
Downloading model.tgz:  39%|███▉      | 3.20G/8.14G [02:20<03:35, 22.9MB/s]
Downloading model.tgz:  39%|███▉      | 3.20G/8.14G [02:20<03:32, 23.2MB/s]
Downloading model.tgz:  39%|███▉      | 3.21G/8.14G [02:20<03:33, 23.1MB/s]
Downloading model.tgz:  39%|███▉      | 3.21G/8.14G [02:20<03:32, 23.2MB/s]
Downloading model.tgz:  39%|███▉      | 3.21G/8.14G [02:21<03:31, 23.3MB/s]
Downloading model.tgz:  39%|███▉      | 3.21G/8.14G [02:21<03:33, 23.1MB/s]
Downloading model.tgz:  39%|███▉      | 3.21G/8.14G [02:21<03:41, 22.2MB/s]
Downloading model.tgz:  40%|███▉      | 3.22G/8.14G [02:21<03:40, 22.3MB/s]
Downloading model.tgz:  40%|███▉      | 3.22G/8.14G [02:21<03:32, 23.2MB/s]
Downloading model.tgz:  40%|███▉      | 3.22G/8.14G [02:21<03:28, 23.5MB/s]
Downloading model.tgz:  40%|███▉      | 3.22G/8.14G [02:21<03:41, 22.2MB/s]
Downloading model.tgz:  40%|███▉      | 3.23G/8.14G [02:21<03:32, 23.1MB/s]
Downloading model.tgz:  40%|███▉      | 3.23G/8.14G [02:21<03:36, 22.6MB/s]
Downloading model.tgz:  40%|███▉      | 3.23G/8.14G [02:21<03:29, 23.4MB/s]
Downloading model.tgz:  40%|███▉      | 3.23G/8.14G [02:22<03:29, 23.4MB/s]
Downloading model.tgz:  40%|███▉      | 3.24G/8.14G [02:22<03:28, 23.6MB/s]
Downloading model.tgz:  40%|███▉      | 3.24G/8.14G [02:22<03:30, 23.3MB/s]
Downloading model.tgz:  40%|███▉      | 3.24G/8.14G [02:22<03:33, 23.0MB/s]
Downloading model.tgz:  40%|███▉      | 3.24G/8.14G [02:22<03:35, 22.7MB/s]
Downloading model.tgz:  40%|███▉      | 3.25G/8.14G [02:22<03:37, 22.5MB/s]
Downloading model.tgz:  40%|███▉      | 3.25G/8.14G [02:22<03:29, 23.4MB/s]
Downloading model.tgz:  40%|███▉      | 3.25G/8.14G [02:22<03:33, 22.9MB/s]
Downloading model.tgz:  40%|███▉      | 3.25G/8.14G [02:22<03:28, 23.4MB/s]
Downloading model.tgz:  40%|███▉      | 3.26G/8.14G [02:23<03:28, 23.5MB/s]
Downloading model.tgz:  40%|████      | 3.26G/8.14G [02:23<03:37, 22.4MB/s]
Downloading model.tgz:  40%|████      | 3.26G/8.14G [02:23<03:35, 22.7MB/s]
Downloading model.tgz:  40%|████      | 3.26G/8.14G [02:23<03:32, 23.0MB/s]
Downloading model.tgz:  40%|████      | 3.27G/8.14G [02:23<03:33, 22.9MB/s]
Downloading model.tgz:  40%|████      | 3.27G/8.14G [02:23<03:30, 23.1MB/s]
Downloading model.tgz:  40%|████      | 3.27G/8.14G [02:23<03:26, 23.5MB/s]
Downloading model.tgz:  40%|████      | 3.27G/8.14G [02:23<03:30, 23.1MB/s]
Downloading model.tgz:  40%|████      | 3.27G/8.14G [02:23<03:32, 22.9MB/s]
Downloading model.tgz:  40%|████      | 3.28G/8.14G [02:23<03:35, 22.6MB/s]
Downloading model.tgz:  40%|████      | 3.28G/8.14G [02:24<03:30, 23.1MB/s]
Downloading model.tgz:  40%|████      | 3.28G/8.14G [02:24<03:33, 22.8MB/s]
Downloading model.tgz:  40%|████      | 3.28G/8.14G [02:24<03:27, 23.4MB/s]
Downloading model.tgz:  40%|████      | 3.29G/8.14G [02:24<03:27, 23.4MB/s]
Downloading model.tgz:  40%|████      | 3.29G/8.14G [02:24<03:38, 22.2MB/s]
Downloading model.tgz:  40%|████      | 3.29G/8.14G [02:24<03:31, 22.9MB/s]
Downloading model.tgz:  40%|████      | 3.29G/8.14G [02:24<03:27, 23.4MB/s]
Downloading model.tgz:  40%|████      | 3.30G/8.14G [02:24<03:37, 22.3MB/s]
Downloading model.tgz:  41%|████      | 3.30G/8.14G [02:24<03:26, 23.4MB/s]
Downloading model.tgz:  41%|████      | 3.30G/8.14G [02:25<03:28, 23.2MB/s]
Downloading model.tgz:  41%|████      | 3.30G/8.14G [02:25<03:31, 22.9MB/s]
Downloading model.tgz:  41%|████      | 3.31G/8.14G [02:25<03:31, 22.8MB/s]
Downloading model.tgz:  41%|████      | 3.31G/8.14G [02:25<03:30, 23.0MB/s]
Downloading model.tgz:  41%|████      | 3.31G/8.14G [02:25<03:32, 22.8MB/s]
Downloading model.tgz:  41%|████      | 3.31G/8.14G [02:25<03:25, 23.5MB/s]
Downloading model.tgz:  41%|████      | 3.32G/8.14G [02:25<03:27, 23.2MB/s]
Downloading model.tgz:  41%|████      | 3.32G/8.14G [02:25<03:26, 23.4MB/s]
Downloading model.tgz:  41%|████      | 3.32G/8.14G [02:25<03:31, 22.8MB/s]
Downloading model.tgz:  41%|████      | 3.32G/8.14G [02:25<03:30, 22.9MB/s]
Downloading model.tgz:  41%|████      | 3.33G/8.14G [02:26<03:29, 22.9MB/s]
Downloading model.tgz:  41%|████      | 3.33G/8.14G [02:26<03:29, 22.9MB/s]
Downloading model.tgz:  41%|████      | 3.33G/8.14G [02:26<03:31, 22.7MB/s]
Downloading model.tgz:  41%|████      | 3.33G/8.14G [02:26<03:26, 23.3MB/s]
Downloading model.tgz:  41%|████      | 3.33G/8.14G [02:26<03:25, 23.3MB/s]
Downloading model.tgz:  41%|████      | 3.34G/8.14G [02:26<03:41, 21.7MB/s]
Downloading model.tgz:  41%|████      | 3.34G/8.14G [02:26<03:30, 22.8MB/s]
Downloading model.tgz:  41%|████      | 3.34G/8.14G [02:26<03:26, 23.3MB/s]
Downloading model.tgz:  41%|████      | 3.34G/8.14G [02:26<03:31, 22.7MB/s]
Downloading model.tgz:  41%|████      | 3.35G/8.14G [02:26<03:26, 23.3MB/s]
Downloading model.tgz:  41%|████      | 3.35G/8.14G [02:27<03:25, 23.3MB/s]
Downloading model.tgz:  41%|████      | 3.35G/8.14G [02:27<03:30, 22.7MB/s]
Downloading model.tgz:  41%|████      | 3.35G/8.14G [02:27<03:25, 23.3MB/s]
Downloading model.tgz:  41%|████      | 3.36G/8.14G [02:27<03:27, 23.0MB/s]
Downloading model.tgz:  41%|████▏     | 3.36G/8.14G [02:27<03:27, 23.0MB/s]
Downloading model.tgz:  41%|████▏     | 3.36G/8.14G [02:27<03:32, 22.5MB/s]
Downloading model.tgz:  41%|████▏     | 3.36G/8.14G [02:27<03:32, 22.5MB/s]
Downloading model.tgz:  41%|████▏     | 3.37G/8.14G [02:27<03:24, 23.3MB/s]
Downloading model.tgz:  41%|████▏     | 3.37G/8.14G [02:27<03:36, 22.1MB/s]
Downloading model.tgz:  41%|████▏     | 3.37G/8.14G [02:28<03:26, 23.1MB/s]
Downloading model.tgz:  41%|████▏     | 3.37G/8.14G [02:28<03:25, 23.2MB/s]
Downloading model.tgz:  41%|████▏     | 3.38G/8.14G [02:28<03:30, 22.6MB/s]
Downloading model.tgz:  42%|████▏     | 3.38G/8.14G [02:28<03:26, 23.0MB/s]
Downloading model.tgz:  42%|████▏     | 3.38G/8.14G [02:28<03:25, 23.2MB/s]
Downloading model.tgz:  42%|████▏     | 3.38G/8.14G [02:28<03:31, 22.5MB/s]
Downloading model.tgz:  42%|████▏     | 3.39G/8.14G [02:28<03:26, 23.0MB/s]
Downloading model.tgz:  42%|████▏     | 3.39G/8.14G [02:28<03:25, 23.1MB/s]
Downloading model.tgz:  42%|████▏     | 3.39G/8.14G [02:28<03:26, 23.0MB/s]
Downloading model.tgz:  42%|████▏     | 3.39G/8.14G [02:28<03:21, 23.5MB/s]
Downloading model.tgz:  42%|████▏     | 3.40G/8.14G [02:29<03:22, 23.4MB/s]
Downloading model.tgz:  42%|████▏     | 3.40G/8.14G [02:29<03:36, 21.9MB/s]
Downloading model.tgz:  42%|████▏     | 3.40G/8.14G [02:29<03:27, 22.8MB/s]
Downloading model.tgz:  42%|████▏     | 3.40G/8.14G [02:29<03:23, 23.2MB/s]
Downloading model.tgz:  42%|████▏     | 3.41G/8.14G [02:29<03:30, 22.5MB/s]
Downloading model.tgz:  42%|████▏     | 3.41G/8.14G [02:29<03:43, 21.2MB/s]
Downloading model.tgz:  42%|████▏     | 3.41G/8.14G [02:29<03:30, 22.5MB/s]
Downloading model.tgz:  42%|████▏     | 3.41G/8.14G [02:29<03:30, 22.4MB/s]
Downloading model.tgz:  42%|████▏     | 3.42G/8.14G [02:29<03:26, 22.9MB/s]
Downloading model.tgz:  42%|████▏     | 3.42G/8.14G [02:30<03:26, 22.9MB/s]
Downloading model.tgz:  42%|████▏     | 3.42G/8.14G [02:30<03:22, 23.3MB/s]
Downloading model.tgz:  42%|████▏     | 3.42G/8.14G [02:30<03:25, 22.9MB/s]
Downloading model.tgz:  42%|████▏     | 3.42G/8.14G [02:30<03:20, 23.6MB/s]
Downloading model.tgz:  42%|████▏     | 3.43G/8.14G [02:30<03:50, 20.5MB/s]
Downloading model.tgz:  42%|████▏     | 3.43G/8.14G [02:30<03:25, 23.0MB/s]
Downloading model.tgz:  42%|████▏     | 3.43G/8.14G [02:30<03:24, 23.0MB/s]
Downloading model.tgz:  42%|████▏     | 3.44G/8.14G [02:30<03:35, 21.8MB/s]
Downloading model.tgz:  42%|████▏     | 3.44G/8.14G [02:30<03:26, 22.8MB/s]
Downloading model.tgz:  42%|████▏     | 3.44G/8.14G [02:31<03:21, 23.4MB/s]
Downloading model.tgz:  42%|████▏     | 3.44G/8.14G [02:31<03:19, 23.6MB/s]
Downloading model.tgz:  42%|████▏     | 3.45G/8.14G [02:31<03:21, 23.3MB/s]
Downloading model.tgz:  42%|████▏     | 3.45G/8.14G [02:31<03:21, 23.3MB/s]
Downloading model.tgz:  42%|████▏     | 3.45G/8.14G [02:31<03:28, 22.5MB/s]
Downloading model.tgz:  42%|████▏     | 3.45G/8.14G [02:31<03:26, 22.7MB/s]
Downloading model.tgz:  42%|████▏     | 3.45G/8.14G [02:31<03:25, 22.8MB/s]
Downloading model.tgz:  42%|████▏     | 3.46G/8.14G [02:31<03:21, 23.2MB/s]
Downloading model.tgz:  43%|████▎     | 3.46G/8.14G [02:31<03:19, 23.5MB/s]
Downloading model.tgz:  43%|████▎     | 3.46G/8.14G [02:32<03:17, 23.6MB/s]
Downloading model.tgz:  43%|████▎     | 3.46G/8.14G [02:32<03:25, 22.7MB/s]
Downloading model.tgz:  43%|████▎     | 3.47G/8.14G [02:32<03:27, 22.6MB/s]
Downloading model.tgz:  43%|████▎     | 3.47G/8.14G [02:32<03:24, 22.8MB/s]
Downloading model.tgz:  43%|████▎     | 3.47G/8.14G [02:32<03:22, 23.0MB/s]
Downloading model.tgz:  43%|████▎     | 3.47G/8.14G [02:32<03:19, 23.4MB/s]
Downloading model.tgz:  43%|████▎     | 3.48G/8.14G [02:32<03:18, 23.5MB/s]
Downloading model.tgz:  43%|████▎     | 3.48G/8.14G [02:32<03:19, 23.3MB/s]
Downloading model.tgz:  43%|████▎     | 3.48G/8.14G [02:32<03:33, 21.9MB/s]
Downloading model.tgz:  43%|████▎     | 3.48G/8.14G [02:32<03:25, 22.7MB/s]
Downloading model.tgz:  43%|████▎     | 3.49G/8.14G [02:33<03:21, 23.1MB/s]
Downloading model.tgz:  43%|████▎     | 3.49G/8.14G [02:33<03:21, 23.0MB/s]
Downloading model.tgz:  43%|████▎     | 3.49G/8.14G [02:33<03:16, 23.6MB/s]
Downloading model.tgz:  43%|████▎     | 3.49G/8.14G [02:33<03:22, 23.0MB/s]
Downloading model.tgz:  43%|████▎     | 3.50G/8.14G [02:33<03:21, 23.1MB/s]
Downloading model.tgz:  43%|████▎     | 3.50G/8.14G [02:33<03:25, 22.6MB/s]
Downloading model.tgz:  43%|████▎     | 3.50G/8.14G [02:33<04:10, 18.6MB/s]
Downloading model.tgz:  43%|████▎     | 3.50G/8.14G [02:33<03:28, 22.3MB/s]
Downloading model.tgz:  43%|████▎     | 3.51G/8.14G [02:33<03:27, 22.3MB/s]
Downloading model.tgz:  43%|████▎     | 3.51G/8.14G [02:34<03:22, 22.9MB/s]
Downloading model.tgz:  43%|████▎     | 3.51G/8.14G [02:34<03:22, 22.8MB/s]
Downloading model.tgz:  43%|████▎     | 3.51G/8.14G [02:34<03:24, 22.6MB/s]
Downloading model.tgz:  43%|████▎     | 3.52G/8.14G [02:34<03:22, 22.8MB/s]
Downloading model.tgz:  43%|████▎     | 3.52G/8.14G [02:34<03:24, 22.6MB/s]
Downloading model.tgz:  43%|████▎     | 3.52G/8.14G [02:34<03:23, 22.7MB/s]
Downloading model.tgz:  43%|████▎     | 3.52G/8.14G [02:34<03:23, 22.7MB/s]
Downloading model.tgz:  43%|████▎     | 3.53G/8.14G [02:34<03:19, 23.1MB/s]
Downloading model.tgz:  43%|████▎     | 3.53G/8.14G [02:34<03:18, 23.2MB/s]
Downloading model.tgz:  43%|████▎     | 3.53G/8.14G [02:35<03:19, 23.1MB/s]
Downloading model.tgz:  43%|████▎     | 3.53G/8.14G [02:35<03:19, 23.1MB/s]
Downloading model.tgz:  43%|████▎     | 3.54G/8.14G [02:35<03:26, 22.3MB/s]
Downloading model.tgz:  43%|████▎     | 3.54G/8.14G [02:35<03:19, 23.1MB/s]
Downloading model.tgz:  44%|████▎     | 3.54G/8.14G [02:35<03:21, 22.9MB/s]
Downloading model.tgz:  44%|████▎     | 3.54G/8.14G [02:35<03:16, 23.4MB/s]
Downloading model.tgz:  44%|████▎     | 3.55G/8.14G [02:35<03:18, 23.2MB/s]
Downloading model.tgz:  44%|████▎     | 3.55G/8.14G [02:35<03:16, 23.4MB/s]
Downloading model.tgz:  44%|████▎     | 3.55G/8.14G [02:35<03:19, 23.0MB/s]
Downloading model.tgz:  44%|████▎     | 3.55G/8.14G [02:35<03:18, 23.1MB/s]
Downloading model.tgz:  44%|████▎     | 3.56G/8.14G [02:36<03:22, 22.7MB/s]
Downloading model.tgz:  44%|████▎     | 3.56G/8.14G [02:36<03:19, 22.9MB/s]
Downloading model.tgz:  44%|████▎     | 3.56G/8.14G [02:36<03:22, 22.7MB/s]
Downloading model.tgz:  44%|████▍     | 3.56G/8.14G [02:36<03:19, 23.0MB/s]
Downloading model.tgz:  44%|████▍     | 3.56G/8.14G [02:36<03:19, 22.9MB/s]
Downloading model.tgz:  44%|████▍     | 3.57G/8.14G [02:36<03:14, 23.5MB/s]
Downloading model.tgz:  44%|████▍     | 3.57G/8.14G [02:36<03:18, 23.0MB/s]
Downloading model.tgz:  44%|████▍     | 3.57G/8.14G [02:36<03:19, 22.9MB/s]
Downloading model.tgz:  44%|████▍     | 3.57G/8.14G [02:36<03:21, 22.7MB/s]
Downloading model.tgz:  44%|████▍     | 3.58G/8.14G [02:36<03:19, 22.9MB/s]
Downloading model.tgz:  44%|████▍     | 3.58G/8.14G [02:37<03:17, 23.1MB/s]
Downloading model.tgz:  44%|████▍     | 3.58G/8.14G [02:37<03:15, 23.3MB/s]
Downloading model.tgz:  44%|████▍     | 3.58G/8.14G [02:37<03:18, 23.0MB/s]
Downloading model.tgz:  44%|████▍     | 3.59G/8.14G [02:37<03:28, 21.8MB/s]
Downloading model.tgz:  44%|████▍     | 3.59G/8.14G [02:37<03:17, 23.0MB/s]
Downloading model.tgz:  44%|████▍     | 3.59G/8.14G [02:37<03:16, 23.1MB/s]
Downloading model.tgz:  44%|████▍     | 3.59G/8.14G [02:37<03:13, 23.4MB/s]
Downloading model.tgz:  44%|████▍     | 3.60G/8.14G [02:37<03:14, 23.4MB/s]
Downloading model.tgz:  44%|████▍     | 3.60G/8.14G [02:37<03:23, 22.3MB/s]
Downloading model.tgz:  44%|████▍     | 3.60G/8.14G [02:38<03:28, 21.8MB/s]
Downloading model.tgz:  44%|████▍     | 3.60G/8.14G [02:38<03:29, 21.7MB/s]
Downloading model.tgz:  44%|████▍     | 3.61G/8.14G [02:38<03:22, 22.4MB/s]
Downloading model.tgz:  44%|████▍     | 3.61G/8.14G [02:38<03:10, 23.8MB/s]
Downloading model.tgz:  44%|████▍     | 3.61G/8.14G [02:38<03:09, 23.9MB/s]
Downloading model.tgz:  44%|████▍     | 3.61G/8.14G [02:38<03:27, 21.8MB/s]
Downloading model.tgz:  44%|████▍     | 3.62G/8.14G [02:38<03:30, 21.5MB/s]
Downloading model.tgz:  44%|████▍     | 3.62G/8.14G [02:38<03:24, 22.1MB/s]
Downloading model.tgz:  44%|████▍     | 3.62G/8.14G [02:38<03:19, 22.7MB/s]
Downloading model.tgz:  45%|████▍     | 3.62G/8.14G [02:39<03:03, 24.6MB/s]
Downloading model.tgz:  45%|████▍     | 3.63G/8.14G [02:39<03:25, 21.9MB/s]
Downloading model.tgz:  45%|████▍     | 3.63G/8.14G [02:39<03:26, 21.9MB/s]
Downloading model.tgz:  45%|████▍     | 3.63G/8.14G [02:39<03:09, 23.8MB/s]
Downloading model.tgz:  45%|████▍     | 3.63G/8.14G [02:39<03:05, 24.3MB/s]
Downloading model.tgz:  45%|████▍     | 3.64G/8.14G [02:39<03:25, 21.9MB/s]
Downloading model.tgz:  45%|████▍     | 3.64G/8.14G [02:39<03:25, 21.9MB/s]
Downloading model.tgz:  45%|████▍     | 3.64G/8.14G [02:39<03:15, 23.0MB/s]
Downloading model.tgz:  45%|████▍     | 3.64G/8.14G [02:39<03:11, 23.4MB/s]
Downloading model.tgz:  45%|████▍     | 3.65G/8.14G [02:40<03:04, 24.3MB/s]
Downloading model.tgz:  45%|████▍     | 3.65G/8.14G [02:40<03:26, 21.8MB/s]
Downloading model.tgz:  45%|████▍     | 3.65G/8.14G [02:40<03:24, 22.0MB/s]
Downloading model.tgz:  45%|████▍     | 3.65G/8.14G [02:40<03:12, 23.3MB/s]
Downloading model.tgz:  45%|████▍     | 3.66G/8.14G [02:40<03:06, 24.1MB/s]
Downloading model.tgz:  45%|████▍     | 3.66G/8.14G [02:40<03:05, 24.1MB/s]
Downloading model.tgz:  45%|████▍     | 3.66G/8.14G [02:40<03:28, 21.5MB/s]
Downloading model.tgz:  45%|████▌     | 3.66G/8.14G [02:40<03:23, 22.0MB/s]
Downloading model.tgz:  45%|████▌     | 3.67G/8.14G [02:40<03:08, 23.7MB/s]
Downloading model.tgz:  45%|████▌     | 3.67G/8.14G [02:41<03:09, 23.6MB/s]
Downloading model.tgz:  45%|████▌     | 3.67G/8.14G [02:41<03:17, 22.6MB/s]
Downloading model.tgz:  45%|████▌     | 3.67G/8.14G [02:41<03:23, 21.9MB/s]
Downloading model.tgz:  45%|████▌     | 3.68G/8.14G [02:41<03:18, 22.5MB/s]
Downloading model.tgz:  45%|████▌     | 3.68G/8.14G [02:41<03:08, 23.7MB/s]
Downloading model.tgz:  45%|████▌     | 3.68G/8.14G [02:41<03:09, 23.5MB/s]
Downloading model.tgz:  45%|████▌     | 3.68G/8.14G [02:41<03:12, 23.1MB/s]
Downloading model.tgz:  45%|████▌     | 3.69G/8.14G [02:41<03:24, 21.8MB/s]
Downloading model.tgz:  45%|████▌     | 3.69G/8.14G [02:41<03:17, 22.5MB/s]
Downloading model.tgz:  45%|████▌     | 3.69G/8.14G [02:41<03:06, 23.8MB/s]
Downloading model.tgz:  45%|████▌     | 3.69G/8.14G [02:42<03:08, 23.6MB/s]
Downloading model.tgz:  45%|████▌     | 3.70G/8.14G [02:42<03:12, 23.1MB/s]
Downloading model.tgz:  45%|████▌     | 3.70G/8.14G [02:42<03:16, 22.6MB/s]
Downloading model.tgz:  45%|████▌     | 3.70G/8.14G [02:42<03:21, 22.0MB/s]
Downloading model.tgz:  46%|████▌     | 3.70G/8.14G [02:42<03:11, 23.2MB/s]
Downloading model.tgz:  46%|████▌     | 3.71G/8.14G [02:42<03:08, 23.6MB/s]
Downloading model.tgz:  46%|████▌     | 3.71G/8.14G [02:42<03:07, 23.6MB/s]
Downloading model.tgz:  46%|████▌     | 3.71G/8.14G [02:42<03:11, 23.2MB/s]
Downloading model.tgz:  46%|████▌     | 3.71G/8.14G [02:42<03:15, 22.6MB/s]
Downloading model.tgz:  46%|████▌     | 3.72G/8.14G [02:43<03:21, 22.0MB/s]
Downloading model.tgz:  46%|████▌     | 3.72G/8.14G [02:43<03:11, 23.1MB/s]
Downloading model.tgz:  46%|████▌     | 3.72G/8.14G [02:43<03:06, 23.6MB/s]
Downloading model.tgz:  46%|████▌     | 3.72G/8.14G [02:43<03:08, 23.5MB/s]
Downloading model.tgz:  46%|████▌     | 3.73G/8.14G [02:43<03:12, 22.9MB/s]
Downloading model.tgz:  46%|████▌     | 3.73G/8.14G [02:43<03:13, 22.8MB/s]
Downloading model.tgz:  46%|████▌     | 3.73G/8.14G [02:43<03:17, 22.3MB/s]
Downloading model.tgz:  46%|████▌     | 3.73G/8.14G [02:43<03:17, 22.3MB/s]
Downloading model.tgz:  46%|████▌     | 3.73G/8.14G [02:43<03:11, 23.0MB/s]
Downloading model.tgz:  46%|████▌     | 3.74G/8.14G [02:43<03:04, 23.9MB/s]
Downloading model.tgz:  46%|████▌     | 3.74G/8.14G [02:44<03:14, 22.7MB/s]
Downloading model.tgz:  46%|████▌     | 3.74G/8.14G [02:44<03:13, 22.7MB/s]
Downloading model.tgz:  46%|████▌     | 3.74G/8.14G [02:44<03:14, 22.7MB/s]
Downloading model.tgz:  46%|████▌     | 3.75G/8.14G [02:44<03:20, 21.9MB/s]
Downloading model.tgz:  46%|████▌     | 3.75G/8.14G [02:44<03:08, 23.3MB/s]
Downloading model.tgz:  46%|████▌     | 3.75G/8.14G [02:44<03:09, 23.2MB/s]
Downloading model.tgz:  46%|████▌     | 3.75G/8.14G [02:44<03:13, 22.6MB/s]
Downloading model.tgz:  46%|████▌     | 3.76G/8.14G [02:44<03:12, 22.8MB/s]
Downloading model.tgz:  46%|████▌     | 3.76G/8.14G [02:44<03:16, 22.3MB/s]
Downloading model.tgz:  46%|████▌     | 3.76G/8.14G [02:45<03:16, 22.3MB/s]
Downloading model.tgz:  46%|████▌     | 3.76G/8.14G [02:45<03:07, 23.3MB/s]
Downloading model.tgz:  46%|████▋     | 3.77G/8.14G [02:45<03:08, 23.3MB/s]
Downloading model.tgz:  46%|████▋     | 3.77G/8.14G [02:45<03:11, 22.9MB/s]
Downloading model.tgz:  46%|████▋     | 3.77G/8.14G [02:45<03:08, 23.1MB/s]
Downloading model.tgz:  46%|████▋     | 3.77G/8.14G [02:45<03:07, 23.3MB/s]
Downloading model.tgz:  46%|████▋     | 3.78G/8.14G [02:45<03:13, 22.6MB/s]
Downloading model.tgz:  46%|████▋     | 3.78G/8.14G [02:45<03:11, 22.8MB/s]
Downloading model.tgz:  46%|████▋     | 3.78G/8.14G [02:45<03:07, 23.2MB/s]
Downloading model.tgz:  46%|████▋     | 3.78G/8.14G [02:45<03:07, 23.3MB/s]
Downloading model.tgz:  47%|████▋     | 3.79G/8.14G [02:46<03:11, 22.8MB/s]
Downloading model.tgz:  47%|████▋     | 3.79G/8.14G [02:46<03:06, 23.3MB/s]
Downloading model.tgz:  47%|████▋     | 3.79G/8.14G [02:46<03:11, 22.7MB/s]
Downloading model.tgz:  47%|████▋     | 3.79G/8.14G [02:46<03:10, 22.9MB/s]
Downloading model.tgz:  47%|████▋     | 3.80G/8.14G [02:46<03:09, 22.9MB/s]
Downloading model.tgz:  47%|████▋     | 3.80G/8.14G [02:46<03:07, 23.2MB/s]
Downloading model.tgz:  47%|████▋     | 3.80G/8.14G [02:46<03:08, 23.0MB/s]
Downloading model.tgz:  47%|████▋     | 3.80G/8.14G [02:46<03:08, 23.0MB/s]
Downloading model.tgz:  47%|████▋     | 3.80G/8.14G [02:46<03:05, 23.4MB/s]
Downloading model.tgz:  47%|████▋     | 3.81G/8.14G [02:47<03:33, 20.3MB/s]
Downloading model.tgz:  47%|████▋     | 3.81G/8.14G [02:47<03:11, 22.6MB/s]
Downloading model.tgz:  47%|████▋     | 3.81G/8.14G [02:47<03:04, 23.4MB/s]
Downloading model.tgz:  47%|████▋     | 3.82G/8.14G [02:47<03:09, 22.9MB/s]
Downloading model.tgz:  47%|████▋     | 3.82G/8.14G [02:47<03:09, 22.8MB/s]
Downloading model.tgz:  47%|████▋     | 3.82G/8.14G [02:47<03:06, 23.1MB/s]
Downloading model.tgz:  47%|████▋     | 3.82G/8.14G [02:47<03:06, 23.2MB/s]
Downloading model.tgz:  47%|████▋     | 3.83G/8.14G [02:47<03:08, 22.8MB/s]
Downloading model.tgz:  47%|████▋     | 3.83G/8.14G [02:47<03:05, 23.3MB/s]
Downloading model.tgz:  47%|████▋     | 3.83G/8.14G [02:48<03:06, 23.1MB/s]
Downloading model.tgz:  47%|████▋     | 3.83G/8.14G [02:48<03:09, 22.7MB/s]
Downloading model.tgz:  47%|████▋     | 3.83G/8.14G [02:48<03:05, 23.2MB/s]
Downloading model.tgz:  47%|████▋     | 3.84G/8.14G [02:48<03:07, 22.9MB/s]
Downloading model.tgz:  47%|████▋     | 3.84G/8.14G [02:48<03:06, 23.0MB/s]
Downloading model.tgz:  47%|████▋     | 3.84G/8.14G [02:48<03:02, 23.5MB/s]
Downloading model.tgz:  47%|████▋     | 3.84G/8.14G [02:48<03:04, 23.3MB/s]
Downloading model.tgz:  47%|████▋     | 3.85G/8.14G [02:48<03:07, 22.9MB/s]
Downloading model.tgz:  47%|████▋     | 3.85G/8.14G [02:48<03:08, 22.8MB/s]
Downloading model.tgz:  47%|████▋     | 3.85G/8.14G [02:48<03:07, 22.9MB/s]
Downloading model.tgz:  47%|████▋     | 3.85G/8.14G [02:49<03:05, 23.0MB/s]
Downloading model.tgz:  47%|████▋     | 3.86G/8.14G [02:49<03:06, 23.0MB/s]
Downloading model.tgz:  47%|████▋     | 3.86G/8.14G [02:49<03:08, 22.8MB/s]
Downloading model.tgz:  47%|████▋     | 3.86G/8.14G [02:49<03:02, 23.4MB/s]
Downloading model.tgz:  47%|████▋     | 3.86G/8.14G [02:49<03:04, 23.1MB/s]
Downloading model.tgz:  47%|████▋     | 3.87G/8.14G [02:49<03:08, 22.7MB/s]
Downloading model.tgz:  48%|████▊     | 3.87G/8.14G [02:49<03:07, 22.8MB/s]
Downloading model.tgz:  48%|████▊     | 3.87G/8.14G [02:49<03:03, 23.3MB/s]
Downloading model.tgz:  48%|████▊     | 3.87G/8.14G [02:49<03:05, 23.0MB/s]
Downloading model.tgz:  48%|████▊     | 3.88G/8.14G [02:49<03:03, 23.3MB/s]
Downloading model.tgz:  48%|████▊     | 3.88G/8.14G [02:50<03:03, 23.3MB/s]
Downloading model.tgz:  48%|████▊     | 3.88G/8.14G [02:50<03:07, 22.7MB/s]
Downloading model.tgz:  48%|████▊     | 3.88G/8.14G [02:50<03:08, 22.6MB/s]
Downloading model.tgz:  48%|████▊     | 3.88G/8.14G [02:50<03:05, 22.9MB/s]
Downloading model.tgz:  48%|████▊     | 3.89G/8.14G [02:50<03:02, 23.4MB/s]
Downloading model.tgz:  48%|████▊     | 3.89G/8.14G [02:50<03:05, 22.9MB/s]
Downloading model.tgz:  48%|████▊     | 3.89G/8.14G [02:50<03:04, 23.0MB/s]
Downloading model.tgz:  48%|████▊     | 3.89G/8.14G [02:50<03:07, 22.7MB/s]
Downloading model.tgz:  48%|████▊     | 3.90G/8.14G [02:50<03:07, 22.6MB/s]
Downloading model.tgz:  48%|████▊     | 3.90G/8.14G [02:51<03:05, 22.9MB/s]
Downloading model.tgz:  48%|████▊     | 3.90G/8.14G [02:51<03:01, 23.3MB/s]
Downloading model.tgz:  48%|████▊     | 3.90G/8.14G [02:51<03:02, 23.2MB/s]
Downloading model.tgz:  48%|████▊     | 3.91G/8.14G [02:51<03:02, 23.2MB/s]
Downloading model.tgz:  48%|████▊     | 3.91G/8.14G [02:51<03:05, 22.8MB/s]
Downloading model.tgz:  48%|████▊     | 3.91G/8.14G [02:51<03:04, 22.9MB/s]
Downloading model.tgz:  48%|████▊     | 3.91G/8.14G [02:51<03:06, 22.7MB/s]
Downloading model.tgz:  48%|████▊     | 3.92G/8.14G [02:51<03:05, 22.8MB/s]
Downloading model.tgz:  48%|████▊     | 3.92G/8.14G [02:51<03:04, 22.9MB/s]
Downloading model.tgz:  48%|████▊     | 3.92G/8.14G [02:51<03:00, 23.4MB/s]
Downloading model.tgz:  48%|████▊     | 3.92G/8.14G [02:52<02:59, 23.4MB/s]
Downloading model.tgz:  48%|████▊     | 3.93G/8.14G [02:52<02:59, 23.4MB/s]
Downloading model.tgz:  48%|████▊     | 3.93G/8.14G [02:52<03:02, 23.0MB/s]
Downloading model.tgz:  48%|████▊     | 3.93G/8.14G [02:52<03:06, 22.6MB/s]
Downloading model.tgz:  48%|████▊     | 3.93G/8.14G [02:52<03:04, 22.8MB/s]
Downloading model.tgz:  48%|████▊     | 3.93G/8.14G [02:52<03:03, 22.9MB/s]
Downloading model.tgz:  48%|████▊     | 3.94G/8.14G [02:52<02:59, 23.4MB/s]
Downloading model.tgz:  48%|████▊     | 3.94G/8.14G [02:52<03:01, 23.2MB/s]
Downloading model.tgz:  48%|████▊     | 3.94G/8.14G [02:52<03:01, 23.1MB/s]
Downloading model.tgz:  48%|████▊     | 3.94G/8.14G [02:52<03:01, 23.1MB/s]
Downloading model.tgz:  48%|████▊     | 3.95G/8.14G [02:53<03:02, 23.0MB/s]
Downloading model.tgz:  49%|████▊     | 3.95G/8.14G [02:53<03:02, 23.0MB/s]
Downloading model.tgz:  49%|████▊     | 3.95G/8.14G [02:53<03:09, 22.1MB/s]
Downloading model.tgz:  49%|████▊     | 3.95G/8.14G [02:53<02:57, 23.6MB/s]
Downloading model.tgz:  49%|████▊     | 3.96G/8.14G [02:53<02:56, 23.7MB/s]
Downloading model.tgz:  49%|████▊     | 3.96G/8.14G [02:53<03:03, 22.8MB/s]
Downloading model.tgz:  49%|████▊     | 3.96G/8.14G [02:53<03:03, 22.8MB/s]
Downloading model.tgz:  49%|████▊     | 3.96G/8.14G [02:53<03:06, 22.4MB/s]
Downloading model.tgz:  49%|████▊     | 3.97G/8.14G [02:53<03:01, 23.0MB/s]
Downloading model.tgz:  49%|████▉     | 3.97G/8.14G [02:54<03:06, 22.4MB/s]
Downloading model.tgz:  49%|████▉     | 3.97G/8.14G [02:54<02:58, 23.3MB/s]
Downloading model.tgz:  49%|████▉     | 3.97G/8.14G [02:54<03:01, 22.9MB/s]
Downloading model.tgz:  49%|████▉     | 3.98G/8.14G [02:54<03:03, 22.7MB/s]
Downloading model.tgz:  49%|████▉     | 3.98G/8.14G [02:54<03:05, 22.4MB/s]
Downloading model.tgz:  49%|████▉     | 3.98G/8.14G [02:54<02:59, 23.1MB/s]
Downloading model.tgz:  49%|████▉     | 3.98G/8.14G [02:54<02:52, 24.1MB/s]
Downloading model.tgz:  49%|████▉     | 3.99G/8.14G [02:54<03:08, 22.0MB/s]
Downloading model.tgz:  49%|████▉     | 3.99G/8.14G [02:54<03:03, 22.7MB/s]
Downloading model.tgz:  49%|████▉     | 3.99G/8.14G [02:54<03:01, 22.9MB/s]
Downloading model.tgz:  49%|████▉     | 3.99G/8.14G [02:55<03:00, 23.0MB/s]
Downloading model.tgz:  49%|████▉     | 4.00G/8.14G [02:55<02:53, 23.9MB/s]
Downloading model.tgz:  49%|████▉     | 4.00G/8.14G [02:55<02:57, 23.3MB/s]
Downloading model.tgz:  49%|████▉     | 4.00G/8.14G [02:55<02:59, 23.1MB/s]
Downloading model.tgz:  49%|████▉     | 4.00G/8.14G [02:55<02:58, 23.1MB/s]
Downloading model.tgz:  49%|████▉     | 4.01G/8.14G [02:55<03:03, 22.5MB/s]
Downloading model.tgz:  49%|████▉     | 4.01G/8.14G [02:55<03:03, 22.5MB/s]
Downloading model.tgz:  49%|████▉     | 4.01G/8.14G [02:55<02:58, 23.2MB/s]
Downloading model.tgz:  49%|████▉     | 4.01G/8.14G [02:55<02:56, 23.4MB/s]
Downloading model.tgz:  49%|████▉     | 4.02G/8.14G [02:56<02:57, 23.2MB/s]
Downloading model.tgz:  49%|████▉     | 4.02G/8.14G [02:56<03:01, 22.7MB/s]
Downloading model.tgz:  49%|████▉     | 4.02G/8.14G [02:56<03:02, 22.6MB/s]
Downloading model.tgz:  49%|████▉     | 4.02G/8.14G [02:56<03:01, 22.7MB/s]
Downloading model.tgz:  49%|████▉     | 4.02G/8.14G [02:56<02:55, 23.5MB/s]
Downloading model.tgz:  49%|████▉     | 4.03G/8.14G [02:56<02:50, 24.2MB/s]
Downloading model.tgz:  50%|████▉     | 4.03G/8.14G [02:56<02:58, 23.0MB/s]
Downloading model.tgz:  50%|████▉     | 4.03G/8.14G [02:56<03:02, 22.6MB/s]
Downloading model.tgz:  50%|████▉     | 4.03G/8.14G [02:56<03:00, 22.7MB/s]
Downloading model.tgz:  50%|████▉     | 4.04G/8.14G [02:56<03:05, 22.1MB/s]
Downloading model.tgz:  50%|████▉     | 4.04G/8.14G [02:57<02:52, 23.8MB/s]
Downloading model.tgz:  50%|████▉     | 4.04G/8.14G [02:57<02:56, 23.3MB/s]
Downloading model.tgz:  50%|████▉     | 4.04G/8.14G [02:57<03:01, 22.6MB/s]
Downloading model.tgz:  50%|████▉     | 4.05G/8.14G [02:57<03:03, 22.3MB/s]
Downloading model.tgz:  50%|████▉     | 4.05G/8.14G [02:57<03:02, 22.5MB/s]
Downloading model.tgz:  50%|████▉     | 4.05G/8.14G [02:57<03:01, 22.5MB/s]
Downloading model.tgz:  50%|████▉     | 4.05G/8.14G [02:57<02:59, 22.7MB/s]
Downloading model.tgz:  50%|████▉     | 4.06G/8.14G [02:57<02:53, 23.5MB/s]
Downloading model.tgz:  50%|████▉     | 4.06G/8.14G [02:57<02:52, 23.6MB/s]
Downloading model.tgz:  50%|████▉     | 4.06G/8.14G [02:58<03:06, 21.8MB/s]
Downloading model.tgz:  50%|████▉     | 4.06G/8.14G [02:58<03:02, 22.3MB/s]
Downloading model.tgz:  50%|████▉     | 4.07G/8.14G [02:58<03:00, 22.6MB/s]
Downloading model.tgz:  50%|████▉     | 4.07G/8.14G [02:58<02:55, 23.2MB/s]
Downloading model.tgz:  50%|█████     | 4.07G/8.14G [02:58<02:54, 23.4MB/s]
Downloading model.tgz:  50%|█████     | 4.07G/8.14G [02:58<02:52, 23.6MB/s]
Downloading model.tgz:  50%|█████     | 4.08G/8.14G [02:58<03:01, 22.4MB/s]
Downloading model.tgz:  50%|█████     | 4.08G/8.14G [02:58<03:02, 22.2MB/s]
Downloading model.tgz:  50%|█████     | 4.08G/8.14G [02:58<02:58, 22.7MB/s]
Downloading model.tgz:  50%|█████     | 4.08G/8.14G [02:59<02:54, 23.3MB/s]
Downloading model.tgz:  50%|█████     | 4.09G/8.14G [02:59<02:51, 23.6MB/s]
Downloading model.tgz:  50%|█████     | 4.09G/8.14G [02:59<02:49, 24.0MB/s]
Downloading model.tgz:  50%|█████     | 4.09G/8.14G [02:59<03:01, 22.3MB/s]
Downloading model.tgz:  50%|█████     | 4.09G/8.14G [02:59<04:30, 14.9MB/s]
Downloading model.tgz:  50%|█████     | 4.10G/8.14G [02:59<03:56, 17.1MB/s]
Downloading model.tgz:  50%|█████     | 4.10G/8.14G [02:59<03:37, 18.6MB/s]
Downloading model.tgz:  50%|█████     | 4.10G/8.14G [02:59<03:42, 18.1MB/s]
Downloading model.tgz:  50%|█████     | 4.10G/8.14G [03:00<03:21, 20.1MB/s]
Downloading model.tgz:  50%|█████     | 4.11G/8.14G [03:00<03:16, 20.5MB/s]
Downloading model.tgz:  50%|█████     | 4.11G/8.14G [03:00<03:06, 21.7MB/s]
Downloading model.tgz:  51%|█████     | 4.11G/8.14G [03:00<03:14, 20.7MB/s]
Downloading model.tgz:  51%|█████     | 4.11G/8.14G [03:00<03:06, 21.6MB/s]
Downloading model.tgz:  51%|█████     | 4.12G/8.14G [03:00<03:06, 21.5MB/s]
Downloading model.tgz:  51%|█████     | 4.12G/8.14G [03:00<02:52, 23.4MB/s]
Downloading model.tgz:  51%|█████     | 4.12G/8.14G [03:00<02:55, 22.9MB/s]
Downloading model.tgz:  51%|█████     | 4.12G/8.14G [03:00<03:08, 21.3MB/s]
Downloading model.tgz:  51%|█████     | 4.13G/8.14G [03:01<03:03, 21.9MB/s]
Downloading model.tgz:  51%|█████     | 4.13G/8.14G [03:01<02:55, 22.9MB/s]
Downloading model.tgz:  51%|█████     | 4.13G/8.14G [03:01<02:57, 22.6MB/s]
Downloading model.tgz:  51%|█████     | 4.13G/8.14G [03:01<03:03, 21.8MB/s]
Downloading model.tgz:  51%|█████     | 4.14G/8.14G [03:01<02:54, 23.0MB/s]
Downloading model.tgz:  51%|█████     | 4.14G/8.14G [03:01<02:57, 22.5MB/s]
Downloading model.tgz:  51%|█████     | 4.14G/8.14G [03:01<02:52, 23.2MB/s]
Downloading model.tgz:  51%|█████     | 4.14G/8.14G [03:01<03:05, 21.5MB/s]
Downloading model.tgz:  51%|█████     | 4.15G/8.14G [03:01<02:52, 23.2MB/s]
Downloading model.tgz:  51%|█████     | 4.15G/8.14G [03:02<02:55, 22.8MB/s]
Downloading model.tgz:  51%|█████     | 4.15G/8.14G [03:02<04:05, 16.2MB/s]
Downloading model.tgz:  51%|█████     | 4.16G/8.14G [03:02<03:15, 20.4MB/s]
Downloading model.tgz:  51%|█████     | 4.16G/8.14G [03:02<03:05, 21.5MB/s]
Downloading model.tgz:  51%|█████     | 4.16G/8.14G [03:02<03:05, 21.4MB/s]
Downloading model.tgz:  51%|█████     | 4.16G/8.14G [03:02<03:00, 22.0MB/s]
Downloading model.tgz:  51%|█████     | 4.17G/8.14G [03:02<03:01, 21.9MB/s]
Downloading model.tgz:  51%|█████     | 4.17G/8.14G [03:03<03:06, 21.3MB/s]
Downloading model.tgz:  51%|█████▏    | 4.17G/8.14G [03:03<02:56, 22.5MB/s]
Downloading model.tgz:  51%|█████▏    | 4.17G/8.14G [03:03<02:53, 22.9MB/s]
Downloading model.tgz:  51%|█████▏    | 4.18G/8.14G [03:03<02:52, 23.0MB/s]
Downloading model.tgz:  51%|█████▏    | 4.18G/8.14G [03:03<02:58, 22.2MB/s]
Downloading model.tgz:  51%|█████▏    | 4.18G/8.14G [03:03<03:12, 20.6MB/s]
Downloading model.tgz:  51%|█████▏    | 4.18G/8.14G [03:03<02:54, 22.6MB/s]
Downloading model.tgz:  51%|█████▏    | 4.19G/8.14G [03:03<02:52, 23.0MB/s]
Downloading model.tgz:  51%|█████▏    | 4.19G/8.14G [03:03<02:55, 22.5MB/s]
Downloading model.tgz:  52%|█████▏    | 4.19G/8.14G [03:03<02:54, 22.6MB/s]
Downloading model.tgz:  52%|█████▏    | 4.19G/8.14G [03:04<03:00, 21.9MB/s]
Downloading model.tgz:  52%|█████▏    | 4.20G/8.14G [03:04<02:55, 22.5MB/s]
Downloading model.tgz:  52%|█████▏    | 4.20G/8.14G [03:04<02:48, 23.4MB/s]
Downloading model.tgz:  52%|█████▏    | 4.20G/8.14G [03:04<02:56, 22.4MB/s]
Downloading model.tgz:  52%|█████▏    | 4.20G/8.14G [03:04<02:59, 21.9MB/s]
Downloading model.tgz:  52%|█████▏    | 4.21G/8.14G [03:04<02:57, 22.2MB/s]
Downloading model.tgz:  52%|█████▏    | 4.21G/8.14G [03:04<02:49, 23.2MB/s]
Downloading model.tgz:  52%|█████▏    | 4.21G/8.14G [03:04<02:49, 23.2MB/s]
Downloading model.tgz:  52%|█████▏    | 4.21G/8.14G [03:04<02:51, 22.8MB/s]
Downloading model.tgz:  52%|█████▏    | 4.22G/8.14G [03:05<02:53, 22.6MB/s]
Downloading model.tgz:  52%|█████▏    | 4.22G/8.14G [03:05<02:52, 22.7MB/s]
Downloading model.tgz:  52%|█████▏    | 4.22G/8.14G [03:05<02:57, 22.0MB/s]
Downloading model.tgz:  52%|█████▏    | 4.22G/8.14G [03:05<02:48, 23.2MB/s]
Downloading model.tgz:  52%|█████▏    | 4.23G/8.14G [03:05<02:56, 22.2MB/s]
Downloading model.tgz:  52%|█████▏    | 4.23G/8.14G [03:05<02:50, 22.9MB/s]
Downloading model.tgz:  52%|█████▏    | 4.23G/8.14G [03:05<02:48, 23.2MB/s]
Downloading model.tgz:  52%|█████▏    | 4.23G/8.14G [03:05<02:56, 22.1MB/s]
Downloading model.tgz:  52%|█████▏    | 4.24G/8.14G [03:05<02:47, 23.3MB/s]
Downloading model.tgz:  52%|█████▏    | 4.24G/8.14G [03:06<02:40, 24.3MB/s]
Downloading model.tgz:  52%|█████▏    | 4.24G/8.14G [03:06<02:51, 22.7MB/s]
Downloading model.tgz:  52%|█████▏    | 4.24G/8.14G [03:06<02:57, 21.9MB/s]
Downloading model.tgz:  52%|█████▏    | 4.25G/8.14G [03:06<02:56, 22.1MB/s]
Downloading model.tgz:  52%|█████▏    | 4.25G/8.14G [03:06<02:46, 23.4MB/s]
Downloading model.tgz:  52%|█████▏    | 4.25G/8.14G [03:06<02:44, 23.7MB/s]
Downloading model.tgz:  52%|█████▏    | 4.25G/8.14G [03:06<02:45, 23.5MB/s]
Downloading model.tgz:  52%|█████▏    | 4.26G/8.14G [03:06<02:48, 23.0MB/s]
Downloading model.tgz:  52%|█████▏    | 4.26G/8.14G [03:06<02:56, 22.0MB/s]
Downloading model.tgz:  52%|█████▏    | 4.26G/8.14G [03:07<02:52, 22.5MB/s]
Downloading model.tgz:  52%|█████▏    | 4.26G/8.14G [03:07<02:43, 23.7MB/s]
Downloading model.tgz:  52%|█████▏    | 4.27G/8.14G [03:07<02:44, 23.5MB/s]
Downloading model.tgz:  52%|█████▏    | 4.27G/8.14G [03:07<02:45, 23.4MB/s]
Downloading model.tgz:  52%|█████▏    | 4.27G/8.14G [03:07<02:55, 22.1MB/s]
Downloading model.tgz:  52%|█████▏    | 4.27G/8.14G [03:07<02:54, 22.1MB/s]
Downloading model.tgz:  53%|█████▎    | 4.28G/8.14G [03:07<02:49, 22.8MB/s]
Downloading model.tgz:  53%|█████▎    | 4.28G/8.14G [03:07<02:42, 23.8MB/s]
Downloading model.tgz:  53%|█████▎    | 4.28G/8.14G [03:07<02:44, 23.5MB/s]
Downloading model.tgz:  53%|█████▎    | 4.28G/8.14G [03:07<02:45, 23.3MB/s]
Downloading model.tgz:  53%|█████▎    | 4.29G/8.14G [03:08<02:55, 21.9MB/s]
Downloading model.tgz:  53%|█████▎    | 4.29G/8.14G [03:08<02:55, 22.0MB/s]
Downloading model.tgz:  53%|█████▎    | 4.29G/8.14G [03:08<02:47, 23.0MB/s]
Downloading model.tgz:  53%|█████▎    | 4.29G/8.14G [03:08<02:45, 23.2MB/s]
Downloading model.tgz:  53%|█████▎    | 4.30G/8.14G [03:08<02:45, 23.3MB/s]
Downloading model.tgz:  53%|█████▎    | 4.30G/8.14G [03:08<02:40, 23.9MB/s]
Downloading model.tgz:  53%|█████▎    | 4.30G/8.14G [03:08<02:49, 22.7MB/s]
Downloading model.tgz:  53%|█████▎    | 4.30G/8.14G [03:08<02:51, 22.4MB/s]
Downloading model.tgz:  53%|█████▎    | 4.30G/8.14G [03:08<02:50, 22.5MB/s]
Downloading model.tgz:  53%|█████▎    | 4.31G/8.14G [03:09<02:47, 22.8MB/s]
Downloading model.tgz:  53%|█████▎    | 4.31G/8.14G [03:09<02:45, 23.1MB/s]
Downloading model.tgz:  53%|█████▎    | 4.31G/8.14G [03:09<02:44, 23.3MB/s]
Downloading model.tgz:  53%|█████▎    | 4.31G/8.14G [03:09<02:40, 23.8MB/s]
Downloading model.tgz:  53%|█████▎    | 4.32G/8.14G [03:09<02:46, 23.0MB/s]
Downloading model.tgz:  53%|█████▎    | 4.32G/8.14G [03:09<02:53, 22.0MB/s]
Downloading model.tgz:  53%|█████▎    | 4.32G/8.14G [03:09<02:46, 22.9MB/s]
Downloading model.tgz:  53%|█████▎    | 4.32G/8.14G [03:09<02:44, 23.2MB/s]
Downloading model.tgz:  53%|█████▎    | 4.33G/8.14G [03:09<02:41, 23.6MB/s]
Downloading model.tgz:  53%|█████▎    | 4.33G/8.14G [03:09<02:41, 23.6MB/s]
Downloading model.tgz:  53%|█████▎    | 4.33G/8.14G [03:10<02:44, 23.1MB/s]
Downloading model.tgz:  53%|█████▎    | 4.33G/8.14G [03:10<02:50, 22.4MB/s]
Downloading model.tgz:  53%|█████▎    | 4.34G/8.14G [03:10<02:49, 22.4MB/s]
Downloading model.tgz:  53%|█████▎    | 4.34G/8.14G [03:10<02:48, 22.6MB/s]
Downloading model.tgz:  53%|█████▎    | 4.34G/8.14G [03:10<02:45, 23.0MB/s]
Downloading model.tgz:  53%|█████▎    | 4.34G/8.14G [03:10<02:39, 23.9MB/s]
Downloading model.tgz:  53%|█████▎    | 4.35G/8.14G [03:10<02:45, 22.9MB/s]
Downloading model.tgz:  53%|█████▎    | 4.35G/8.14G [03:10<02:45, 22.9MB/s]
Downloading model.tgz:  53%|█████▎    | 4.35G/8.14G [03:10<02:46, 22.8MB/s]
Downloading model.tgz:  53%|█████▎    | 4.35G/8.14G [03:10<02:46, 22.8MB/s]
Downloading model.tgz:  54%|█████▎    | 4.36G/8.14G [03:11<02:47, 22.5MB/s]
Downloading model.tgz:  54%|█████▎    | 4.36G/8.14G [03:11<02:45, 22.8MB/s]
Downloading model.tgz:  54%|█████▎    | 4.36G/8.14G [03:11<02:40, 23.5MB/s]
Downloading model.tgz:  54%|█████▎    | 4.36G/8.14G [03:11<02:44, 23.0MB/s]
Downloading model.tgz:  54%|█████▎    | 4.36G/8.14G [03:11<02:43, 23.1MB/s]
Downloading model.tgz:  54%|█████▎    | 4.37G/8.14G [03:11<02:45, 22.8MB/s]
Downloading model.tgz:  54%|█████▎    | 4.37G/8.14G [03:11<02:49, 22.2MB/s]
Downloading model.tgz:  54%|█████▎    | 4.37G/8.14G [03:11<02:43, 23.0MB/s]
Downloading model.tgz:  54%|█████▎    | 4.37G/8.14G [03:11<02:44, 22.9MB/s]
Downloading model.tgz:  54%|█████▍    | 4.38G/8.14G [03:12<02:41, 23.3MB/s]
Downloading model.tgz:  54%|█████▍    | 4.38G/8.14G [03:12<02:42, 23.2MB/s]
Downloading model.tgz:  54%|█████▍    | 4.38G/8.14G [03:12<02:42, 23.1MB/s]
Downloading model.tgz:  54%|█████▍    | 4.38G/8.14G [03:12<02:44, 22.9MB/s]
Downloading model.tgz:  54%|█████▍    | 4.39G/8.14G [03:12<02:45, 22.7MB/s]
Downloading model.tgz:  54%|█████▍    | 4.39G/8.14G [03:12<02:45, 22.7MB/s]
Downloading model.tgz:  54%|█████▍    | 4.39G/8.14G [03:12<02:47, 22.4MB/s]
Downloading model.tgz:  54%|█████▍    | 4.39G/8.14G [03:12<02:46, 22.5MB/s]
Downloading model.tgz:  54%|█████▍    | 4.40G/8.14G [03:12<02:39, 23.5MB/s]
Downloading model.tgz:  54%|█████▍    | 4.40G/8.14G [03:12<02:39, 23.5MB/s]
Downloading model.tgz:  54%|█████▍    | 4.40G/8.14G [03:13<02:42, 23.0MB/s]
Downloading model.tgz:  54%|█████▍    | 4.40G/8.14G [03:13<02:43, 22.8MB/s]
Downloading model.tgz:  54%|█████▍    | 4.41G/8.14G [03:13<02:47, 22.4MB/s]
Downloading model.tgz:  54%|█████▍    | 4.41G/8.14G [03:13<02:45, 22.6MB/s]
Downloading model.tgz:  54%|█████▍    | 4.41G/8.14G [03:13<02:38, 23.6MB/s]
Downloading model.tgz:  54%|█████▍    | 4.41G/8.14G [03:13<02:37, 23.7MB/s]
Downloading model.tgz:  54%|█████▍    | 4.42G/8.14G [03:13<02:37, 23.6MB/s]
Downloading model.tgz:  54%|█████▍    | 4.42G/8.14G [03:13<02:46, 22.4MB/s]
Downloading model.tgz:  54%|█████▍    | 4.42G/8.14G [03:13<02:46, 22.4MB/s]
Downloading model.tgz:  54%|█████▍    | 4.42G/8.14G [03:14<02:47, 22.2MB/s]
Downloading model.tgz:  54%|█████▍    | 4.42G/8.14G [03:14<02:46, 22.2MB/s]
Downloading model.tgz:  54%|█████▍    | 4.43G/8.14G [03:14<02:40, 23.1MB/s]
Downloading model.tgz:  54%|█████▍    | 4.43G/8.14G [03:14<02:35, 23.8MB/s]
Downloading model.tgz:  54%|█████▍    | 4.43G/8.14G [03:14<02:43, 22.7MB/s]
Downloading model.tgz:  54%|█████▍    | 4.43G/8.14G [03:14<02:44, 22.5MB/s]
Downloading model.tgz:  55%|█████▍    | 4.44G/8.14G [03:14<02:45, 22.4MB/s]
Downloading model.tgz:  55%|█████▍    | 4.44G/8.14G [03:14<02:41, 23.0MB/s]
Downloading model.tgz:  55%|█████▍    | 4.44G/8.14G [03:14<02:41, 22.9MB/s]
Downloading model.tgz:  55%|█████▍    | 4.44G/8.14G [03:14<02:35, 23.8MB/s]
Downloading model.tgz:  55%|█████▍    | 4.45G/8.14G [03:15<02:36, 23.5MB/s]
Downloading model.tgz:  55%|█████▍    | 4.45G/8.14G [03:15<02:42, 22.7MB/s]
Downloading model.tgz:  55%|█████▍    | 4.45G/8.14G [03:15<02:46, 22.1MB/s]
Downloading model.tgz:  55%|█████▍    | 4.45G/8.14G [03:15<02:42, 22.7MB/s]
Downloading model.tgz:  55%|█████▍    | 4.46G/8.14G [03:15<02:42, 22.7MB/s]
Downloading model.tgz:  55%|█████▍    | 4.46G/8.14G [03:15<02:42, 22.7MB/s]
Downloading model.tgz:  55%|█████▍    | 4.46G/8.14G [03:15<02:33, 24.0MB/s]
Downloading model.tgz:  55%|█████▍    | 4.46G/8.14G [03:15<02:41, 22.7MB/s]
Downloading model.tgz:  55%|█████▍    | 4.47G/8.14G [03:15<02:43, 22.4MB/s]
Downloading model.tgz:  55%|█████▍    | 4.47G/8.14G [03:16<02:44, 22.3MB/s]
Downloading model.tgz:  55%|█████▍    | 4.47G/8.14G [03:16<02:37, 23.3MB/s]
Downloading model.tgz:  55%|█████▍    | 4.47G/8.14G [03:16<02:33, 23.8MB/s]
Downloading model.tgz:  55%|█████▍    | 4.48G/8.14G [03:16<02:35, 23.5MB/s]
Downloading model.tgz:  55%|█████▌    | 4.48G/8.14G [03:16<02:42, 22.5MB/s]
Downloading model.tgz:  55%|█████▌    | 4.48G/8.14G [03:16<02:41, 22.6MB/s]
Downloading model.tgz:  55%|█████▌    | 4.48G/8.14G [03:16<02:42, 22.5MB/s]
Downloading model.tgz:  55%|█████▌    | 4.49G/8.14G [03:16<02:36, 23.3MB/s]
Downloading model.tgz:  55%|█████▌    | 4.49G/8.14G [03:16<02:34, 23.6MB/s]
Downloading model.tgz:  55%|█████▌    | 4.49G/8.14G [03:16<02:35, 23.4MB/s]
Downloading model.tgz:  55%|█████▌    | 4.49G/8.14G [03:17<02:46, 21.9MB/s]
Downloading model.tgz:  55%|█████▌    | 4.50G/8.14G [03:17<02:39, 22.8MB/s]
Downloading model.tgz:  55%|█████▌    | 4.50G/8.14G [03:17<02:40, 22.8MB/s]
Downloading model.tgz:  55%|█████▌    | 4.50G/8.14G [03:17<02:36, 23.3MB/s]
Downloading model.tgz:  55%|█████▌    | 4.50G/8.14G [03:17<02:32, 23.8MB/s]
Downloading model.tgz:  55%|█████▌    | 4.50G/8.14G [03:17<02:35, 23.3MB/s]
Downloading model.tgz:  55%|█████▌    | 4.51G/8.14G [03:17<02:44, 22.1MB/s]
Downloading model.tgz:  55%|█████▌    | 4.51G/8.14G [03:17<02:40, 22.6MB/s]
Downloading model.tgz:  55%|█████▌    | 4.51G/8.14G [03:17<02:35, 23.3MB/s]
Downloading model.tgz:  55%|█████▌    | 4.51G/8.14G [03:18<02:32, 23.7MB/s]
Downloading model.tgz:  55%|█████▌    | 4.52G/8.14G [03:18<02:31, 23.9MB/s]
Downloading model.tgz:  56%|█████▌    | 4.52G/8.14G [03:18<03:54, 15.4MB/s]
Downloading model.tgz:  56%|█████▌    | 4.53G/8.14G [03:18<03:02, 19.8MB/s]
Downloading model.tgz:  56%|█████▌    | 4.53G/8.14G [03:18<02:54, 20.7MB/s]
Downloading model.tgz:  56%|█████▌    | 4.53G/8.14G [03:18<02:44, 21.9MB/s]
Downloading model.tgz:  56%|█████▌    | 4.53G/8.14G [03:18<02:49, 21.2MB/s]
Downloading model.tgz:  56%|█████▌    | 4.54G/8.14G [03:19<02:41, 22.3MB/s]
Downloading model.tgz:  56%|█████▌    | 4.54G/8.14G [03:19<02:38, 22.7MB/s]
Downloading model.tgz:  56%|█████▌    | 4.54G/8.14G [03:19<02:33, 23.4MB/s]
Downloading model.tgz:  56%|█████▌    | 4.54G/8.14G [03:19<02:44, 21.9MB/s]
Downloading model.tgz:  56%|█████▌    | 4.55G/8.14G [03:19<02:41, 22.3MB/s]
Downloading model.tgz:  56%|█████▌    | 4.55G/8.14G [03:19<02:38, 22.7MB/s]
Downloading model.tgz:  56%|█████▌    | 4.55G/8.14G [03:19<02:31, 23.6MB/s]
Downloading model.tgz:  56%|█████▌    | 4.55G/8.14G [03:19<02:30, 23.8MB/s]
Downloading model.tgz:  56%|█████▌    | 4.56G/8.14G [03:19<02:39, 22.5MB/s]
Downloading model.tgz:  56%|█████▌    | 4.56G/8.14G [03:19<02:39, 22.5MB/s]
Downloading model.tgz:  56%|█████▌    | 4.56G/8.14G [03:20<02:38, 22.6MB/s]
Downloading model.tgz:  56%|█████▌    | 4.56G/8.14G [03:20<02:36, 22.8MB/s]
Downloading model.tgz:  56%|█████▌    | 4.57G/8.14G [03:20<02:34, 23.1MB/s]
Downloading model.tgz:  56%|█████▌    | 4.57G/8.14G [03:20<02:30, 23.7MB/s]
Downloading model.tgz:  56%|█████▌    | 4.57G/8.14G [03:20<02:30, 23.8MB/s]
Downloading model.tgz:  56%|█████▌    | 4.57G/8.14G [03:20<02:36, 22.8MB/s]
Downloading model.tgz:  56%|█████▌    | 4.58G/8.14G [03:20<02:35, 22.9MB/s]
Downloading model.tgz:  56%|█████▌    | 4.58G/8.14G [03:20<02:39, 22.3MB/s]
Downloading model.tgz:  56%|█████▋    | 4.58G/8.14G [03:20<02:35, 22.8MB/s]
Downloading model.tgz:  56%|█████▋    | 4.58G/8.14G [03:21<02:33, 23.1MB/s]
Downloading model.tgz:  56%|█████▋    | 4.59G/8.14G [03:21<02:28, 23.9MB/s]
Downloading model.tgz:  56%|█████▋    | 4.59G/8.14G [03:21<02:36, 22.7MB/s]
Downloading model.tgz:  56%|█████▋    | 4.59G/8.14G [03:21<02:35, 22.8MB/s]
Downloading model.tgz:  56%|█████▋    | 4.59G/8.14G [03:21<02:38, 22.4MB/s]
Downloading model.tgz:  56%|█████▋    | 4.60G/8.14G [03:21<02:36, 22.7MB/s]
Downloading model.tgz:  56%|█████▋    | 4.60G/8.14G [03:21<02:32, 23.3MB/s]
Downloading model.tgz:  57%|█████▋    | 4.60G/8.14G [03:21<02:28, 23.8MB/s]
Downloading model.tgz:  57%|█████▋    | 4.60G/8.14G [03:21<02:36, 22.6MB/s]
Downloading model.tgz:  57%|█████▋    | 4.61G/8.14G [03:21<02:34, 22.9MB/s]
Downloading model.tgz:  57%|█████▋    | 4.61G/8.14G [03:22<02:37, 22.5MB/s]
Downloading model.tgz:  57%|█████▋    | 4.61G/8.14G [03:22<02:32, 23.2MB/s]
Downloading model.tgz:  57%|█████▋    | 4.61G/8.14G [03:22<02:28, 23.7MB/s]
Downloading model.tgz:  57%|█████▋    | 4.62G/8.14G [03:22<02:27, 23.9MB/s]
Downloading model.tgz:  57%|█████▋    | 4.62G/8.14G [03:22<02:35, 22.7MB/s]
Downloading model.tgz:  57%|█████▋    | 4.62G/8.14G [03:22<02:40, 21.9MB/s]
Downloading model.tgz:  57%|█████▋    | 4.62G/8.14G [03:22<02:35, 22.6MB/s]
Downloading model.tgz:  57%|█████▋    | 4.62G/8.14G [03:22<02:30, 23.4MB/s]
Downloading model.tgz:  57%|█████▋    | 4.63G/8.14G [03:22<02:30, 23.4MB/s]
Downloading model.tgz:  57%|█████▋    | 4.63G/8.14G [03:23<02:28, 23.6MB/s]
Downloading model.tgz:  57%|█████▋    | 4.63G/8.14G [03:23<02:35, 22.5MB/s]
Downloading model.tgz:  57%|█████▋    | 4.63G/8.14G [03:23<02:34, 22.6MB/s]
Downloading model.tgz:  57%|█████▋    | 4.64G/8.14G [03:23<02:35, 22.6MB/s]
Downloading model.tgz:  57%|█████▋    | 4.64G/8.14G [03:23<02:32, 23.0MB/s]
Downloading model.tgz:  57%|█████▋    | 4.64G/8.14G [03:23<02:30, 23.3MB/s]
Downloading model.tgz:  57%|█████▋    | 4.64G/8.14G [03:23<02:29, 23.3MB/s]
Downloading model.tgz:  57%|█████▋    | 4.65G/8.14G [03:23<02:32, 23.0MB/s]
Downloading model.tgz:  57%|█████▋    | 4.65G/8.14G [03:23<02:30, 23.2MB/s]
Downloading model.tgz:  57%|█████▋    | 4.65G/8.14G [03:23<02:31, 23.1MB/s]
Downloading model.tgz:  57%|█████▋    | 4.65G/8.14G [03:24<02:32, 22.9MB/s]
Downloading model.tgz:  57%|█████▋    | 4.66G/8.14G [03:24<02:32, 22.9MB/s]
Downloading model.tgz:  57%|█████▋    | 4.66G/8.14G [03:24<02:29, 23.4MB/s]
Downloading model.tgz:  57%|█████▋    | 4.66G/8.14G [03:24<02:30, 23.1MB/s]
Downloading model.tgz:  57%|█████▋    | 4.66G/8.14G [03:24<02:34, 22.5MB/s]
Downloading model.tgz:  57%|█████▋    | 4.67G/8.14G [03:24<02:29, 23.2MB/s]
Downloading model.tgz:  57%|█████▋    | 4.67G/8.14G [03:24<02:30, 23.1MB/s]
Downloading model.tgz:  57%|█████▋    | 4.67G/8.14G [03:24<02:29, 23.1MB/s]
Downloading model.tgz:  57%|█████▋    | 4.67G/8.14G [03:24<02:30, 23.0MB/s]
Downloading model.tgz:  57%|█████▋    | 4.67G/8.14G [03:24<02:30, 23.1MB/s]
Downloading model.tgz:  57%|█████▋    | 4.68G/8.14G [03:25<02:31, 22.8MB/s]
Downloading model.tgz:  57%|█████▋    | 4.68G/8.14G [03:25<02:35, 22.2MB/s]
Downloading model.tgz:  58%|█████▊    | 4.68G/8.14G [03:25<02:28, 23.2MB/s]
Downloading model.tgz:  58%|█████▊    | 4.68G/8.14G [03:25<02:33, 22.5MB/s]
Downloading model.tgz:  58%|█████▊    | 4.69G/8.14G [03:25<02:28, 23.2MB/s]
Downloading model.tgz:  58%|█████▊    | 4.69G/8.14G [03:25<02:30, 23.0MB/s]
Downloading model.tgz:  58%|█████▊    | 4.69G/8.14G [03:25<02:29, 23.1MB/s]
Downloading model.tgz:  58%|█████▊    | 4.69G/8.14G [03:25<02:33, 22.4MB/s]
Downloading model.tgz:  58%|█████▊    | 4.70G/8.14G [03:25<02:36, 22.0MB/s]
Downloading model.tgz:  58%|█████▊    | 4.70G/8.14G [03:26<02:35, 22.1MB/s]
Downloading model.tgz:  58%|█████▊    | 4.70G/8.14G [03:26<02:27, 23.3MB/s]
Downloading model.tgz:  58%|█████▊    | 4.70G/8.14G [03:26<02:23, 23.9MB/s]
Downloading model.tgz:  58%|█████▊    | 4.71G/8.14G [03:26<02:24, 23.8MB/s]
Downloading model.tgz:  58%|█████▊    | 4.71G/8.14G [03:26<02:31, 22.6MB/s]
Downloading model.tgz:  58%|█████▊    | 4.71G/8.14G [03:26<02:38, 21.7MB/s]
Downloading model.tgz:  58%|█████▊    | 4.71G/8.14G [03:26<02:34, 22.2MB/s]
Downloading model.tgz:  58%|█████▊    | 4.72G/8.14G [03:26<02:31, 22.6MB/s]
Downloading model.tgz:  58%|█████▊    | 4.72G/8.14G [03:26<02:23, 23.9MB/s]
Downloading model.tgz:  58%|█████▊    | 4.72G/8.14G [03:26<02:24, 23.6MB/s]
Downloading model.tgz:  58%|█████▊    | 4.72G/8.14G [03:27<02:35, 22.0MB/s]
Downloading model.tgz:  58%|█████▊    | 4.73G/8.14G [03:27<02:33, 22.2MB/s]
Downloading model.tgz:  58%|█████▊    | 4.73G/8.14G [03:27<02:30, 22.7MB/s]
Downloading model.tgz:  58%|█████▊    | 4.73G/8.14G [03:27<02:30, 22.7MB/s]
Downloading model.tgz:  58%|█████▊    | 4.73G/8.14G [03:27<02:22, 23.8MB/s]
Downloading model.tgz:  58%|█████▊    | 4.74G/8.14G [03:27<02:22, 23.9MB/s]
Downloading model.tgz:  58%|█████▊    | 4.74G/8.14G [03:27<02:35, 21.8MB/s]
Downloading model.tgz:  58%|█████▊    | 4.74G/8.14G [03:27<02:32, 22.3MB/s]
Downloading model.tgz:  58%|█████▊    | 4.74G/8.14G [03:27<02:32, 22.3MB/s]
Downloading model.tgz:  58%|█████▊    | 4.75G/8.14G [03:28<02:21, 24.1MB/s]
Downloading model.tgz:  58%|█████▊    | 4.75G/8.14G [03:28<02:23, 23.7MB/s]
Downloading model.tgz:  58%|█████▊    | 4.75G/8.14G [03:28<02:39, 21.2MB/s]
Downloading model.tgz:  58%|█████▊    | 4.75G/8.14G [03:28<02:32, 22.3MB/s]
Downloading model.tgz:  58%|█████▊    | 4.76G/8.14G [03:28<02:24, 23.5MB/s]
Downloading model.tgz:  58%|█████▊    | 4.76G/8.14G [03:28<02:23, 23.5MB/s]
Downloading model.tgz:  58%|█████▊    | 4.76G/8.14G [03:28<02:26, 23.1MB/s]
Downloading model.tgz:  59%|█████▊    | 4.76G/8.14G [03:28<02:36, 21.5MB/s]
Downloading model.tgz:  59%|█████▊    | 4.77G/8.14G [03:28<02:35, 21.7MB/s]
Downloading model.tgz:  59%|█████▊    | 4.77G/8.14G [03:29<02:26, 23.0MB/s]
Downloading model.tgz:  59%|█████▊    | 4.77G/8.14G [03:29<02:22, 23.7MB/s]
Downloading model.tgz:  59%|█████▊    | 4.77G/8.14G [03:29<02:23, 23.5MB/s]
Downloading model.tgz:  59%|█████▊    | 4.78G/8.14G [03:29<02:34, 21.8MB/s]
Downloading model.tgz:  59%|█████▊    | 4.78G/8.14G [03:29<02:31, 22.2MB/s]
Downloading model.tgz:  59%|█████▊    | 4.78G/8.14G [03:29<02:26, 22.9MB/s]
Downloading model.tgz:  59%|█████▉    | 4.78G/8.14G [03:29<02:22, 23.5MB/s]
Downloading model.tgz:  59%|█████▉    | 4.79G/8.14G [03:29<02:22, 23.6MB/s]
Downloading model.tgz:  59%|█████▉    | 4.79G/8.14G [03:29<02:25, 23.0MB/s]
Downloading model.tgz:  59%|█████▉    | 4.79G/8.14G [03:30<02:33, 21.8MB/s]
Downloading model.tgz:  59%|█████▉    | 4.79G/8.14G [03:30<02:28, 22.6MB/s]
Downloading model.tgz:  59%|█████▉    | 4.80G/8.14G [03:30<02:21, 23.6MB/s]
Downloading model.tgz:  59%|█████▉    | 4.80G/8.14G [03:30<02:20, 23.7MB/s]
Downloading model.tgz:  59%|█████▉    | 4.80G/8.14G [03:30<02:21, 23.6MB/s]
Downloading model.tgz:  59%|█████▉    | 4.80G/8.14G [03:30<02:31, 22.0MB/s]
Downloading model.tgz:  59%|█████▉    | 4.80G/8.14G [03:30<02:29, 22.2MB/s]
Downloading model.tgz:  59%|█████▉    | 4.81G/8.14G [03:30<02:29, 22.3MB/s]
Downloading model.tgz:  59%|█████▉    | 4.81G/8.14G [03:30<02:23, 23.3MB/s]
Downloading model.tgz:  59%|█████▉    | 4.81G/8.14G [03:30<02:19, 23.9MB/s]
Downloading model.tgz:  59%|█████▉    | 4.81G/8.14G [03:31<02:20, 23.7MB/s]
Downloading model.tgz:  59%|█████▉    | 4.82G/8.14G [03:31<02:30, 22.1MB/s]
Downloading model.tgz:  59%|█████▉    | 4.82G/8.14G [03:31<02:29, 22.2MB/s]
Downloading model.tgz:  59%|█████▉    | 4.82G/8.14G [03:31<02:28, 22.3MB/s]
Downloading model.tgz:  59%|█████▉    | 4.82G/8.14G [03:31<02:20, 23.5MB/s]
Downloading model.tgz:  59%|█████▉    | 4.83G/8.14G [03:31<02:21, 23.5MB/s]
Downloading model.tgz:  59%|█████▉    | 4.83G/8.14G [03:31<02:24, 22.9MB/s]
Downloading model.tgz:  59%|█████▉    | 4.83G/8.14G [03:31<02:26, 22.6MB/s]
Downloading model.tgz:  59%|█████▉    | 4.83G/8.14G [03:31<02:25, 22.8MB/s]
Downloading model.tgz:  59%|█████▉    | 4.84G/8.14G [03:32<02:24, 22.8MB/s]
Downloading model.tgz:  59%|█████▉    | 4.84G/8.14G [03:32<02:22, 23.2MB/s]
Downloading model.tgz:  59%|█████▉    | 4.84G/8.14G [03:32<02:18, 23.9MB/s]
Downloading model.tgz:  60%|█████▉    | 4.84G/8.14G [03:32<02:18, 23.7MB/s]
Downloading model.tgz:  60%|█████▉    | 4.85G/8.14G [03:32<02:27, 22.3MB/s]
Downloading model.tgz:  60%|█████▉    | 4.85G/8.14G [03:32<02:29, 22.1MB/s]
Downloading model.tgz:  60%|█████▉    | 4.85G/8.14G [03:32<02:23, 22.9MB/s]
Downloading model.tgz:  60%|█████▉    | 4.85G/8.14G [03:32<02:20, 23.3MB/s]
Downloading model.tgz:  60%|█████▉    | 4.86G/8.14G [03:32<02:20, 23.4MB/s]
Downloading model.tgz:  60%|█████▉    | 4.86G/8.14G [03:32<02:17, 23.9MB/s]
Downloading model.tgz:  60%|█████▉    | 4.86G/8.14G [03:33<02:25, 22.5MB/s]
Downloading model.tgz:  60%|█████▉    | 4.86G/8.14G [03:33<02:25, 22.6MB/s]
Downloading model.tgz:  60%|█████▉    | 4.87G/8.14G [03:33<02:23, 22.8MB/s]
Downloading model.tgz:  60%|█████▉    | 4.87G/8.14G [03:33<02:22, 22.9MB/s]
Downloading model.tgz:  60%|█████▉    | 4.87G/8.14G [03:33<02:23, 22.8MB/s]
Downloading model.tgz:  60%|█████▉    | 4.87G/8.14G [03:33<02:18, 23.7MB/s]
Downloading model.tgz:  60%|█████▉    | 4.87G/8.14G [03:33<02:20, 23.2MB/s]
Downloading model.tgz:  60%|█████▉    | 4.88G/8.14G [03:33<02:25, 22.4MB/s]
Downloading model.tgz:  60%|█████▉    | 4.88G/8.14G [03:33<02:26, 22.2MB/s]
Downloading model.tgz:  60%|█████▉    | 4.88G/8.14G [03:34<02:23, 22.8MB/s]
Downloading model.tgz:  60%|██████    | 4.88G/8.14G [03:34<02:24, 22.5MB/s]
Downloading model.tgz:  60%|██████    | 4.89G/8.14G [03:34<02:19, 23.2MB/s]
Downloading model.tgz:  60%|██████    | 4.89G/8.14G [03:34<02:24, 22.4MB/s]
Downloading model.tgz:  60%|██████    | 4.89G/8.14G [03:34<02:18, 23.5MB/s]
Downloading model.tgz:  60%|██████    | 4.89G/8.14G [03:34<02:25, 22.3MB/s]
Downloading model.tgz:  60%|██████    | 4.90G/8.14G [03:34<02:25, 22.3MB/s]
Downloading model.tgz:  60%|██████    | 4.90G/8.14G [03:34<02:24, 22.4MB/s]
Downloading model.tgz:  60%|██████    | 4.90G/8.14G [03:34<02:21, 22.9MB/s]
Downloading model.tgz:  60%|██████    | 4.90G/8.14G [03:34<02:21, 22.9MB/s]
Downloading model.tgz:  60%|██████    | 4.91G/8.14G [03:35<02:19, 23.1MB/s]
Downloading model.tgz:  60%|██████    | 4.91G/8.14G [03:35<02:15, 23.8MB/s]
Downloading model.tgz:  60%|██████    | 4.91G/8.14G [03:35<02:23, 22.4MB/s]
Downloading model.tgz:  60%|██████    | 4.91G/8.14G [03:35<02:21, 22.8MB/s]
Downloading model.tgz:  60%|██████    | 4.92G/8.14G [03:35<02:22, 22.6MB/s]
Downloading model.tgz:  60%|██████    | 4.92G/8.14G [03:35<02:21, 22.8MB/s]
Downloading model.tgz:  60%|██████    | 4.92G/8.14G [03:35<02:17, 23.4MB/s]
Downloading model.tgz:  60%|██████    | 4.92G/8.14G [03:35<02:17, 23.4MB/s]
Downloading model.tgz:  61%|██████    | 4.93G/8.14G [03:35<02:21, 22.7MB/s]
Downloading model.tgz:  61%|██████    | 4.93G/8.14G [03:36<02:22, 22.6MB/s]
Downloading model.tgz:  61%|██████    | 4.93G/8.14G [03:36<02:21, 22.7MB/s]
Downloading model.tgz:  61%|██████    | 4.93G/8.14G [03:36<02:22, 22.6MB/s]
Downloading model.tgz:  61%|██████    | 4.93G/8.14G [03:36<02:19, 23.0MB/s]
Downloading model.tgz:  61%|██████    | 4.94G/8.14G [03:36<02:15, 23.6MB/s]
Downloading model.tgz:  61%|██████    | 4.94G/8.14G [03:36<02:17, 23.3MB/s]
Downloading model.tgz:  61%|██████    | 4.94G/8.14G [03:36<02:18, 23.1MB/s]
Downloading model.tgz:  61%|██████    | 4.94G/8.14G [03:36<02:18, 23.0MB/s]
Downloading model.tgz:  61%|██████    | 4.95G/8.14G [03:36<02:21, 22.6MB/s]
Downloading model.tgz:  61%|██████    | 4.95G/8.14G [03:36<02:21, 22.5MB/s]
Downloading model.tgz:  61%|██████    | 4.95G/8.14G [03:37<02:16, 23.4MB/s]
Downloading model.tgz:  61%|██████    | 4.95G/8.14G [03:37<02:16, 23.3MB/s]
Downloading model.tgz:  61%|██████    | 4.96G/8.14G [03:37<02:16, 23.4MB/s]
Downloading model.tgz:  61%|██████    | 4.96G/8.14G [03:37<02:16, 23.3MB/s]
Downloading model.tgz:  61%|██████    | 4.96G/8.14G [03:37<02:17, 23.1MB/s]
Downloading model.tgz:  61%|██████    | 4.96G/8.14G [03:37<02:23, 22.2MB/s]
Downloading model.tgz:  61%|██████    | 4.97G/8.14G [03:37<02:21, 22.5MB/s]
Downloading model.tgz:  61%|██████    | 4.97G/8.14G [03:37<02:16, 23.3MB/s]
Downloading model.tgz:  61%|██████    | 4.97G/8.14G [03:37<02:13, 23.7MB/s]
Downloading model.tgz:  61%|██████    | 4.97G/8.14G [03:37<02:16, 23.2MB/s]
Downloading model.tgz:  61%|██████    | 4.98G/8.14G [03:38<02:16, 23.2MB/s]
Downloading model.tgz:  61%|██████    | 4.98G/8.14G [03:38<02:24, 21.9MB/s]
Downloading model.tgz:  61%|██████    | 4.98G/8.14G [03:38<02:18, 22.8MB/s]
Downloading model.tgz:  61%|██████    | 4.98G/8.14G [03:38<02:18, 22.8MB/s]
Downloading model.tgz:  61%|██████▏   | 4.99G/8.14G [03:38<02:12, 23.8MB/s]
Downloading model.tgz:  61%|██████▏   | 4.99G/8.14G [03:38<02:14, 23.4MB/s]
Downloading model.tgz:  61%|██████▏   | 4.99G/8.14G [03:38<02:23, 21.9MB/s]
Downloading model.tgz:  61%|██████▏   | 4.99G/8.14G [03:38<02:19, 22.5MB/s]
Downloading model.tgz:  61%|██████▏   | 5.00G/8.14G [03:38<02:17, 22.8MB/s]
Downloading model.tgz:  61%|██████▏   | 5.00G/8.14G [03:39<02:13, 23.6MB/s]
Downloading model.tgz:  61%|██████▏   | 5.00G/8.14G [03:39<02:13, 23.5MB/s]
Downloading model.tgz:  61%|██████▏   | 5.00G/8.14G [03:39<02:12, 23.6MB/s]
Downloading model.tgz:  61%|██████▏   | 5.01G/8.14G [03:39<02:20, 22.3MB/s]
Downloading model.tgz:  62%|██████▏   | 5.01G/8.14G [03:39<02:18, 22.6MB/s]
Downloading model.tgz:  62%|██████▏   | 5.01G/8.14G [03:39<02:16, 22.9MB/s]
Downloading model.tgz:  62%|██████▏   | 5.01G/8.14G [03:39<02:14, 23.3MB/s]
Downloading model.tgz:  62%|██████▏   | 5.02G/8.14G [03:39<02:14, 23.3MB/s]
Downloading model.tgz:  62%|██████▏   | 5.02G/8.14G [03:39<02:15, 23.0MB/s]
Downloading model.tgz:  62%|██████▏   | 5.02G/8.14G [03:40<02:18, 22.5MB/s]
Downloading model.tgz:  62%|██████▏   | 5.02G/8.14G [03:40<02:15, 23.0MB/s]
Downloading model.tgz:  62%|██████▏   | 5.02G/8.14G [03:40<02:16, 22.9MB/s]
Downloading model.tgz:  62%|██████▏   | 5.03G/8.14G [03:40<02:14, 23.2MB/s]
Downloading model.tgz:  62%|██████▏   | 5.03G/8.14G [03:40<02:14, 23.2MB/s]
Downloading model.tgz:  62%|██████▏   | 5.03G/8.14G [03:40<02:12, 23.5MB/s]
Downloading model.tgz:  62%|██████▏   | 5.03G/8.14G [03:40<02:16, 22.8MB/s]
Downloading model.tgz:  62%|██████▏   | 5.04G/8.14G [03:40<02:16, 22.7MB/s]
Downloading model.tgz:  62%|██████▏   | 5.04G/8.14G [03:40<02:16, 22.7MB/s]
Downloading model.tgz:  62%|██████▏   | 5.04G/8.14G [03:40<02:16, 22.8MB/s]
Downloading model.tgz:  62%|██████▏   | 5.04G/8.14G [03:41<02:17, 22.6MB/s]
Downloading model.tgz:  62%|██████▏   | 5.05G/8.14G [03:41<02:11, 23.5MB/s]
Downloading model.tgz:  62%|██████▏   | 5.05G/8.14G [03:41<02:13, 23.2MB/s]
Downloading model.tgz:  62%|██████▏   | 5.05G/8.14G [03:41<02:13, 23.1MB/s]
Downloading model.tgz:  62%|██████▏   | 5.05G/8.14G [03:41<02:12, 23.2MB/s]
Downloading model.tgz:  62%|██████▏   | 5.06G/8.14G [03:41<02:16, 22.6MB/s]
Downloading model.tgz:  62%|██████▏   | 5.06G/8.14G [03:41<02:15, 22.8MB/s]
Downloading model.tgz:  62%|██████▏   | 5.06G/8.14G [03:41<02:15, 22.7MB/s]
Downloading model.tgz:  62%|██████▏   | 5.06G/8.14G [03:41<02:14, 22.9MB/s]
Downloading model.tgz:  62%|██████▏   | 5.07G/8.14G [03:41<02:11, 23.3MB/s]
Downloading model.tgz:  62%|██████▏   | 5.07G/8.14G [03:42<02:12, 23.2MB/s]
Downloading model.tgz:  62%|██████▏   | 5.07G/8.14G [03:42<02:12, 23.2MB/s]
Downloading model.tgz:  62%|██████▏   | 5.07G/8.14G [03:42<02:11, 23.3MB/s]
Downloading model.tgz:  62%|██████▏   | 5.07G/8.14G [03:42<02:16, 22.4MB/s]
Downloading model.tgz:  62%|██████▏   | 5.08G/8.14G [03:42<02:15, 22.6MB/s]
Downloading model.tgz:  62%|██████▏   | 5.08G/8.14G [03:42<02:14, 22.7MB/s]
Downloading model.tgz:  62%|██████▏   | 5.08G/8.14G [03:42<02:15, 22.6MB/s]
Downloading model.tgz:  62%|██████▏   | 5.08G/8.14G [03:42<02:10, 23.4MB/s]
Downloading model.tgz:  62%|██████▏   | 5.09G/8.14G [03:42<02:09, 23.6MB/s]
Downloading model.tgz:  63%|██████▎   | 5.09G/8.14G [03:43<02:12, 23.0MB/s]
Downloading model.tgz:  63%|██████▎   | 5.09G/8.14G [03:43<02:13, 22.9MB/s]
Downloading model.tgz:  63%|██████▎   | 5.09G/8.14G [03:43<02:12, 23.0MB/s]
Downloading model.tgz:  63%|██████▎   | 5.10G/8.14G [03:43<02:09, 23.5MB/s]
Downloading model.tgz:  63%|██████▎   | 5.10G/8.14G [03:43<02:12, 22.9MB/s]
Downloading model.tgz:  63%|██████▎   | 5.10G/8.14G [03:43<02:11, 23.2MB/s]
Downloading model.tgz:  63%|██████▎   | 5.10G/8.14G [03:43<02:08, 23.6MB/s]
Downloading model.tgz:  63%|██████▎   | 5.11G/8.14G [03:43<02:12, 22.8MB/s]
Downloading model.tgz:  63%|██████▎   | 5.11G/8.14G [03:43<02:13, 22.8MB/s]
Downloading model.tgz:  63%|██████▎   | 5.11G/8.14G [03:43<02:11, 23.1MB/s]
Downloading model.tgz:  63%|██████▎   | 5.11G/8.14G [03:44<02:12, 22.9MB/s]
Downloading model.tgz:  63%|██████▎   | 5.12G/8.14G [03:44<02:11, 23.0MB/s]
Downloading model.tgz:  63%|██████▎   | 5.12G/8.14G [03:44<02:10, 23.1MB/s]
Downloading model.tgz:  63%|██████▎   | 5.12G/8.14G [03:44<02:10, 23.1MB/s]
Downloading model.tgz:  63%|██████▎   | 5.12G/8.14G [03:44<02:09, 23.4MB/s]
Downloading model.tgz:  63%|██████▎   | 5.12G/8.14G [03:44<02:11, 23.0MB/s]
Downloading model.tgz:  63%|██████▎   | 5.13G/8.14G [03:44<02:10, 23.0MB/s]
Downloading model.tgz:  63%|██████▎   | 5.13G/8.14G [03:44<02:10, 23.1MB/s]
Downloading model.tgz:  63%|██████▎   | 5.13G/8.14G [03:44<02:11, 22.9MB/s]
Downloading model.tgz:  63%|██████▎   | 5.13G/8.14G [03:44<02:11, 22.9MB/s]
Downloading model.tgz:  63%|██████▎   | 5.14G/8.14G [03:45<02:09, 23.1MB/s]
Downloading model.tgz:  63%|██████▎   | 5.14G/8.14G [03:45<02:10, 22.9MB/s]
Downloading model.tgz:  63%|██████▎   | 5.14G/8.14G [03:45<02:09, 23.1MB/s]
Downloading model.tgz:  63%|██████▎   | 5.14G/8.14G [03:45<02:12, 22.7MB/s]
Downloading model.tgz:  63%|██████▎   | 5.15G/8.14G [03:45<02:09, 23.1MB/s]
Downloading model.tgz:  63%|██████▎   | 5.15G/8.14G [03:45<02:11, 22.8MB/s]
Downloading model.tgz:  63%|██████▎   | 5.15G/8.14G [03:45<02:10, 22.8MB/s]
Downloading model.tgz:  63%|██████▎   | 5.15G/8.14G [03:45<02:09, 23.1MB/s]
Downloading model.tgz:  63%|██████▎   | 5.16G/8.14G [03:45<02:08, 23.3MB/s]
Downloading model.tgz:  63%|██████▎   | 5.16G/8.14G [03:45<02:09, 23.0MB/s]
Downloading model.tgz:  63%|██████▎   | 5.16G/8.14G [03:46<02:08, 23.2MB/s]
Downloading model.tgz:  63%|██████▎   | 5.16G/8.14G [03:46<02:08, 23.1MB/s]
Downloading model.tgz:  63%|██████▎   | 5.16G/8.14G [03:46<02:08, 23.1MB/s]
Downloading model.tgz:  63%|██████▎   | 5.17G/8.14G [03:46<02:12, 22.4MB/s]
Downloading model.tgz:  64%|██████▎   | 5.17G/8.14G [03:46<02:10, 22.8MB/s]
Downloading model.tgz:  64%|██████▎   | 5.17G/8.14G [03:46<02:06, 23.5MB/s]
Downloading model.tgz:  64%|██████▎   | 5.17G/8.14G [03:46<02:08, 23.1MB/s]
Downloading model.tgz:  64%|██████▎   | 5.18G/8.14G [03:46<02:07, 23.2MB/s]
Downloading model.tgz:  64%|██████▎   | 5.18G/8.14G [03:46<02:08, 23.1MB/s]
Downloading model.tgz:  64%|██████▎   | 5.18G/8.14G [03:47<02:07, 23.1MB/s]
Downloading model.tgz:  64%|██████▎   | 5.18G/8.14G [03:47<02:11, 22.5MB/s]
Downloading model.tgz:  64%|██████▎   | 5.19G/8.14G [03:47<02:10, 22.6MB/s]
Downloading model.tgz:  64%|██████▎   | 5.19G/8.14G [03:47<02:08, 23.0MB/s]
Downloading model.tgz:  64%|██████▍   | 5.19G/8.14G [03:47<02:06, 23.3MB/s]
Downloading model.tgz:  64%|██████▍   | 5.19G/8.14G [03:47<02:06, 23.3MB/s]
Downloading model.tgz:  64%|██████▍   | 5.20G/8.14G [03:47<02:07, 23.1MB/s]
Downloading model.tgz:  64%|██████▍   | 5.20G/8.14G [03:47<02:12, 22.3MB/s]
Downloading model.tgz:  64%|██████▍   | 5.20G/8.14G [03:48<03:24, 14.4MB/s]
Downloading model.tgz:  64%|██████▍   | 5.21G/8.14G [03:48<02:36, 18.8MB/s]
Downloading model.tgz:  64%|██████▍   | 5.21G/8.14G [03:48<02:24, 20.2MB/s]
Downloading model.tgz:  64%|██████▍   | 5.21G/8.14G [03:48<02:22, 20.6MB/s]
Downloading model.tgz:  64%|██████▍   | 5.22G/8.14G [03:48<02:14, 21.8MB/s]
Downloading model.tgz:  64%|██████▍   | 5.22G/8.14G [03:48<02:14, 21.6MB/s]
Downloading model.tgz:  64%|██████▍   | 5.22G/8.14G [03:48<02:10, 22.4MB/s]
Downloading model.tgz:  64%|██████▍   | 5.22G/8.14G [03:48<02:11, 22.2MB/s]
Downloading model.tgz:  64%|██████▍   | 5.23G/8.14G [03:48<02:08, 22.6MB/s]
Downloading model.tgz:  64%|██████▍   | 5.23G/8.14G [03:49<02:06, 23.0MB/s]
Downloading model.tgz:  64%|██████▍   | 5.23G/8.14G [03:49<02:06, 22.9MB/s]
Downloading model.tgz:  64%|██████▍   | 5.23G/8.14G [03:49<02:08, 22.6MB/s]
Downloading model.tgz:  64%|██████▍   | 5.24G/8.14G [03:49<02:10, 22.2MB/s]
Downloading model.tgz:  64%|██████▍   | 5.24G/8.14G [03:49<02:07, 22.8MB/s]
Downloading model.tgz:  64%|██████▍   | 5.24G/8.14G [03:49<02:05, 23.0MB/s]
Downloading model.tgz:  64%|██████▍   | 5.24G/8.14G [03:49<02:04, 23.3MB/s]
Downloading model.tgz:  64%|██████▍   | 5.25G/8.14G [03:49<02:04, 23.3MB/s]
Downloading model.tgz:  64%|██████▍   | 5.25G/8.14G [03:49<02:05, 23.0MB/s]
Downloading model.tgz:  65%|██████▍   | 5.25G/8.14G [03:50<02:07, 22.7MB/s]
Downloading model.tgz:  65%|██████▍   | 5.25G/8.14G [03:50<02:07, 22.7MB/s]
Downloading model.tgz:  65%|██████▍   | 5.26G/8.14G [03:50<02:06, 22.7MB/s]
Downloading model.tgz:  65%|██████▍   | 5.26G/8.14G [03:50<02:02, 23.5MB/s]
Downloading model.tgz:  65%|██████▍   | 5.26G/8.14G [03:50<02:03, 23.3MB/s]
Downloading model.tgz:  65%|██████▍   | 5.26G/8.14G [03:50<02:03, 23.3MB/s]
Downloading model.tgz:  65%|██████▍   | 5.26G/8.14G [03:50<02:04, 23.1MB/s]
Downloading model.tgz:  65%|██████▍   | 5.27G/8.14G [03:50<02:03, 23.2MB/s]
Downloading model.tgz:  65%|██████▍   | 5.27G/8.14G [03:50<02:05, 22.8MB/s]
Downloading model.tgz:  65%|██████▍   | 5.27G/8.14G [03:50<02:05, 22.9MB/s]
Downloading model.tgz:  65%|██████▍   | 5.27G/8.14G [03:51<02:04, 23.1MB/s]
Downloading model.tgz:  65%|██████▍   | 5.28G/8.14G [03:51<02:04, 22.9MB/s]
Downloading model.tgz:  65%|██████▍   | 5.28G/8.14G [03:51<02:04, 23.0MB/s]
Downloading model.tgz:  65%|██████▍   | 5.28G/8.14G [03:51<02:03, 23.2MB/s]
Downloading model.tgz:  65%|██████▍   | 5.28G/8.14G [03:51<02:05, 22.8MB/s]
Downloading model.tgz:  65%|██████▍   | 5.29G/8.14G [03:51<02:04, 22.9MB/s]
Downloading model.tgz:  65%|██████▍   | 5.29G/8.14G [03:51<02:04, 23.0MB/s]
Downloading model.tgz:  65%|██████▍   | 5.29G/8.14G [03:51<02:04, 22.9MB/s]
Downloading model.tgz:  65%|██████▌   | 5.29G/8.14G [03:51<02:03, 23.1MB/s]
Downloading model.tgz:  65%|██████▌   | 5.30G/8.14G [03:51<02:03, 23.1MB/s]
Downloading model.tgz:  65%|██████▌   | 5.30G/8.14G [03:52<02:00, 23.6MB/s]
Downloading model.tgz:  65%|██████▌   | 5.30G/8.14G [03:52<02:04, 22.9MB/s]
Downloading model.tgz:  65%|██████▌   | 5.30G/8.14G [03:52<02:03, 23.0MB/s]
Downloading model.tgz:  65%|██████▌   | 5.31G/8.14G [03:52<02:05, 22.6MB/s]
Downloading model.tgz:  65%|██████▌   | 5.31G/8.14G [03:52<02:02, 23.2MB/s]
Downloading model.tgz:  65%|██████▌   | 5.31G/8.14G [03:52<02:01, 23.4MB/s]
Downloading model.tgz:  65%|██████▌   | 5.31G/8.14G [03:52<02:01, 23.3MB/s]
Downloading model.tgz:  65%|██████▌   | 5.31G/8.14G [03:52<02:02, 23.1MB/s]
Downloading model.tgz:  65%|██████▌   | 5.32G/8.14G [03:52<02:02, 23.1MB/s]
Downloading model.tgz:  65%|██████▌   | 5.32G/8.14G [03:53<02:02, 23.0MB/s]
Downloading model.tgz:  65%|██████▌   | 5.32G/8.14G [03:53<02:04, 22.6MB/s]
Downloading model.tgz:  65%|██████▌   | 5.32G/8.14G [03:53<02:02, 23.0MB/s]
Downloading model.tgz:  65%|██████▌   | 5.33G/8.14G [03:53<02:00, 23.2MB/s]
Downloading model.tgz:  65%|██████▌   | 5.33G/8.14G [03:53<02:00, 23.3MB/s]
Downloading model.tgz:  66%|██████▌   | 5.33G/8.14G [03:53<02:00, 23.3MB/s]
Downloading model.tgz:  66%|██████▌   | 5.33G/8.14G [03:53<02:00, 23.3MB/s]
Downloading model.tgz:  66%|██████▌   | 5.34G/8.14G [03:53<02:01, 23.1MB/s]
Downloading model.tgz:  66%|██████▌   | 5.34G/8.14G [03:53<02:04, 22.5MB/s]
Downloading model.tgz:  66%|██████▌   | 5.34G/8.14G [03:53<02:04, 22.5MB/s]
Downloading model.tgz:  66%|██████▌   | 5.34G/8.14G [03:54<01:59, 23.5MB/s]
Downloading model.tgz:  66%|██████▌   | 5.35G/8.14G [03:54<01:59, 23.5MB/s]
Downloading model.tgz:  66%|██████▌   | 5.35G/8.14G [03:54<02:00, 23.2MB/s]
Downloading model.tgz:  66%|██████▌   | 5.35G/8.14G [03:54<02:00, 23.1MB/s]
Downloading model.tgz:  66%|██████▌   | 5.35G/8.14G [03:54<02:01, 23.0MB/s]
Downloading model.tgz:  66%|██████▌   | 5.36G/8.14G [03:54<02:03, 22.5MB/s]
Downloading model.tgz:  66%|██████▌   | 5.36G/8.14G [03:54<02:02, 22.6MB/s]
Downloading model.tgz:  66%|██████▌   | 5.36G/8.14G [03:54<02:02, 22.6MB/s]
Downloading model.tgz:  66%|██████▌   | 5.36G/8.14G [03:54<02:02, 22.7MB/s]
Downloading model.tgz:  66%|██████▌   | 5.37G/8.14G [03:55<01:57, 23.7MB/s]
Downloading model.tgz:  66%|██████▌   | 5.37G/8.14G [03:55<02:01, 22.8MB/s]
Downloading model.tgz:  66%|██████▌   | 5.37G/8.14G [03:55<02:01, 22.8MB/s]
Downloading model.tgz:  66%|██████▌   | 5.37G/8.14G [03:55<01:58, 23.3MB/s]
Downloading model.tgz:  66%|██████▌   | 5.37G/8.14G [03:55<01:58, 23.4MB/s]
Downloading model.tgz:  66%|██████▌   | 5.38G/8.14G [03:55<02:01, 22.8MB/s]
Downloading model.tgz:  66%|██████▌   | 5.38G/8.14G [03:55<02:00, 22.9MB/s]
Downloading model.tgz:  66%|██████▌   | 5.38G/8.14G [03:55<01:57, 23.4MB/s]
Downloading model.tgz:  66%|██████▌   | 5.38G/8.14G [03:55<02:00, 23.0MB/s]
Downloading model.tgz:  66%|██████▌   | 5.39G/8.14G [03:55<01:59, 23.0MB/s]
Downloading model.tgz:  66%|██████▌   | 5.39G/8.14G [03:56<01:58, 23.2MB/s]
Downloading model.tgz:  66%|██████▌   | 5.39G/8.14G [03:56<01:57, 23.4MB/s]
Downloading model.tgz:  66%|██████▋   | 5.39G/8.14G [03:56<02:00, 22.8MB/s]
Downloading model.tgz:  66%|██████▋   | 5.40G/8.14G [03:56<02:56, 15.5MB/s]
Downloading model.tgz:  66%|██████▋   | 5.40G/8.14G [03:56<02:17, 20.0MB/s]
Downloading model.tgz:  66%|██████▋   | 5.41G/8.14G [03:56<02:11, 20.7MB/s]
Downloading model.tgz:  66%|██████▋   | 5.41G/8.14G [03:56<02:05, 21.8MB/s]
Downloading model.tgz:  66%|██████▋   | 5.41G/8.14G [03:56<02:04, 21.9MB/s]
Downloading model.tgz:  67%|██████▋   | 5.41G/8.14G [03:57<02:01, 22.5MB/s]
Downloading model.tgz:  67%|██████▋   | 5.42G/8.14G [03:57<02:02, 22.3MB/s]
Downloading model.tgz:  67%|██████▋   | 5.42G/8.14G [03:57<02:03, 22.1MB/s]
Downloading model.tgz:  67%|██████▋   | 5.42G/8.14G [03:57<02:00, 22.5MB/s]
Downloading model.tgz:  67%|██████▋   | 5.42G/8.14G [03:57<01:59, 22.7MB/s]
Downloading model.tgz:  67%|██████▋   | 5.43G/8.14G [03:57<01:58, 22.9MB/s]
Downloading model.tgz:  67%|██████▋   | 5.43G/8.14G [03:57<01:57, 23.1MB/s]
Downloading model.tgz:  67%|██████▋   | 5.43G/8.14G [03:57<01:59, 22.6MB/s]
Downloading model.tgz:  67%|██████▋   | 5.43G/8.14G [03:57<01:56, 23.3MB/s]
Downloading model.tgz:  67%|██████▋   | 5.44G/8.14G [03:58<01:56, 23.2MB/s]
Downloading model.tgz:  67%|██████▋   | 5.44G/8.14G [03:58<01:59, 22.6MB/s]
Downloading model.tgz:  67%|██████▋   | 5.44G/8.14G [03:58<01:57, 23.0MB/s]
Downloading model.tgz:  67%|██████▋   | 5.44G/8.14G [03:58<01:58, 22.8MB/s]
Downloading model.tgz:  67%|██████▋   | 5.44G/8.14G [03:58<01:58, 22.8MB/s]
Downloading model.tgz:  67%|██████▋   | 5.45G/8.14G [03:58<01:56, 23.2MB/s]
Downloading model.tgz:  67%|██████▋   | 5.45G/8.14G [03:58<01:55, 23.4MB/s]
Downloading model.tgz:  67%|██████▋   | 5.45G/8.14G [03:58<01:55, 23.2MB/s]
Downloading model.tgz:  67%|██████▋   | 5.45G/8.14G [03:58<01:57, 22.8MB/s]
Downloading model.tgz:  67%|██████▋   | 5.46G/8.14G [03:58<01:59, 22.4MB/s]
Downloading model.tgz:  67%|██████▋   | 5.46G/8.14G [03:59<01:56, 22.9MB/s]
Downloading model.tgz:  67%|██████▋   | 5.46G/8.14G [03:59<01:57, 22.8MB/s]
Downloading model.tgz:  67%|██████▋   | 5.46G/8.14G [03:59<01:55, 23.2MB/s]
Downloading model.tgz:  67%|██████▋   | 5.47G/8.14G [03:59<01:53, 23.5MB/s]
Downloading model.tgz:  67%|██████▋   | 5.47G/8.14G [03:59<01:55, 23.1MB/s]
Downloading model.tgz:  67%|██████▋   | 5.47G/8.14G [03:59<01:56, 22.9MB/s]
Downloading model.tgz:  67%|██████▋   | 5.47G/8.14G [03:59<01:58, 22.6MB/s]
Downloading model.tgz:  67%|██████▋   | 5.48G/8.14G [03:59<01:58, 22.6MB/s]
Downloading model.tgz:  67%|██████▋   | 5.48G/8.14G [03:59<01:56, 22.9MB/s]
Downloading model.tgz:  67%|██████▋   | 5.48G/8.14G [04:00<01:52, 23.7MB/s]
Downloading model.tgz:  67%|██████▋   | 5.48G/8.14G [04:00<01:53, 23.4MB/s]
Downloading model.tgz:  67%|██████▋   | 5.49G/8.14G [04:00<01:54, 23.1MB/s]
Downloading model.tgz:  67%|██████▋   | 5.49G/8.14G [04:00<01:55, 23.0MB/s]
Downloading model.tgz:  67%|██████▋   | 5.49G/8.14G [04:00<01:56, 22.8MB/s]
Downloading model.tgz:  67%|██████▋   | 5.49G/8.14G [04:00<01:56, 22.7MB/s]
Downloading model.tgz:  68%|██████▊   | 5.50G/8.14G [04:00<01:54, 23.0MB/s]
Downloading model.tgz:  68%|██████▊   | 5.50G/8.14G [04:00<01:51, 23.7MB/s]
Downloading model.tgz:  68%|██████▊   | 5.50G/8.14G [04:00<01:52, 23.4MB/s]
Downloading model.tgz:  68%|██████▊   | 5.50G/8.14G [04:00<01:55, 22.7MB/s]
Downloading model.tgz:  68%|██████▊   | 5.50G/8.14G [04:01<01:56, 22.7MB/s]
Downloading model.tgz:  68%|██████▊   | 5.51G/8.14G [04:01<01:58, 22.3MB/s]
Downloading model.tgz:  68%|██████▊   | 5.51G/8.14G [04:01<01:55, 22.8MB/s]
Downloading model.tgz:  68%|██████▊   | 5.51G/8.14G [04:01<01:50, 23.8MB/s]
Downloading model.tgz:  68%|██████▊   | 5.51G/8.14G [04:01<01:50, 23.7MB/s]
Downloading model.tgz:  68%|██████▊   | 5.52G/8.14G [04:01<01:55, 22.8MB/s]
Downloading model.tgz:  68%|██████▊   | 5.52G/8.14G [04:01<01:55, 22.7MB/s]
Downloading model.tgz:  68%|██████▊   | 5.52G/8.14G [04:01<01:57, 22.2MB/s]
Downloading model.tgz:  68%|██████▊   | 5.52G/8.14G [04:01<01:53, 23.1MB/s]
Downloading model.tgz:  68%|██████▊   | 5.53G/8.14G [04:02<01:49, 23.8MB/s]
Downloading model.tgz:  68%|██████▊   | 5.53G/8.14G [04:02<01:52, 23.3MB/s]
Downloading model.tgz:  68%|██████▊   | 5.53G/8.14G [04:02<01:52, 23.2MB/s]
Downloading model.tgz:  68%|██████▊   | 5.53G/8.14G [04:02<01:56, 22.4MB/s]
Downloading model.tgz:  68%|██████▊   | 5.54G/8.14G [04:02<01:55, 22.5MB/s]
Downloading model.tgz:  68%|██████▊   | 5.54G/8.14G [04:02<01:52, 23.2MB/s]
Downloading model.tgz:  68%|██████▊   | 5.54G/8.14G [04:02<01:51, 23.3MB/s]
Downloading model.tgz:  68%|██████▊   | 5.54G/8.14G [04:02<01:51, 23.4MB/s]
Downloading model.tgz:  68%|██████▊   | 5.55G/8.14G [04:02<01:50, 23.4MB/s]
Downloading model.tgz:  68%|██████▊   | 5.55G/8.14G [04:02<01:51, 23.3MB/s]
Downloading model.tgz:  68%|██████▊   | 5.55G/8.14G [04:03<01:53, 22.9MB/s]
Downloading model.tgz:  68%|██████▊   | 5.55G/8.14G [04:03<01:55, 22.4MB/s]
Downloading model.tgz:  68%|██████▊   | 5.56G/8.14G [04:03<01:56, 22.2MB/s]
Downloading model.tgz:  68%|██████▊   | 5.56G/8.14G [04:03<01:51, 23.2MB/s]
Downloading model.tgz:  68%|██████▊   | 5.56G/8.14G [04:03<01:53, 22.7MB/s]
Downloading model.tgz:  68%|██████▊   | 5.56G/8.14G [04:03<01:49, 23.6MB/s]
Downloading model.tgz:  68%|██████▊   | 5.57G/8.14G [04:03<01:51, 23.1MB/s]
Downloading model.tgz:  68%|██████▊   | 5.57G/8.14G [04:03<01:54, 22.5MB/s]
Downloading model.tgz:  68%|██████▊   | 5.57G/8.14G [04:03<01:53, 22.7MB/s]
Downloading model.tgz:  68%|██████▊   | 5.57G/8.14G [04:03<01:50, 23.3MB/s]
Downloading model.tgz:  68%|██████▊   | 5.57G/8.14G [04:04<01:52, 22.8MB/s]
Downloading model.tgz:  69%|██████▊   | 5.58G/8.14G [04:04<01:48, 23.7MB/s]
Downloading model.tgz:  69%|██████▊   | 5.58G/8.14G [04:04<01:50, 23.2MB/s]
Downloading model.tgz:  69%|██████▊   | 5.58G/8.14G [04:04<01:51, 22.9MB/s]
Downloading model.tgz:  69%|██████▊   | 5.58G/8.14G [04:04<01:53, 22.5MB/s]
Downloading model.tgz:  69%|██████▊   | 5.59G/8.14G [04:04<01:57, 21.8MB/s]
Downloading model.tgz:  69%|██████▊   | 5.59G/8.14G [04:04<01:53, 22.5MB/s]
Downloading model.tgz:  69%|██████▊   | 5.59G/8.14G [04:04<01:47, 23.7MB/s]
Downloading model.tgz:  69%|██████▊   | 5.59G/8.14G [04:04<01:48, 23.4MB/s]
Downloading model.tgz:  69%|██████▉   | 5.60G/8.14G [04:05<01:51, 22.8MB/s]
Downloading model.tgz:  69%|██████▉   | 5.60G/8.14G [04:05<01:50, 22.9MB/s]
Downloading model.tgz:  69%|██████▉   | 5.60G/8.14G [04:05<01:54, 22.1MB/s]
Downloading model.tgz:  69%|██████▉   | 5.60G/8.14G [04:05<01:51, 22.7MB/s]
Downloading model.tgz:  69%|██████▉   | 5.61G/8.14G [04:05<01:46, 23.7MB/s]
Downloading model.tgz:  69%|██████▉   | 5.61G/8.14G [04:05<01:48, 23.3MB/s]
Downloading model.tgz:  69%|██████▉   | 5.61G/8.14G [04:05<01:49, 23.1MB/s]
Downloading model.tgz:  69%|██████▉   | 5.61G/8.14G [04:05<01:51, 22.6MB/s]
Downloading model.tgz:  69%|██████▉   | 5.62G/8.14G [04:05<01:53, 22.2MB/s]
Downloading model.tgz:  69%|██████▉   | 5.62G/8.14G [04:06<01:52, 22.5MB/s]
Downloading model.tgz:  69%|██████▉   | 5.62G/8.14G [04:06<01:50, 22.9MB/s]
Downloading model.tgz:  69%|██████▉   | 5.62G/8.14G [04:06<01:46, 23.6MB/s]
Downloading model.tgz:  69%|██████▉   | 5.63G/8.14G [04:06<01:45, 23.8MB/s]
Downloading model.tgz:  69%|██████▉   | 5.63G/8.14G [04:06<01:48, 23.2MB/s]
Downloading model.tgz:  69%|██████▉   | 5.63G/8.14G [04:06<01:51, 22.5MB/s]
Downloading model.tgz:  69%|██████▉   | 5.63G/8.14G [04:06<01:51, 22.5MB/s]
Downloading model.tgz:  69%|██████▉   | 5.63G/8.14G [04:06<01:51, 22.5MB/s]
Downloading model.tgz:  69%|██████▉   | 5.64G/8.14G [04:06<01:52, 22.3MB/s]
Downloading model.tgz:  69%|██████▉   | 5.64G/8.14G [04:06<01:47, 23.2MB/s]
Downloading model.tgz:  69%|██████▉   | 5.64G/8.14G [04:07<01:44, 23.9MB/s]
Downloading model.tgz:  69%|██████▉   | 5.64G/8.14G [04:07<01:46, 23.4MB/s]
Downloading model.tgz:  69%|██████▉   | 5.65G/8.14G [04:07<01:50, 22.5MB/s]
Downloading model.tgz:  69%|██████▉   | 5.65G/8.14G [04:07<01:51, 22.4MB/s]
Downloading model.tgz:  69%|██████▉   | 5.65G/8.14G [04:07<01:49, 22.8MB/s]
Downloading model.tgz:  69%|██████▉   | 5.65G/8.14G [04:07<01:47, 23.2MB/s]
Downloading model.tgz:  69%|██████▉   | 5.66G/8.14G [04:07<01:46, 23.3MB/s]
Downloading model.tgz:  70%|██████▉   | 5.66G/8.14G [04:07<01:44, 23.7MB/s]
Downloading model.tgz:  70%|██████▉   | 5.66G/8.14G [04:07<01:45, 23.6MB/s]
Downloading model.tgz:  70%|██████▉   | 5.66G/8.14G [04:07<01:49, 22.6MB/s]
Downloading model.tgz:  70%|██████▉   | 5.67G/8.14G [04:08<01:51, 22.1MB/s]
Downloading model.tgz:  70%|██████▉   | 5.67G/8.14G [04:08<01:47, 23.0MB/s]
Downloading model.tgz:  70%|██████▉   | 5.67G/8.14G [04:08<01:46, 23.2MB/s]
Downloading model.tgz:  70%|██████▉   | 5.67G/8.14G [04:08<01:45, 23.4MB/s]
Downloading model.tgz:  70%|██████▉   | 5.68G/8.14G [04:08<01:45, 23.5MB/s]
Downloading model.tgz:  70%|██████▉   | 5.68G/8.14G [04:08<01:47, 22.9MB/s]
Downloading model.tgz:  70%|██████▉   | 5.68G/8.14G [04:08<01:49, 22.5MB/s]
Downloading model.tgz:  70%|██████▉   | 5.68G/8.14G [04:08<01:46, 23.0MB/s]
Downloading model.tgz:  70%|██████▉   | 5.69G/8.14G [04:08<01:46, 23.0MB/s]
Downloading model.tgz:  70%|██████▉   | 5.69G/8.14G [04:09<01:46, 23.1MB/s]
Downloading model.tgz:  70%|██████▉   | 5.69G/8.14G [04:09<01:43, 23.7MB/s]
Downloading model.tgz:  70%|██████▉   | 5.69G/8.14G [04:09<01:45, 23.1MB/s]
Downloading model.tgz:  70%|██████▉   | 5.69G/8.14G [04:09<01:45, 23.1MB/s]
Downloading model.tgz:  70%|██████▉   | 5.70G/8.14G [04:09<01:49, 22.3MB/s]
Downloading model.tgz:  70%|███████   | 5.70G/8.14G [04:09<01:46, 23.0MB/s]
Downloading model.tgz:  70%|███████   | 5.70G/8.14G [04:09<01:44, 23.2MB/s]
Downloading model.tgz:  70%|███████   | 5.70G/8.14G [04:09<01:45, 23.1MB/s]
Downloading model.tgz:  70%|███████   | 5.71G/8.14G [04:09<01:42, 23.6MB/s]
Downloading model.tgz:  70%|███████   | 5.71G/8.14G [04:09<01:46, 22.8MB/s]
Downloading model.tgz:  70%|███████   | 5.71G/8.14G [04:10<01:47, 22.5MB/s]
Downloading model.tgz:  70%|███████   | 5.71G/8.14G [04:10<01:46, 22.8MB/s]
Downloading model.tgz:  70%|███████   | 5.72G/8.14G [04:10<01:46, 22.8MB/s]
Downloading model.tgz:  70%|███████   | 5.72G/8.14G [04:10<01:43, 23.3MB/s]
Downloading model.tgz:  70%|███████   | 5.72G/8.14G [04:10<01:44, 23.0MB/s]
Downloading model.tgz:  70%|███████   | 5.72G/8.14G [04:10<01:45, 23.0MB/s]
Downloading model.tgz:  70%|███████   | 5.73G/8.14G [04:10<01:46, 22.8MB/s]
Downloading model.tgz:  70%|███████   | 5.73G/8.14G [04:10<01:46, 22.7MB/s]
Downloading model.tgz:  70%|███████   | 5.73G/8.14G [04:10<01:45, 22.7MB/s]
Downloading model.tgz:  70%|███████   | 5.73G/8.14G [04:10<01:43, 23.2MB/s]
Downloading model.tgz:  70%|███████   | 5.74G/8.14G [04:11<01:45, 22.8MB/s]
Downloading model.tgz:  70%|███████   | 5.74G/8.14G [04:11<01:42, 23.4MB/s]
Downloading model.tgz:  71%|███████   | 5.74G/8.14G [04:11<01:43, 23.3MB/s]
Downloading model.tgz:  71%|███████   | 5.74G/8.14G [04:11<01:44, 22.9MB/s]
Downloading model.tgz:  71%|███████   | 5.75G/8.14G [04:11<01:45, 22.6MB/s]
Downloading model.tgz:  71%|███████   | 5.75G/8.14G [04:11<01:44, 22.9MB/s]
Downloading model.tgz:  71%|███████   | 5.75G/8.14G [04:11<01:44, 22.8MB/s]
Downloading model.tgz:  71%|███████   | 5.75G/8.14G [04:11<01:41, 23.6MB/s]
Downloading model.tgz:  71%|███████   | 5.76G/8.14G [04:11<01:43, 23.1MB/s]
Downloading model.tgz:  71%|███████   | 5.76G/8.14G [04:12<01:42, 23.2MB/s]
Downloading model.tgz:  71%|███████   | 5.76G/8.14G [04:12<01:44, 22.9MB/s]
Downloading model.tgz:  71%|███████   | 5.76G/8.14G [04:12<01:45, 22.5MB/s]
Downloading model.tgz:  71%|███████   | 5.76G/8.14G [04:12<01:42, 23.2MB/s]
Downloading model.tgz:  71%|███████   | 5.77G/8.14G [04:12<01:44, 22.8MB/s]
Downloading model.tgz:  71%|███████   | 5.77G/8.14G [04:12<01:41, 23.3MB/s]
Downloading model.tgz:  71%|███████   | 5.77G/8.14G [04:12<01:42, 23.0MB/s]
Downloading model.tgz:  71%|███████   | 5.77G/8.14G [04:12<01:42, 23.0MB/s]
Downloading model.tgz:  71%|███████   | 5.78G/8.14G [04:12<01:42, 23.0MB/s]
Downloading model.tgz:  71%|███████   | 5.78G/8.14G [04:12<01:43, 22.9MB/s]
Downloading model.tgz:  71%|███████   | 5.78G/8.14G [04:13<01:44, 22.6MB/s]
Downloading model.tgz:  71%|███████   | 5.78G/8.14G [04:13<01:43, 22.8MB/s]
Downloading model.tgz:  71%|███████   | 5.79G/8.14G [04:13<01:40, 23.4MB/s]
Downloading model.tgz:  71%|███████   | 5.79G/8.14G [04:13<01:42, 22.9MB/s]
Downloading model.tgz:  71%|███████   | 5.79G/8.14G [04:13<01:42, 23.0MB/s]
Downloading model.tgz:  71%|███████   | 5.79G/8.14G [04:13<01:41, 23.2MB/s]
Downloading model.tgz:  71%|███████   | 5.80G/8.14G [04:13<01:43, 22.7MB/s]
Downloading model.tgz:  71%|███████   | 5.80G/8.14G [04:13<01:42, 22.8MB/s]
Downloading model.tgz:  71%|███████▏  | 5.80G/8.14G [04:13<01:43, 22.7MB/s]
Downloading model.tgz:  71%|███████▏  | 5.80G/8.14G [04:14<01:40, 23.3MB/s]
Downloading model.tgz:  71%|███████▏  | 5.81G/8.14G [04:14<01:42, 22.8MB/s]
Downloading model.tgz:  71%|███████▏  | 5.81G/8.14G [04:14<01:40, 23.2MB/s]
Downloading model.tgz:  71%|███████▏  | 5.81G/8.14G [04:14<01:40, 23.1MB/s]
Downloading model.tgz:  71%|███████▏  | 5.81G/8.14G [04:14<01:40, 23.2MB/s]
Downloading model.tgz:  71%|███████▏  | 5.81G/8.14G [04:14<01:41, 22.9MB/s]
Downloading model.tgz:  71%|███████▏  | 5.82G/8.14G [04:14<01:44, 22.3MB/s]
Downloading model.tgz:  71%|███████▏  | 5.82G/8.14G [04:14<01:40, 23.0MB/s]
Downloading model.tgz:  72%|███████▏  | 5.82G/8.14G [04:14<01:40, 23.2MB/s]
Downloading model.tgz:  72%|███████▏  | 5.82G/8.14G [04:14<01:40, 23.1MB/s]
Downloading model.tgz:  72%|███████▏  | 5.83G/8.14G [04:15<01:41, 22.7MB/s]
Downloading model.tgz:  72%|███████▏  | 5.83G/8.14G [04:15<01:39, 23.2MB/s]
Downloading model.tgz:  72%|███████▏  | 5.83G/8.14G [04:15<01:40, 23.1MB/s]
Downloading model.tgz:  72%|███████▏  | 5.83G/8.14G [04:15<01:41, 22.7MB/s]
Downloading model.tgz:  72%|███████▏  | 5.84G/8.14G [04:15<01:37, 23.5MB/s]
Downloading model.tgz:  72%|███████▏  | 5.84G/8.14G [04:15<01:38, 23.3MB/s]
Downloading model.tgz:  72%|███████▏  | 5.84G/8.14G [04:15<01:40, 22.8MB/s]
Downloading model.tgz:  72%|███████▏  | 5.84G/8.14G [04:15<01:42, 22.4MB/s]
Downloading model.tgz:  72%|███████▏  | 5.85G/8.14G [04:15<01:39, 23.1MB/s]
Downloading model.tgz:  72%|███████▏  | 5.85G/8.14G [04:15<01:40, 22.7MB/s]
Downloading model.tgz:  72%|███████▏  | 5.85G/8.14G [04:16<01:40, 22.7MB/s]
Downloading model.tgz:  72%|███████▏  | 5.85G/8.14G [04:16<01:41, 22.6MB/s]
Downloading model.tgz:  72%|███████▏  | 5.86G/8.14G [04:16<01:38, 23.3MB/s]
Downloading model.tgz:  72%|███████▏  | 5.86G/8.14G [04:16<01:39, 22.9MB/s]
Downloading model.tgz:  72%|███████▏  | 5.86G/8.14G [04:16<01:39, 23.0MB/s]
Downloading model.tgz:  72%|███████▏  | 5.86G/8.14G [04:16<01:38, 23.1MB/s]
Downloading model.tgz:  72%|███████▏  | 5.87G/8.14G [04:16<01:38, 23.1MB/s]
Downloading model.tgz:  72%|███████▏  | 5.87G/8.14G [04:16<01:36, 23.4MB/s]
Downloading model.tgz:  72%|███████▏  | 5.87G/8.14G [04:16<01:37, 23.3MB/s]
Downloading model.tgz:  72%|███████▏  | 5.87G/8.14G [04:17<01:35, 23.7MB/s]
Downloading model.tgz:  72%|███████▏  | 5.87G/8.14G [04:17<01:39, 22.9MB/s]
Downloading model.tgz:  72%|███████▏  | 5.88G/8.14G [04:17<01:39, 22.8MB/s]
Downloading model.tgz:  72%|███████▏  | 5.88G/8.14G [04:17<01:39, 22.7MB/s]
Downloading model.tgz:  72%|███████▏  | 5.88G/8.14G [04:17<01:38, 22.9MB/s]
Downloading model.tgz:  72%|███████▏  | 5.88G/8.14G [04:17<01:38, 23.0MB/s]
Downloading model.tgz:  72%|███████▏  | 5.89G/8.14G [04:17<01:33, 24.1MB/s]
Downloading model.tgz:  72%|███████▏  | 5.89G/8.14G [04:17<01:44, 21.5MB/s]
Downloading model.tgz:  72%|███████▏  | 5.89G/8.14G [04:17<01:40, 22.5MB/s]
Downloading model.tgz:  72%|███████▏  | 5.89G/8.14G [04:17<01:37, 23.0MB/s]
Downloading model.tgz:  72%|███████▏  | 5.90G/8.14G [04:18<01:37, 23.0MB/s]
Downloading model.tgz:  72%|███████▏  | 5.90G/8.14G [04:18<01:34, 23.8MB/s]
Downloading model.tgz:  73%|███████▎  | 5.90G/8.14G [04:18<01:42, 21.9MB/s]
Downloading model.tgz:  73%|███████▎  | 5.90G/8.14G [04:18<01:39, 22.4MB/s]
Downloading model.tgz:  73%|███████▎  | 5.91G/8.14G [04:18<01:41, 22.0MB/s]
Downloading model.tgz:  73%|███████▎  | 5.91G/8.14G [04:18<01:33, 23.8MB/s]
Downloading model.tgz:  73%|███████▎  | 5.91G/8.14G [04:18<01:33, 24.0MB/s]
Downloading model.tgz:  73%|███████▎  | 5.91G/8.14G [04:18<01:40, 22.1MB/s]
Downloading model.tgz:  73%|███████▎  | 5.92G/8.14G [04:18<01:37, 22.8MB/s]
Downloading model.tgz:  73%|███████▎  | 5.92G/8.14G [04:19<01:43, 21.4MB/s]
Downloading model.tgz:  73%|███████▎  | 5.92G/8.14G [04:19<01:39, 22.2MB/s]
Downloading model.tgz:  73%|███████▎  | 5.93G/8.14G [04:19<01:36, 23.0MB/s]
Downloading model.tgz:  73%|███████▎  | 5.93G/8.14G [04:19<01:33, 23.5MB/s]
Downloading model.tgz:  73%|███████▎  | 5.93G/8.14G [04:19<01:33, 23.7MB/s]
Downloading model.tgz:  73%|███████▎  | 5.93G/8.14G [04:19<01:32, 23.9MB/s]
Downloading model.tgz:  73%|███████▎  | 5.93G/8.14G [04:19<01:32, 23.8MB/s]
Downloading model.tgz:  73%|███████▎  | 5.94G/8.14G [04:19<01:39, 22.2MB/s]
Downloading model.tgz:  73%|███████▎  | 5.94G/8.14G [04:19<01:39, 22.1MB/s]
Downloading model.tgz:  73%|███████▎  | 5.94G/8.14G [04:20<01:35, 22.9MB/s]
Downloading model.tgz:  73%|███████▎  | 5.94G/8.14G [04:20<01:32, 23.8MB/s]
Downloading model.tgz:  73%|███████▎  | 5.95G/8.14G [04:20<01:31, 23.9MB/s]
Downloading model.tgz:  73%|███████▎  | 5.95G/8.14G [04:20<01:38, 22.3MB/s]
Downloading model.tgz:  73%|███████▎  | 5.95G/8.14G [04:20<01:38, 22.2MB/s]
Downloading model.tgz:  73%|███████▎  | 5.95G/8.14G [04:20<01:37, 22.4MB/s]
Downloading model.tgz:  73%|███████▎  | 5.96G/8.14G [04:20<01:37, 22.3MB/s]
Downloading model.tgz:  73%|███████▎  | 5.96G/8.14G [04:20<01:30, 24.2MB/s]
Downloading model.tgz:  73%|███████▎  | 5.96G/8.14G [04:20<01:37, 22.4MB/s]
Downloading model.tgz:  73%|███████▎  | 5.96G/8.14G [04:21<01:35, 22.8MB/s]
Downloading model.tgz:  73%|███████▎  | 5.97G/8.14G [04:21<01:37, 22.4MB/s]
Downloading model.tgz:  73%|███████▎  | 5.97G/8.14G [04:21<01:33, 23.1MB/s]
Downloading model.tgz:  73%|███████▎  | 5.97G/8.14G [04:21<01:31, 23.7MB/s]
Downloading model.tgz:  73%|███████▎  | 5.97G/8.14G [04:21<01:34, 22.8MB/s]
Downloading model.tgz:  73%|███████▎  | 5.98G/8.14G [04:21<01:33, 23.0MB/s]
Downloading model.tgz:  73%|███████▎  | 5.98G/8.14G [04:21<01:36, 22.4MB/s]
Downloading model.tgz:  73%|███████▎  | 5.98G/8.14G [04:21<01:33, 23.1MB/s]
Downloading model.tgz:  74%|███████▎  | 5.98G/8.14G [04:21<01:31, 23.7MB/s]
Downloading model.tgz:  74%|███████▎  | 5.99G/8.14G [04:21<01:29, 23.9MB/s]
Downloading model.tgz:  74%|███████▎  | 5.99G/8.14G [04:22<01:35, 22.5MB/s]
Downloading model.tgz:  74%|███████▎  | 5.99G/8.14G [04:22<01:35, 22.5MB/s]
Downloading model.tgz:  74%|███████▎  | 5.99G/8.14G [04:22<01:34, 22.8MB/s]
Downloading model.tgz:  74%|███████▎  | 6.00G/8.14G [04:22<01:33, 22.9MB/s]
Downloading model.tgz:  74%|███████▎  | 6.00G/8.14G [04:22<01:31, 23.3MB/s]
Downloading model.tgz:  74%|███████▎  | 6.00G/8.14G [04:22<01:28, 24.2MB/s]
Downloading model.tgz:  74%|███████▍  | 6.00G/8.14G [04:22<01:35, 22.4MB/s]
Downloading model.tgz:  74%|███████▍  | 6.01G/8.14G [04:22<01:36, 22.1MB/s]
Downloading model.tgz:  74%|███████▍  | 6.01G/8.14G [04:22<01:33, 22.8MB/s]
Downloading model.tgz:  74%|███████▍  | 6.01G/8.14G [04:23<01:31, 23.2MB/s]
Downloading model.tgz:  74%|███████▍  | 6.01G/8.14G [04:23<01:29, 23.7MB/s]
Downloading model.tgz:  74%|███████▍  | 6.02G/8.14G [04:23<01:33, 22.8MB/s]
Downloading model.tgz:  74%|███████▍  | 6.02G/8.14G [04:23<01:33, 22.7MB/s]
Downloading model.tgz:  74%|███████▍  | 6.02G/8.14G [04:23<01:33, 22.6MB/s]
Downloading model.tgz:  74%|███████▍  | 6.02G/8.14G [04:23<01:33, 22.7MB/s]
Downloading model.tgz:  74%|███████▍  | 6.03G/8.14G [04:23<01:31, 23.2MB/s]
Downloading model.tgz:  74%|███████▍  | 6.03G/8.14G [04:23<01:27, 24.0MB/s]
Downloading model.tgz:  74%|███████▍  | 6.03G/8.14G [04:23<01:32, 22.7MB/s]
Downloading model.tgz:  74%|███████▍  | 6.03G/8.14G [04:24<01:32, 22.7MB/s]
Downloading model.tgz:  74%|███████▍  | 6.04G/8.14G [04:24<01:33, 22.6MB/s]
Downloading model.tgz:  74%|███████▍  | 6.04G/8.14G [04:24<01:32, 22.6MB/s]
Downloading model.tgz:  74%|███████▍  | 6.04G/8.14G [04:24<01:31, 22.9MB/s]
Downloading model.tgz:  74%|███████▍  | 6.04G/8.14G [04:24<01:29, 23.4MB/s]
Downloading model.tgz:  74%|███████▍  | 6.04G/8.14G [04:24<01:28, 23.7MB/s]
Downloading model.tgz:  74%|███████▍  | 6.05G/8.14G [04:24<01:31, 22.9MB/s]
Downloading model.tgz:  74%|███████▍  | 6.05G/8.14G [04:24<01:31, 22.9MB/s]
Downloading model.tgz:  74%|███████▍  | 6.05G/8.14G [04:24<01:31, 22.9MB/s]
Downloading model.tgz:  74%|███████▍  | 6.05G/8.14G [04:24<01:31, 22.7MB/s]
Downloading model.tgz:  74%|███████▍  | 6.06G/8.14G [04:25<01:32, 22.5MB/s]
Downloading model.tgz:  74%|███████▍  | 6.06G/8.14G [04:25<01:30, 23.1MB/s]
Downloading model.tgz:  74%|███████▍  | 6.06G/8.14G [04:25<01:32, 22.4MB/s]
Downloading model.tgz:  74%|███████▍  | 6.06G/8.14G [04:25<01:31, 22.7MB/s]
Downloading model.tgz:  75%|███████▍  | 6.07G/8.14G [04:25<01:28, 23.5MB/s]
Downloading model.tgz:  75%|███████▍  | 6.07G/8.14G [04:25<01:30, 22.8MB/s]
Downloading model.tgz:  75%|███████▍  | 6.07G/8.14G [04:25<01:30, 22.8MB/s]
Downloading model.tgz:  75%|███████▍  | 6.07G/8.14G [04:25<01:30, 22.8MB/s]
Downloading model.tgz:  75%|███████▍  | 6.08G/8.14G [04:25<01:34, 21.9MB/s]
Downloading model.tgz:  75%|███████▍  | 6.08G/8.14G [04:25<01:28, 23.2MB/s]
Downloading model.tgz:  75%|███████▍  | 6.08G/8.14G [04:26<01:28, 23.3MB/s]
Downloading model.tgz:  75%|███████▍  | 6.08G/8.14G [04:26<01:29, 22.9MB/s]
Downloading model.tgz:  75%|███████▍  | 6.09G/8.14G [04:26<01:28, 23.2MB/s]
Downloading model.tgz:  75%|███████▍  | 6.09G/8.14G [04:26<01:29, 22.8MB/s]
Downloading model.tgz:  75%|███████▍  | 6.09G/8.14G [04:26<01:33, 22.0MB/s]
Downloading model.tgz:  75%|███████▍  | 6.09G/8.14G [04:26<01:33, 21.9MB/s]
Downloading model.tgz:  75%|███████▍  | 6.10G/8.14G [04:26<01:27, 23.4MB/s]
Downloading model.tgz:  75%|███████▍  | 6.10G/8.14G [04:26<01:28, 23.0MB/s]
Downloading model.tgz:  75%|███████▍  | 6.10G/8.14G [04:26<01:26, 23.5MB/s]
Downloading model.tgz:  75%|███████▍  | 6.10G/8.14G [04:27<01:32, 21.9MB/s]
Downloading model.tgz:  75%|███████▌  | 6.11G/8.14G [04:27<01:28, 23.0MB/s]
Downloading model.tgz:  75%|███████▌  | 6.11G/8.14G [04:27<01:26, 23.5MB/s]
Downloading model.tgz:  75%|███████▌  | 6.11G/8.14G [04:27<01:28, 23.0MB/s]
Downloading model.tgz:  75%|███████▌  | 6.11G/8.14G [04:27<01:26, 23.4MB/s]
Downloading model.tgz:  75%|███████▌  | 6.11G/8.14G [04:27<01:32, 21.9MB/s]
Downloading model.tgz:  75%|███████▌  | 6.12G/8.14G [04:27<01:29, 22.6MB/s]
Downloading model.tgz:  75%|███████▌  | 6.12G/8.14G [04:27<01:27, 23.1MB/s]
Downloading model.tgz:  75%|███████▌  | 6.12G/8.14G [04:27<01:26, 23.4MB/s]
Downloading model.tgz:  75%|███████▌  | 6.12G/8.14G [04:28<01:25, 23.5MB/s]
Downloading model.tgz:  75%|███████▌  | 6.13G/8.14G [04:28<01:25, 23.5MB/s]
Downloading model.tgz:  75%|███████▌  | 6.13G/8.14G [04:28<01:31, 21.9MB/s]
Downloading model.tgz:  75%|███████▌  | 6.13G/8.14G [04:28<01:27, 22.8MB/s]
Downloading model.tgz:  75%|███████▌  | 6.13G/8.14G [04:28<01:26, 23.1MB/s]
Downloading model.tgz:  75%|███████▌  | 6.14G/8.14G [04:28<01:25, 23.4MB/s]
Downloading model.tgz:  75%|███████▌  | 6.14G/8.14G [04:28<01:26, 23.2MB/s]
Downloading model.tgz:  75%|███████▌  | 6.14G/8.14G [04:28<01:29, 22.4MB/s]
Downloading model.tgz:  75%|███████▌  | 6.14G/8.14G [04:28<01:30, 22.1MB/s]
Downloading model.tgz:  76%|███████▌  | 6.15G/8.14G [04:28<01:27, 22.8MB/s]
Downloading model.tgz:  76%|███████▌  | 6.15G/8.14G [04:29<01:26, 23.0MB/s]
Downloading model.tgz:  76%|███████▌  | 6.15G/8.14G [04:29<01:24, 23.6MB/s]
Downloading model.tgz:  76%|███████▌  | 6.15G/8.14G [04:29<01:26, 23.1MB/s]
Downloading model.tgz:  76%|███████▌  | 6.16G/8.14G [04:29<01:27, 22.8MB/s]
Downloading model.tgz:  76%|███████▌  | 6.16G/8.14G [04:29<01:29, 22.2MB/s]
Downloading model.tgz:  76%|███████▌  | 6.16G/8.14G [04:29<01:27, 22.5MB/s]
Downloading model.tgz:  76%|███████▌  | 6.16G/8.14G [04:29<01:25, 23.0MB/s]
Downloading model.tgz:  76%|███████▌  | 6.17G/8.14G [04:29<01:23, 23.6MB/s]
Downloading model.tgz:  76%|███████▌  | 6.17G/8.14G [04:29<01:23, 23.7MB/s]
Downloading model.tgz:  76%|███████▌  | 6.17G/8.14G [04:30<01:29, 22.0MB/s]
Downloading model.tgz:  76%|███████▌  | 6.17G/8.14G [04:30<01:26, 22.7MB/s]
Downloading model.tgz:  76%|███████▌  | 6.18G/8.14G [04:30<01:26, 22.7MB/s]
Downloading model.tgz:  76%|███████▌  | 6.18G/8.14G [04:30<01:25, 23.0MB/s]
Downloading model.tgz:  76%|███████▌  | 6.18G/8.14G [04:30<01:21, 24.1MB/s]
Downloading model.tgz:  76%|███████▌  | 6.18G/8.14G [04:30<01:28, 22.1MB/s]
Downloading model.tgz:  76%|███████▌  | 6.19G/8.14G [04:30<01:26, 22.6MB/s]
Downloading model.tgz:  76%|███████▌  | 6.19G/8.14G [04:30<01:26, 22.6MB/s]
Downloading model.tgz:  76%|███████▌  | 6.19G/8.14G [04:30<01:24, 23.1MB/s]
Downloading model.tgz:  76%|███████▌  | 6.19G/8.14G [04:30<01:22, 23.6MB/s]
Downloading model.tgz:  76%|███████▌  | 6.20G/8.14G [04:31<01:23, 23.4MB/s]
Downloading model.tgz:  76%|███████▌  | 6.20G/8.14G [04:31<01:24, 23.0MB/s]
Downloading model.tgz:  76%|███████▌  | 6.20G/8.14G [04:31<01:27, 22.2MB/s]
Downloading model.tgz:  76%|███████▌  | 6.20G/8.14G [04:31<01:24, 22.9MB/s]
Downloading model.tgz:  76%|███████▌  | 6.20G/8.14G [04:31<01:25, 22.6MB/s]
Downloading model.tgz:  76%|███████▋  | 6.21G/8.14G [04:31<01:23, 23.1MB/s]
Downloading model.tgz:  76%|███████▋  | 6.21G/8.14G [04:31<01:21, 23.7MB/s]
Downloading model.tgz:  76%|███████▋  | 6.21G/8.14G [04:31<01:24, 22.8MB/s]
Downloading model.tgz:  76%|███████▋  | 6.21G/8.14G [04:31<01:25, 22.5MB/s]
Downloading model.tgz:  76%|███████▋  | 6.22G/8.14G [04:32<01:23, 22.9MB/s]
Downloading model.tgz:  76%|███████▋  | 6.22G/8.14G [04:32<01:28, 21.8MB/s]
Downloading model.tgz:  76%|███████▋  | 6.22G/8.14G [04:32<01:21, 23.5MB/s]
Downloading model.tgz:  76%|███████▋  | 6.22G/8.14G [04:32<01:21, 23.6MB/s]
Downloading model.tgz:  77%|███████▋  | 6.23G/8.14G [04:32<01:29, 21.4MB/s]
Downloading model.tgz:  77%|███████▋  | 6.23G/8.14G [04:32<01:22, 23.2MB/s]
Downloading model.tgz:  77%|███████▋  | 6.23G/8.14G [04:32<01:21, 23.4MB/s]
Downloading model.tgz:  77%|███████▋  | 6.23G/8.14G [04:32<01:20, 23.8MB/s]
Downloading model.tgz:  77%|███████▋  | 6.24G/8.14G [04:32<01:22, 23.1MB/s]
Downloading model.tgz:  77%|███████▋  | 6.24G/8.14G [04:33<01:23, 22.7MB/s]
Downloading model.tgz:  77%|███████▋  | 6.24G/8.14G [04:33<01:22, 22.9MB/s]
Downloading model.tgz:  77%|███████▋  | 6.24G/8.14G [04:33<01:23, 22.7MB/s]
Downloading model.tgz:  77%|███████▋  | 6.25G/8.14G [04:33<01:21, 23.2MB/s]
Downloading model.tgz:  77%|███████▋  | 6.25G/8.14G [04:33<01:20, 23.6MB/s]
Downloading model.tgz:  77%|███████▋  | 6.25G/8.14G [04:33<01:21, 23.3MB/s]
Downloading model.tgz:  77%|███████▋  | 6.25G/8.14G [04:33<01:22, 22.9MB/s]
Downloading model.tgz:  77%|███████▋  | 6.26G/8.14G [04:33<01:22, 22.7MB/s]
Downloading model.tgz:  77%|███████▋  | 6.26G/8.14G [04:33<01:22, 22.9MB/s]
Downloading model.tgz:  77%|███████▋  | 6.26G/8.14G [04:33<01:21, 23.0MB/s]
Downloading model.tgz:  77%|███████▋  | 6.26G/8.14G [04:34<01:21, 23.0MB/s]
Downloading model.tgz:  77%|███████▋  | 6.27G/8.14G [04:34<01:19, 23.7MB/s]
Downloading model.tgz:  77%|███████▋  | 6.27G/8.14G [04:34<01:21, 22.9MB/s]
Downloading model.tgz:  77%|███████▋  | 6.27G/8.14G [04:34<01:21, 22.9MB/s]
Downloading model.tgz:  77%|███████▋  | 6.27G/8.14G [04:34<01:24, 22.1MB/s]
Downloading model.tgz:  77%|███████▋  | 6.28G/8.14G [04:34<01:20, 23.3MB/s]
Downloading model.tgz:  77%|███████▋  | 6.28G/8.14G [04:34<01:19, 23.3MB/s]
Downloading model.tgz:  77%|███████▋  | 6.28G/8.14G [04:34<01:19, 23.5MB/s]
Downloading model.tgz:  77%|███████▋  | 6.28G/8.14G [04:34<01:19, 23.4MB/s]
Downloading model.tgz:  77%|███████▋  | 6.29G/8.14G [04:34<01:21, 22.9MB/s]
Downloading model.tgz:  77%|███████▋  | 6.29G/8.14G [04:35<01:20, 22.9MB/s]
Downloading model.tgz:  77%|███████▋  | 6.29G/8.14G [04:35<01:22, 22.4MB/s]
Downloading model.tgz:  77%|███████▋  | 6.29G/8.14G [04:35<01:20, 23.0MB/s]
Downloading model.tgz:  77%|███████▋  | 6.29G/8.14G [04:35<01:19, 23.3MB/s]
Downloading model.tgz:  77%|███████▋  | 6.30G/8.14G [04:35<01:19, 23.3MB/s]
Downloading model.tgz:  77%|███████▋  | 6.30G/8.14G [04:35<01:18, 23.4MB/s]
Downloading model.tgz:  77%|███████▋  | 6.30G/8.14G [04:35<01:20, 23.0MB/s]
Downloading model.tgz:  77%|███████▋  | 6.30G/8.14G [04:35<01:22, 22.4MB/s]
Downloading model.tgz:  77%|███████▋  | 6.31G/8.14G [04:35<01:20, 22.9MB/s]
Downloading model.tgz:  78%|███████▊  | 6.31G/8.14G [04:36<01:18, 23.5MB/s]
Downloading model.tgz:  78%|███████▊  | 6.31G/8.14G [04:36<01:19, 23.0MB/s]
Downloading model.tgz:  78%|███████▊  | 6.31G/8.14G [04:36<01:17, 23.4MB/s]
Downloading model.tgz:  78%|███████▊  | 6.32G/8.14G [04:36<01:19, 23.0MB/s]
Downloading model.tgz:  78%|███████▊  | 6.32G/8.14G [04:36<01:19, 23.0MB/s]
Downloading model.tgz:  78%|███████▊  | 6.32G/8.14G [04:36<01:21, 22.4MB/s]
Downloading model.tgz:  78%|███████▊  | 6.32G/8.14G [04:36<01:19, 23.0MB/s]
Downloading model.tgz:  78%|███████▊  | 6.33G/8.14G [04:36<01:19, 22.9MB/s]
Downloading model.tgz:  78%|███████▊  | 6.33G/8.14G [04:36<01:18, 23.2MB/s]
Downloading model.tgz:  78%|███████▊  | 6.33G/8.14G [04:36<01:17, 23.5MB/s]
Downloading model.tgz:  78%|███████▊  | 6.33G/8.14G [04:37<01:17, 23.2MB/s]
Downloading model.tgz:  78%|███████▊  | 6.34G/8.14G [04:37<01:19, 22.6MB/s]
Downloading model.tgz:  78%|███████▊  | 6.34G/8.14G [04:37<01:20, 22.5MB/s]
Downloading model.tgz:  78%|███████▊  | 6.34G/8.14G [04:37<01:21, 22.2MB/s]
Downloading model.tgz:  78%|███████▊  | 6.34G/8.14G [04:37<01:16, 23.5MB/s]
Downloading model.tgz:  78%|███████▊  | 6.35G/8.14G [04:37<01:16, 23.4MB/s]
Downloading model.tgz:  78%|███████▊  | 6.35G/8.14G [04:37<01:15, 23.7MB/s]
Downloading model.tgz:  78%|███████▊  | 6.35G/8.14G [04:37<01:16, 23.2MB/s]
Downloading model.tgz:  78%|███████▊  | 6.35G/8.14G [04:37<01:23, 21.5MB/s]
Downloading model.tgz:  78%|███████▊  | 6.35G/8.14G [04:38<01:19, 22.4MB/s]
Downloading model.tgz:  78%|███████▊  | 6.36G/8.14G [04:38<01:17, 23.0MB/s]
Downloading model.tgz:  78%|███████▊  | 6.36G/8.14G [04:38<01:24, 21.2MB/s]
Downloading model.tgz:  78%|███████▊  | 6.36G/8.14G [04:38<01:16, 23.1MB/s]
Downloading model.tgz:  78%|███████▊  | 6.37G/8.14G [04:38<01:19, 22.2MB/s]
Downloading model.tgz:  78%|███████▊  | 6.37G/8.14G [04:38<01:16, 23.2MB/s]
Downloading model.tgz:  78%|███████▊  | 6.37G/8.14G [04:38<01:14, 23.8MB/s]
Downloading model.tgz:  78%|███████▊  | 6.37G/8.14G [04:38<01:13, 24.0MB/s]
Downloading model.tgz:  78%|███████▊  | 6.38G/8.14G [04:38<01:17, 22.8MB/s]
Downloading model.tgz:  78%|███████▊  | 6.38G/8.14G [04:39<01:19, 22.2MB/s]
Downloading model.tgz:  78%|███████▊  | 6.38G/8.14G [04:39<01:20, 22.0MB/s]
Downloading model.tgz:  78%|███████▊  | 6.38G/8.14G [04:39<01:15, 23.2MB/s]
Downloading model.tgz:  78%|███████▊  | 6.39G/8.14G [04:39<01:14, 23.6MB/s]
Downloading model.tgz:  78%|███████▊  | 6.39G/8.14G [04:39<01:13, 23.9MB/s]
Downloading model.tgz:  79%|███████▊  | 6.39G/8.14G [04:39<01:18, 22.4MB/s]
Downloading model.tgz:  79%|███████▊  | 6.39G/8.14G [04:39<01:18, 22.3MB/s]
Downloading model.tgz:  79%|███████▊  | 6.39G/8.14G [04:39<01:16, 22.7MB/s]
Downloading model.tgz:  79%|███████▊  | 6.40G/8.14G [04:39<01:15, 23.2MB/s]
Downloading model.tgz:  79%|███████▊  | 6.40G/8.14G [04:39<01:14, 23.2MB/s]
Downloading model.tgz:  79%|███████▊  | 6.40G/8.14G [04:40<01:12, 23.8MB/s]
Downloading model.tgz:  79%|███████▊  | 6.40G/8.14G [04:40<01:14, 23.4MB/s]
Downloading model.tgz:  79%|███████▊  | 6.41G/8.14G [04:40<01:18, 22.2MB/s]
Downloading model.tgz:  79%|███████▊  | 6.41G/8.14G [04:40<01:17, 22.4MB/s]
Downloading model.tgz:  79%|███████▉  | 6.41G/8.14G [04:40<01:16, 22.6MB/s]
Downloading model.tgz:  79%|███████▉  | 6.41G/8.14G [04:40<01:14, 23.1MB/s]
Downloading model.tgz:  79%|███████▉  | 6.42G/8.14G [04:40<01:11, 24.1MB/s]
Downloading model.tgz:  79%|███████▉  | 6.42G/8.14G [04:40<01:15, 22.9MB/s]
Downloading model.tgz:  79%|███████▉  | 6.42G/8.14G [04:40<01:17, 22.3MB/s]
Downloading model.tgz:  79%|███████▉  | 6.42G/8.14G [04:41<01:14, 22.9MB/s]
Downloading model.tgz:  79%|███████▉  | 6.43G/8.14G [04:41<01:16, 22.5MB/s]
Downloading model.tgz:  79%|███████▉  | 6.43G/8.14G [04:41<01:14, 22.9MB/s]
Downloading model.tgz:  79%|███████▉  | 6.43G/8.14G [04:41<01:10, 24.1MB/s]
Downloading model.tgz:  79%|███████▉  | 6.43G/8.14G [04:41<01:16, 22.4MB/s]
Downloading model.tgz:  79%|███████▉  | 6.44G/8.14G [04:42<05:24, 5.24MB/s]
Downloading model.tgz:  79%|███████▉  | 6.45G/8.14G [04:42<03:50, 7.34MB/s]
Downloading model.tgz:  79%|███████▉  | 6.45G/8.14G [04:42<03:03, 9.21MB/s]
Downloading model.tgz:  79%|███████▉  | 6.46G/8.14G [04:43<02:41, 10.4MB/s]
Downloading model.tgz:  79%|███████▉  | 6.46G/8.14G [04:43<02:09, 13.0MB/s]
Downloading model.tgz:  79%|███████▉  | 6.46G/8.14G [04:43<01:59, 14.1MB/s]
Downloading model.tgz:  79%|███████▉  | 6.46G/8.14G [04:43<01:55, 14.5MB/s]
Downloading model.tgz:  79%|███████▉  | 6.47G/8.14G [04:43<01:40, 16.7MB/s]
Downloading model.tgz:  79%|███████▉  | 6.47G/8.14G [04:43<01:45, 15.9MB/s]
Downloading model.tgz:  80%|███████▉  | 6.47G/8.14G [04:44<01:30, 18.4MB/s]
Downloading model.tgz:  80%|███████▉  | 6.47G/8.14G [04:44<01:37, 17.0MB/s]
Downloading model.tgz:  80%|███████▉  | 6.48G/8.14G [04:44<01:30, 18.3MB/s]
Downloading model.tgz:  80%|███████▉  | 6.48G/8.14G [04:44<01:18, 21.1MB/s]
Downloading model.tgz:  80%|███████▉  | 6.48G/8.14G [04:44<01:28, 18.8MB/s]
Downloading model.tgz:  80%|███████▉  | 6.49G/8.14G [04:44<01:27, 18.9MB/s]
Downloading model.tgz:  80%|███████▉  | 6.49G/8.14G [04:44<01:17, 21.2MB/s]
Downloading model.tgz:  80%|███████▉  | 6.49G/8.14G [04:45<01:23, 19.7MB/s]
Downloading model.tgz:  80%|███████▉  | 6.49G/8.14G [04:45<01:20, 20.4MB/s]
Downloading model.tgz:  80%|███████▉  | 6.50G/8.14G [04:45<01:18, 20.8MB/s]
Downloading model.tgz:  80%|███████▉  | 6.50G/8.14G [04:45<01:13, 22.5MB/s]
Downloading model.tgz:  80%|███████▉  | 6.50G/8.14G [04:45<01:07, 24.4MB/s]
Downloading model.tgz:  80%|███████▉  | 6.51G/8.14G [04:45<01:18, 20.9MB/s]
Downloading model.tgz:  80%|███████▉  | 6.51G/8.14G [04:45<01:11, 22.9MB/s]
Downloading model.tgz:  80%|████████  | 6.51G/8.14G [04:45<01:18, 20.7MB/s]
Downloading model.tgz:  80%|████████  | 6.51G/8.14G [04:46<01:16, 21.3MB/s]
Downloading model.tgz:  80%|████████  | 6.52G/8.14G [04:46<01:10, 23.0MB/s]
Downloading model.tgz:  80%|████████  | 6.52G/8.14G [04:46<01:17, 21.0MB/s]
Downloading model.tgz:  80%|████████  | 6.52G/8.14G [04:46<01:12, 22.2MB/s]
Downloading model.tgz:  80%|████████  | 6.52G/8.14G [04:46<01:09, 23.3MB/s]
Downloading model.tgz:  80%|████████  | 6.53G/8.14G [04:46<01:20, 20.1MB/s]
Downloading model.tgz:  80%|████████  | 6.53G/8.14G [04:46<01:12, 22.1MB/s]
Downloading model.tgz:  80%|████████  | 6.53G/8.14G [04:46<01:08, 23.5MB/s]
Downloading model.tgz:  80%|████████  | 6.54G/8.14G [04:47<01:18, 20.5MB/s]
Downloading model.tgz:  80%|████████  | 6.54G/8.14G [04:47<01:12, 22.2MB/s]
Downloading model.tgz:  80%|████████  | 6.54G/8.14G [04:47<01:10, 22.7MB/s]
Downloading model.tgz:  80%|████████  | 6.54G/8.14G [04:47<01:17, 20.5MB/s]
Downloading model.tgz:  80%|████████  | 6.55G/8.14G [04:47<01:08, 23.1MB/s]
Downloading model.tgz:  80%|████████  | 6.55G/8.14G [04:47<01:07, 23.4MB/s]
Downloading model.tgz:  80%|████████  | 6.55G/8.14G [04:47<01:17, 20.5MB/s]
Downloading model.tgz:  81%|████████  | 6.55G/8.14G [04:47<01:09, 22.7MB/s]
Downloading model.tgz:  81%|████████  | 6.56G/8.14G [04:47<01:07, 23.4MB/s]
Downloading model.tgz:  81%|████████  | 6.56G/8.14G [04:48<01:17, 20.5MB/s]
Downloading model.tgz:  81%|████████  | 6.56G/8.14G [04:48<01:10, 22.3MB/s]
Downloading model.tgz:  81%|████████  | 6.57G/8.14G [04:48<01:08, 23.0MB/s]
Downloading model.tgz:  81%|████████  | 6.57G/8.14G [04:48<01:16, 20.5MB/s]
Downloading model.tgz:  81%|████████  | 6.57G/8.14G [04:48<01:12, 21.7MB/s]
Downloading model.tgz:  81%|████████  | 6.57G/8.14G [04:48<01:06, 23.5MB/s]
Downloading model.tgz:  81%|████████  | 6.58G/8.14G [04:48<01:04, 24.4MB/s]
Downloading model.tgz:  81%|████████  | 6.58G/8.14G [04:48<01:15, 20.7MB/s]
Downloading model.tgz:  81%|████████  | 6.58G/8.14G [04:49<01:10, 22.2MB/s]
Downloading model.tgz:  81%|████████  | 6.58G/8.14G [04:49<01:12, 21.4MB/s]
Downloading model.tgz:  81%|████████  | 6.59G/8.14G [04:49<01:09, 22.4MB/s]
Downloading model.tgz:  81%|████████  | 6.59G/8.14G [04:49<01:08, 22.5MB/s]
Downloading model.tgz:  81%|████████  | 6.59G/8.14G [04:49<01:03, 24.4MB/s]
Downloading model.tgz:  81%|████████  | 6.59G/8.14G [04:49<01:11, 21.5MB/s]
Downloading model.tgz:  81%|████████  | 6.60G/8.14G [04:49<01:08, 22.5MB/s]
Downloading model.tgz:  81%|████████  | 6.60G/8.14G [04:49<01:05, 23.4MB/s]
Downloading model.tgz:  81%|████████  | 6.60G/8.14G [04:49<01:14, 20.6MB/s]
Downloading model.tgz:  81%|████████  | 6.60G/8.14G [04:50<01:10, 21.9MB/s]
Downloading model.tgz:  81%|████████  | 6.61G/8.14G [04:50<01:06, 23.2MB/s]
Downloading model.tgz:  81%|████████  | 6.61G/8.14G [04:50<01:04, 23.6MB/s]
Downloading model.tgz:  81%|████████  | 6.61G/8.14G [04:50<01:12, 21.0MB/s]
Downloading model.tgz:  81%|████████▏ | 6.62G/8.14G [04:50<01:08, 22.2MB/s]
Downloading model.tgz:  81%|████████▏ | 6.62G/8.14G [04:50<01:04, 23.7MB/s]
Downloading model.tgz:  81%|████████▏ | 6.62G/8.14G [04:50<01:12, 21.0MB/s]
Downloading model.tgz:  81%|████████▏ | 6.62G/8.14G [04:50<01:09, 21.9MB/s]
Downloading model.tgz:  81%|████████▏ | 6.63G/8.14G [04:51<01:04, 23.3MB/s]
Downloading model.tgz:  81%|████████▏ | 6.63G/8.14G [04:51<01:12, 21.0MB/s]
Downloading model.tgz:  81%|████████▏ | 6.63G/8.14G [04:51<01:06, 22.6MB/s]
Downloading model.tgz:  82%|████████▏ | 6.63G/8.14G [04:51<01:07, 22.4MB/s]
Downloading model.tgz:  82%|████████▏ | 6.64G/8.14G [04:51<01:10, 21.4MB/s]
Downloading model.tgz:  82%|████████▏ | 6.64G/8.14G [04:51<01:04, 23.1MB/s]
Downloading model.tgz:  82%|████████▏ | 6.64G/8.14G [04:51<01:04, 23.2MB/s]
Downloading model.tgz:  82%|████████▏ | 6.64G/8.14G [04:51<01:03, 23.5MB/s]
Downloading model.tgz:  82%|████████▏ | 6.65G/8.14G [04:51<01:11, 20.9MB/s]
Downloading model.tgz:  82%|████████▏ | 6.65G/8.14G [04:52<01:05, 22.9MB/s]
Downloading model.tgz:  82%|████████▏ | 6.65G/8.14G [04:52<01:04, 22.9MB/s]
Downloading model.tgz:  82%|████████▏ | 6.65G/8.14G [04:52<01:05, 22.6MB/s]
Downloading model.tgz:  82%|████████▏ | 6.66G/8.14G [04:52<01:10, 21.1MB/s]
Downloading model.tgz:  82%|████████▏ | 6.66G/8.14G [04:52<01:07, 22.0MB/s]
Downloading model.tgz:  82%|████████▏ | 6.66G/8.14G [04:52<01:06, 22.2MB/s]
Downloading model.tgz:  82%|████████▏ | 6.66G/8.14G [04:52<01:02, 23.8MB/s]
Downloading model.tgz:  82%|████████▏ | 6.67G/8.14G [04:52<01:01, 23.8MB/s]
Downloading model.tgz:  82%|████████▏ | 6.67G/8.14G [04:52<01:08, 21.4MB/s]
Downloading model.tgz:  82%|████████▏ | 6.67G/8.14G [04:53<01:06, 22.1MB/s]
Downloading model.tgz:  82%|████████▏ | 6.67G/8.14G [04:53<01:04, 22.6MB/s]
Downloading model.tgz:  82%|████████▏ | 6.68G/8.14G [04:53<01:01, 23.8MB/s]
Downloading model.tgz:  82%|████████▏ | 6.68G/8.14G [04:53<01:07, 21.8MB/s]
Downloading model.tgz:  82%|████████▏ | 6.68G/8.14G [04:53<01:05, 22.2MB/s]
Downloading model.tgz:  82%|████████▏ | 6.68G/8.14G [04:53<01:03, 22.8MB/s]
Downloading model.tgz:  82%|████████▏ | 6.69G/8.14G [04:53<01:05, 22.3MB/s]
Downloading model.tgz:  82%|████████▏ | 6.69G/8.14G [04:53<01:04, 22.6MB/s]
Downloading model.tgz:  82%|████████▏ | 6.69G/8.14G [04:53<01:03, 22.9MB/s]
Downloading model.tgz:  82%|████████▏ | 6.69G/8.14G [04:54<01:02, 23.1MB/s]
Downloading model.tgz:  82%|████████▏ | 6.70G/8.14G [04:54<01:02, 23.0MB/s]
Downloading model.tgz:  82%|████████▏ | 6.70G/8.14G [04:54<01:01, 23.3MB/s]
Downloading model.tgz:  82%|████████▏ | 6.70G/8.14G [04:54<01:05, 21.9MB/s]
Downloading model.tgz:  82%|████████▏ | 6.70G/8.14G [04:54<01:02, 23.0MB/s]
Downloading model.tgz:  82%|████████▏ | 6.71G/8.14G [04:54<01:03, 22.6MB/s]
Downloading model.tgz:  82%|████████▏ | 6.71G/8.14G [04:54<01:01, 23.2MB/s]
Downloading model.tgz:  82%|████████▏ | 6.71G/8.14G [04:54<01:01, 23.0MB/s]
Downloading model.tgz:  82%|████████▏ | 6.71G/8.14G [04:54<01:01, 23.1MB/s]
Downloading model.tgz:  83%|████████▎ | 6.72G/8.14G [04:55<01:04, 22.0MB/s]
Downloading model.tgz:  83%|████████▎ | 6.72G/8.14G [04:55<01:00, 23.3MB/s]
Downloading model.tgz:  83%|████████▎ | 6.72G/8.14G [04:55<01:00, 23.3MB/s]
Downloading model.tgz:  83%|████████▎ | 6.72G/8.14G [04:55<01:00, 23.4MB/s]
Downloading model.tgz:  83%|████████▎ | 6.73G/8.14G [04:55<01:00, 23.4MB/s]
Downloading model.tgz:  83%|████████▎ | 6.73G/8.14G [04:55<01:05, 21.6MB/s]
Downloading model.tgz:  83%|████████▎ | 6.73G/8.14G [04:55<01:02, 22.4MB/s]
Downloading model.tgz:  83%|████████▎ | 6.73G/8.14G [04:55<01:00, 23.1MB/s]
Downloading model.tgz:  83%|████████▎ | 6.74G/8.14G [04:55<01:00, 23.1MB/s]
Downloading model.tgz:  83%|████████▎ | 6.74G/8.14G [04:55<00:58, 24.0MB/s]
Downloading model.tgz:  83%|████████▎ | 6.74G/8.14G [04:56<01:04, 21.7MB/s]
Downloading model.tgz:  83%|████████▎ | 6.74G/8.14G [04:56<01:02, 22.3MB/s]
Downloading model.tgz:  83%|████████▎ | 6.75G/8.14G [04:56<01:00, 22.9MB/s]
Downloading model.tgz:  83%|████████▎ | 6.75G/8.14G [04:56<00:59, 23.3MB/s]
Downloading model.tgz:  83%|████████▎ | 6.75G/8.14G [04:56<00:57, 24.1MB/s]
Downloading model.tgz:  83%|████████▎ | 6.75G/8.14G [04:56<01:02, 22.3MB/s]
Downloading model.tgz:  83%|████████▎ | 6.76G/8.14G [04:56<01:01, 22.4MB/s]
Downloading model.tgz:  83%|████████▎ | 6.76G/8.14G [04:56<00:59, 23.2MB/s]
Downloading model.tgz:  83%|████████▎ | 6.76G/8.14G [04:56<00:59, 23.3MB/s]
Downloading model.tgz:  83%|████████▎ | 6.76G/8.14G [04:57<00:58, 23.4MB/s]
Downloading model.tgz:  83%|████████▎ | 6.77G/8.14G [04:57<00:57, 23.8MB/s]
Downloading model.tgz:  83%|████████▎ | 6.77G/8.14G [04:57<01:01, 22.1MB/s]
Downloading model.tgz:  83%|████████▎ | 6.77G/8.14G [04:57<01:01, 22.4MB/s]
Downloading model.tgz:  83%|████████▎ | 6.77G/8.14G [04:57<01:00, 22.5MB/s]
Downloading model.tgz:  83%|████████▎ | 6.78G/8.14G [04:57<00:58, 23.2MB/s]
Downloading model.tgz:  83%|████████▎ | 6.78G/8.14G [04:57<00:56, 24.1MB/s]
Downloading model.tgz:  83%|████████▎ | 6.78G/8.14G [04:57<01:01, 22.2MB/s]
Downloading model.tgz:  83%|████████▎ | 6.78G/8.14G [04:57<01:01, 22.0MB/s]
Downloading model.tgz:  83%|████████▎ | 6.79G/8.14G [04:58<01:00, 22.4MB/s]
Downloading model.tgz:  83%|████████▎ | 6.79G/8.14G [04:58<00:59, 22.9MB/s]
Downloading model.tgz:  83%|████████▎ | 6.79G/8.14G [04:58<00:57, 23.4MB/s]
Downloading model.tgz:  83%|████████▎ | 6.79G/8.14G [04:58<00:56, 24.0MB/s]
Downloading model.tgz:  83%|████████▎ | 6.80G/8.14G [04:58<00:59, 22.7MB/s]
Downloading model.tgz:  84%|████████▎ | 6.80G/8.14G [04:58<00:59, 22.7MB/s]
Downloading model.tgz:  84%|████████▎ | 6.80G/8.14G [04:58<00:59, 22.4MB/s]
Downloading model.tgz:  84%|████████▎ | 6.80G/8.14G [04:58<00:59, 22.6MB/s]
Downloading model.tgz:  84%|████████▎ | 6.81G/8.14G [04:58<00:56, 23.4MB/s]
Downloading model.tgz:  84%|████████▎ | 6.81G/8.14G [04:58<00:59, 22.6MB/s]
Downloading model.tgz:  84%|████████▎ | 6.81G/8.14G [04:59<00:57, 23.0MB/s]
Downloading model.tgz:  84%|████████▎ | 6.81G/8.14G [04:59<00:59, 22.3MB/s]
Downloading model.tgz:  84%|████████▎ | 6.81G/8.14G [04:59<01:10, 18.8MB/s]
Downloading model.tgz:  84%|████████▍ | 6.82G/8.14G [04:59<01:01, 21.3MB/s]
Downloading model.tgz:  84%|████████▍ | 6.82G/8.14G [04:59<00:58, 22.4MB/s]
Downloading model.tgz:  84%|████████▍ | 6.82G/8.14G [04:59<00:57, 22.7MB/s]
Downloading model.tgz:  84%|████████▍ | 6.83G/8.14G [04:59<00:56, 23.4MB/s]
Downloading model.tgz:  84%|████████▍ | 6.83G/8.14G [04:59<00:55, 23.5MB/s]
Downloading model.tgz:  84%|████████▍ | 6.83G/8.14G [05:00<00:55, 23.4MB/s]
Downloading model.tgz:  84%|████████▍ | 6.83G/8.14G [05:00<00:55, 23.6MB/s]
Downloading model.tgz:  84%|████████▍ | 6.84G/8.14G [05:00<00:59, 22.0MB/s]
Downloading model.tgz:  84%|████████▍ | 6.84G/8.14G [05:00<00:56, 22.9MB/s]
Downloading model.tgz:  84%|████████▍ | 6.84G/8.14G [05:00<00:57, 22.7MB/s]
Downloading model.tgz:  84%|████████▍ | 6.84G/8.14G [05:00<00:56, 23.1MB/s]
Downloading model.tgz:  84%|████████▍ | 6.85G/8.14G [05:00<00:55, 23.3MB/s]
Downloading model.tgz:  84%|████████▍ | 6.85G/8.14G [05:00<00:58, 22.1MB/s]
Downloading model.tgz:  84%|████████▍ | 6.85G/8.14G [05:00<00:56, 22.6MB/s]
Downloading model.tgz:  84%|████████▍ | 6.85G/8.14G [05:00<00:55, 23.3MB/s]
Downloading model.tgz:  84%|████████▍ | 6.86G/8.14G [05:01<00:54, 23.4MB/s]
Downloading model.tgz:  84%|████████▍ | 6.86G/8.14G [05:01<00:55, 23.3MB/s]
Downloading model.tgz:  84%|████████▍ | 6.86G/8.14G [05:01<00:55, 22.9MB/s]
Downloading model.tgz:  84%|████████▍ | 6.86G/8.14G [05:01<00:57, 22.1MB/s]
Downloading model.tgz:  84%|████████▍ | 6.87G/8.14G [05:01<00:58, 21.9MB/s]
Downloading model.tgz:  84%|████████▍ | 6.87G/8.14G [05:01<00:55, 22.9MB/s]
Downloading model.tgz:  84%|████████▍ | 6.87G/8.14G [05:01<00:53, 23.5MB/s]
Downloading model.tgz:  84%|████████▍ | 6.87G/8.14G [05:01<00:53, 23.5MB/s]
Downloading model.tgz:  84%|████████▍ | 6.88G/8.14G [05:01<00:53, 23.8MB/s]
Downloading model.tgz:  84%|████████▍ | 6.88G/8.14G [05:02<00:56, 22.4MB/s]
Downloading model.tgz:  85%|████████▍ | 6.88G/8.14G [05:02<00:57, 21.8MB/s]
Downloading model.tgz:  85%|████████▍ | 6.88G/8.14G [05:02<00:56, 22.1MB/s]
Downloading model.tgz:  85%|████████▍ | 6.88G/8.14G [05:02<00:56, 22.1MB/s]
Downloading model.tgz:  85%|████████▍ | 6.89G/8.14G [05:02<00:56, 22.2MB/s]
Downloading model.tgz:  85%|████████▍ | 6.89G/8.14G [05:02<00:55, 22.3MB/s]
Downloading model.tgz:  85%|████████▍ | 6.89G/8.14G [05:02<00:54, 22.9MB/s]
Downloading model.tgz:  85%|████████▍ | 6.89G/8.14G [05:02<00:54, 22.8MB/s]
Downloading model.tgz:  85%|████████▍ | 6.90G/8.14G [05:02<00:56, 22.1MB/s]
Downloading model.tgz:  85%|████████▍ | 6.90G/8.14G [05:02<00:54, 22.7MB/s]
Downloading model.tgz:  85%|████████▍ | 6.90G/8.14G [05:03<00:55, 22.4MB/s]
Downloading model.tgz:  85%|████████▍ | 6.90G/8.14G [05:03<00:54, 22.7MB/s]
Downloading model.tgz:  85%|████████▍ | 6.91G/8.14G [05:03<00:54, 22.6MB/s]
Downloading model.tgz:  85%|████████▍ | 6.91G/8.14G [05:03<00:52, 23.5MB/s]
Downloading model.tgz:  85%|████████▍ | 6.91G/8.14G [05:03<00:54, 22.6MB/s]
Downloading model.tgz:  85%|████████▍ | 6.91G/8.14G [05:03<00:53, 22.8MB/s]
Downloading model.tgz:  85%|████████▍ | 6.92G/8.14G [05:03<00:55, 22.1MB/s]
Downloading model.tgz:  85%|████████▍ | 6.92G/8.14G [05:03<00:53, 22.6MB/s]
Downloading model.tgz:  85%|████████▌ | 6.92G/8.14G [05:03<00:51, 23.6MB/s]
Downloading model.tgz:  85%|████████▌ | 6.92G/8.14G [05:04<00:53, 22.9MB/s]
Downloading model.tgz:  85%|████████▌ | 6.93G/8.14G [05:04<00:53, 22.8MB/s]
Downloading model.tgz:  85%|████████▌ | 6.93G/8.14G [05:04<00:52, 23.0MB/s]
Downloading model.tgz:  85%|████████▌ | 6.93G/8.14G [05:04<00:52, 23.2MB/s]
Downloading model.tgz:  85%|████████▌ | 6.93G/8.14G [05:04<00:53, 22.7MB/s]
Downloading model.tgz:  85%|████████▌ | 6.94G/8.14G [05:04<00:51, 23.4MB/s]
Downloading model.tgz:  85%|████████▌ | 6.94G/8.14G [05:04<00:50, 23.8MB/s]
Downloading model.tgz:  85%|████████▌ | 6.94G/8.14G [05:04<00:54, 22.2MB/s]
Downloading model.tgz:  85%|████████▌ | 6.94G/8.14G [05:04<00:53, 22.3MB/s]
Downloading model.tgz:  85%|████████▌ | 6.94G/8.14G [05:04<00:52, 22.6MB/s]
Downloading model.tgz:  85%|████████▌ | 6.95G/8.14G [05:05<00:52, 22.8MB/s]
Downloading model.tgz:  85%|████████▌ | 6.95G/8.14G [05:05<00:51, 23.0MB/s]
Downloading model.tgz:  85%|████████▌ | 6.95G/8.14G [05:05<00:51, 23.0MB/s]
Downloading model.tgz:  85%|████████▌ | 6.95G/8.14G [05:05<00:52, 22.6MB/s]
Downloading model.tgz:  85%|████████▌ | 6.96G/8.14G [05:05<00:50, 23.4MB/s]
Downloading model.tgz:  85%|████████▌ | 6.96G/8.14G [05:05<00:51, 22.9MB/s]
Downloading model.tgz:  86%|████████▌ | 6.96G/8.14G [05:05<00:52, 22.6MB/s]
Downloading model.tgz:  86%|████████▌ | 6.96G/8.14G [05:05<00:52, 22.3MB/s]
Downloading model.tgz:  86%|████████▌ | 6.97G/8.14G [05:05<00:51, 22.7MB/s]
Downloading model.tgz:  86%|████████▌ | 6.97G/8.14G [05:06<00:51, 22.5MB/s]
Downloading model.tgz:  86%|████████▌ | 6.97G/8.14G [05:06<00:49, 23.8MB/s]
Downloading model.tgz:  86%|████████▌ | 6.97G/8.14G [05:06<00:50, 23.0MB/s]
Downloading model.tgz:  86%|████████▌ | 6.98G/8.14G [05:06<00:52, 22.3MB/s]
Downloading model.tgz:  86%|████████▌ | 6.98G/8.14G [05:06<00:50, 23.0MB/s]
Downloading model.tgz:  86%|████████▌ | 6.98G/8.14G [05:06<00:51, 22.7MB/s]
Downloading model.tgz:  86%|████████▌ | 6.98G/8.14G [05:06<00:50, 22.7MB/s]
Downloading model.tgz:  86%|████████▌ | 6.99G/8.14G [05:06<00:48, 23.9MB/s]
Downloading model.tgz:  86%|████████▌ | 6.99G/8.14G [05:07<01:15, 15.2MB/s]
Downloading model.tgz:  86%|████████▌ | 6.99G/8.14G [05:07<00:58, 19.7MB/s]
Downloading model.tgz:  86%|████████▌ | 7.00G/8.14G [05:07<00:55, 20.6MB/s]
Downloading model.tgz:  86%|████████▌ | 7.00G/8.14G [05:07<00:54, 21.0MB/s]
Downloading model.tgz:  86%|████████▌ | 7.00G/8.14G [05:07<00:53, 21.4MB/s]
Downloading model.tgz:  86%|████████▌ | 7.01G/8.14G [05:07<00:50, 22.5MB/s]
Downloading model.tgz:  86%|████████▌ | 7.01G/8.14G [05:07<00:49, 23.0MB/s]
Downloading model.tgz:  86%|████████▌ | 7.01G/8.14G [05:07<00:50, 22.2MB/s]
Downloading model.tgz:  86%|████████▌ | 7.01G/8.14G [05:07<00:49, 22.7MB/s]
Downloading model.tgz:  86%|████████▌ | 7.02G/8.14G [05:08<00:50, 22.4MB/s]
Downloading model.tgz:  86%|████████▌ | 7.02G/8.14G [05:08<00:48, 23.2MB/s]
Downloading model.tgz:  86%|████████▋ | 7.02G/8.14G [05:08<00:48, 23.1MB/s]
Downloading model.tgz:  86%|████████▋ | 7.02G/8.14G [05:08<00:47, 23.4MB/s]
Downloading model.tgz:  86%|████████▋ | 7.03G/8.14G [05:08<00:49, 22.6MB/s]
Downloading model.tgz:  86%|████████▋ | 7.03G/8.14G [05:08<00:49, 22.6MB/s]
Downloading model.tgz:  86%|████████▋ | 7.03G/8.14G [05:08<00:49, 22.4MB/s]
Downloading model.tgz:  86%|████████▋ | 7.03G/8.14G [05:08<00:49, 22.4MB/s]
Downloading model.tgz:  86%|████████▋ | 7.04G/8.14G [05:08<00:46, 23.7MB/s]
Downloading model.tgz:  86%|████████▋ | 7.04G/8.14G [05:09<00:46, 23.8MB/s]
Downloading model.tgz:  87%|████████▋ | 7.04G/8.14G [05:09<00:48, 22.9MB/s]
Downloading model.tgz:  87%|████████▋ | 7.04G/8.14G [05:09<00:49, 22.3MB/s]
Downloading model.tgz:  87%|████████▋ | 7.05G/8.14G [05:09<00:49, 22.3MB/s]
Downloading model.tgz:  87%|████████▋ | 7.05G/8.14G [05:09<00:46, 23.3MB/s]
Downloading model.tgz:  87%|████████▋ | 7.05G/8.14G [05:09<00:46, 23.4MB/s]
Downloading model.tgz:  87%|████████▋ | 7.05G/8.14G [05:09<00:47, 23.0MB/s]
Downloading model.tgz:  87%|████████▋ | 7.06G/8.14G [05:09<00:47, 22.8MB/s]
Downloading model.tgz:  87%|████████▋ | 7.06G/8.14G [05:09<00:48, 22.4MB/s]
Downloading model.tgz:  87%|████████▋ | 7.06G/8.14G [05:10<00:46, 23.0MB/s]
Downloading model.tgz:  87%|████████▋ | 7.06G/8.14G [05:10<00:46, 23.4MB/s]
Downloading model.tgz:  87%|████████▋ | 7.07G/8.14G [05:10<00:49, 21.8MB/s]
Downloading model.tgz:  87%|████████▋ | 7.07G/8.14G [05:10<00:45, 23.4MB/s]
Downloading model.tgz:  87%|████████▋ | 7.07G/8.14G [05:10<00:47, 22.7MB/s]
Downloading model.tgz:  87%|████████▋ | 7.07G/8.14G [05:10<00:45, 23.4MB/s]
Downloading model.tgz:  87%|████████▋ | 7.08G/8.14G [05:10<00:44, 23.8MB/s]
Downloading model.tgz:  87%|████████▋ | 7.08G/8.14G [05:10<00:44, 23.7MB/s]
Downloading model.tgz:  87%|████████▋ | 7.08G/8.14G [05:10<00:46, 22.7MB/s]
Downloading model.tgz:  87%|████████▋ | 7.08G/8.14G [05:10<00:46, 22.7MB/s]
Downloading model.tgz:  87%|████████▋ | 7.09G/8.14G [05:11<00:47, 22.1MB/s]
Downloading model.tgz:  87%|████████▋ | 7.09G/8.14G [05:11<00:48, 21.7MB/s]
Downloading model.tgz:  87%|████████▋ | 7.09G/8.14G [05:11<00:45, 22.9MB/s]
Downloading model.tgz:  87%|████████▋ | 7.09G/8.14G [05:11<00:43, 24.0MB/s]
Downloading model.tgz:  87%|████████▋ | 7.10G/8.14G [05:11<00:46, 22.5MB/s]
Downloading model.tgz:  87%|████████▋ | 7.10G/8.14G [05:11<00:47, 22.2MB/s]
Downloading model.tgz:  87%|████████▋ | 7.10G/8.14G [05:11<00:44, 23.6MB/s]
Downloading model.tgz:  87%|████████▋ | 7.10G/8.14G [05:11<00:43, 23.8MB/s]
Downloading model.tgz:  87%|████████▋ | 7.11G/8.14G [05:11<00:43, 23.7MB/s]
Downloading model.tgz:  87%|████████▋ | 7.11G/8.14G [05:12<00:46, 22.1MB/s]
Downloading model.tgz:  87%|████████▋ | 7.11G/8.14G [05:12<00:47, 21.8MB/s]
Downloading model.tgz:  87%|████████▋ | 7.11G/8.14G [05:12<00:44, 23.0MB/s]
Downloading model.tgz:  87%|████████▋ | 7.12G/8.14G [05:12<00:42, 24.0MB/s]
Downloading model.tgz:  87%|████████▋ | 7.12G/8.14G [05:12<00:42, 23.8MB/s]
Downloading model.tgz:  87%|████████▋ | 7.12G/8.14G [05:12<00:46, 22.2MB/s]
Downloading model.tgz:  88%|████████▊ | 7.12G/8.14G [05:12<00:46, 22.0MB/s]
Downloading model.tgz:  88%|████████▊ | 7.13G/8.14G [05:12<00:45, 22.4MB/s]
Downloading model.tgz:  88%|████████▊ | 7.13G/8.14G [05:12<00:42, 23.7MB/s]
Downloading model.tgz:  88%|████████▊ | 7.13G/8.14G [05:13<00:42, 23.9MB/s]
Downloading model.tgz:  88%|████████▊ | 7.13G/8.14G [05:13<00:43, 23.0MB/s]
Downloading model.tgz:  88%|████████▊ | 7.14G/8.14G [05:13<00:45, 22.2MB/s]
Downloading model.tgz:  88%|████████▊ | 7.14G/8.14G [05:13<00:45, 22.1MB/s]
Downloading model.tgz:  88%|████████▊ | 7.14G/8.14G [05:13<00:44, 22.6MB/s]
Downloading model.tgz:  88%|████████▊ | 7.14G/8.14G [05:13<00:43, 23.1MB/s]
Downloading model.tgz:  88%|████████▊ | 7.14G/8.14G [05:13<00:41, 24.1MB/s]
Downloading model.tgz:  88%|████████▊ | 7.15G/8.14G [05:13<00:42, 23.3MB/s]
Downloading model.tgz:  88%|████████▊ | 7.15G/8.14G [05:13<00:45, 21.8MB/s]
Downloading model.tgz:  88%|████████▊ | 7.15G/8.14G [05:13<00:43, 22.7MB/s]
Downloading model.tgz:  88%|████████▊ | 7.15G/8.14G [05:14<00:49, 19.7MB/s]
Downloading model.tgz:  88%|████████▊ | 7.16G/8.14G [05:14<00:43, 22.5MB/s]
Downloading model.tgz:  88%|████████▊ | 7.16G/8.14G [05:14<00:42, 23.0MB/s]
Downloading model.tgz:  88%|████████▊ | 7.16G/8.14G [05:14<00:42, 23.1MB/s]
Downloading model.tgz:  88%|████████▊ | 7.17G/8.14G [05:14<00:43, 22.6MB/s]
Downloading model.tgz:  88%|████████▊ | 7.17G/8.14G [05:14<00:43, 22.2MB/s]
Downloading model.tgz:  88%|████████▊ | 7.17G/8.14G [05:14<00:45, 21.3MB/s]
Downloading model.tgz:  88%|████████▊ | 7.17G/8.14G [05:14<00:43, 22.2MB/s]
Downloading model.tgz:  88%|████████▊ | 7.18G/8.14G [05:15<00:41, 23.2MB/s]
Downloading model.tgz:  88%|████████▊ | 7.18G/8.14G [05:15<00:41, 23.3MB/s]
Downloading model.tgz:  88%|████████▊ | 7.18G/8.14G [05:15<00:41, 22.9MB/s]
Downloading model.tgz:  88%|████████▊ | 7.18G/8.14G [05:15<00:44, 21.7MB/s]
Downloading model.tgz:  88%|████████▊ | 7.19G/8.14G [05:15<00:42, 22.3MB/s]
Downloading model.tgz:  88%|████████▊ | 7.19G/8.14G [05:15<00:41, 23.1MB/s]
Downloading model.tgz:  88%|████████▊ | 7.19G/8.14G [05:15<00:41, 23.1MB/s]
Downloading model.tgz:  88%|████████▊ | 7.19G/8.14G [05:15<00:41, 22.7MB/s]
Downloading model.tgz:  88%|████████▊ | 7.19G/8.14G [05:15<00:43, 21.5MB/s]
Downloading model.tgz:  88%|████████▊ | 7.20G/8.14G [05:16<00:42, 22.1MB/s]
Downloading model.tgz:  88%|████████▊ | 7.20G/8.14G [05:16<00:42, 22.1MB/s]
Downloading model.tgz:  88%|████████▊ | 7.20G/8.14G [05:16<00:39, 23.6MB/s]
Downloading model.tgz:  89%|████████▊ | 7.21G/8.14G [05:16<00:42, 22.2MB/s]
Downloading model.tgz:  89%|████████▊ | 7.21G/8.14G [05:16<00:41, 22.7MB/s]
Downloading model.tgz:  89%|████████▊ | 7.21G/8.14G [05:16<00:40, 22.8MB/s]
Downloading model.tgz:  89%|████████▊ | 7.21G/8.14G [05:16<00:39, 23.4MB/s]
Downloading model.tgz:  89%|████████▊ | 7.21G/8.14G [05:16<00:39, 23.3MB/s]
Downloading model.tgz:  89%|████████▊ | 7.22G/8.14G [05:16<00:39, 23.1MB/s]
Downloading model.tgz:  89%|████████▊ | 7.22G/8.14G [05:16<00:41, 22.1MB/s]
Downloading model.tgz:  89%|████████▊ | 7.22G/8.14G [05:17<00:41, 22.0MB/s]
Downloading model.tgz:  89%|████████▉ | 7.22G/8.14G [05:17<00:39, 23.3MB/s]
Downloading model.tgz:  89%|████████▉ | 7.23G/8.14G [05:17<00:39, 23.1MB/s]
Downloading model.tgz:  89%|████████▉ | 7.23G/8.14G [05:17<00:39, 23.3MB/s]
Downloading model.tgz:  89%|████████▉ | 7.23G/8.14G [05:17<00:40, 22.3MB/s]
Downloading model.tgz:  89%|████████▉ | 7.23G/8.14G [05:17<00:41, 22.0MB/s]
Downloading model.tgz:  89%|████████▉ | 7.24G/8.14G [05:17<00:39, 22.8MB/s]
Downloading model.tgz:  89%|████████▉ | 7.24G/8.14G [05:17<00:37, 24.1MB/s]
Downloading model.tgz:  89%|████████▉ | 7.24G/8.14G [05:17<00:38, 23.3MB/s]
Downloading model.tgz:  89%|████████▉ | 7.24G/8.14G [05:18<00:40, 22.2MB/s]
Downloading model.tgz:  89%|████████▉ | 7.25G/8.14G [05:18<00:40, 22.0MB/s]
Downloading model.tgz:  89%|████████▉ | 7.25G/8.14G [05:18<00:39, 22.6MB/s]
Downloading model.tgz:  89%|████████▉ | 7.25G/8.14G [05:18<00:37, 23.6MB/s]
Downloading model.tgz:  89%|████████▉ | 7.25G/8.14G [05:18<00:37, 23.4MB/s]
Downloading model.tgz:  89%|████████▉ | 7.26G/8.14G [05:18<00:37, 23.6MB/s]
Downloading model.tgz:  89%|████████▉ | 7.26G/8.14G [05:18<00:39, 22.5MB/s]
Downloading model.tgz:  89%|████████▉ | 7.26G/8.14G [05:18<00:39, 22.2MB/s]
Downloading model.tgz:  89%|████████▉ | 7.26G/8.14G [05:18<00:38, 22.6MB/s]
Downloading model.tgz:  89%|████████▉ | 7.27G/8.14G [05:18<00:36, 23.7MB/s]
Downloading model.tgz:  89%|████████▉ | 7.27G/8.14G [05:19<00:37, 23.4MB/s]
Downloading model.tgz:  89%|████████▉ | 7.27G/8.14G [05:19<00:37, 23.3MB/s]
Downloading model.tgz:  89%|████████▉ | 7.27G/8.14G [05:19<00:38, 22.7MB/s]
Downloading model.tgz:  89%|████████▉ | 7.28G/8.14G [05:19<00:38, 22.3MB/s]
Downloading model.tgz:  89%|████████▉ | 7.28G/8.14G [05:19<00:38, 22.5MB/s]
Downloading model.tgz:  89%|████████▉ | 7.28G/8.14G [05:19<00:37, 23.0MB/s]
Downloading model.tgz:  89%|████████▉ | 7.28G/8.14G [05:19<00:37, 23.1MB/s]
Downloading model.tgz:  90%|████████▉ | 7.29G/8.14G [05:19<00:36, 23.6MB/s]
Downloading model.tgz:  90%|████████▉ | 7.29G/8.14G [05:19<00:37, 22.5MB/s]
Downloading model.tgz:  90%|████████▉ | 7.29G/8.14G [05:20<00:37, 22.7MB/s]
Downloading model.tgz:  90%|████████▉ | 7.29G/8.14G [05:20<00:37, 22.6MB/s]
Downloading model.tgz:  90%|████████▉ | 7.30G/8.14G [05:20<00:36, 23.1MB/s]
Downloading model.tgz:  90%|████████▉ | 7.30G/8.14G [05:20<00:36, 22.8MB/s]
Downloading model.tgz:  90%|████████▉ | 7.30G/8.14G [05:20<00:35, 23.6MB/s]
Downloading model.tgz:  90%|████████▉ | 7.30G/8.14G [05:20<00:36, 22.6MB/s]
Downloading model.tgz:  90%|████████▉ | 7.30G/8.14G [05:20<00:36, 22.9MB/s]
Downloading model.tgz:  90%|████████▉ | 7.31G/8.14G [05:20<00:36, 22.6MB/s]
Downloading model.tgz:  90%|████████▉ | 7.31G/8.14G [05:20<00:35, 23.2MB/s]
Downloading model.tgz:  90%|████████▉ | 7.31G/8.14G [05:21<00:37, 22.2MB/s]
Downloading model.tgz:  90%|████████▉ | 7.31G/8.14G [05:21<00:36, 22.8MB/s]
Downloading model.tgz:  90%|████████▉ | 7.32G/8.14G [05:21<00:35, 23.5MB/s]
Downloading model.tgz:  90%|████████▉ | 7.32G/8.14G [05:21<00:35, 23.1MB/s]
Downloading model.tgz:  90%|████████▉ | 7.32G/8.14G [05:21<00:35, 23.2MB/s]
Downloading model.tgz:  90%|████████▉ | 7.32G/8.14G [05:21<00:34, 23.4MB/s]
Downloading model.tgz:  90%|█████████ | 7.33G/8.14G [05:21<00:35, 22.7MB/s]
Downloading model.tgz:  90%|█████████ | 7.33G/8.14G [05:21<00:36, 22.5MB/s]
Downloading model.tgz:  90%|█████████ | 7.33G/8.14G [05:21<00:35, 22.8MB/s]
Downloading model.tgz:  90%|█████████ | 7.33G/8.14G [05:21<00:34, 23.3MB/s]
Downloading model.tgz:  90%|█████████ | 7.34G/8.14G [05:22<00:34, 23.3MB/s]
Downloading model.tgz:  90%|█████████ | 7.34G/8.14G [05:22<00:34, 23.0MB/s]
Downloading model.tgz:  90%|█████████ | 7.34G/8.14G [05:22<00:35, 22.3MB/s]
Downloading model.tgz:  90%|█████████ | 7.34G/8.14G [05:22<00:37, 21.2MB/s]
Downloading model.tgz:  90%|█████████ | 7.35G/8.14G [05:22<00:34, 23.3MB/s]
Downloading model.tgz:  90%|█████████ | 7.35G/8.14G [05:22<00:34, 22.8MB/s]
Downloading model.tgz:  90%|█████████ | 7.35G/8.14G [05:22<00:34, 23.0MB/s]
Downloading model.tgz:  90%|█████████ | 7.35G/8.14G [05:22<00:35, 22.4MB/s]
Downloading model.tgz:  90%|█████████ | 7.36G/8.14G [05:22<00:35, 22.2MB/s]
Downloading model.tgz:  90%|█████████ | 7.36G/8.14G [05:23<00:34, 22.8MB/s]
Downloading model.tgz:  90%|█████████ | 7.36G/8.14G [05:23<00:32, 23.8MB/s]
Downloading model.tgz:  90%|█████████ | 7.36G/8.14G [05:23<00:33, 23.1MB/s]
Downloading model.tgz:  90%|█████████ | 7.37G/8.14G [05:23<00:34, 22.6MB/s]
Downloading model.tgz:  91%|█████████ | 7.37G/8.14G [05:23<00:35, 21.9MB/s]
Downloading model.tgz:  91%|█████████ | 7.37G/8.14G [05:23<00:35, 21.9MB/s]
Downloading model.tgz:  91%|█████████ | 7.37G/8.14G [05:23<00:32, 23.6MB/s]
Downloading model.tgz:  91%|█████████ | 7.38G/8.14G [05:23<00:32, 23.6MB/s]
Downloading model.tgz:  91%|█████████ | 7.38G/8.14G [05:23<00:33, 22.9MB/s]
Downloading model.tgz:  91%|█████████ | 7.38G/8.14G [05:23<00:34, 21.8MB/s]
Downloading model.tgz:  91%|█████████ | 7.38G/8.14G [05:24<00:33, 22.3MB/s]
Downloading model.tgz:  91%|█████████ | 7.39G/8.14G [05:24<00:32, 23.1MB/s]
Downloading model.tgz:  91%|█████████ | 7.39G/8.14G [05:24<00:31, 23.5MB/s]
Downloading model.tgz:  91%|█████████ | 7.39G/8.14G [05:24<00:31, 23.7MB/s]
Downloading model.tgz:  91%|█████████ | 7.39G/8.14G [05:24<00:31, 23.4MB/s]
Downloading model.tgz:  91%|█████████ | 7.40G/8.14G [05:24<00:34, 21.8MB/s]
Downloading model.tgz:  91%|█████████ | 7.40G/8.14G [05:24<00:33, 22.3MB/s]
Downloading model.tgz:  91%|█████████ | 7.40G/8.14G [05:24<00:32, 23.0MB/s]
Downloading model.tgz:  91%|█████████ | 7.40G/8.14G [05:24<00:31, 23.7MB/s]
Downloading model.tgz:  91%|█████████ | 7.41G/8.14G [05:25<00:31, 23.6MB/s]
Downloading model.tgz:  91%|█████████ | 7.41G/8.14G [05:25<00:31, 23.6MB/s]
Downloading model.tgz:  91%|█████████ | 7.41G/8.14G [05:25<00:33, 21.6MB/s]
Downloading model.tgz:  91%|█████████ | 7.41G/8.14G [05:25<00:32, 22.3MB/s]
Downloading model.tgz:  91%|█████████ | 7.42G/8.14G [05:25<00:30, 23.7MB/s]
Downloading model.tgz:  91%|█████████ | 7.42G/8.14G [05:25<00:30, 23.7MB/s]
Downloading model.tgz:  91%|█████████ | 7.42G/8.14G [05:25<00:30, 24.0MB/s]
Downloading model.tgz:  91%|█████████ | 7.42G/8.14G [05:25<00:32, 22.2MB/s]
Downloading model.tgz:  91%|█████████ | 7.42G/8.14G [05:25<00:32, 21.9MB/s]
Downloading model.tgz:  91%|█████████ | 7.43G/8.14G [05:26<00:32, 22.0MB/s]
Downloading model.tgz:  91%|█████████▏| 7.43G/8.14G [05:26<00:30, 23.5MB/s]
Downloading model.tgz:  91%|█████████▏| 7.43G/8.14G [05:26<00:29, 24.1MB/s]
Downloading model.tgz:  91%|█████████▏| 7.43G/8.14G [05:26<00:31, 22.1MB/s]
Downloading model.tgz:  91%|█████████▏| 7.44G/8.14G [05:26<00:31, 22.4MB/s]
Downloading model.tgz:  91%|█████████▏| 7.44G/8.14G [05:26<00:30, 23.0MB/s]
Downloading model.tgz:  91%|█████████▏| 7.44G/8.14G [05:26<00:29, 23.7MB/s]
Downloading model.tgz:  91%|█████████▏| 7.44G/8.14G [05:26<00:31, 22.3MB/s]
Downloading model.tgz:  91%|█████████▏| 7.45G/8.14G [05:26<00:29, 23.3MB/s]
Downloading model.tgz:  92%|█████████▏| 7.45G/8.14G [05:26<00:31, 22.2MB/s]
Downloading model.tgz:  92%|█████████▏| 7.45G/8.14G [05:27<00:29, 23.0MB/s]
Downloading model.tgz:  92%|█████████▏| 7.45G/8.14G [05:27<00:28, 23.8MB/s]
Downloading model.tgz:  92%|█████████▏| 7.46G/8.14G [05:27<00:28, 23.8MB/s]
Downloading model.tgz:  92%|█████████▏| 7.46G/8.14G [05:27<00:28, 23.5MB/s]
Downloading model.tgz:  92%|█████████▏| 7.46G/8.14G [05:27<00:31, 21.8MB/s]
Downloading model.tgz:  92%|█████████▏| 7.46G/8.14G [05:27<00:29, 22.7MB/s]
Downloading model.tgz:  92%|█████████▏| 7.47G/8.14G [05:27<00:28, 23.6MB/s]
Downloading model.tgz:  92%|█████████▏| 7.47G/8.14G [05:27<00:28, 23.5MB/s]
Downloading model.tgz:  92%|█████████▏| 7.47G/8.14G [05:27<00:29, 22.7MB/s]
Downloading model.tgz:  92%|█████████▏| 7.47G/8.14G [05:28<00:28, 23.0MB/s]
Downloading model.tgz:  92%|█████████▏| 7.48G/8.14G [05:28<00:29, 22.2MB/s]
Downloading model.tgz:  92%|█████████▏| 7.48G/8.14G [05:28<00:29, 22.6MB/s]
Downloading model.tgz:  92%|█████████▏| 7.48G/8.14G [05:28<00:28, 23.2MB/s]
Downloading model.tgz:  92%|█████████▏| 7.48G/8.14G [05:28<00:27, 23.6MB/s]
Downloading model.tgz:  92%|█████████▏| 7.49G/8.14G [05:28<00:29, 22.3MB/s]
Downloading model.tgz:  92%|█████████▏| 7.49G/8.14G [05:28<00:28, 23.1MB/s]
Downloading model.tgz:  92%|█████████▏| 7.49G/8.14G [05:28<00:28, 22.7MB/s]
Downloading model.tgz:  92%|█████████▏| 7.49G/8.14G [05:28<00:28, 22.7MB/s]
Downloading model.tgz:  92%|█████████▏| 7.50G/8.14G [05:29<00:27, 23.2MB/s]
Downloading model.tgz:  92%|█████████▏| 7.50G/8.14G [05:29<00:27, 23.6MB/s]
Downloading model.tgz:  92%|█████████▏| 7.50G/8.14G [05:29<00:28, 22.3MB/s]
Downloading model.tgz:  92%|█████████▏| 7.50G/8.14G [05:29<00:28, 22.7MB/s]
Downloading model.tgz:  92%|█████████▏| 7.51G/8.14G [05:29<00:27, 22.8MB/s]
Downloading model.tgz:  92%|█████████▏| 7.51G/8.14G [05:29<00:27, 22.9MB/s]
Downloading model.tgz:  92%|█████████▏| 7.51G/8.14G [05:29<00:27, 22.6MB/s]
Downloading model.tgz:  92%|█████████▏| 7.51G/8.14G [05:29<00:26, 23.4MB/s]
Downloading model.tgz:  92%|█████████▏| 7.52G/8.14G [05:29<00:27, 22.6MB/s]
Downloading model.tgz:  92%|█████████▏| 7.52G/8.14G [05:29<00:27, 22.6MB/s]
Downloading model.tgz:  92%|█████████▏| 7.52G/8.14G [05:30<00:27, 22.5MB/s]
Downloading model.tgz:  92%|█████████▏| 7.52G/8.14G [05:30<00:27, 22.9MB/s]
Downloading model.tgz:  92%|█████████▏| 7.52G/8.14G [05:30<00:26, 23.1MB/s]
Downloading model.tgz:  92%|█████████▏| 7.53G/8.14G [05:30<00:26, 23.4MB/s]
Downloading model.tgz:  93%|█████████▎| 7.53G/8.14G [05:30<00:26, 22.8MB/s]
Downloading model.tgz:  93%|█████████▎| 7.53G/8.14G [05:30<00:26, 23.2MB/s]
Downloading model.tgz:  93%|█████████▎| 7.53G/8.14G [05:30<00:26, 22.8MB/s]
Downloading model.tgz:  93%|█████████▎| 7.54G/8.14G [05:30<00:26, 22.8MB/s]
Downloading model.tgz:  93%|█████████▎| 7.54G/8.14G [05:30<00:25, 23.4MB/s]
Downloading model.tgz:  93%|█████████▎| 7.54G/8.14G [05:30<00:25, 23.2MB/s]
Downloading model.tgz:  93%|█████████▎| 7.54G/8.14G [05:31<00:25, 23.2MB/s]
Downloading model.tgz:  93%|█████████▎| 7.55G/8.14G [05:31<00:26, 22.5MB/s]
Downloading model.tgz:  93%|█████████▎| 7.55G/8.14G [05:31<00:25, 23.1MB/s]
Downloading model.tgz:  93%|█████████▎| 7.55G/8.14G [05:31<00:25, 22.7MB/s]
Downloading model.tgz:  93%|█████████▎| 7.55G/8.14G [05:31<00:25, 22.9MB/s]
Downloading model.tgz:  93%|█████████▎| 7.56G/8.14G [05:31<00:24, 23.4MB/s]
Downloading model.tgz:  93%|█████████▎| 7.56G/8.14G [05:31<00:25, 23.1MB/s]
Downloading model.tgz:  93%|█████████▎| 7.56G/8.14G [05:31<00:25, 22.5MB/s]
Downloading model.tgz:  93%|█████████▎| 7.56G/8.14G [05:31<00:24, 23.2MB/s]
Downloading model.tgz:  93%|█████████▎| 7.57G/8.14G [05:32<00:24, 23.0MB/s]
Downloading model.tgz:  93%|█████████▎| 7.57G/8.14G [05:32<00:24, 23.3MB/s]
Downloading model.tgz:  93%|█████████▎| 7.57G/8.14G [05:32<00:24, 23.3MB/s]
Downloading model.tgz:  93%|█████████▎| 7.57G/8.14G [05:32<00:24, 23.2MB/s]
Downloading model.tgz:  93%|█████████▎| 7.58G/8.14G [05:32<00:25, 21.9MB/s]
Downloading model.tgz:  93%|█████████▎| 7.58G/8.14G [05:32<00:24, 22.9MB/s]
Downloading model.tgz:  93%|█████████▎| 7.58G/8.14G [05:32<00:24, 23.0MB/s]
Downloading model.tgz:  93%|█████████▎| 7.58G/8.14G [05:32<00:25, 22.2MB/s]
Downloading model.tgz:  93%|█████████▎| 7.59G/8.14G [05:32<00:23, 23.2MB/s]
Downloading model.tgz:  93%|█████████▎| 7.59G/8.14G [05:33<00:25, 21.8MB/s]
Downloading model.tgz:  93%|█████████▎| 7.59G/8.14G [05:33<00:23, 23.2MB/s]
Downloading model.tgz:  93%|█████████▎| 7.59G/8.14G [05:33<00:23, 23.2MB/s]
Downloading model.tgz:  93%|█████████▎| 7.60G/8.14G [05:33<00:23, 23.0MB/s]
Downloading model.tgz:  93%|█████████▎| 7.60G/8.14G [05:33<00:23, 22.9MB/s]
Downloading model.tgz:  93%|█████████▎| 7.60G/8.14G [05:33<00:24, 22.1MB/s]
Downloading model.tgz:  93%|█████████▎| 7.60G/8.14G [05:33<00:24, 22.2MB/s]
Downloading model.tgz:  93%|█████████▎| 7.60G/8.14G [05:33<00:23, 23.0MB/s]
Downloading model.tgz:  93%|█████████▎| 7.61G/8.14G [05:33<00:22, 23.3MB/s]
Downloading model.tgz:  93%|█████████▎| 7.61G/8.14G [05:33<00:23, 23.0MB/s]
Downloading model.tgz:  94%|█████████▎| 7.61G/8.14G [05:34<00:22, 23.2MB/s]
Downloading model.tgz:  94%|█████████▎| 7.61G/8.14G [05:34<00:23, 22.2MB/s]
Downloading model.tgz:  94%|█████████▎| 7.62G/8.14G [05:34<00:23, 22.6MB/s]
Downloading model.tgz:  94%|█████████▎| 7.62G/8.14G [05:34<00:22, 23.1MB/s]
Downloading model.tgz:  94%|█████████▎| 7.62G/8.14G [05:34<00:21, 23.6MB/s]
Downloading model.tgz:  94%|█████████▎| 7.62G/8.14G [05:34<00:21, 23.6MB/s]
Downloading model.tgz:  94%|█████████▎| 7.63G/8.14G [05:34<00:21, 23.5MB/s]
Downloading model.tgz:  94%|█████████▎| 7.63G/8.14G [05:34<00:23, 22.1MB/s]
Downloading model.tgz:  94%|█████████▍| 7.63G/8.14G [05:34<00:22, 22.4MB/s]
Downloading model.tgz:  94%|█████████▍| 7.63G/8.14G [05:35<00:22, 23.0MB/s]
Downloading model.tgz:  94%|█████████▍| 7.64G/8.14G [05:35<00:21, 23.6MB/s]
Downloading model.tgz:  94%|█████████▍| 7.64G/8.14G [05:35<00:23, 21.8MB/s]
Downloading model.tgz:  94%|█████████▍| 7.64G/8.14G [05:35<00:23, 21.5MB/s]
Downloading model.tgz:  94%|█████████▍| 7.64G/8.14G [05:35<00:22, 22.4MB/s]
Downloading model.tgz:  94%|█████████▍| 7.65G/8.14G [05:35<00:21, 22.5MB/s]
Downloading model.tgz:  94%|█████████▍| 7.65G/8.14G [05:35<00:21, 22.4MB/s]
Downloading model.tgz:  94%|█████████▍| 7.65G/8.14G [05:35<00:22, 22.1MB/s]
Downloading model.tgz:  94%|█████████▍| 7.65G/8.14G [05:35<00:21, 22.7MB/s]
Downloading model.tgz:  94%|█████████▍| 7.66G/8.14G [05:35<00:22, 21.9MB/s]
Downloading model.tgz:  94%|█████████▍| 7.66G/8.14G [05:36<00:21, 22.5MB/s]
Downloading model.tgz:  94%|█████████▍| 7.66G/8.14G [05:36<00:20, 23.1MB/s]
Downloading model.tgz:  94%|█████████▍| 7.66G/8.14G [05:36<00:20, 23.4MB/s]
Downloading model.tgz:  94%|█████████▍| 7.66G/8.14G [05:36<00:19, 23.8MB/s]
Downloading model.tgz:  94%|█████████▍| 7.67G/8.14G [05:36<00:21, 21.6MB/s]
Downloading model.tgz:  94%|█████████▍| 7.67G/8.14G [05:36<00:21, 22.2MB/s]
Downloading model.tgz:  94%|█████████▍| 7.67G/8.14G [05:36<00:20, 23.1MB/s]
Downloading model.tgz:  94%|█████████▍| 7.67G/8.14G [05:36<00:20, 23.0MB/s]
Downloading model.tgz:  94%|█████████▍| 7.68G/8.14G [05:36<00:20, 22.5MB/s]
Downloading model.tgz:  94%|█████████▍| 7.68G/8.14G [05:37<00:21, 21.8MB/s]
Downloading model.tgz:  94%|█████████▍| 7.68G/8.14G [05:37<00:19, 23.1MB/s]
Downloading model.tgz:  94%|█████████▍| 7.68G/8.14G [05:37<00:19, 23.5MB/s]
Downloading model.tgz:  94%|█████████▍| 7.69G/8.14G [05:37<00:19, 23.5MB/s]
Downloading model.tgz:  94%|█████████▍| 7.69G/8.14G [05:37<00:20, 22.2MB/s]
Downloading model.tgz:  95%|█████████▍| 7.69G/8.14G [05:37<00:20, 22.2MB/s]
Downloading model.tgz:  95%|█████████▍| 7.69G/8.14G [05:37<00:19, 22.4MB/s]
Downloading model.tgz:  95%|█████████▍| 7.70G/8.14G [05:37<00:19, 23.2MB/s]
Downloading model.tgz:  95%|█████████▍| 7.70G/8.14G [05:37<00:18, 23.8MB/s]
Downloading model.tgz:  95%|█████████▍| 7.70G/8.14G [05:38<00:19, 22.0MB/s]
Downloading model.tgz:  95%|█████████▍| 7.70G/8.14G [05:38<00:19, 22.0MB/s]
Downloading model.tgz:  95%|█████████▍| 7.71G/8.14G [05:38<00:18, 23.1MB/s]
Downloading model.tgz:  95%|█████████▍| 7.71G/8.14G [05:38<00:18, 23.2MB/s]
Downloading model.tgz:  95%|█████████▍| 7.71G/8.14G [05:38<00:17, 23.9MB/s]
Downloading model.tgz:  95%|█████████▍| 7.71G/8.14G [05:38<00:19, 22.0MB/s]
Downloading model.tgz:  95%|█████████▍| 7.72G/8.14G [05:38<00:19, 22.1MB/s]
Downloading model.tgz:  95%|█████████▍| 7.72G/8.14G [05:38<00:18, 23.0MB/s]
Downloading model.tgz:  95%|█████████▍| 7.72G/8.14G [05:38<00:17, 23.5MB/s]
Downloading model.tgz:  95%|█████████▍| 7.72G/8.14G [05:38<00:17, 23.3MB/s]
Downloading model.tgz:  95%|█████████▍| 7.73G/8.14G [05:39<00:17, 23.8MB/s]
Downloading model.tgz:  95%|█████████▍| 7.73G/8.14G [05:39<00:18, 22.3MB/s]
Downloading model.tgz:  95%|█████████▍| 7.73G/8.14G [05:39<00:18, 21.9MB/s]
Downloading model.tgz:  95%|█████████▌| 7.73G/8.14G [05:39<00:17, 23.0MB/s]
Downloading model.tgz:  95%|█████████▌| 7.74G/8.14G [05:39<00:17, 23.2MB/s]
Downloading model.tgz:  95%|█████████▌| 7.74G/8.14G [05:39<00:17, 23.1MB/s]
Downloading model.tgz:  95%|█████████▌| 7.74G/8.14G [05:39<00:16, 23.8MB/s]
Downloading model.tgz:  95%|█████████▌| 7.74G/8.14G [05:39<00:18, 21.8MB/s]
Downloading model.tgz:  95%|█████████▌| 7.75G/8.14G [05:39<00:17, 22.7MB/s]
Downloading model.tgz:  95%|█████████▌| 7.75G/8.14G [05:40<00:16, 23.4MB/s]
Downloading model.tgz:  95%|█████████▌| 7.75G/8.14G [05:40<00:16, 23.0MB/s]
Downloading model.tgz:  95%|█████████▌| 7.75G/8.14G [05:40<00:17, 22.1MB/s]
Downloading model.tgz:  95%|█████████▌| 7.76G/8.14G [05:40<00:17, 22.3MB/s]
Downloading model.tgz:  95%|█████████▌| 7.76G/8.14G [05:40<00:16, 22.6MB/s]
Downloading model.tgz:  95%|█████████▌| 7.76G/8.14G [05:40<00:16, 23.4MB/s]
Downloading model.tgz:  95%|█████████▌| 7.76G/8.14G [05:40<00:16, 23.3MB/s]
Downloading model.tgz:  95%|█████████▌| 7.77G/8.14G [05:40<00:16, 22.9MB/s]
Downloading model.tgz:  95%|█████████▌| 7.77G/8.14G [05:40<00:16, 22.2MB/s]
Downloading model.tgz:  95%|█████████▌| 7.77G/8.14G [05:41<00:16, 22.2MB/s]
Downloading model.tgz:  95%|█████████▌| 7.77G/8.14G [05:41<00:16, 22.6MB/s]
Downloading model.tgz:  96%|█████████▌| 7.78G/8.14G [05:41<00:16, 22.5MB/s]
Downloading model.tgz:  96%|█████████▌| 7.78G/8.14G [05:41<00:15, 23.6MB/s]
Downloading model.tgz:  96%|█████████▌| 7.78G/8.14G [05:41<00:15, 23.5MB/s]
Downloading model.tgz:  96%|█████████▌| 7.78G/8.14G [05:41<00:16, 21.8MB/s]
Downloading model.tgz:  96%|█████████▌| 7.78G/8.14G [05:41<00:16, 21.7MB/s]
Downloading model.tgz:  96%|█████████▌| 7.79G/8.14G [05:41<00:15, 22.8MB/s]
Downloading model.tgz:  96%|█████████▌| 7.79G/8.14G [05:41<00:14, 23.8MB/s]
Downloading model.tgz:  96%|█████████▌| 7.79G/8.14G [05:41<00:15, 22.9MB/s]
Downloading model.tgz:  96%|█████████▌| 7.79G/8.14G [05:42<00:15, 21.7MB/s]
Downloading model.tgz:  96%|█████████▌| 7.80G/8.14G [05:42<00:15, 21.7MB/s]
Downloading model.tgz:  96%|█████████▌| 7.80G/8.14G [05:42<00:14, 22.8MB/s]
Downloading model.tgz:  96%|█████████▌| 7.80G/8.14G [05:42<00:13, 24.2MB/s]
Downloading model.tgz:  96%|█████████▌| 7.81G/8.14G [05:42<00:15, 22.2MB/s]
Downloading model.tgz:  96%|█████████▌| 7.81G/8.14G [05:42<00:15, 21.8MB/s]
Downloading model.tgz:  96%|█████████▌| 7.81G/8.14G [05:42<00:14, 22.4MB/s]
Downloading model.tgz:  96%|█████████▌| 7.81G/8.14G [05:42<00:14, 22.9MB/s]
Downloading model.tgz:  96%|█████████▌| 7.81G/8.14G [05:42<00:13, 23.6MB/s]
Downloading model.tgz:  96%|█████████▌| 7.82G/8.14G [05:43<00:14, 22.9MB/s]
Downloading model.tgz:  96%|█████████▌| 7.82G/8.14G [05:43<00:14, 22.6MB/s]
Downloading model.tgz:  96%|█████████▌| 7.82G/8.14G [05:43<00:14, 22.6MB/s]
Downloading model.tgz:  96%|█████████▌| 7.82G/8.14G [05:43<00:14, 22.1MB/s]
Downloading model.tgz:  96%|█████████▌| 7.83G/8.14G [05:43<00:13, 22.9MB/s]
Downloading model.tgz:  96%|█████████▌| 7.83G/8.14G [05:43<00:13, 23.2MB/s]
Downloading model.tgz:  96%|█████████▌| 7.83G/8.14G [05:43<00:13, 22.7MB/s]
Downloading model.tgz:  96%|█████████▌| 7.83G/8.14G [05:43<00:13, 22.7MB/s]
Downloading model.tgz:  96%|█████████▋| 7.84G/8.14G [05:43<00:13, 23.1MB/s]
Downloading model.tgz:  96%|█████████▋| 7.84G/8.14G [05:43<00:13, 22.5MB/s]
Downloading model.tgz:  96%|█████████▋| 7.84G/8.14G [05:44<00:13, 22.6MB/s]
Downloading model.tgz:  96%|█████████▋| 7.84G/8.14G [05:44<00:13, 22.4MB/s]
Downloading model.tgz:  96%|█████████▋| 7.85G/8.14G [05:44<00:13, 22.1MB/s]
Downloading model.tgz:  96%|█████████▋| 7.85G/8.14G [05:44<00:13, 22.4MB/s]
Downloading model.tgz:  96%|█████████▋| 7.85G/8.14G [05:44<00:12, 23.6MB/s]
Downloading model.tgz:  96%|█████████▋| 7.85G/8.14G [05:44<00:12, 23.2MB/s]
Downloading model.tgz:  97%|█████████▋| 7.86G/8.14G [05:44<00:12, 22.4MB/s]
Downloading model.tgz:  97%|█████████▋| 7.86G/8.14G [05:44<00:12, 22.0MB/s]
Downloading model.tgz:  97%|█████████▋| 7.86G/8.14G [05:44<00:12, 22.6MB/s]
Downloading model.tgz:  97%|█████████▋| 7.86G/8.14G [05:45<00:12, 22.5MB/s]
Downloading model.tgz:  97%|█████████▋| 7.87G/8.14G [05:45<00:11, 23.8MB/s]
Downloading model.tgz:  97%|█████████▋| 7.87G/8.14G [05:45<00:11, 23.4MB/s]
Downloading model.tgz:  97%|█████████▋| 7.87G/8.14G [05:45<00:12, 22.2MB/s]
Downloading model.tgz:  97%|█████████▋| 7.87G/8.14G [05:45<00:11, 22.4MB/s]
Downloading model.tgz:  97%|█████████▋| 7.88G/8.14G [05:45<00:11, 22.6MB/s]
Downloading model.tgz:  97%|█████████▋| 7.88G/8.14G [05:45<00:11, 23.7MB/s]
Downloading model.tgz:  97%|█████████▋| 7.88G/8.14G [05:45<00:10, 24.0MB/s]
Downloading model.tgz:  97%|█████████▋| 7.88G/8.14G [05:45<00:11, 22.5MB/s]
Downloading model.tgz:  97%|█████████▋| 7.89G/8.14G [05:46<00:11, 22.2MB/s]
Downloading model.tgz:  97%|█████████▋| 7.89G/8.14G [05:46<00:11, 22.3MB/s]
Downloading model.tgz:  97%|█████████▋| 7.89G/8.14G [05:46<00:11, 22.6MB/s]
Downloading model.tgz:  97%|█████████▋| 7.89G/8.14G [05:46<00:10, 23.4MB/s]
Downloading model.tgz:  97%|█████████▋| 7.89G/8.14G [05:46<00:10, 23.7MB/s]
Downloading model.tgz:  97%|█████████▋| 7.90G/8.14G [05:46<00:10, 22.7MB/s]
Downloading model.tgz:  97%|█████████▋| 7.90G/8.14G [05:46<00:10, 22.0MB/s]
Downloading model.tgz:  97%|█████████▋| 7.90G/8.14G [05:46<00:10, 23.0MB/s]
Downloading model.tgz:  97%|█████████▋| 7.90G/8.14G [05:46<00:10, 23.2MB/s]
Downloading model.tgz:  97%|█████████▋| 7.91G/8.14G [05:46<00:09, 23.9MB/s]
Downloading model.tgz:  97%|█████████▋| 7.91G/8.14G [05:47<00:10, 22.6MB/s]
Downloading model.tgz:  97%|█████████▋| 7.91G/8.14G [05:47<00:10, 22.3MB/s]
Downloading model.tgz:  97%|█████████▋| 7.91G/8.14G [05:47<00:10, 22.5MB/s]
Downloading model.tgz:  97%|█████████▋| 7.92G/8.14G [05:47<00:09, 23.3MB/s]
Downloading model.tgz:  97%|█████████▋| 7.92G/8.14G [05:47<00:09, 23.2MB/s]
Downloading model.tgz:  97%|█████████▋| 7.92G/8.14G [05:47<00:09, 23.4MB/s]
Downloading model.tgz:  97%|█████████▋| 7.92G/8.14G [05:47<00:09, 22.7MB/s]
Downloading model.tgz:  97%|█████████▋| 7.93G/8.14G [05:47<00:09, 22.6MB/s]
Downloading model.tgz:  97%|█████████▋| 7.93G/8.14G [05:47<00:09, 22.7MB/s]
Downloading model.tgz:  97%|█████████▋| 7.93G/8.14G [05:48<00:09, 22.9MB/s]
Downloading model.tgz:  97%|█████████▋| 7.93G/8.14G [05:48<00:08, 23.4MB/s]
Downloading model.tgz:  97%|█████████▋| 7.94G/8.14G [05:48<00:08, 23.5MB/s]
Downloading model.tgz:  98%|█████████▊| 7.94G/8.14G [05:48<00:08, 23.2MB/s]
Downloading model.tgz:  98%|█████████▊| 7.94G/8.14G [05:48<00:08, 22.6MB/s]
Downloading model.tgz:  98%|█████████▊| 7.94G/8.14G [05:48<00:08, 22.5MB/s]
Downloading model.tgz:  98%|█████████▊| 7.95G/8.14G [05:48<00:08, 22.7MB/s]
Downloading model.tgz:  98%|█████████▊| 7.95G/8.14G [05:48<00:08, 23.2MB/s]
Downloading model.tgz:  98%|█████████▊| 7.95G/8.14G [05:48<00:08, 23.4MB/s]
Downloading model.tgz:  98%|█████████▊| 7.95G/8.14G [05:48<00:07, 23.5MB/s]
Downloading model.tgz:  98%|█████████▊| 7.96G/8.14G [05:49<00:07, 23.4MB/s]
Downloading model.tgz:  98%|█████████▊| 7.96G/8.14G [05:49<00:08, 22.1MB/s]
Downloading model.tgz:  98%|█████████▊| 7.96G/8.14G [05:49<00:07, 22.7MB/s]
Downloading model.tgz:  98%|█████████▊| 7.96G/8.14G [05:49<00:07, 22.9MB/s]
Downloading model.tgz:  98%|█████████▊| 7.96G/8.14G [05:49<00:07, 23.2MB/s]
Downloading model.tgz:  98%|█████████▊| 7.97G/8.14G [05:49<00:07, 23.5MB/s]
Downloading model.tgz:  98%|█████████▊| 7.97G/8.14G [05:49<00:07, 23.5MB/s]
Downloading model.tgz:  98%|█████████▊| 7.97G/8.14G [05:49<00:07, 23.1MB/s]
Downloading model.tgz:  98%|█████████▊| 7.97G/8.14G [05:49<00:07, 22.4MB/s]
Downloading model.tgz:  98%|█████████▊| 7.98G/8.14G [05:50<00:07, 22.8MB/s]
Downloading model.tgz:  98%|█████████▊| 7.98G/8.14G [05:50<00:07, 22.8MB/s]
Downloading model.tgz:  98%|█████████▊| 7.98G/8.14G [05:50<00:06, 22.8MB/s]
Downloading model.tgz:  98%|█████████▊| 7.98G/8.14G [05:50<00:06, 23.4MB/s]
Downloading model.tgz:  98%|█████████▊| 7.99G/8.14G [05:50<00:06, 23.6MB/s]
Downloading model.tgz:  98%|█████████▊| 7.99G/8.14G [05:50<00:06, 23.1MB/s]
Downloading model.tgz:  98%|█████████▊| 7.99G/8.14G [05:50<00:06, 22.5MB/s]
Downloading model.tgz:  98%|█████████▊| 7.99G/8.14G [05:50<00:06, 23.1MB/s]
Downloading model.tgz:  98%|█████████▊| 8.00G/8.14G [05:50<00:06, 22.9MB/s]
Downloading model.tgz:  98%|█████████▊| 8.00G/8.14G [05:50<00:06, 23.1MB/s]
Downloading model.tgz:  98%|█████████▊| 8.00G/8.14G [05:51<00:05, 23.6MB/s]
Downloading model.tgz:  98%|█████████▊| 8.00G/8.14G [05:51<00:06, 22.3MB/s]
Downloading model.tgz:  98%|█████████▊| 8.01G/8.14G [05:51<00:05, 22.8MB/s]
Downloading model.tgz:  98%|█████████▊| 8.01G/8.14G [05:51<00:05, 23.1MB/s]
Downloading model.tgz:  98%|█████████▊| 8.01G/8.14G [05:51<00:05, 22.9MB/s]
Downloading model.tgz:  98%|█████████▊| 8.01G/8.14G [05:51<00:05, 22.8MB/s]
Downloading model.tgz:  98%|█████████▊| 8.02G/8.14G [05:51<00:05, 23.4MB/s]
Downloading model.tgz:  99%|█████████▊| 8.02G/8.14G [05:51<00:05, 23.3MB/s]
Downloading model.tgz:  99%|█████████▊| 8.02G/8.14G [05:51<00:05, 22.8MB/s]
Downloading model.tgz:  99%|█████████▊| 8.02G/8.14G [05:51<00:05, 23.0MB/s]
Downloading model.tgz:  99%|█████████▊| 8.02G/8.14G [05:52<00:04, 23.0MB/s]
Downloading model.tgz:  99%|█████████▊| 8.03G/8.14G [05:52<00:04, 23.0MB/s]
Downloading model.tgz:  99%|█████████▊| 8.03G/8.14G [05:52<00:04, 22.8MB/s]
Downloading model.tgz:  99%|█████████▊| 8.03G/8.14G [05:52<00:04, 22.3MB/s]
Downloading model.tgz:  99%|█████████▊| 8.03G/8.14G [05:52<00:04, 23.1MB/s]
Downloading model.tgz:  99%|█████████▊| 8.04G/8.14G [05:52<00:04, 23.1MB/s]
Downloading model.tgz:  99%|█████████▉| 8.04G/8.14G [05:52<00:04, 23.2MB/s]
Downloading model.tgz:  99%|█████████▉| 8.04G/8.14G [05:52<00:04, 23.2MB/s]
Downloading model.tgz:  99%|█████████▉| 8.04G/8.14G [05:52<00:04, 23.2MB/s]
Downloading model.tgz:  99%|█████████▉| 8.05G/8.14G [05:53<00:04, 23.2MB/s]
Downloading model.tgz:  99%|█████████▉| 8.05G/8.14G [05:53<00:03, 23.0MB/s]
Downloading model.tgz:  99%|█████████▉| 8.05G/8.14G [05:53<00:03, 23.6MB/s]
Downloading model.tgz:  99%|█████████▉| 8.05G/8.14G [05:53<00:03, 22.7MB/s]
Downloading model.tgz:  99%|█████████▉| 8.06G/8.14G [05:53<00:03, 23.0MB/s]
Downloading model.tgz:  99%|█████████▉| 8.06G/8.14G [05:53<00:03, 22.9MB/s]
Downloading model.tgz:  99%|█████████▉| 8.06G/8.14G [05:53<00:03, 22.7MB/s]
Downloading model.tgz:  99%|█████████▉| 8.06G/8.14G [05:53<00:03, 23.0MB/s]
Downloading model.tgz:  99%|█████████▉| 8.07G/8.14G [05:53<00:03, 23.0MB/s]
Downloading model.tgz:  99%|█████████▉| 8.07G/8.14G [05:53<00:03, 22.8MB/s]
Downloading model.tgz:  99%|█████████▉| 8.07G/8.14G [05:54<00:03, 22.9MB/s]
Downloading model.tgz:  99%|█████████▉| 8.07G/8.14G [05:54<00:02, 22.9MB/s]
Downloading model.tgz:  99%|█████████▉| 8.07G/8.14G [05:54<00:02, 23.3MB/s]
Downloading model.tgz:  99%|█████████▉| 8.08G/8.14G [05:54<00:02, 23.5MB/s]
Downloading model.tgz:  99%|█████████▉| 8.08G/8.14G [05:54<00:02, 22.7MB/s]
Downloading model.tgz:  99%|█████████▉| 8.08G/8.14G [05:54<00:02, 22.9MB/s]
Downloading model.tgz:  99%|█████████▉| 8.08G/8.14G [05:54<00:02, 22.7MB/s]
Downloading model.tgz:  99%|█████████▉| 8.09G/8.14G [05:54<00:02, 23.2MB/s]
Downloading model.tgz:  99%|█████████▉| 8.09G/8.14G [05:54<00:02, 22.8MB/s]
Downloading model.tgz:  99%|█████████▉| 8.09G/8.14G [05:54<00:02, 23.6MB/s]
Downloading model.tgz:  99%|█████████▉| 8.09G/8.14G [05:55<00:01, 23.3MB/s]
Downloading model.tgz:  99%|█████████▉| 8.10G/8.14G [05:55<00:01, 22.6MB/s]
Downloading model.tgz:  99%|█████████▉| 8.10G/8.14G [05:55<00:01, 22.8MB/s]
Downloading model.tgz: 100%|█████████▉| 8.10G/8.14G [05:55<00:01, 22.9MB/s]
Downloading model.tgz: 100%|█████████▉| 8.10G/8.14G [05:55<00:01, 22.8MB/s]
Downloading model.tgz: 100%|█████████▉| 8.11G/8.14G [05:55<00:01, 22.5MB/s]
Downloading model.tgz: 100%|█████████▉| 8.11G/8.14G [05:55<00:01, 23.9MB/s]
Downloading model.tgz: 100%|█████████▉| 8.11G/8.14G [05:55<00:01, 22.7MB/s]
Downloading model.tgz: 100%|█████████▉| 8.11G/8.14G [05:55<00:01, 22.5MB/s]
Downloading model.tgz: 100%|█████████▉| 8.12G/8.14G [05:56<00:01, 22.6MB/s]
Downloading model.tgz: 100%|█████████▉| 8.12G/8.14G [05:56<00:00, 23.4MB/s]
Downloading model.tgz: 100%|█████████▉| 8.12G/8.14G [05:56<00:00, 23.1MB/s]
Downloading model.tgz: 100%|█████████▉| 8.12G/8.14G [05:56<00:00, 23.7MB/s]
Downloading model.tgz: 100%|█████████▉| 8.13G/8.14G [05:56<00:00, 22.7MB/s]
Downloading model.tgz: 100%|█████████▉| 8.13G/8.14G [05:56<00:00, 22.5MB/s]
Downloading model.tgz: 100%|█████████▉| 8.13G/8.14G [05:56<00:00, 22.4MB/s]
Downloading model.tgz: 100%|█████████▉| 8.13G/8.14G [05:56<00:00, 23.5MB/s]
Downloading model.tgz: 100%|█████████▉| 8.14G/8.14G [05:56<00:00, 23.2MB/s]
Downloading model.tgz: 100%|█████████▉| 8.14G/8.14G [05:56<00:00, 23.5MB/s]
Downloading model.tgz: 100%|██████████| 8.14G/8.14G [05:57<00:00, 22.8MB/s]
------------------------------ Captured log call -------------------------------
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "GET /downloads/_models/wizard_of_wikipedia/end2end_generator_0.tar.gz HTTP/1.1" 301 183
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "GET /downloads/_models/wizard_of_wikipedia/end2end_generator_0.tar.gz HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "GET /parlai/_models/wizard_of_wikipedia/end2end_generator_0.tar.gz HTTP/1.1" 200 229758062
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "GET /downloads/_models/wizard_of_wikipedia/wizard_package3.tgz HTTP/1.1" 301 183
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "GET /downloads/_models/wizard_of_wikipedia/wizard_package3.tgz HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "GET /parlai/_models/wizard_of_wikipedia/wizard_package3.tgz HTTP/1.1" 200 950166795
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "GET /downloads/_models/wizard_of_wikipedia/knowledge_retriever.tgz HTTP/1.1" 301 183
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "GET /downloads/_models/wizard_of_wikipedia/knowledge_retriever.tgz HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "GET /parlai/_models/wizard_of_wikipedia/knowledge_retriever.tgz HTTP/1.1" 200 2129452189
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "GET /downloads/_models/wikipedia_full/tfidf_retriever/model.tgz HTTP/1.1" 301 183
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "GET /downloads/_models/wikipedia_full/tfidf_retriever/model.tgz HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "GET /parlai/_models/wikipedia_full/tfidf_retriever/model.tgz HTTP/1.1" 200 8139698992
______________ TestPersonaTopicifierTeachers.test_check_examples _______________

self = <test_blended_skill_talk.TestPersonaTopicifierTeachers testMethod=test_check_examples>

    def test_check_examples(self):
    
        # Define all pairs of task strings and examples
        tasks_and_messages = [
            (
                "blended_skill_talk:ConvAI2PersonaTopicifier",
                {
                    'text': "your persona: i like to remodel homes.\nyour persona: i like to go hunting.\nyour persona: i like to shoot a bow.\nyour persona: my favorite holiday is halloween.\nNicholas Sparks\nhi , how are you doing ? i'm getting ready to do some cheetah chasing to stay in shape .",
                    'labels': (
                        'you must be very fast . hunting is one of my favorite hobbies .',
                    ),
                    'reward': 0,
                    'label_candidates': (
                        'my mom was single with 3 boys , so we never left the projects .',
                        'i try to wear all black every day . it makes me feel comfortable .',
                        'well nursing stresses you out so i wish luck with sister',
                        'yeah just want to pick up nba nfl getting old',
                        'i really like celine dion . what about you ?',
                        'no . i live near farms .',
                        "i wish i had a daughter , i'm a boy mom . they're beautiful boys though still lucky",
                        'yeah when i get bored i play gone with the wind my favorite movie .',
                        "hi how are you ? i'm eatingdinner with my hubby and 2 kids .",
                        'were you married to your high school sweetheart ? i was .',
                        'that is great to hear ! are you a competitive rider ?',
                        "hi , i'm doing ok . i'm abanker . how about you ?",
                        "i'm 5 years old",
                        'hi there . how are you today ?',
                        'i totally understand how stressful that can be .',
                        'yeah sometimes you do not know what you are actually watching',
                        'mother taught me to cook ! we are looking for an exterminator .',
                        'i enjoy romantic movie . what is your favorite season ? mine is summer .',
                        'editing photos takesa lot of work .',
                        'you must be very fast . hunting is one of my favorite hobbies .',
                    ),
                    'episode_done': False,
                },
            ),
            (
                "blended_skill_talk:EDPersonaTopicifier",
                {
                    'situation': 'I remember going to the fireworks with my best friend. There was a lot of people, but it only felt like us in the world.',
                    'emotion': 'sentimental',
                    'prepend_ctx': None,
                    'prepend_cand': None,
                    'deepmoji_ctx': None,
                    'deepmoji_cand': None,
                    'text': 'your persona: people hate that i obsess about the poor.\nyour persona: i like to make cellphone apps that would help heal our world.\nyour persona: i like to watch people pray together.\nyour persona: people don t like me too much but i like them anyways.\nAndroid (operating system)#Applications\nI remember going to see the fireworks with my best friend. It was the first time we ever spent time alone together. Although there was a lot of people, we felt like the only people in the world.',
                    'labels': [
                        'Was this a friend you were in love with, or just a best friend?'
                    ],
                    'episode_done': False,
                },
            ),
            (
                "blended_skill_talk:WoWPersonaTopicifier",
                {
                    'id': 'WizardDialogKnowledgeTeacher',
                    'text': "your persona: not a day goes by that i don't drink four mountain dews.\nyour persona: i enjoy movies about aliens invading the earth.\nyour persona: my favorite hobby is chess.\nyour persona: i just dyed my hair hot pink with purple highlights.\nScience fiction\n",
                    'labels': [
                        "I think science fiction is an amazing genre for anything. Future science, technology, time travel, FTL travel, they're all such interesting concepts."
                    ],
                    'chosen_topic': 'Science fiction',
                    'episode_done': False,
                    'label_candidates': [],
                    'knowledge': 'Science fiction Science fiction (often shortened to SF or sci-fi) is a genre of speculative fiction, typically dealing with imaginative concepts such as futuristic science and technology, space travel, time travel, faster than light travel, parallel universes, and extraterrestrial life.\nScience fiction Science fiction often explores the potential consequences of scientific and other innovations, and has been called a "literature of ideas".\nScience fiction It usually avoids the supernatural, unlike the related genre of fantasy.\nScience fiction Historically, science-fiction stories have had a grounding in actual science, but now this is only expected of hard science fiction.\nScience fiction Science fiction is difficult to define, as it includes a wide range of subgenres and themes.\nScience fiction Hugo Gernsback, who suggested the term "scientifiction" for his "Amazing Stories" magazine, wrote: "By \'scientifiction\' I mean the Jules Verne, H. G. Wells and Edgar Allan Poe type of story—a charming romance intermingled with scientific fact and prophetic vision... Not only do these amazing tales make tremendously interesting reading—they are always instructive.\nScience fiction They supply knowledge... in a very palatable form... New adventures pictured for us in the scientifiction of today are not at all impossible of realization tomorrow...\n',
                    'title': 'Science fiction',
                    'checked_sentence': 'Science fiction (often shortened to SF or sci-fi) is a genre of speculative fiction, typically dealing with imaginative concepts such as futuristic science and technology, space travel, time travel, faster than light travel, parallel universes, and extraterrestrial life.',
                },
            ),
        ]
        for task_string, desired_message in tasks_and_messages:
    
            # Get message
            kwargs = {'task': task_string, 'datatype': 'train:ordered'}
            parser = setup_args()
            parser.set_defaults(**kwargs)
            opt = parser.parse_args([])
            agent = RepeatLabelAgent(opt)
            teacher = create_task(opt, agent).get_task_agent()
            actual_message = teacher.get(episode_idx=0, entry_idx=0)
    
            print(f'\nChecking {task_string}:')
            for key in desired_message.keys():
                if key in ['label_candidates']:
                    # These are often created randomly and thus will vary
                    continue
                print(key)
>               self.assertEqual(desired_message[key], actual_message[key])
E               AssertionError: ('you must be very fast . hunting is one of my favorite hobbies .',) != ['you must be very fast . hunting is one of my favorite hobbies .']

tasks/test_blended_skill_talk.py:295: AssertionError
----------------------------- Captured stdout call -----------------------------
[ optional arguments: ] 
[  display_ignore_fields: agent_reply ]
[  display_verbose: False ]
[  max_display_len: 1000 ]
[  num_examples: 10 ]
[ Main ParlAI Arguments: ] 
[  batchsize: 1 ]
[  datapath: /tmp/tmplr6bslxg ]
[  datatype: train:ordered ]
[  download_path: /home/aryaman4/ParlAI/downloads ]
[  dynamic_batching: None ]
[  hide_labels: False ]
[  image_mode: raw ]
[  init_opt: None ]
[  loglevel: info ]
[  multitask_weights: [1] ]
[  numthreads: 1 ]
[  show_advanced_args: False ]
[  task: blended_skill_talk:ConvAI2PersonaTopicifier ]
[ ParlAI Model Arguments: ] 
[  dict_class: None ]
[  init_model: None ]
[  model: None ]
[  model_file: None ]
[ ParlAI Image Preprocessing Arguments: ] 
[  image_cropsize: 224 ]
[  image_size: 256 ]
2020-07-07 23:47:18,898 INFO     | Current ParlAI commit: 28976a6361cce45209d72c21882dea2535edb407
2020-07-07 23:47:18,911 INFO     | creating task(s): blended_skill_talk:ConvAI2PersonaTopicifier
[building data: /tmp/tmplr6bslxg/blended_skill_talk]
2020-07-07 23:47:18,912 INFO     | Downloading http://parl.ai/downloads/blended_skill_talk/blended_skill_talk.tar.gz to /tmp/tmplr6bslxg/blended_skill_talk/blended_skill_talk.tar.gz
2020-07-07 23:47:22,897 INFO     | Downloading http://parl.ai/downloads/blended_skill_talk/personas_list.txt to /tmp/tmplr6bslxg/blended_skill_talk/persona_list.txt
2020-07-07 23:47:24,173 INFO     | Downloading http://parl.ai/downloads/blended_skill_talk/topic_to_persona_list.txt to /tmp/tmplr6bslxg/blended_skill_talk/topic_to_persona_list.txt
2020-07-07 23:47:24,851 INFO     | Downloading http://parl.ai/downloads/blended_skill_talk/ed_persona_topicifier__train__both_sides.json to /tmp/tmplr6bslxg/blended_skill_talk/ed_persona_topicifier__train__both_sides.json
2020-07-07 23:47:27,904 INFO     | Downloading http://parl.ai/downloads/blended_skill_talk/ed_persona_topicifier__train__experiencer_only.json to /tmp/tmplr6bslxg/blended_skill_talk/ed_persona_topicifier__train__experiencer_only.json
2020-07-07 23:47:30,035 INFO     | Downloading http://parl.ai/downloads/blended_skill_talk/ed_persona_topicifier__valid__experiencer_only.json to /tmp/tmplr6bslxg/blended_skill_talk/ed_persona_topicifier__valid__experiencer_only.json
2020-07-07 23:47:34,382 INFO     | Downloading http://parl.ai/downloads/blended_skill_talk/ed_persona_topicifier__test__experiencer_only.json to /tmp/tmplr6bslxg/blended_skill_talk/ed_persona_topicifier__test__experiencer_only.json
2020-07-07 23:47:38,203 INFO     | Downloading http://parl.ai/downloads/blended_skill_talk/safe_personas_2.txt to /tmp/tmplr6bslxg/blended_skill_talk/safe_personas.txt
Loading /tmp/tmplr6bslxg/blended_skill_talk/train.json.
Saving to /tmp/tmplr6bslxg/blended_skill_talk/train.txt
Loading /tmp/tmplr6bslxg/blended_skill_talk/valid.json.
Saving to /tmp/tmplr6bslxg/blended_skill_talk/valid.txt
Loading /tmp/tmplr6bslxg/blended_skill_talk/test.json.
Saving to /tmp/tmplr6bslxg/blended_skill_talk/test.txt
2020-07-07 23:47:41,292 WARNING  | FINISHED MAPPING personas to topics, got: 1617 persona strings to map to topics.
[building data: /tmp/tmplr6bslxg/ConvAI2]
2020-07-07 23:47:41,300 INFO     | Downloading http://parl.ai/downloads/convai2/convai2_fix_723.tgz to /tmp/tmplr6bslxg/ConvAI2/convai2_fix_723.tgz
2020-07-07 23:48:09,008 INFO     | loading fbdialog data: /tmp/tmplr6bslxg/ConvAI2/train_self_original.txt

Checking blended_skill_talk:ConvAI2PersonaTopicifier:
text
labels
----------------------------- Captured stderr call -----------------------------

Downloading blended_skill_talk.tar.gz: 0.00B [00:00, ?B/s]
Downloading blended_skill_talk.tar.gz:   0%|          | 32.8k/38.1M [00:00<12:20, 51.4kB/s]
Downloading blended_skill_talk.tar.gz:   0%|          | 65.5k/38.1M [00:00<09:14, 68.5kB/s]
Downloading blended_skill_talk.tar.gz:   0%|          | 131k/38.1M [00:00<06:45, 93.6kB/s] 
Downloading blended_skill_talk.tar.gz:   1%|          | 360k/38.1M [00:00<04:47, 131kB/s] 
Downloading blended_skill_talk.tar.gz:   2%|▏         | 623k/38.1M [00:01<03:24, 184kB/s]
Downloading blended_skill_talk.tar.gz:   3%|▎         | 1.28M/38.1M [00:01<02:22, 259kB/s]
Downloading blended_skill_talk.tar.gz:   7%|▋         | 2.56M/38.1M [00:01<01:36, 367kB/s]
Downloading blended_skill_talk.tar.gz:  12%|█▏        | 4.65M/38.1M [00:01<01:04, 520kB/s]
Downloading blended_skill_talk.tar.gz:  17%|█▋        | 6.39M/38.1M [00:01<00:43, 733kB/s]
Downloading blended_skill_talk.tar.gz:  21%|██        | 8.03M/38.1M [00:01<00:29, 1.03MB/s]
Downloading blended_skill_talk.tar.gz:  26%|██▌       | 9.76M/38.1M [00:01<00:19, 1.43MB/s]
Downloading blended_skill_talk.tar.gz:  31%|███       | 11.8M/38.1M [00:01<00:13, 1.98MB/s]
Downloading blended_skill_talk.tar.gz:  36%|███▌      | 13.7M/38.1M [00:01<00:09, 2.70MB/s]
Downloading blended_skill_talk.tar.gz:  41%|████▏     | 15.7M/38.1M [00:01<00:06, 3.65MB/s]
Downloading blended_skill_talk.tar.gz:  46%|████▌     | 17.6M/38.1M [00:02<00:04, 4.81MB/s]
Downloading blended_skill_talk.tar.gz:  51%|█████     | 19.5M/38.1M [00:02<00:03, 6.16MB/s]
Downloading blended_skill_talk.tar.gz:  56%|█████▌    | 21.3M/38.1M [00:02<00:02, 7.67MB/s]
Downloading blended_skill_talk.tar.gz:  61%|██████    | 23.1M/38.1M [00:02<00:01, 9.23MB/s]
Downloading blended_skill_talk.tar.gz:  66%|██████▌   | 25.0M/38.1M [00:02<00:01, 10.8MB/s]
Downloading blended_skill_talk.tar.gz:  71%|███████   | 27.1M/38.1M [00:02<00:00, 12.6MB/s]
Downloading blended_skill_talk.tar.gz:  76%|███████▋  | 29.1M/38.1M [00:02<00:00, 13.7MB/s]
Downloading blended_skill_talk.tar.gz:  82%|████████▏ | 31.2M/38.1M [00:02<00:00, 15.2MB/s]
Downloading blended_skill_talk.tar.gz:  87%|████████▋ | 33.1M/38.1M [00:02<00:00, 15.9MB/s]
Downloading blended_skill_talk.tar.gz:  92%|█████████▏| 35.2M/38.1M [00:03<00:00, 17.1MB/s]
Downloading blended_skill_talk.tar.gz:  98%|█████████▊| 37.2M/38.1M [00:03<00:00, 17.7MB/s]
Downloading blended_skill_talk.tar.gz: 100%|██████████| 38.1M/38.1M [00:03<00:00, 12.0MB/s]

Downloading persona_list.txt: 0.00B [00:00, ?B/s]
Downloading persona_list.txt: 0.00B [00:01, ?B/s]
Downloading persona_list.txt: 0.00B [00:01, ?B/s]

Downloading topic_to_persona_list.txt: 0.00B [00:00, ?B/s]
Downloading topic_to_persona_list.txt: 0.00B [00:00, ?B/s]
Downloading topic_to_persona_list.txt: 0.00B [00:00, ?B/s]

Downloading ed_persona_topicifier__train__both_sides.json: 0.00B [00:00, ?B/s]
Downloading ed_persona_topicifier__train__both_sides.json: 0.00B [00:02, ?B/s]
Downloading ed_persona_topicifier__train__both_sides.json: 0.00B [00:02, ?B/s]

Downloading ed_persona_topicifier__train__experiencer_only.json: 0.00B [00:00, ?B/s]
Downloading ed_persona_topicifier__train__experiencer_only.json: 0.00B [00:02, ?B/s]
Downloading ed_persona_topicifier__train__experiencer_only.json: 0.00B [00:02, ?B/s]

Downloading ed_persona_topicifier__valid__experiencer_only.json: 0.00B [00:00, ?B/s]
Downloading ed_persona_topicifier__valid__experiencer_only.json: 0.00B [00:04, ?B/s]
Downloading ed_persona_topicifier__valid__experiencer_only.json: 0.00B [00:04, ?B/s]

Downloading ed_persona_topicifier__test__experiencer_only.json: 0.00B [00:00, ?B/s]
Downloading ed_persona_topicifier__test__experiencer_only.json: 0.00B [00:03, ?B/s]
Downloading ed_persona_topicifier__test__experiencer_only.json: 0.00B [00:03, ?B/s]

Downloading safe_personas.txt: 0.00B [00:00, ?B/s]
Downloading safe_personas.txt: 0.00B [00:01, ?B/s]
Downloading safe_personas.txt: 0.00B [00:01, ?B/s]

Downloading convai2_fix_723.tgz: 0.00B [00:00, ?B/s]
Downloading convai2_fix_723.tgz:   0%|          | 32.8k/430M [00:00<2:25:26, 49.2kB/s]
Downloading convai2_fix_723.tgz:   0%|          | 131k/430M [00:00<1:45:28, 67.9kB/s] 
Downloading convai2_fix_723.tgz:   0%|          | 524k/430M [00:00<1:14:38, 95.8kB/s]
Downloading convai2_fix_723.tgz:   1%|          | 2.20M/430M [00:01<52:15, 136kB/s]  
Downloading convai2_fix_723.tgz:   1%|▏         | 5.80M/430M [00:01<36:22, 194kB/s]
Downloading convai2_fix_723.tgz:   2%|▏         | 9.47M/430M [00:01<25:19, 277kB/s]
Downloading convai2_fix_723.tgz:   3%|▎         | 13.2M/430M [00:01<17:40, 393kB/s]
Downloading convai2_fix_723.tgz:   4%|▍         | 17.2M/430M [00:01<12:19, 558kB/s]
Downloading convai2_fix_723.tgz:   5%|▍         | 20.5M/430M [00:01<08:37, 791kB/s]
Downloading convai2_fix_723.tgz:   5%|▌         | 23.0M/430M [00:02<06:07, 1.11MB/s]
Downloading convai2_fix_723.tgz:   6%|▌         | 26.4M/430M [00:02<04:18, 1.56MB/s]
Downloading convai2_fix_723.tgz:   7%|▋         | 29.0M/430M [00:02<03:07, 2.14MB/s]
Downloading convai2_fix_723.tgz:   8%|▊         | 32.4M/430M [00:02<02:15, 2.94MB/s]
Downloading convai2_fix_723.tgz:   8%|▊         | 35.3M/430M [00:02<01:38, 4.02MB/s]
Downloading convai2_fix_723.tgz:   9%|▉         | 37.8M/430M [00:02<01:15, 5.22MB/s]
Downloading convai2_fix_723.tgz:  10%|▉         | 41.3M/430M [00:02<00:55, 7.00MB/s]
Downloading convai2_fix_723.tgz:  10%|█         | 43.9M/430M [00:02<00:45, 8.49MB/s]
Downloading convai2_fix_723.tgz:  11%|█         | 47.3M/430M [00:03<00:34, 10.9MB/s]
Downloading convai2_fix_723.tgz:  12%|█▏        | 50.0M/430M [00:03<00:30, 12.4MB/s]
Downloading convai2_fix_723.tgz:  12%|█▏        | 53.4M/430M [00:03<00:24, 15.3MB/s]
Downloading convai2_fix_723.tgz:  13%|█▎        | 56.1M/430M [00:03<00:23, 16.0MB/s]
Downloading convai2_fix_723.tgz:  14%|█▍        | 59.2M/430M [00:03<00:19, 18.7MB/s]
Downloading convai2_fix_723.tgz:  14%|█▍        | 61.8M/430M [00:03<00:19, 19.0MB/s]
Downloading convai2_fix_723.tgz:  15%|█▌        | 64.7M/430M [00:03<00:17, 20.9MB/s]
Downloading convai2_fix_723.tgz:  16%|█▌        | 67.6M/430M [00:03<00:16, 22.6MB/s]
Downloading convai2_fix_723.tgz:  16%|█▋        | 70.2M/430M [00:04<00:16, 22.2MB/s]
Downloading convai2_fix_723.tgz:  17%|█▋        | 73.0M/430M [00:04<00:15, 23.6MB/s]
Downloading convai2_fix_723.tgz:  18%|█▊        | 75.7M/430M [00:04<00:14, 24.4MB/s]
Downloading convai2_fix_723.tgz:  18%|█▊        | 78.2M/430M [00:04<00:15, 23.1MB/s]
Downloading convai2_fix_723.tgz:  19%|█▉        | 80.9M/430M [00:04<00:14, 23.4MB/s]
Downloading convai2_fix_723.tgz:  20%|█▉        | 84.0M/430M [00:04<00:14, 23.1MB/s]
Downloading convai2_fix_723.tgz:  20%|██        | 87.1M/430M [00:04<00:14, 24.4MB/s]
Downloading convai2_fix_723.tgz:  21%|██        | 89.9M/430M [00:04<00:14, 23.4MB/s]
Downloading convai2_fix_723.tgz:  22%|██▏       | 93.1M/430M [00:04<00:13, 25.1MB/s]
Downloading convai2_fix_723.tgz:  22%|██▏       | 95.6M/430M [00:05<00:13, 25.2MB/s]
Downloading convai2_fix_723.tgz:  23%|██▎       | 98.2M/430M [00:05<00:14, 23.4MB/s]
Downloading convai2_fix_723.tgz:  24%|██▎       | 101M/430M [00:05<00:13, 25.0MB/s] 
Downloading convai2_fix_723.tgz:  24%|██▍       | 104M/430M [00:05<00:13, 25.1MB/s]
Downloading convai2_fix_723.tgz:  25%|██▍       | 106M/430M [00:05<00:12, 25.3MB/s]
Downloading convai2_fix_723.tgz:  25%|██▌       | 109M/430M [00:05<00:13, 23.8MB/s]
Downloading convai2_fix_723.tgz:  26%|██▌       | 112M/430M [00:05<00:13, 24.2MB/s]
Downloading convai2_fix_723.tgz:  27%|██▋       | 114M/430M [00:05<00:12, 25.3MB/s]
Downloading convai2_fix_723.tgz:  27%|██▋       | 117M/430M [00:05<00:12, 24.3MB/s]
Downloading convai2_fix_723.tgz:  28%|██▊       | 120M/430M [00:06<00:12, 24.4MB/s]
Downloading convai2_fix_723.tgz:  28%|██▊       | 122M/430M [00:06<00:12, 25.4MB/s]
Downloading convai2_fix_723.tgz:  29%|██▉       | 125M/430M [00:06<00:12, 24.2MB/s]
Downloading convai2_fix_723.tgz:  30%|██▉       | 128M/430M [00:06<00:12, 25.0MB/s]
Downloading convai2_fix_723.tgz:  30%|███       | 130M/430M [00:06<00:12, 24.6MB/s]
Downloading convai2_fix_723.tgz:  31%|███       | 133M/430M [00:06<00:12, 24.6MB/s]
Downloading convai2_fix_723.tgz:  32%|███▏      | 136M/430M [00:06<00:11, 25.0MB/s]
Downloading convai2_fix_723.tgz:  32%|███▏      | 138M/430M [00:06<00:11, 24.6MB/s]
Downloading convai2_fix_723.tgz:  33%|███▎      | 141M/430M [00:06<00:11, 25.5MB/s]
Downloading convai2_fix_723.tgz:  33%|███▎      | 144M/430M [00:07<00:11, 24.6MB/s]
Downloading convai2_fix_723.tgz:  34%|███▍      | 147M/430M [00:07<00:11, 25.4MB/s]
Downloading convai2_fix_723.tgz:  35%|███▍      | 149M/430M [00:07<00:11, 24.6MB/s]
Downloading convai2_fix_723.tgz:  35%|███▌      | 152M/430M [00:07<00:11, 24.4MB/s]
Downloading convai2_fix_723.tgz:  36%|███▌      | 155M/430M [00:07<00:10, 25.0MB/s]
Downloading convai2_fix_723.tgz:  37%|███▋      | 157M/430M [00:07<00:11, 24.6MB/s]
Downloading convai2_fix_723.tgz:  37%|███▋      | 160M/430M [00:07<00:10, 25.7MB/s]
Downloading convai2_fix_723.tgz:  38%|███▊      | 163M/430M [00:07<00:10, 24.6MB/s]
Downloading convai2_fix_723.tgz:  38%|███▊      | 165M/430M [00:07<00:10, 25.0MB/s]
Downloading convai2_fix_723.tgz:  39%|███▉      | 168M/430M [00:07<00:10, 24.8MB/s]
Downloading convai2_fix_723.tgz:  40%|███▉      | 171M/430M [00:08<00:10, 24.6MB/s]
Downloading convai2_fix_723.tgz:  40%|████      | 173M/430M [00:08<00:10, 25.0MB/s]
Downloading convai2_fix_723.tgz:  41%|████      | 176M/430M [00:08<00:10, 25.2MB/s]
Downloading convai2_fix_723.tgz:  41%|████▏     | 178M/430M [00:08<00:09, 25.3MB/s]
Downloading convai2_fix_723.tgz:  42%|████▏     | 181M/430M [00:08<00:10, 24.6MB/s]
Downloading convai2_fix_723.tgz:  43%|████▎     | 184M/430M [00:08<00:09, 24.7MB/s]
Downloading convai2_fix_723.tgz:  43%|████▎     | 186M/430M [00:08<00:09, 25.1MB/s]
Downloading convai2_fix_723.tgz:  44%|████▍     | 189M/430M [00:08<00:09, 24.9MB/s]
Downloading convai2_fix_723.tgz:  44%|████▍     | 191M/430M [00:08<00:09, 24.0MB/s]
Downloading convai2_fix_723.tgz:  45%|████▌     | 194M/430M [00:09<00:09, 24.2MB/s]
Downloading convai2_fix_723.tgz:  46%|████▌     | 197M/430M [00:09<00:09, 25.2MB/s]
Downloading convai2_fix_723.tgz:  46%|████▋     | 199M/430M [00:09<00:09, 25.3MB/s]
Downloading convai2_fix_723.tgz:  47%|████▋     | 202M/430M [00:09<00:09, 23.6MB/s]
Downloading convai2_fix_723.tgz:  48%|████▊     | 205M/430M [00:09<00:09, 25.0MB/s]
Downloading convai2_fix_723.tgz:  48%|████▊     | 207M/430M [00:09<00:08, 25.0MB/s]
Downloading convai2_fix_723.tgz:  49%|████▉     | 210M/430M [00:09<00:08, 24.7MB/s]
Downloading convai2_fix_723.tgz:  49%|████▉     | 212M/430M [00:09<00:09, 24.0MB/s]
Downloading convai2_fix_723.tgz:  50%|█████     | 215M/430M [00:09<00:08, 25.3MB/s]
Downloading convai2_fix_723.tgz:  51%|█████     | 218M/430M [00:09<00:08, 25.2MB/s]
Downloading convai2_fix_723.tgz:  51%|█████▏    | 220M/430M [00:10<00:08, 24.2MB/s]
Downloading convai2_fix_723.tgz:  52%|█████▏    | 223M/430M [00:10<00:08, 24.7MB/s]
Downloading convai2_fix_723.tgz:  53%|█████▎    | 226M/430M [00:10<00:08, 25.2MB/s]
Downloading convai2_fix_723.tgz:  53%|█████▎    | 228M/430M [00:10<00:07, 25.2MB/s]
Downloading convai2_fix_723.tgz:  54%|█████▎    | 231M/430M [00:10<00:08, 24.1MB/s]
Downloading convai2_fix_723.tgz:  54%|█████▍    | 234M/430M [00:10<00:07, 24.6MB/s]
Downloading convai2_fix_723.tgz:  55%|█████▍    | 236M/430M [00:10<00:07, 25.0MB/s]
Downloading convai2_fix_723.tgz:  56%|█████▌    | 239M/430M [00:10<00:07, 25.2MB/s]
Downloading convai2_fix_723.tgz:  56%|█████▌    | 241M/430M [00:10<00:07, 24.6MB/s]
Downloading convai2_fix_723.tgz:  57%|█████▋    | 244M/430M [00:11<00:07, 24.6MB/s]
Downloading convai2_fix_723.tgz:  57%|█████▋    | 246M/430M [00:11<00:07, 24.4MB/s]
Downloading convai2_fix_723.tgz:  58%|█████▊    | 249M/430M [00:11<00:07, 25.3MB/s]
Downloading convai2_fix_723.tgz:  59%|█████▊    | 252M/430M [00:11<00:07, 24.7MB/s]
Downloading convai2_fix_723.tgz:  59%|█████▉    | 255M/430M [00:11<00:06, 25.3MB/s]
Downloading convai2_fix_723.tgz:  60%|█████▉    | 257M/430M [00:11<00:06, 25.4MB/s]
Downloading convai2_fix_723.tgz:  60%|██████    | 260M/430M [00:11<00:06, 25.3MB/s]
Downloading convai2_fix_723.tgz:  61%|██████    | 262M/430M [00:11<00:06, 24.3MB/s]
Downloading convai2_fix_723.tgz:  62%|██████▏   | 265M/430M [00:11<00:06, 24.8MB/s]
Downloading convai2_fix_723.tgz:  62%|██████▏   | 268M/430M [00:11<00:06, 25.5MB/s]
Downloading convai2_fix_723.tgz:  63%|██████▎   | 270M/430M [00:12<00:06, 24.8MB/s]
Downloading convai2_fix_723.tgz:  64%|██████▎   | 273M/430M [00:12<00:06, 24.7MB/s]
Downloading convai2_fix_723.tgz:  64%|██████▍   | 276M/430M [00:12<00:06, 24.9MB/s]
Downloading convai2_fix_723.tgz:  65%|██████▍   | 278M/430M [00:12<00:05, 25.5MB/s]
Downloading convai2_fix_723.tgz:  65%|██████▌   | 281M/430M [00:12<00:06, 24.6MB/s]
Downloading convai2_fix_723.tgz:  66%|██████▌   | 283M/430M [00:12<00:06, 21.8MB/s]
Downloading convai2_fix_723.tgz:  67%|██████▋   | 287M/430M [00:12<00:05, 24.8MB/s]
Downloading convai2_fix_723.tgz:  67%|██████▋   | 290M/430M [00:12<00:05, 25.2MB/s]
Downloading convai2_fix_723.tgz:  68%|██████▊   | 293M/430M [00:12<00:05, 25.4MB/s]
Downloading convai2_fix_723.tgz:  69%|██████▊   | 295M/430M [00:13<00:05, 25.3MB/s]
Downloading convai2_fix_723.tgz:  69%|██████▉   | 298M/430M [00:13<00:05, 24.8MB/s]
Downloading convai2_fix_723.tgz:  70%|██████▉   | 300M/430M [00:13<00:05, 25.3MB/s]
Downloading convai2_fix_723.tgz:  71%|███████   | 303M/430M [00:13<00:05, 25.0MB/s]
Downloading convai2_fix_723.tgz:  71%|███████   | 306M/430M [00:13<00:04, 25.3MB/s]
Downloading convai2_fix_723.tgz:  72%|███████▏  | 308M/430M [00:13<00:04, 24.6MB/s]
Downloading convai2_fix_723.tgz:  72%|███████▏  | 311M/430M [00:13<00:04, 25.0MB/s]
Downloading convai2_fix_723.tgz:  73%|███████▎  | 314M/430M [00:13<00:04, 25.4MB/s]
Downloading convai2_fix_723.tgz:  74%|███████▎  | 316M/430M [00:13<00:04, 24.8MB/s]
Downloading convai2_fix_723.tgz:  74%|███████▍  | 319M/430M [00:14<00:04, 24.8MB/s]
Downloading convai2_fix_723.tgz:  75%|███████▍  | 321M/430M [00:14<00:04, 25.0MB/s]
Downloading convai2_fix_723.tgz:  75%|███████▌  | 324M/430M [00:14<00:04, 25.6MB/s]
Downloading convai2_fix_723.tgz:  76%|███████▌  | 327M/430M [00:14<00:04, 24.6MB/s]
Downloading convai2_fix_723.tgz:  77%|███████▋  | 329M/430M [00:14<00:04, 24.7MB/s]
Downloading convai2_fix_723.tgz:  77%|███████▋  | 332M/430M [00:14<00:04, 24.5MB/s]
Downloading convai2_fix_723.tgz:  78%|███████▊  | 335M/430M [00:14<00:03, 25.7MB/s]
Downloading convai2_fix_723.tgz:  78%|███████▊  | 337M/430M [00:14<00:03, 24.4MB/s]
Downloading convai2_fix_723.tgz:  79%|███████▉  | 340M/430M [00:14<00:03, 24.8MB/s]
Downloading convai2_fix_723.tgz:  80%|███████▉  | 343M/430M [00:14<00:03, 24.9MB/s]
Downloading convai2_fix_723.tgz:  80%|████████  | 345M/430M [00:15<00:03, 25.5MB/s]
Downloading convai2_fix_723.tgz:  81%|████████  | 348M/430M [00:15<00:03, 24.5MB/s]
Downloading convai2_fix_723.tgz:  82%|████████▏ | 350M/430M [00:15<00:03, 24.6MB/s]
Downloading convai2_fix_723.tgz:  82%|████████▏ | 353M/430M [00:15<00:03, 25.1MB/s]
Downloading convai2_fix_723.tgz:  83%|████████▎ | 356M/430M [00:15<00:02, 25.3MB/s]
Downloading convai2_fix_723.tgz:  83%|████████▎ | 358M/430M [00:15<00:02, 24.6MB/s]
Downloading convai2_fix_723.tgz:  84%|████████▍ | 361M/430M [00:15<00:02, 24.8MB/s]
Downloading convai2_fix_723.tgz:  85%|████████▍ | 363M/430M [00:15<00:02, 25.2MB/s]
Downloading convai2_fix_723.tgz:  85%|████████▌ | 366M/430M [00:15<00:02, 25.2MB/s]
Downloading convai2_fix_723.tgz:  86%|████████▌ | 369M/430M [00:16<00:02, 24.6MB/s]
Downloading convai2_fix_723.tgz:  86%|████████▋ | 371M/430M [00:16<00:02, 24.8MB/s]
Downloading convai2_fix_723.tgz:  87%|████████▋ | 374M/430M [00:16<00:02, 25.2MB/s]
Downloading convai2_fix_723.tgz:  88%|████████▊ | 376M/430M [00:16<00:02, 25.1MB/s]
Downloading convai2_fix_723.tgz:  88%|████████▊ | 379M/430M [00:16<00:02, 24.6MB/s]
Downloading convai2_fix_723.tgz:  89%|████████▉ | 382M/430M [00:16<00:01, 25.1MB/s]
Downloading convai2_fix_723.tgz:  89%|████████▉ | 384M/430M [00:16<00:01, 25.1MB/s]
Downloading convai2_fix_723.tgz:  90%|████████▉ | 387M/430M [00:16<00:01, 25.1MB/s]
Downloading convai2_fix_723.tgz:  91%|█████████ | 389M/430M [00:16<00:01, 23.6MB/s]
Downloading convai2_fix_723.tgz:  91%|█████████ | 392M/430M [00:16<00:01, 25.1MB/s]
Downloading convai2_fix_723.tgz:  92%|█████████▏| 395M/430M [00:17<00:01, 24.8MB/s]
Downloading convai2_fix_723.tgz:  92%|█████████▏| 397M/430M [00:17<00:01, 23.9MB/s]
Downloading convai2_fix_723.tgz:  93%|█████████▎| 400M/430M [00:17<00:01, 24.9MB/s]
Downloading convai2_fix_723.tgz:  94%|█████████▎| 403M/430M [00:17<00:01, 25.5MB/s]
Downloading convai2_fix_723.tgz:  94%|█████████▍| 405M/430M [00:17<00:01, 23.7MB/s]
Downloading convai2_fix_723.tgz:  95%|█████████▍| 408M/430M [00:17<00:00, 25.0MB/s]
Downloading convai2_fix_723.tgz:  96%|█████████▌| 411M/430M [00:17<00:00, 25.6MB/s]
Downloading convai2_fix_723.tgz:  96%|█████████▌| 414M/430M [00:17<00:00, 23.8MB/s]
Downloading convai2_fix_723.tgz:  97%|█████████▋| 416M/430M [00:17<00:00, 25.1MB/s]
Downloading convai2_fix_723.tgz:  98%|█████████▊| 419M/430M [00:18<00:00, 24.9MB/s]
Downloading convai2_fix_723.tgz:  98%|█████████▊| 422M/430M [00:18<00:00, 24.8MB/s]
Downloading convai2_fix_723.tgz:  99%|█████████▊| 424M/430M [00:18<00:00, 24.2MB/s]
Downloading convai2_fix_723.tgz:  99%|█████████▉| 427M/430M [00:18<00:00, 25.4MB/s]
Downloading convai2_fix_723.tgz: 100%|█████████▉| 430M/430M [00:18<00:00, 25.2MB/s]
Downloading convai2_fix_723.tgz: 100%|██████████| 430M/430M [00:18<00:00, 23.3MB/s]
------------------------------ Captured log call -------------------------------
DEBUG    git.cmd:cmd.py:722 Popen(['git', 'rev-parse', 'HEAD'], cwd=/home/aryaman4/ParlAI, universal_newlines=False, shell=None, istream=None)
DEBUG    git.cmd:cmd.py:722 Popen(['git', 'rev-parse', 'HEAD'], cwd=/home/aryaman4/ParlAI/parlai_internal, universal_newlines=False, shell=None, istream=None)
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "GET /downloads/blended_skill_talk/blended_skill_talk.tar.gz HTTP/1.1" 301 183
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "GET /downloads/blended_skill_talk/blended_skill_talk.tar.gz HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "GET /parlai/blended_skill_talk/blended_skill_talk.tar.gz HTTP/1.1" 200 38101408
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "GET /downloads/blended_skill_talk/personas_list.txt HTTP/1.1" 301 183
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "GET /downloads/blended_skill_talk/personas_list.txt HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "GET /parlai/blended_skill_talk/personas_list.txt HTTP/1.1" 200 None
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "GET /downloads/blended_skill_talk/topic_to_persona_list.txt HTTP/1.1" 301 183
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "GET /downloads/blended_skill_talk/topic_to_persona_list.txt HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "GET /parlai/blended_skill_talk/topic_to_persona_list.txt HTTP/1.1" 200 None
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "GET /downloads/blended_skill_talk/ed_persona_topicifier__train__both_sides.json HTTP/1.1" 301 183
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "GET /downloads/blended_skill_talk/ed_persona_topicifier__train__both_sides.json HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "GET /parlai/blended_skill_talk/ed_persona_topicifier__train__both_sides.json HTTP/1.1" 200 None
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "GET /downloads/blended_skill_talk/ed_persona_topicifier__train__experiencer_only.json HTTP/1.1" 301 183
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "GET /downloads/blended_skill_talk/ed_persona_topicifier__train__experiencer_only.json HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "GET /parlai/blended_skill_talk/ed_persona_topicifier__train__experiencer_only.json HTTP/1.1" 200 None
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "GET /downloads/blended_skill_talk/ed_persona_topicifier__valid__experiencer_only.json HTTP/1.1" 301 183
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "GET /downloads/blended_skill_talk/ed_persona_topicifier__valid__experiencer_only.json HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "GET /parlai/blended_skill_talk/ed_persona_topicifier__valid__experiencer_only.json HTTP/1.1" 200 None
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "GET /downloads/blended_skill_talk/ed_persona_topicifier__test__experiencer_only.json HTTP/1.1" 301 183
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "GET /downloads/blended_skill_talk/ed_persona_topicifier__test__experiencer_only.json HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "GET /parlai/blended_skill_talk/ed_persona_topicifier__test__experiencer_only.json HTTP/1.1" 200 None
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "GET /downloads/blended_skill_talk/safe_personas_2.txt HTTP/1.1" 301 183
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "GET /downloads/blended_skill_talk/safe_personas_2.txt HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "GET /parlai/blended_skill_talk/safe_personas_2.txt HTTP/1.1" 200 None
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "GET /downloads/convai2/convai2_fix_723.tgz HTTP/1.1" 301 183
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "GET /downloads/convai2/convai2_fix_723.tgz HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "GET /parlai/convai2/convai2_fix_723.tgz HTTP/1.1" 200 429780162
__________________________ TestIGC.test_display_data ___________________________

opt = {'init_opt': None, 'show_advanced_args': False, 'task': 'igc:IGC', 'download_path': '/home/aryaman4/ParlAI/downloads',...I', 'override': {'task': 'igc:IGC', 'igc_multi_ref': True, 'image_mode': 'no_image_model'}, 'starttime': 'Jul07_23-49'}

    def _create_task_agents(opt: Opt):
        """
        Create task agent(s) for the given task name.
    
        It does this by calling the create_agent function in agents.py of the given task. If
        create_agents function does not exist, it just looks for the teacher (agent) class
        defined by the task name directly.  (This saves the task creator bothering to define
        the create_agents function when it is not needed.)
        """
        if opt.get('interactive_task', False) or opt.get('selfchat_task', False):
            # do not need task agents in interactive or self chat settings
            return []
    
        try:
            # Tries to call the create_agent function in agents.py
            my_module = load_task_module(opt['task'])
>           task_agents = my_module.create_agents(opt)  # type: ignore
E           AttributeError: module 'parlai.tasks.igc.agents' has no attribute 'create_agents'

../parlai/core/worlds.py:1575: AttributeError

During handling of the above exception, another exception occurred:

self = <test_igc.TestIGC testMethod=test_display_data>

    def test_display_data(self):
        """
        Test all variants of IGC with a few standard image modes.
        """
        igc_multi_ref_opts = [True, False]
        image_modes = ['no_image_model', 'ascii']
    
        for task, ep_ex_counts in VARIANT_TO_EX_EP_COUNTS.items():
            for igc_multi_ref in igc_multi_ref_opts:
                for image_mode in image_modes:
                    opt = {
                        'task': f'igc:{task}',
                        'igc_multi_ref': igc_multi_ref,
                        'image_mode': image_mode,
                    }
>                   self._run_display_output(opt, ep_ex_counts)

tasks/test_igc.py:65: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tasks/test_igc.py:40: in _run_display_output
    output = testing_utils.display_data(opt)
../parlai/utils/testing.py:334: in display_data
    dd.display_data(popt)
../parlai/scripts/display_data.py:71: in display_data
    world = create_task(opt, agent)
../parlai/core/worlds.py:1627: in create_task
    world = create_task_world(opt, user_agents, default_world=default_world)
../parlai/core/worlds.py:1590: in create_task_world
    task_agents = _create_task_agents(opt)
../parlai/core/worlds.py:1578: in _create_task_agents
    return create_task_agent_from_taskname(opt)
../parlai/core/teachers.py:2383: in create_task_agent_from_taskname
    task_agents = teacher_class(opt)
../parlai/tasks/igc/agents.py:42: in __init__
    super().__init__(opt, shared)
../parlai/core/teachers.py:1601: in __init__
    self.data = self.load_data(self.data_path, self.opt)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <parlai.tasks.igc.agents.IGCTeacher object at 0x7f2324854590>
data_path = '/tmp/tmpypo_o6t4/igc'
opt = {'init_opt': None, 'show_advanced_args': False, 'task': 'igc:IGC', 'download_path': '/home/aryaman4/ParlAI/downloads',...I', 'override': {'task': 'igc:IGC', 'igc_multi_ref': True, 'image_mode': 'no_image_model'}, 'starttime': 'Jul07_23-49'}

    def load_data(self, data_path: str, opt: Opt) -> List[Dict[str, Any]]:
        """
        Override to load CSV files.
        """
    
        dt = opt['datatype'].split(':')[0]
        dt_str = 'test' if dt == 'test' else 'val'
        dp = os.path.join(self.get_data_path(opt), f'IGC_crowd_{dt_str}.csv')
        if not os.path.exists(dp):
            raise RuntimeError(
                'Please download the IGC Dataset from '
                'https://www.microsoft.com/en-us/download/details.aspx?id=55324. '
                'Then, make sure to put the two .csv files in {}'.format(
>                   self.get_data_path(opt)
                )
            )
E           RuntimeError: Please download the IGC Dataset from https://www.microsoft.com/en-us/download/details.aspx?id=55324. Then, make sure to put the two .csv files in /tmp/tmpypo_o6t4/igc

../parlai/tasks/igc/agents.py:174: RuntimeError
----------------------------- Captured stdout call -----------------------------
2020-07-07 23:49:48,955 INFO     | creating task(s): igc:IGC
_____________________________ TestWoW.test_output ______________________________

self = <test_wizard_of_wikipedia.TestWoW testMethod=test_output>

    def test_output(self):
        dts = ['train', 'valid', 'test']
        main_task = 'wizard_of_wikipedia'
        variants = [
            'WizardOfWikipediaTeacher',
            'WizardDialogKnowledgeTeacher',
            'BasicdialogTeacher',
            'DocreaderTeacher',
            'GeneratorTeacher',
        ]
        variant_args = {
            'WizardOfWikipediaTeacher': {},
            'WizardDialogKnowledgeTeacher': {
                'label_type': ['response', 'chosen_sent'],
                'include_knowledge': [False, True],
                'include_checked_sentence': [False, True],
            },
            'BasicdialogTeacher': {'wizard_dialog': [False, True]},
            'DocreaderTeacher': {
                'teacher_type': [
                    'docs',
                    'docs_sentence',
                    'more_docs',
                    'more_docs_sentence',
                    'span',
                ]
            },
            'GeneratorTeacher': {
                'only_checked_knowledge': [False, True],
                'ignorant_dropout': [0, 0.5, 1],
            },
        }
        splits = ['random_split', 'topic_split']
    
        for datatype in dts:
            for task_var in variants:
                for split in splits:
                    task_name = '{}:{}:{}'.format(main_task, task_var, split)
                    opt_defaults = {'task': task_name, 'datatype': datatype}
                    task_args = variant_args[task_var]
                    if len(task_args) == 0:
                        print('Testing {} with args {}'.format(task_name, opt_defaults))
>                       self._run_display_test(opt_defaults)

tasks/test_wizard_of_wikipedia.py:69: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tasks/test_wizard_of_wikipedia.py:91: in _run_display_test
    'Wizard of Wikipedia failed with following args: {}'.format(opt),
E   AssertionError: False is not true : Wizard of Wikipedia failed with following args: {'init_opt': None, 'show_advanced_args': False, 'task': 'wizard_of_wikipedia:WizardOfWikipediaTeacher:random_split', 'download_path': '/home/aryaman4/ParlAI/downloads', 'loglevel': 'info', 'datatype': 'train:ordered', 'image_mode': 'raw', 'numthreads': 1, 'hide_labels': False, 'multitask_weights': [1], 'batchsize': 1, 'dynamic_batching': None, 'datapath': '/tmp/tmpypo_o6t4', 'model': None, 'model_file': None, 'init_model': None, 'dict_class': None, 'num_examples': 10, 'max_display_len': 1000, 'display_ignore_fields': 'agent_reply', 'display_verbose': False, 'image_size': 256, 'image_cropsize': 224, 'parlai_home': '/home/aryaman4/ParlAI', 'override': {}, 'starttime': 'Jul07_23-49'}
----------------------------- Captured stdout call -----------------------------
Testing wizard_of_wikipedia:WizardOfWikipediaTeacher:random_split with args {'task': 'wizard_of_wikipedia:WizardOfWikipediaTeacher:random_split', 'datatype': 'train'}
2020-07-07 23:49:49,504 INFO     | Current ParlAI commit: 28976a6361cce45209d72c21882dea2535edb407
2020-07-07 23:49:49,525 INFO     | creating task(s): wizard_of_wikipedia:WizardOfWikipediaTeacher:random_split
2020-07-07 23:49:49,527 INFO     | Downloading http://parl.ai/downloads/wizard_of_wikipedia/wizard_of_wikipedia.tgz to /tmp/tmpypo_o6t4/wizard_of_wikipedia/wizard_of_wikipedia.tgz
2020-07-07 23:50:59,824 INFO     | creating task(s): wizard_of_wikipedia:WizardOfWikipediaTeacher:random_split
2020-07-07 23:51:09,511 INFO     | loaded 18430 episodes with a total of 166787 examples
------------------------------ Captured log call -------------------------------
DEBUG    git.cmd:cmd.py:722 Popen(['git', 'rev-parse', 'HEAD'], cwd=/home/aryaman4/ParlAI, universal_newlines=False, shell=None, istream=None)
DEBUG    git.cmd:cmd.py:722 Popen(['git', 'rev-parse', 'HEAD'], cwd=/home/aryaman4/ParlAI/parlai_internal, universal_newlines=False, shell=None, istream=None)
DEBUG    urllib3.connectionpool:connectionpool.py:230 Starting new HTTP connection (1): parl.ai:80
DEBUG    urllib3.connectionpool:connectionpool.py:442 http://parl.ai:80 "GET /downloads/wizard_of_wikipedia/wizard_of_wikipedia.tgz HTTP/1.1" 301 183
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): parl.ai:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://parl.ai:443 "GET /downloads/wizard_of_wikipedia/wizard_of_wikipedia.tgz HTTP/1.1" 302 0
DEBUG    urllib3.connectionpool:connectionpool.py:941 Starting new HTTPS connection (1): dl.fbaipublicfiles.com:443
DEBUG    urllib3.connectionpool:connectionpool.py:442 https://dl.fbaipublicfiles.com:443 "GET /parlai/wizard_of_wikipedia/wizard_of_wikipedia.tgz HTTP/1.1" 200 971505856
============================ slowest test durations ============================
741.32s call     tests/nightly/gpu/test_wizard.py::TestKnowledgeRetriever::test_knowledge_retriever
150.62s call     tests/nightly/cpu/test_urls.py::TestUtils::test_http_response
81.91s call     tests/tasks/test_blended_skill_talk.py::TestContextGenerator::test_generated_context
81.06s call     tests/tasks/test_wizard_of_wikipedia.py::TestWoW::test_output
55.33s call     tests/nightly/gpu/test_tutorial_generator.py::TestTutorialTransformerGenerator::test_ppl
52.14s call     tests/tasks/test_blended_skill_talk.py::TestPersonaTopicifierTeachers::test_check_examples
31.41s call     tests/test_interative.py::TestInteractiveConvai2::test_repeat
31.10s call     tests/tasks/test_blended_skill_talk.py::TestBlendedSkillTalkTeacher::test_check_examples
27.80s call     tests/tasks/test_blended_skill_talk.py::TestBlendedSkillTalkTeacher::test_counts
18.54s call     tests/test_seq2seq.py::TestHogwildSeq2seq::test_generation_multi
12.55s call     tests/test_transformers.py::TestTransformerGenerator::test_beamsearch_blocking
11.97s call     tests/test_dynamicbatching.py::TestDynamicBatching::test_multiworld_stream
11.82s call     tests/test_dynamicbatching.py::TestBatchSort::test_multiworld_stream
11.81s call     tests/test_dynamicbatching.py::TestBatchSort::test_multiworld
11.68s call     tests/test_dynamicbatching.py::TestDynamicBatching::test_multiworld
10.85s call     tests/test_transformers.py::TestImagePolyencoder::test_text_task
8.80s call     tests/test_apex.py::TestNoApex::test_fp16
8.49s call     tests/test_transformers.py::TestTransformerGenerator::test_beamsearch_contextblocking
8.01s call     tests/tasks/test_empathetic_dialogues.py::TestEDTeacher::test_counts
7.10s call     tests/test_dict.py::TestByteLevelBPE::test_byte_level_bpe_tokenize
7.07s call     tests/test_tga.py::TestUpgradeOpt::test_file_inference
6.71s call     tests/test_dict.py::TestDictionary::test_set_model_file_without_dict_file
6.62s call     tests/test_dynamicbatching.py::TestDynamicBatching::test_ranking
6.52s call     tests/tasks/test_empathetic_dialogues.py::TestEDTeacher::test_check_examples
6.43s call     tests/test_dynamicbatching.py::TestBatchSort::test_ranking_streaming
6.37s call     tests/test_transformers.py::TestTransformerGenerator::test_beamsearch
6.32s call     tests/test_dynamicbatching.py::TestDynamicBatching::test_ranking_streaming
6.28s call     tests/test_dynamicbatching.py::TestBatchSort::test_ranking
6.04s call     tests/test_seq2seq.py::TestSeq2Seq::test_beamsearch
5.46s call     tests/test_memnn.py::TestMemnn::test_labelcands_multi
5.30s call     tests/test_transformers.py::TestTransformerGenerator::test_compute_tokenized_bleu
5.29s call     tests/test_tra.py::TestPolyRanker::test_train_fixed
5.23s call     tests/test_dynamicbatching.py::TestDynamicBatching::test_weird_batchsize
5.22s call     tests/test_dynamicbatching.py::TestBatchSort::test_batchsize4
5.22s call     tests/test_dynamicbatching.py::TestBatchSort::test_weird_batchsize
5.21s call     tests/test_dynamicbatching.py::TestDynamicBatching::test_batchsize4
5.18s call     tests/test_dynamicbatching.py::TestDynamicBatching::test_streaming
5.13s call     tests/test_dynamicbatching.py::TestBatchSort::test_streaming
5.11s call     tests/test_transformers.py::TestTransformerGenerator::test_xlm
5.07s call     tests/test_dynamicbatching.py::TestBatchSort::test_training
5.06s call     tests/test_dynamicbatching.py::TestDynamicBatching::test_training
5.06s call     tests/test_transformers.py::TestTransformerGenerator::test_greedysearch
5.01s call     tests/test_transformers.py::TestTransformerGenerator::test_prelayernorm
4.99s call     tests/test_tra.py::TestPolyRanker::test_eval_fixed
4.80s call     tests/test_tfidf_retriever.py::TestTfidfRetriever::test_sparse_tfidf_retriever
4.77s call     tests/test_memnn.py::TestMemnn::test_labelcands_nomemnn
4.61s call     tests/test_hogwild.py::TestHogwild::test_hogwild_train
4.47s call     tests/test_seq2seq.py::TestBackwardsCompatibility::test_backwards_compatibility
4.43s call     tests/test_tra.py::TestTransformerRanker::test_train_batch_all
3.92s call     tests/test_image_seq2seq.py::TestImageSeq2Seq::test_text_task
3.75s call     tests/test_transformers.py::TestTransformerRanker::test_prelayernorm
3.66s call     tests/test_seq2seq.py::TestSeq2Seq::test_badinput
3.62s call     tests/test_tra.py::TestTransformerRanker::test_eval_fixed
3.52s call     tests/test_transformers.py::TestTransformerRanker::test_repeater
3.48s call     tests/test_transformers.py::TestLearningRateScheduler::test_resuming_ranker
3.36s call     tests/test_examples.py::TestExampleSeq2Seq::test_repeater
3.32s call     tests/test_tra.py::TestPolyRanker::test_train_inline
3.23s call     tests/test_transformers.py::TestTransformerGenerator::test_asymmetry
3.12s call     tests/test_tra.py::TestTransformerRanker::test_train_fixed
3.08s call     tests/test_dict.py::TestGpt2HFInterop::test_gpt2standin
3.05s call     tests/test_tra.py::TestTransformerRanker::test_eval_batch
3.04s call     tests/test_tra.py::TestPolyRanker::test_train_batch_all
2.98s call     tests/test_tra.py::TestPolyRanker::test_eval_fixed_label_not_in_cands
2.60s call     tests/test_hogwild.py::TestHogwild::test_hogwild_eval
2.51s call     tests/test_teachers.py::TestChunkTeacher::test_dynamic_batched
2.49s call     tests/test_transformers.py::TestTransformerGenerator::test_temperature
2.43s call     tests/test_examples.py::TestExampleSeq2Seq::test_generation
2.40s call     tests/test_tra.py::TestTransformerRanker::test_train_inline
2.35s call     tests/test_tra.py::TestPolyRanker::test_eval_inline
2.33s call     tests/test_seq2seq.py::TestSeq2Seq::test_ranking
2.30s call     tests/test_starspace.py::TestStarspace::test_training
2.27s call     tests/test_transformers.py::TestLearningRateScheduler::test_resuming_generator
2.19s call     tests/test_tra.py::TestPolyRanker::test_eval_batch
2.19s call     tests/test_tra.py::TestPolyRanker::test_train_batch
2.12s call     tests/test_transformers.py::TestTransformerRanker::test_xlm
2.05s call     tests/test_tra.py::TestPolyRanker::test_eval_vocab
2.02s call     tests/test_transformers.py::TestTransformerRanker::test_alt_reduction
1.91s call     tests/test_tra.py::TestMemNN::test_eval_fixed
1.89s call     tests/test_transformers.py::TestTransformerGenerator::test_nucleus
1.84s call     tests/test_tra.py::TestMemNN::test_train_fixed
1.73s call     tests/test_transformers.py::TestTransformerRanker::test_resuming_reduce_on_plateau
1.72s call     tests/test_transformers.py::TestTransformerRanker::test_resuming
1.71s call     tests/test_transformers.py::TestTransformerGenerator::test_topk
1.66s call     tests/test_transformers.py::TestTransformerGenerator::test_beamdelay
1.65s call     tests/test_tra.py::TestTransformerRanker::test_eval_inline
1.60s call     tests/test_tra.py::TestTransformerRanker::test_train_batch
1.52s call     tests/test_tra.py::TestTransformerRanker::test_eval_vocab
1.42s call     tests/test_metrics.py::TestMetric::test_average_metric_inputs
1.40s call     tests/test_transformers.py::TestClassifier::test_simple
1.37s call     tests/datatests/test_new_tasks.py::TestNewTasks::test_verify_data
1.37s call     tests/test_train_model.py::TestTrainModel::test_multitasking_metrics_macro
1.32s call     tests/test_tra.py::TestMemNN::test_train_batch_all
1.29s call     tests/test_train_model.py::TestTrainModel::test_multitasking_metrics_micro
1.29s call     tests/test_tra.py::TestMemNN::test_train_inline
1.19s call     tests/tasks/self_chat/test_worlds.py::TestSelfChat::test_contexts
1.08s call     tests/test_torch_agent.py::TestTorchAgent::test_resume_checkpoint
1.05s call     tests/test_self_chat.py::TestSelfChat::test_convai2
1.01s call     tests/test_transformers.py::TestTransformerRanker::test_backcomp
1.01s call     tests/test_tga.py::TestUpgradeOpt::test_no_greedy_largebeam
0.95s call     tests/test_eval_model.py::TestEvalModel::test_train_evalmode
0.95s call     tests/test_transformers.py::TestTransformerGenerator::test_badinput
0.81s call     tests/tasks/test_blended_skill_talk.py::TestBlendedSkillTalkInteractiveWorld::test_safe_personas
0.76s call     tests/test_tra.py::TestMemNN::test_eval_vocab
0.75s call     tests/test_tra.py::TestMemNN::test_eval_batch
0.75s call     tests/test_tra.py::TestMemNN::test_train_batch
0.73s call     tests/test_transformers.py::TestTransformerGenerator::test_generator_backcomp
0.73s call     tests/test_tra.py::TestMemNN::test_eval_inline
0.64s call     tests/nightly/gpu/test_safety_modules.py::TestSafetyModules::test_string_matcher
0.61s call     tests/tasks/test_igc.py::TestIGC::test_display_data
0.47s call     tests/test_eval_model.py::TestEvalModel::test_multitasking_metrics_macro
0.42s call     tests/test_eval_model.py::TestEvalModel::test_multitasking_metrics_micro
0.33s call     tests/test_transformers.py::TestLearningRateScheduler::test_invsqrt_learning_rate
0.33s call     tests/test_memnn.py::TestMemnn::test_backcomp
0.31s call     tests/test_multiworld.py::TestMultiworld::test_with_stream
0.31s call     tests/test_dict.py::TestByteLevelBPE::test_save_reload
0.25s call     tests/test_params.py::TestParlaiParser::test_bool
0.23s call     tests/test_interative.py::TestInteractive::test_repeat
0.21s call     tests/test_apex.py::TestNoApex::test_fused_adam
0.20s call     tests/test_wrapper.py::TestWrapper::test_label_to_text_teacher
0.18s call     tests/test_dict.py::TestDictionary::test_gpt2_bpe_tokenize
0.17s call     tests/test_seq2seq.py::TestSeq2Seq::test_generation
0.16s call     tests/tasks/convai2/test_convai2_worlds.py::TestConvAI2InteractiveWorld::test_share
0.14s call     tests/test_teachers.py::TestChunkTeacher::test_batched
0.14s call     tests/test_train_model.py::TestTrainModel::test_fast_final_eval
0.12s call     tests/test_unigram.py::TestUnigram::test_unigram
0.12s call     tests/test_eval_model.py::TestEvalModel::test_metrics_all
0.11s call     tests/test_eval_model.py::TestEvalModel::test_evalmode
0.10s call     tests/test_teachers.py::TestAbstractImageTeacher::test_display_data_no_image
0.09s call     tests/test_metrics.py::TestMetrics::test_verymultithreaded
0.09s call     tests/test_teachers.py::TestChunkTeacher::test_stream_only
0.08s call     tests/test_dict.py::TestByteLevelBPE::test_tokenize_prefix_space
0.08s call     tests/test_threadutils.py::TestSharedTable::test_concurrent_access
0.07s call     tests/test_lr_schedulers.py::TestLRSchedulers::test_invsqrt
0.07s call     tests/tasks/test_blended_skill_talk.py::TestBlendedSkillTalkInteractiveWorld::test_share
0.07s call     tests/test_teachers.py::TestParlAIDialogTeacher::test_one_episode
0.06s call     tests/test_display_data.py::TestDisplayData::test_output
0.06s call     tests/test_dict.py::TestByteLevelBPE::test_nofile
0.06s call     tests/test_multiworld.py::TestMultiworld::test_equal
0.05s call     tests/test_metrics.py::TestMetrics::test_largebuffer
0.05s call     tests/test_self_chat.py::TestSelfChat::test_vanilla
0.04s call     tests/test_teachers.py::TestChunkTeacher::test_no_batched
0.04s call     tests/test_train_model.py::TestTrainModel::test_multitasking_id_overlap
0.04s call     tests/test_multiworld.py::TestMultiworld::test_stochastic
0.04s call     tests/test_eval_model.py::TestEvalModel::test_save_report
0.04s call     tests/test_teachers.py::TestParlAIDialogTeacher::test_bad_fileformat
0.03s call     tests/test_params.py::TestParlaiParser::test_upgrade_opt
0.03s call     tests/test_lr_schedulers.py::TestLRSchedulers::test_cosine
0.03s call     tests/test_lr_schedulers.py::TestLRSchedulers::test_linear_warmup
0.03s call     tests/test_teachers.py::TestConversationTeacher::test_both_label
0.02s call     tests/test_torch_agent.py::TestTorchAgent::test_history
0.02s call     tests/test_dict.py::TestBuildDict::test_build_split
0.02s call     tests/test_loader.py::TestZoo::test_zoo_no_exists
0.02s call     tests/test_params.py::TestParlaiParser::test_recommendations_group
0.02s call     tests/test_params.py::TestParlaiParser::test_recommendations_single
0.02s call     tests/test_zootasks.py::TestZooAndTasks::test_tasklist
0.02s call     tests/test_eval_model.py::TestEvalModel::test_metrics_select
0.01s call     tests/test_params.py::TestParlaiParser::test_parse_kwargs
0.01s call     tests/test_chat_service.py::TestChatServiceAgent::test_data_persistence
0.01s call     tests/test_dynamicbatching.py::TestDynamicBatching::test_no_truncate
0.01s call     tests/test_zootasks.py::TestZooAndTasks::test_zoolist
0.01s call     tests/test_eval_model.py::TestEvalModel::test_output
0.01s call     tests/test_torch_agent.py::TestTorchAgent::test_interactive_mode
0.01s call     tests/test_teachers.py::TestConversationTeacher::test_firstspeaker_label
0.01s call     tests/test_teachers.py::TestConversationTeacher::test_secondspeaker_label
0.01s call     tests/test_teachers.py::TestConversationTeacher::test_good_fileformat
0.01s call     tests/test_teachers.py::TestParlAIDialogTeacher::test_good_fileformat
0.01s call     tests/test_torch_agent.py::TestTorchAgent::test_use_reply
0.01s call     tests/test_torch_agent.py::TestTorchAgent::test_vectorize
0.01s call     tests/test_torch_agent.py::TestTorchAgent::test_observe
0.01s call     tests/nightly/cpu/test_alice.py::TestAlice::test_alice_runs
0.01s call     tests/test_torch_agent.py::TestTorchAgent::test_mturk_racehistory

(0.00 durations hidden.  Use -vv to show these durations.)
==== 10 failed, 254 passed, 64 skipped, 8620 warnings in 1660.72s (0:27:40) ====
