+ set -e + set -o pipefail ++ dirname ./run.sh + cd . + echo 1106 + echo '2.0-SNAPSHOT BUILD' 2.0-SNAPSHOT BUILD + date Wed Jun 5 16:26:23 UTC 2024 + uptime 16:26:23 up 0 min, 0 users, load average: 1.62, 0.40, 0.13 + ff=default + image=yegor256/rultor-image + rebase=false + head_branch=master + pull_title='feat(#143): dockerized model training' + author=h1alexbel + directory= + head=git@github.com:h1alexbel/samples-filter.git + pull_id=151 + fork=git@github.com:h1alexbel/samples-filter.git + fork_branch=139 + squash=false + vars=('--env=head=git@github.com:h1alexbel/samples-filter.git' '--env=pull_id=151' '--env=fork=git@github.com:h1alexbel/samples-filter.git' '--env=fork_branch=139' '--env=head_branch=master' '--env=pull_title=feat(#143): dockerized model training' '--env=author=h1alexbel' '--env=scripts=( '\''export '\''\'\'''\''head=git@github.com:h1alexbel/samples-filter.git'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''pull_id=151'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''fork=git@github.com:h1alexbel/samples-filter.git'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''fork_branch=139'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''head_branch=master'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''pull_title=feat(#143): dockerized model training'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''author=h1alexbel'\''\'\'''\'''\'' '\'';'\'' '\''make install cov check'\'' '\'';'\'' )') + scripts=('export '\''head=git@github.com:h1alexbel/samples-filter.git'\''' ';' 'export '\''pull_id=151'\''' ';' 'export '\''fork=git@github.com:h1alexbel/samples-filter.git'\''' ';' 'export '\''fork_branch=139'\''' ';' 'export '\''head_branch=master'\''' ';' 'export '\''pull_title=feat(#143): dockerized model training'\''' ';' 'export '\''author=h1alexbel'\''' ';' 'make install cov check' ';') + container=h1alexbel_samples-filter_151 + as_root=false + hostname ip-172-31-20-8 + pwd /tmp/rultor-UDVn + git --version git version 2.34.1 + docker --version Docker version 25.0.3, build 4debf41 + mkdir -p /home/ubuntu/.ssh + echo -e 'Host github.com\n\tStrictHostKeyChecking no\n' + chmod 600 /home/ubuntu/.ssh/config + git clone git@github.com:h1alexbel/samples-filter.git repo Cloning into 'repo'... Warning: Permanently added 'github.com' (ED25519) to the list of known hosts. + cd repo + git config user.email me@rultor.com + git config user.name rultor + '[' -z 'export '\''head=git@github.com:h1alexbel/samples-filter.git'\''' ']' + cd .. + cat + '[' false = true ']' + cat + chmod a+x entry.sh + cat + echo 'export '\''head=git@github.com:h1alexbel/samples-filter.git'\''' ';' 'export '\''pull_id=151'\''' ';' 'export '\''fork=git@github.com:h1alexbel/samples-filter.git'\''' ';' 'export '\''fork_branch=139'\''' ';' 'export '\''head_branch=master'\''' ';' 'export '\''pull_title=feat(#143): dockerized model training'\''' ';' 'export '\''author=h1alexbel'\''' ';' 'make install cov check' ';' + sensitive=('pypi.txt') + rm -rf .gnupg + cd repo + git remote add fork git@github.com:h1alexbel/samples-filter.git + git remote update Fetching origin Fetching fork From github.com:h1alexbel/samples-filter * [new branch] 139 -> fork/139 * [new branch] 30 -> fork/30 * [new branch] dataset -> fork/dataset * [new branch] gh-pages -> fork/gh-pages * [new branch] master -> fork/master * [new branch] random-forest -> fork/random-forest * [new branch] snyk-fix-567fcda3ecde9988e0e233226a7c2bef -> fork/snyk-fix-567fcda3ecde9988e0e233226a7c2bef * [new branch] snyk-fix-7926aeaeb9dea3d77f81665a0d00d805 -> fork/snyk-fix-7926aeaeb9dea3d77f81665a0d00d805 * [new branch] snyk-fix-7a8cea23d84077c083ca98c5695a56b1 -> fork/snyk-fix-7a8cea23d84077c083ca98c5695a56b1 * [new branch] snyk-fix-dfe6b52a797074b79ef71095a0722c75 -> fork/snyk-fix-dfe6b52a797074b79ef71095a0722c75 + args= + '[' default == default ']' + args=' --ff' + '[' default == no ']' + '[' default == only ']' + export BRANCH=__rultor + BRANCH=__rultor ++ wc -l ++ git show-branch __rultor + '[' 0 -gt 0 ']' + git status On branch master Your branch is up to date with 'origin/master'. nothing to commit, working tree clean + git checkout -B __rultor fork/139 Switched to a new branch '__rultor' Branch '__rultor' set up to track remote branch '139' from 'fork'. + git checkout -B master origin/master Switched to and reset branch 'master' Branch 'master' set up to track remote branch 'master' from 'origin'. Your branch is up to date with 'origin/master'. + '[' false == true ']' + '[' false == true ']' + git merge --ff __rultor Merge made by the 'ort' strategy. .github/workflows/docker-models.yml | 47 +++++++++++++ models/.dockerignore | 4 ++ models/Dockerfile | 30 ++++++++ models/Makefile | 14 +--- models/README.md | 82 ++++++++-------------- models/model/isolation-forest.py | 28 ++++++++ models/model/{ => pre}/embeddings.py | 5 ++ models/model/{ => pre}/pipeline.py | 12 ++-- models/model/{ => pre}/pre_description.py | 0 models/model/{ => pre}/pre_name.py | 0 models/model/{ => pre}/pre_readme.py | 0 models/model/{ => pre}/pre_topics.py | 0 models/model/{ => pre}/vector.py | 0 models/model/t_bert.py | 28 ++++++++ models/model_tests/{ => pre}/test_embeddings.py | 2 +- models/model_tests/{ => pre}/test_pipeline.py | 2 +- .../model_tests/{ => pre}/test_pre_description.py | 2 +- models/model_tests/{ => pre}/test_pre_name.py | 2 +- models/model_tests/{ => pre}/test_pre_readme.py | 2 +- models/model_tests/{ => pre}/test_pre_topics.py | 2 +- models/model_tests/{ => pre}/test_vector.py | 2 +- 21 files changed, 187 insertions(+), 77 deletions(-) create mode 100644 .github/workflows/docker-models.yml create mode 100644 models/.dockerignore create mode 100644 models/Dockerfile create mode 100644 models/model/isolation-forest.py rename models/model/{ => pre}/embeddings.py (86%) rename models/model/{ => pre}/pipeline.py (89%) rename models/model/{ => pre}/pre_description.py (100%) rename models/model/{ => pre}/pre_name.py (100%) rename models/model/{ => pre}/pre_readme.py (100%) rename models/model/{ => pre}/pre_topics.py (100%) rename models/model/{ => pre}/vector.py (100%) create mode 100644 models/model/t_bert.py rename models/model_tests/{ => pre}/test_embeddings.py (97%) rename models/model_tests/{ => pre}/test_pipeline.py (98%) rename models/model_tests/{ => pre}/test_pre_description.py (96%) rename models/model_tests/{ => pre}/test_pre_name.py (97%) rename models/model_tests/{ => pre}/test_pre_readme.py (98%) rename models/model_tests/{ => pre}/test_pre_topics.py (97%) rename models/model_tests/{ => pre}/test_vector.py (97%) + docker_when_possible + true ++ tail -n 1 ++ sed 's/ /\n/g' ++ uptime + load=0.18 ++ bc ++ echo 0.18 '>' 30 + '[' 0 -eq 1 ']' + echo 'load average is 0.18, low enough to run a new Docker container' load average is 0.18, low enough to run a new Docker container + break + cd .. + '[' -n '' ']' + use_image=yegor256/rultor-image + docker pull yegor256/rultor-image Using default tag: latest latest: Pulling from yegor256/rultor-image bccd10f490ab: Pulling fs layer 4f4fb700ef54: Pulling fs layer 3388fa6ed601: Pulling fs layer a12507e52312: Pulling fs layer e23ebcc037b3: Pulling fs layer bb4f039d23e6: Pulling fs layer bff0f5c21f97: Pulling fs layer d9fc8e7722be: Pulling fs layer ad0d8d906737: Pulling fs layer da0965651d17: Pulling fs layer 258028b06422: Pulling fs layer 78ff19bf7482: Pulling fs layer b4f403e87234: Pulling fs layer 27f9babec026: Pulling fs layer edda9c9c491a: Pulling fs layer 8a3be2ae9667: Pulling fs layer 0fb2ad8587f2: Pulling fs layer ad339a44131b: Pulling fs layer 1333140dab36: Pulling fs layer a9b611ac1ac8: Pulling fs layer bc8a8b928d03: Pulling fs layer b082b933f133: Pulling fs layer 16116aa7a2bd: Pulling fs layer ba52c94956f1: Pulling fs layer f3c2f8b0afdd: Pulling fs layer b16e153fbe48: Pulling fs layer 6b8d855570b3: Pulling fs layer a12507e52312: Waiting e23ebcc037b3: Waiting bb4f039d23e6: Waiting bff0f5c21f97: Waiting d9fc8e7722be: Waiting ad0d8d906737: Waiting da0965651d17: Waiting 258028b06422: Waiting 78ff19bf7482: Waiting b4f403e87234: Waiting 27f9babec026: Waiting edda9c9c491a: Waiting 8a3be2ae9667: Waiting 0fb2ad8587f2: Waiting ad339a44131b: Waiting 1333140dab36: Waiting a9b611ac1ac8: Waiting bc8a8b928d03: Waiting b082b933f133: Waiting 16116aa7a2bd: Waiting ba52c94956f1: Waiting f3c2f8b0afdd: Waiting b16e153fbe48: Waiting 6b8d855570b3: Waiting 4f4fb700ef54: Verifying Checksum 4f4fb700ef54: Download complete 3388fa6ed601: Verifying Checksum 3388fa6ed601: Download complete bccd10f490ab: Verifying Checksum bccd10f490ab: Download complete a12507e52312: Verifying Checksum a12507e52312: Download complete bff0f5c21f97: Verifying Checksum bff0f5c21f97: Download complete d9fc8e7722be: Verifying Checksum d9fc8e7722be: Download complete ad0d8d906737: Verifying Checksum ad0d8d906737: Download complete da0965651d17: Verifying Checksum da0965651d17: Download complete 258028b06422: Verifying Checksum 258028b06422: Download complete e23ebcc037b3: Verifying Checksum e23ebcc037b3: Download complete b4f403e87234: Verifying Checksum b4f403e87234: Download complete bccd10f490ab: Pull complete 4f4fb700ef54: Pull complete 3388fa6ed601: Pull complete 78ff19bf7482: Verifying Checksum 78ff19bf7482: Download complete 27f9babec026: Verifying Checksum 27f9babec026: Download complete 8a3be2ae9667: Verifying Checksum 8a3be2ae9667: Download complete 0fb2ad8587f2: Verifying Checksum 0fb2ad8587f2: Download complete ad339a44131b: Verifying Checksum ad339a44131b: Download complete 1333140dab36: Verifying Checksum 1333140dab36: Download complete a9b611ac1ac8: Verifying Checksum a9b611ac1ac8: Download complete bc8a8b928d03: Verifying Checksum bc8a8b928d03: Download complete a12507e52312: Pull complete b082b933f133: Verifying Checksum b082b933f133: Download complete 16116aa7a2bd: Verifying Checksum 16116aa7a2bd: Download complete ba52c94956f1: Verifying Checksum ba52c94956f1: Download complete f3c2f8b0afdd: Verifying Checksum f3c2f8b0afdd: Download complete b16e153fbe48: Verifying Checksum b16e153fbe48: Download complete 6b8d855570b3: Verifying Checksum 6b8d855570b3: Download complete bb4f039d23e6: Verifying Checksum bb4f039d23e6: Download complete edda9c9c491a: Verifying Checksum edda9c9c491a: Download complete e23ebcc037b3: Pull complete bb4f039d23e6: Pull complete bff0f5c21f97: Pull complete d9fc8e7722be: Pull complete ad0d8d906737: Pull complete da0965651d17: Pull complete 258028b06422: Pull complete 78ff19bf7482: Pull complete b4f403e87234: Pull complete 27f9babec026: Pull complete edda9c9c491a: Pull complete 8a3be2ae9667: Pull complete 0fb2ad8587f2: Pull complete ad339a44131b: Pull complete 1333140dab36: Pull complete a9b611ac1ac8: Pull complete bc8a8b928d03: Pull complete b082b933f133: Pull complete 16116aa7a2bd: Pull complete ba52c94956f1: Pull complete f3c2f8b0afdd: Pull complete b16e153fbe48: Pull complete 6b8d855570b3: Pull complete Digest: sha256:54a67f9dafd27aa59e014b2982870d51c742fd7a5885fee19442213819d43dc7 Status: Downloaded newer image for yegor256/rultor-image:latest docker.io/yegor256/rultor-image:latest + docker ps --filter=status=exited + grep --quiet '\sh1alexbel_samples-filter_151\s*$' + ls -al . total 52 drwx------ 3 ubuntu ubuntu 4096 Jun 5 16:26 . drwxrwxrwt 13 root root 4096 Jun 5 16:31 .. -rwxrwxr-x 1 ubuntu ubuntu 556 Jun 5 16:30 end.sh -rwxrwxr-x 1 ubuntu ubuntu 490 Jun 5 16:26 entry.sh -rw-rw-r-- 1 ubuntu ubuntu 5 Jun 5 16:26 pid -rw-rw-r-- 1 ubuntu ubuntu 179 Jun 5 16:26 pypi.txt drwxrwxr-x 8 ubuntu ubuntu 4096 Jun 5 16:26 repo -rwxrwxr-x 1 ubuntu ubuntu 5824 Jun 5 16:26 run.sh -rw-rw-r-- 1 ubuntu ubuntu 492 Jun 5 16:26 script.sh -rw-rw-r-- 1 ubuntu ubuntu 11627 Jun 5 16:31 stdout ++ pwd ++ pwd + docker run -t --rm -v /tmp/rultor-UDVn:/main --env=head=git@github.com:h1alexbel/samples-filter.git --env=pull_id=151 --env=fork=git@github.com:h1alexbel/samples-filter.git --env=fork_branch=139 --env=head_branch=master '--env=pull_title=feat(#143): dockerized model training' --env=author=h1alexbel '--env=scripts=( '\''export '\''\'\'''\''head=git@github.com:h1alexbel/samples-filter.git'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''pull_id=151'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''fork=git@github.com:h1alexbel/samples-filter.git'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''fork_branch=139'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''head_branch=master'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''pull_title=feat(#143): dockerized model training'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''author=h1alexbel'\''\'\'''\'''\'' '\'';'\'' '\''make install cov check'\'' '\'';'\'' )' --hostname=docker --privileged --memory=8g --memory-swap=16g --oom-kill-disable --cidfile=/tmp/rultor-UDVn/cid -w=/main -v /var/run/docker.sock:/var/run/docker.sock --name=h1alexbel_samples-filter_151 yegor256/rultor-image /main/entry.sh WARNING: Your kernel does not support OomKillDisable. OomKillDisable discarded. Using /usr/local/rvm/gems/ruby-3.2.2 Using /usr/local/rvm/gems/ruby-3.2.2 + set -e + set -o pipefail + shopt -s dotglob + useradd -m -G sudo r ++ awk -F : '$3 > 100 { print $1 }' ++ cat /etc/group + for g in $(cat /etc/group | awk -F ':' '$3 > 100 { print $1 }') + usermod -a -G nogroup r + for g in $(cat /etc/group | awk -F ':' '$3 > 100 { print $1 }') + usermod -a -G systemd-journal r + for g in $(cat /etc/group | awk -F ':' '$3 > 100 { print $1 }') + usermod -a -G systemd-network r + for g in $(cat /etc/group | awk -F ':' '$3 > 100 { print $1 }') + usermod -a -G systemd-resolve r + for g in $(cat /etc/group | awk -F ':' '$3 > 100 { print $1 }') + usermod -a -G messagebus r + for g in $(cat /etc/group | awk -F ':' '$3 > 100 { print $1 }') + usermod -a -G _ssh r + for g in $(cat /etc/group | awk -F ':' '$3 > 100 { print $1 }') + usermod -a -G rvm r + for g in $(cat /etc/group | awk -F ':' '$3 > 100 { print $1 }') + usermod -a -G ssl-cert r + for g in $(cat /etc/group | awk -F ':' '$3 > 100 { print $1 }') + usermod -a -G postgres r + for g in $(cat /etc/group | awk -F ':' '$3 > 100 { print $1 }') + usermod -a -G r r + usermod -s /bin/bash r + echo '%sudo ALL=(ALL) NOPASSWD:ALL' + cp -R /root/.bashrc /root/.cargo /root/.config /root/.gem /root/.gemrc /root/.launchpadlib /root/.m2 /root/.npm /root/.profile /root/.rustup /root/.rvmrc /root/texmf /home/r + cp -R ./cid ./end.sh ./entry.sh ./pid ./pypi.txt ./repo ./run.sh ./script.sh ./stdout /home/r + rm -rf repo + chown -R r:r /home/r + chmod a+x /home/r/script.sh + cat /home/r/script.sh #!/bin/bash set -e set -o pipefail if [ -e /home/r/.profile ]; then source /home/r/.profile; fi shopt -s expand_aliases alias 'sudo=sudo -i' export HOME=/home/r cd "${HOME}/repo" export 'head=git@github.com:h1alexbel/samples-filter.git' ; export 'pull_id=151' ; export 'fork=git@github.com:h1alexbel/samples-filter.git' ; export 'fork_branch=139' ; export 'head_branch=master' ; export 'pull_title=feat(#143): dockerized model training' ; export 'author=h1alexbel' ; make install cov check ; + su --login r --command /home/r/script.sh Using /usr/local/rvm/gems/ruby-3.2.2 Using /usr/local/rvm/gems/ruby-3.2.2 Using /usr/local/rvm/gems/ruby-3.2.2 Using /usr/local/rvm/gems/ruby-3.2.2 Defaulting to user installation because normal site-packages is not writeable Requirement already satisfied: pip in /usr/local/lib/python3.10/dist-packages (24.0) Defaulting to user installation because normal site-packages is not writeable Collecting pytest Downloading pytest-8.2.2-py3-none-any.whl.metadata (7.6 kB) Collecting pylint Downloading pylint-3.2.2-py3-none-any.whl.metadata (12 kB) Collecting iniconfig (from pytest) Downloading iniconfig-2.0.0-py3-none-any.whl.metadata (2.6 kB) Collecting packaging (from pytest) Downloading packaging-24.0-py3-none-any.whl.metadata (3.2 kB) Collecting pluggy<2.0,>=1.5 (from pytest) Downloading pluggy-1.5.0-py3-none-any.whl.metadata (4.8 kB) Collecting exceptiongroup>=1.0.0rc8 (from pytest) Downloading exceptiongroup-1.2.1-py3-none-any.whl.metadata (6.6 kB) Collecting tomli>=1 (from pytest) Downloading tomli-2.0.1-py3-none-any.whl.metadata (8.9 kB) Collecting platformdirs>=2.2.0 (from pylint) Downloading platformdirs-4.2.2-py3-none-any.whl.metadata (11 kB) Collecting astroid<=3.3.0-dev0,>=3.2.2 (from pylint) Downloading astroid-3.2.2-py3-none-any.whl.metadata (4.5 kB) Collecting isort!=5.13.0,<6,>=4.2.5 (from pylint) Downloading isort-5.13.2-py3-none-any.whl.metadata (12 kB) Collecting mccabe<0.8,>=0.6 (from pylint) Downloading mccabe-0.7.0-py2.py3-none-any.whl.metadata (5.0 kB) Collecting tomlkit>=0.10.1 (from pylint) Downloading tomlkit-0.12.5-py3-none-any.whl.metadata (2.7 kB) Collecting dill>=0.2 (from pylint) Downloading dill-0.3.8-py3-none-any.whl.metadata (10 kB) Collecting typing-extensions>=4.0.0 (from astroid<=3.3.0-dev0,>=3.2.2->pylint) Downloading typing_extensions-4.12.1-py3-none-any.whl.metadata (3.0 kB) Downloading pytest-8.2.2-py3-none-any.whl (339 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m339.9/339.9 kB0m 31m21.5eMB/s0m-eta:36m0:00:000m ?25hDownloading pylint-3.2.2-py3-none-any.whl (519 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m519.1/519.1 kB0m 31m40.8eMB/s0m-eta:36m0:00:000m ?25hDownloading astroid-3.2.2-py3-none-any.whl (276 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m276.3/276.3 kB0m 31m23.9eMB/s0m-eta:36m0:00:000m ?25hDownloading dill-0.3.8-py3-none-any.whl (116 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m116.3/116.3 kB0m 31m13.5eMB/s0m-eta:36m0:00:000m ?25hDownloading exceptiongroup-1.2.1-py3-none-any.whl (16 kB) Downloading isort-5.13.2-py3-none-any.whl (92 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m92.3/92.33kB0mm31m9.6mMB/s0m6eta-36m0:00:000m ?25hDownloading mccabe-0.7.0-py2.py3-none-any.whl (7.3 kB) Downloading platformdirs-4.2.2-py3-none-any.whl (18 kB) Downloading pluggy-1.5.0-py3-none-any.whl (20 kB) Downloading tomli-2.0.1-py3-none-any.whl (12 kB) Downloading tomlkit-0.12.5-py3-none-any.whl (37 kB) Downloading iniconfig-2.0.0-py3-none-any.whl (5.9 kB) Downloading packaging-24.0-py3-none-any.whl (53 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m53.5/53.55kB0mm31m5.6mMB/s0m6eta-36m0:00:000m ?25hDownloading typing_extensions-4.12.1-py3-none-any.whl (37 kB) Installing collected packages: typing-extensions, tomlkit, tomli, pluggy, platformdirs, packaging, mccabe, isort, iniconfig, exceptiongroup, dill, pytest, astroid, pylint 33m WARNING: The scripts isort and isort-identify-imports are installed in '/home/r/.local/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.0m33m 0m33m WARNING: The scripts py.test and pytest are installed in '/home/r/.local/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.0m33m 0m33m WARNING: The scripts pylint, pylint-config, pyreverse and symilar are installed in '/home/r/.local/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.0m33m 0mSuccessfully installed astroid-3.2.2 dill-0.3.8 exceptiongroup-1.2.1 iniconfig-2.0.0 isort-5.13.2 mccabe-0.7.0 packaging-24.0 platformdirs-4.2.2 pluggy-1.5.0 pylint-3.2.2 pytest-8.2.2 tomli-2.0.1 tomlkit-0.12.5 typing-extensions-4.12.1 Defaulting to user installation because normal site-packages is not writeable Collecting typer==0.3.2 (from -r requirements.txt (line 1)) Downloading typer-0.3.2-py3-none-any.whl.metadata (12 kB) Collecting colorama==0.4.4 (from -r requirements.txt (line 2)) Downloading colorama-0.4.4-py2.py3-none-any.whl.metadata (14 kB) Collecting requests==2.32.0 (from -r requirements.txt (line 3)) Downloading requests-2.32.0-py3-none-any.whl.metadata (4.6 kB) Collecting transformers==4.41.2 (from -r requirements.txt (line 4)) Downloading transformers-4.41.2-py3-none-any.whl.metadata (43 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m43.8/43.88kB0mm31m2.7mMB/s0m6eta-36m0:00:000m ?25hCollecting torch==2.2.2 (from -r requirements.txt (line 5)) Downloading torch-2.2.2-cp310-cp310-manylinux1_x86_64.whl.metadata (26 kB) Collecting pandas==2.2.2 (from -r requirements.txt (line 6)) Downloading pandas-2.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (19 kB) Collecting scikit-learn==1.5.0 (from -r requirements.txt (line 7)) Downloading scikit_learn-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (11 kB) Collecting nltk==3.8.1 (from -r requirements.txt (line 8)) Downloading nltk-3.8.1-py3-none-any.whl.metadata (2.8 kB) Collecting joblib==1.4.2 (from -r requirements.txt (line 9)) Downloading joblib-1.4.2-py3-none-any.whl.metadata (5.4 kB) Collecting datasets==2.19.0 (from -r requirements.txt (line 10)) Downloading datasets-2.19.0-py3-none-any.whl.metadata (19 kB) Collecting evaluate==0.4.2 (from -r requirements.txt (line 11)) Downloading evaluate-0.4.2-py3-none-any.whl.metadata (9.3 kB) Collecting accelerate==0.30.0 (from -r requirements.txt (line 12)) Downloading accelerate-0.30.0-py3-none-any.whl.metadata (19 kB) Collecting pyarrow==16.0.0 (from -r requirements.txt (line 13)) Downloading pyarrow-16.0.0-cp310-cp310-manylinux_2_28_x86_64.whl.metadata (3.0 kB) Requirement already satisfied: pytest==8.2.2 in /home/r/.local/lib/python3.10/site-packages (from -r requirements.txt (line 14)) (8.2.2) Collecting pytest-cov==5.0.0 (from -r requirements.txt (line 15)) Downloading pytest_cov-5.0.0-py3-none-any.whl.metadata (27 kB) Collecting gensim==4.3.2 (from -r requirements.txt (line 16)) Downloading gensim-4.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (8.4 kB) Collecting scipy==1.13.1 (from -r requirements.txt (line 17)) Downloading scipy-1.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (60 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m60.6/60.66kB0mm31m6.1mMB/s0m6eta-36m0:00:000m ?25hCollecting aiohttp>=3.9.4 (from -r requirements.txt (line 18)) Downloading aiohttp-3.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.5 kB) Collecting numpy>=1.22.2 (from -r requirements.txt (line 19)) Downloading numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m61.0/61.00kB0mm31m6.9mMB/s0m6eta-36m0:00:000m ?25hCollecting click<7.2.0,>=7.1.1 (from typer==0.3.2->-r requirements.txt (line 1)) Downloading click-7.1.2-py2.py3-none-any.whl.metadata (2.9 kB) Collecting charset-normalizer<4,>=2 (from requests==2.32.0->-r requirements.txt (line 3)) Downloading charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB) Collecting idna<4,>=2.5 (from requests==2.32.0->-r requirements.txt (line 3)) Downloading idna-3.7-py3-none-any.whl.metadata (9.9 kB) Collecting urllib3<3,>=1.21.1 (from requests==2.32.0->-r requirements.txt (line 3)) Downloading urllib3-2.2.1-py3-none-any.whl.metadata (6.4 kB) Collecting certifi>=2017.4.17 (from requests==2.32.0->-r requirements.txt (line 3)) Downloading certifi-2024.6.2-py3-none-any.whl.metadata (2.2 kB) Collecting filelock (from transformers==4.41.2->-r requirements.txt (line 4)) Downloading filelock-3.14.0-py3-none-any.whl.metadata (2.8 kB) Collecting huggingface-hub<1.0,>=0.23.0 (from transformers==4.41.2->-r requirements.txt (line 4)) Downloading huggingface_hub-0.23.3-py3-none-any.whl.metadata (12 kB) Requirement already satisfied: packaging>=20.0 in /home/r/.local/lib/python3.10/site-packages (from transformers==4.41.2->-r requirements.txt (line 4)) (24.0) Collecting pyyaml>=5.1 (from transformers==4.41.2->-r requirements.txt (line 4)) Downloading PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB) Collecting regex!=2019.12.17 (from transformers==4.41.2->-r requirements.txt (line 4)) Downloading regex-2024.5.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m40.9/40.99kB0mm31m4.3mMB/s0m6eta-36m0:00:000m ?25hCollecting tokenizers<0.20,>=0.19 (from transformers==4.41.2->-r requirements.txt (line 4)) Downloading tokenizers-0.19.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB) Collecting safetensors>=0.4.1 (from transformers==4.41.2->-r requirements.txt (line 4)) Downloading safetensors-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) Collecting tqdm>=4.27 (from transformers==4.41.2->-r requirements.txt (line 4)) Downloading tqdm-4.66.4-py3-none-any.whl.metadata (57 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m57.6/57.66kB0mm31m3.4mMB/s0m6eta-36m0:00:000m ?25hRequirement already satisfied: typing-extensions>=4.8.0 in /home/r/.local/lib/python3.10/site-packages (from torch==2.2.2->-r requirements.txt (line 5)) (4.12.1) Collecting sympy (from torch==2.2.2->-r requirements.txt (line 5)) Downloading sympy-1.12.1-py3-none-any.whl.metadata (12 kB) Collecting networkx (from torch==2.2.2->-r requirements.txt (line 5)) Downloading networkx-3.3-py3-none-any.whl.metadata (5.1 kB) Collecting jinja2 (from torch==2.2.2->-r requirements.txt (line 5)) Downloading jinja2-3.1.4-py3-none-any.whl.metadata (2.6 kB) Collecting fsspec (from torch==2.2.2->-r requirements.txt (line 5)) Downloading fsspec-2024.6.0-py3-none-any.whl.metadata (11 kB) Collecting nvidia-cuda-nvrtc-cu12==12.1.105 (from torch==2.2.2->-r requirements.txt (line 5)) Downloading nvidia_cuda_nvrtc_cu12-12.1.105-py3-none-manylinux1_x86_64.whl.metadata (1.5 kB) Collecting nvidia-cuda-runtime-cu12==12.1.105 (from torch==2.2.2->-r requirements.txt (line 5)) Downloading nvidia_cuda_runtime_cu12-12.1.105-py3-none-manylinux1_x86_64.whl.metadata (1.5 kB) Collecting nvidia-cuda-cupti-cu12==12.1.105 (from torch==2.2.2->-r requirements.txt (line 5)) Downloading nvidia_cuda_cupti_cu12-12.1.105-py3-none-manylinux1_x86_64.whl.metadata (1.6 kB) Collecting nvidia-cudnn-cu12==8.9.2.26 (from torch==2.2.2->-r requirements.txt (line 5)) Downloading nvidia_cudnn_cu12-8.9.2.26-py3-none-manylinux1_x86_64.whl.metadata (1.6 kB) Collecting nvidia-cublas-cu12==12.1.3.1 (from torch==2.2.2->-r requirements.txt (line 5)) Downloading nvidia_cublas_cu12-12.1.3.1-py3-none-manylinux1_x86_64.whl.metadata (1.5 kB) Collecting nvidia-cufft-cu12==11.0.2.54 (from torch==2.2.2->-r requirements.txt (line 5)) Downloading nvidia_cufft_cu12-11.0.2.54-py3-none-manylinux1_x86_64.whl.metadata (1.5 kB) Collecting nvidia-curand-cu12==10.3.2.106 (from torch==2.2.2->-r requirements.txt (line 5)) Downloading nvidia_curand_cu12-10.3.2.106-py3-none-manylinux1_x86_64.whl.metadata (1.5 kB) Collecting nvidia-cusolver-cu12==11.4.5.107 (from torch==2.2.2->-r requirements.txt (line 5)) Downloading nvidia_cusolver_cu12-11.4.5.107-py3-none-manylinux1_x86_64.whl.metadata (1.6 kB) Collecting nvidia-cusparse-cu12==12.1.0.106 (from torch==2.2.2->-r requirements.txt (line 5)) Downloading nvidia_cusparse_cu12-12.1.0.106-py3-none-manylinux1_x86_64.whl.metadata (1.6 kB) Collecting nvidia-nccl-cu12==2.19.3 (from torch==2.2.2->-r requirements.txt (line 5)) Downloading nvidia_nccl_cu12-2.19.3-py3-none-manylinux1_x86_64.whl.metadata (1.8 kB) Collecting nvidia-nvtx-cu12==12.1.105 (from torch==2.2.2->-r requirements.txt (line 5)) Downloading nvidia_nvtx_cu12-12.1.105-py3-none-manylinux1_x86_64.whl.metadata (1.7 kB) Collecting triton==2.2.0 (from torch==2.2.2->-r requirements.txt (line 5)) Downloading triton-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.4 kB) Collecting python-dateutil>=2.8.2 (from pandas==2.2.2->-r requirements.txt (line 6)) Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB) Collecting pytz>=2020.1 (from pandas==2.2.2->-r requirements.txt (line 6)) Downloading pytz-2024.1-py2.py3-none-any.whl.metadata (22 kB) Collecting tzdata>=2022.7 (from pandas==2.2.2->-r requirements.txt (line 6)) Downloading tzdata-2024.1-py2.py3-none-any.whl.metadata (1.4 kB) Collecting threadpoolctl>=3.1.0 (from scikit-learn==1.5.0->-r requirements.txt (line 7)) Downloading threadpoolctl-3.5.0-py3-none-any.whl.metadata (13 kB) Collecting pyarrow-hotfix (from datasets==2.19.0->-r requirements.txt (line 10)) Downloading pyarrow_hotfix-0.6-py3-none-any.whl.metadata (3.6 kB) Requirement already satisfied: dill<0.3.9,>=0.3.0 in /home/r/.local/lib/python3.10/site-packages (from datasets==2.19.0->-r requirements.txt (line 10)) (0.3.8) Collecting xxhash (from datasets==2.19.0->-r requirements.txt (line 10)) Downloading xxhash-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (12 kB) Collecting multiprocess (from datasets==2.19.0->-r requirements.txt (line 10)) Downloading multiprocess-0.70.16-py310-none-any.whl.metadata (7.2 kB) Collecting fsspec (from torch==2.2.2->-r requirements.txt (line 5)) Downloading fsspec-2024.3.1-py3-none-any.whl.metadata (6.8 kB) Collecting psutil (from accelerate==0.30.0->-r requirements.txt (line 12)) Downloading psutil-5.9.8-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (21 kB) Requirement already satisfied: iniconfig in /home/r/.local/lib/python3.10/site-packages (from pytest==8.2.2->-r requirements.txt (line 14)) (2.0.0) Requirement already satisfied: pluggy<2.0,>=1.5 in /home/r/.local/lib/python3.10/site-packages (from pytest==8.2.2->-r requirements.txt (line 14)) (1.5.0) Requirement already satisfied: exceptiongroup>=1.0.0rc8 in /home/r/.local/lib/python3.10/site-packages (from pytest==8.2.2->-r requirements.txt (line 14)) (1.2.1) Requirement already satisfied: tomli>=1 in /home/r/.local/lib/python3.10/site-packages (from pytest==8.2.2->-r requirements.txt (line 14)) (2.0.1) Collecting coverage>=5.2.1 (from coverage[toml]>=5.2.1->pytest-cov==5.0.0->-r requirements.txt (line 15)) Downloading coverage-7.5.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (8.2 kB) Collecting smart-open>=1.8.1 (from gensim==4.3.2->-r requirements.txt (line 16)) Downloading smart_open-7.0.4-py3-none-any.whl.metadata (23 kB) Collecting nvidia-nvjitlink-cu12 (from nvidia-cusolver-cu12==11.4.5.107->torch==2.2.2->-r requirements.txt (line 5)) Downloading nvidia_nvjitlink_cu12-12.5.40-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) Collecting aiosignal>=1.1.2 (from aiohttp>=3.9.4->-r requirements.txt (line 18)) Downloading aiosignal-1.3.1-py3-none-any.whl.metadata (4.0 kB) Collecting attrs>=17.3.0 (from aiohttp>=3.9.4->-r requirements.txt (line 18)) Downloading attrs-23.2.0-py3-none-any.whl.metadata (9.5 kB) Collecting frozenlist>=1.1.1 (from aiohttp>=3.9.4->-r requirements.txt (line 18)) Downloading frozenlist-1.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (12 kB) Collecting multidict<7.0,>=4.5 (from aiohttp>=3.9.4->-r requirements.txt (line 18)) Downloading multidict-6.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.2 kB) Collecting yarl<2.0,>=1.0 (from aiohttp>=3.9.4->-r requirements.txt (line 18)) Downloading yarl-1.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (31 kB) Collecting async-timeout<5.0,>=4.0 (from aiohttp>=3.9.4->-r requirements.txt (line 18)) Downloading async_timeout-4.0.3-py3-none-any.whl.metadata (4.2 kB) Requirement already satisfied: six>=1.5 in /usr/lib/python3/dist-packages (from python-dateutil>=2.8.2->pandas==2.2.2->-r requirements.txt (line 6)) (1.16.0) Collecting wrapt (from smart-open>=1.8.1->gensim==4.3.2->-r requirements.txt (line 16)) Downloading wrapt-1.16.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.6 kB) Collecting MarkupSafe>=2.0 (from jinja2->torch==2.2.2->-r requirements.txt (line 5)) Downloading MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.0 kB) Collecting mpmath<1.4.0,>=1.1.0 (from sympy->torch==2.2.2->-r requirements.txt (line 5)) Downloading mpmath-1.3.0-py3-none-any.whl.metadata (8.6 kB) 33mWARNING: The candidate selected for download or install is a yanked version: 'requests' candidate (version 2.32.0 at https://files.pythonhosted.org/packages/24/e8/09e8d662a9675a4e4f5dd7a8e6127b463a091d2703ed931a64aa66d00065/requests-2.32.0-py3-none-any.whl (from https://pypi.org/simple/requests/) (requires-python:>=3.8)) Reason for being yanked: Yanked due to conflicts with CVE-2024-35195 mitigation0m33m 0mDownloading typer-0.3.2-py3-none-any.whl (21 kB) Downloading colorama-0.4.4-py2.py3-none-any.whl (16 kB) Downloading requests-2.32.0-py3-none-any.whl (63 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m63.7/63.77kB0mm31m7.2mMB/s0m6eta-36m0:00:000m ?25hDownloading transformers-4.41.2-py3-none-any.whl (9.1 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m132m9.1/9.11MB0m031m62.0mMB/s0mBetam36m0:00:000m:010m:010m ?25hDownloading torch-2.2.2-cp310-cp310-manylinux1_x86_64.whl (755.5 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m932m755.5/755.5/MB0m531m651.6mkB/s0mBetam36m0:00:000m:010m:010m ?25hDownloading pandas-2.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.0 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m132m13.0/13.0/MB0m/31m64.7mMB/s0mBetam36m0:00:000m:010m:010m ?25hDownloading scikit_learn-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.3 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m132m13.3/13.3/MB0m/31m62.8mMB/s0mBetam36m0:00:000m:010m:010m ?25hDownloading nltk-3.8.1-py3-none-any.whl (1.5 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m1.5/1.5.MB0m031m58.3mMB/s0m6eta-36m0:00:000m ?25hDownloading joblib-1.4.2-py3-none-any.whl (301 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m301.8/301.8 kB0m 31m29.7eMB/s0m-eta:36m0:00:000m ?25hDownloading datasets-2.19.0-py3-none-any.whl (542 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m542.0/542.0 kB0m 31m42.8eMB/s0m-eta:36m0:00:000m ?25hDownloading evaluate-0.4.2-py3-none-any.whl (84 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m84.1/84.11kB0mm31m9.1mMB/s0m6eta-36m0:00:000m ?25hDownloading accelerate-0.30.0-py3-none-any.whl (302 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m302.4/302.4 kB0m 31m28.5eMB/s0m-eta:36m0:00:000m ?25hDownloading pyarrow-16.0.0-cp310-cp310-manylinux_2_28_x86_64.whl (40.8 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m132m40.8/40.8/MB0m/31m9.51MB/s0mMeta036m0:00:000m0:010m:010m ?25hDownloading pytest_cov-5.0.0-py3-none-any.whl (21 kB) Downloading gensim-4.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.5 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m132m26.5/26.5/MB0m/31m50.0mMB/s0mBetam36m0:00:000m:010m:010m ?25hDownloading scipy-1.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (38.6 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m132m38.6/38.6/MB0m/31m7.81MB/s0mMeta036m0:00:000m0:010m:010m ?25hDownloading nvidia_cublas_cu12-12.1.3.1-py3-none-manylinux1_x86_64.whl (410.6 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m932m410.6/410.6/MB0m631m972.4mkB/s0mBetam36m0:00:000m:010m:010m ?25hDownloading nvidia_cuda_cupti_cu12-12.1.105-py3-none-manylinux1_x86_64.whl (14.1 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m132m14.1/14.1/MB0m/31m65.4mMB/s0mBetam36m0:00:000m:010m:010m ?25hDownloading nvidia_cuda_nvrtc_cu12-12.1.105-py3-none-manylinux1_x86_64.whl (23.7 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m132m23.7/23.7/MB0m/31m53.7mMB/s0mBetam36m0:00:000m:010m:010m ?25hDownloading nvidia_cuda_runtime_cu12-12.1.105-py3-none-manylinux1_x86_64.whl (823 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m823.6/823.6 kB0m 31m41.3eMB/s0m-eta:36m0:00:000m ?25hDownloading nvidia_cudnn_cu12-8.9.2.26-py3-none-manylinux1_x86_64.whl (731.7 MB) 2K5l 91m━━━━━━━━━━━━━━━━━━━━━0m90m╺0m90m━━━━━━━━━━━━━━━━━━0m632m393.2/731.7MMB0m331m32.8MMB/s0meeta336m0:00:110m ?25hDownloading nvidia_cufft_cu12-11.0.2.54-py3-none-manylinux1_x86_64.whl (121.6 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m132m121.6/121.61MB0m131m2.31MB/s0mMeta036m0:00:000m0:010m:010m ?25hDownloading nvidia_curand_cu12-10.3.2.106-py3-none-manylinux1_x86_64.whl (56.5 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m132m56.5/56.5/MB0m/31m6.31MB/s0mMeta036m0:00:000m0:010m:010m ?25hDownloading nvidia_cusolver_cu12-11.4.5.107-py3-none-manylinux1_x86_64.whl (124.2 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m132m124.2/124.21MB0m131m2.61MB/s0mMeta036m0:00:000m0:010m:010m ?25hDownloading nvidia_cusparse_cu12-12.1.0.106-py3-none-manylinux1_x86_64.whl (196.0 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m132m196.0/196.01MB0m131m1.51MB/s0mMeta036m0:00:000m0:010m:010m ?25hDownloading nvidia_nccl_cu12-2.19.3-py3-none-manylinux1_x86_64.whl (166.0 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m132m166.0/166.01MB0m131m1.91MB/s0mMeta036m0:00:000m0:010m:010m ?25hDownloading nvidia_nvtx_cu12-12.1.105-py3-none-manylinux1_x86_64.whl (99 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m99.1/99.11kB0mm31m10.9 MB/s0mmeta-36m0:00:000m ?25hDownloading triton-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (167.9 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m132m167.9/167.91MB0m131m1.81MB/s0mMeta036m0:00:000m0:010m:010m ?25hDownloading aiohttp-3.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m1.2/1.2.MB0m031m50.1mMB/s0m6eta-36m0:00:000m ?25hDownloading numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.2 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m132m18.2/18.2/MB0m/31m58.4mMB/s0mBetam36m0:00:000m:010m:010m ?25hDownloading aiosignal-1.3.1-py3-none-any.whl (7.6 kB) Downloading async_timeout-4.0.3-py3-none-any.whl (5.7 kB) Downloading attrs-23.2.0-py3-none-any.whl (60 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m60.8/60.88kB0mm31m6.5mMB/s0m6eta-36m0:00:000m ?25hDownloading certifi-2024.6.2-py3-none-any.whl (164 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m164.4/164.4 kB0m 31m16.3eMB/s0m-eta:36m0:00:000m ?25hDownloading charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (142 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m142.1/142.1 kB0m 31m15.0eMB/s0m-eta:36m0:00:000m ?25hDownloading click-7.1.2-py2.py3-none-any.whl (82 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m82.8/82.88kB0mm31m9.3mMB/s0m6eta-36m0:00:000m ?25hDownloading coverage-7.5.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (231 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m231.6/231.6 kB0m 31m18.2eMB/s0m-eta:36m0:00:000m ?25hDownloading frozenlist-1.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (239 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m239.5/239.5 kB0m 31m21.9eMB/s0m-eta:36m0:00:000m ?25hDownloading fsspec-2024.3.1-py3-none-any.whl (171 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m172.0/172.0 kB0m 31m14.8eMB/s0m-eta:36m0:00:000m ?25hDownloading huggingface_hub-0.23.3-py3-none-any.whl (401 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m401.7/401.7 kB0m 31m30.0eMB/s0m-eta:36m0:00:000m ?25hDownloading idna-3.7-py3-none-any.whl (66 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m66.8/66.88kB0mm31m6.4mMB/s0m6eta-36m0:00:000m ?25hDownloading multidict-6.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (124 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m124.3/124.3 kB0m 31m11.9eMB/s0m-eta:36m0:00:000m ?25hDownloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m229.9/229.9 kB0m 31m19.0eMB/s0m-eta:36m0:00:000m ?25hDownloading pytz-2024.1-py2.py3-none-any.whl (505 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m505.5/505.5 kB0m 31m34.9eMB/s0m-eta:36m0:00:000m ?25hDownloading PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (705 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m705.5/705.5 kB0m 31m42.7eMB/s0m-eta:36m0:00:000m ?25hDownloading regex-2024.5.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (775 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m775.1/775.1 kB0m 31m45.0eMB/s0m-eta:36m0:00:000m ?25hDownloading safetensors-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m1.2/1.2.MB0m031m51.0mMB/s0m6eta-36m0:00:000m ?25hDownloading smart_open-7.0.4-py3-none-any.whl (61 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m61.2/61.22kB0mm31m6.4mMB/s0m6eta-36m0:00:000m ?25hDownloading threadpoolctl-3.5.0-py3-none-any.whl (18 kB) Downloading tokenizers-0.19.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m132m3.6/3.66MB0m031m61.4mMB/s0mMeta036m0:00:000m0:010m ?25hDownloading tqdm-4.66.4-py3-none-any.whl (78 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m78.3/78.33kB0mm31m9.1mMB/s0m6eta-36m0:00:000m ?25hDownloading tzdata-2024.1-py2.py3-none-any.whl (345 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m345.4/345.4 kB0m 31m27.4eMB/s0m-eta:36m0:00:000m ?25hDownloading urllib3-2.2.1-py3-none-any.whl (121 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m121.1/121.1 kB0m 31m12.6eMB/s0m-eta:36m0:00:000m ?25hDownloading yarl-1.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (301 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m301.6/301.6 kB0m 31m26.6eMB/s0m-eta:36m0:00:000m ?25hDownloading filelock-3.14.0-py3-none-any.whl (12 kB) Downloading jinja2-3.1.4-py3-none-any.whl (133 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m133.3/133.3 kB0m 31m12.4eMB/s0m-eta:36m0:00:000m ?25hDownloading multiprocess-0.70.16-py310-none-any.whl (134 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m134.8/134.8 kB0m 31m14.6eMB/s0m-eta:36m0:00:000m ?25hDownloading networkx-3.3-py3-none-any.whl (1.7 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m1.7/1.7.MB0m031m62.3mMB/s0m6eta-36m0:00:000m ?25hDownloading psutil-5.9.8-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m288.2/288.2 kB0m 31m24.2eMB/s0m-eta:36m0:00:000m ?25hDownloading pyarrow_hotfix-0.6-py3-none-any.whl (7.9 kB) Downloading sympy-1.12.1-py3-none-any.whl (5.7 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m132m5.7/5.77MB0m531m66.4mMB/s0mBetam36m0:00:000m:010m:010m ?25hDownloading xxhash-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m194.1/194.1 kB0m 31m20.0eMB/s0m-eta:36m0:00:000m ?25hDownloading MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25 kB) Downloading mpmath-1.3.0-py3-none-any.whl (536 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m536.2/536.2 kB0m 31m36.1eMB/s0m-eta:36m0:00:000m ?25hDownloading nvidia_nvjitlink_cu12-12.5.40-py3-none-manylinux2014_x86_64.whl (21.3 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m132m21.3/21.3/MB0m/31m54.6mMB/s0mBetam36m0:00:000m:010m:010m ?25hDownloading wrapt-1.16.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (80 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m80.3/80.33kB0mm31m8.8mMB/s0m6eta-36m0:00:000m ?25h31mERROR: THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIREMENTS FILE. If you have updated the package versions, please update the hashes. Otherwise, examine the package contents carefully; someone may have tampered with them. unknown package: Expected sha256 5ccb288774fdfb07a7e7025ffec286971c06d8d7b4fb162525334616d7629ff9 Got 076abed7beb83e45949fc13b4c7354c143644f71d70de8313c5f08e1341a2f83 0m31m 0mDefaulting to user installation because normal site-packages is not writeable Collecting twine Downloading twine-5.1.0-py3-none-any.whl.metadata (3.4 kB) Collecting pkginfo>=1.8.1 (from twine) Downloading pkginfo-1.11.0-py3-none-any.whl.metadata (11 kB) Collecting readme-renderer>=35.0 (from twine) Downloading readme_renderer-43.0-py3-none-any.whl.metadata (2.8 kB) Collecting requests>=2.20 (from twine) Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) Collecting requests-toolbelt!=0.9.0,>=0.8.0 (from twine) Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl.metadata (14 kB) Collecting urllib3>=1.26.0 (from twine) Using cached urllib3-2.2.1-py3-none-any.whl.metadata (6.4 kB) Requirement already satisfied: importlib-metadata>=3.6 in /usr/lib/python3/dist-packages (from twine) (4.6.4) Requirement already satisfied: keyring>=15.1 in /usr/lib/python3/dist-packages (from twine) (23.5.0) Collecting rfc3986>=1.4.0 (from twine) Downloading rfc3986-2.0.0-py2.py3-none-any.whl.metadata (6.6 kB) Collecting rich>=12.0.0 (from twine) Downloading rich-13.7.1-py3-none-any.whl.metadata (18 kB) Collecting nh3>=0.2.14 (from readme-renderer>=35.0->twine) Downloading nh3-0.2.17-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.7 kB) Collecting docutils>=0.13.1 (from readme-renderer>=35.0->twine) Downloading docutils-0.21.2-py3-none-any.whl.metadata (2.8 kB) Requirement already satisfied: Pygments>=2.5.1 in /usr/local/lib/python3.10/dist-packages (from readme-renderer>=35.0->twine) (2.17.2) Collecting charset-normalizer<4,>=2 (from requests>=2.20->twine) Using cached charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB) Collecting idna<4,>=2.5 (from requests>=2.20->twine) Using cached idna-3.7-py3-none-any.whl.metadata (9.9 kB) Collecting certifi>=2017.4.17 (from requests>=2.20->twine) Using cached certifi-2024.6.2-py3-none-any.whl.metadata (2.2 kB) Collecting markdown-it-py>=2.2.0 (from rich>=12.0.0->twine) Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB) Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=12.0.0->twine) Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB) Downloading twine-5.1.0-py3-none-any.whl (38 kB) Downloading pkginfo-1.11.0-py3-none-any.whl (31 kB) Downloading readme_renderer-43.0-py3-none-any.whl (13 kB) Downloading requests-2.32.3-py3-none-any.whl (64 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m64.9/64.99kB0mm31m5.8mMB/s0m6eta-36m0:00:000m ?25hDownloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m54.5/54.55kB0mm31m5.5mMB/s0m6eta-36m0:00:000m ?25hDownloading rfc3986-2.0.0-py2.py3-none-any.whl (31 kB) Downloading rich-13.7.1-py3-none-any.whl (240 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m240.7/240.7 kB0m 31m17.2eMB/s0m-eta:36m0:00:000m ?25hUsing cached urllib3-2.2.1-py3-none-any.whl (121 kB) Using cached certifi-2024.6.2-py3-none-any.whl (164 kB) Using cached charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (142 kB) Downloading docutils-0.21.2-py3-none-any.whl (587 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m587.4/587.4 kB0m 31m32.6eMB/s0m-eta:36m0:00:000m ?25hUsing cached idna-3.7-py3-none-any.whl (66 kB) Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m87.5/87.55kB0mm31m6.8mMB/s0m6eta-36m0:00:000m ?25hDownloading nh3-0.2.17-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (777 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m777.1/777.1 kB0m 31m46.2eMB/s0m-eta:36m0:00:000m ?25hDownloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) Installing collected packages: nh3, urllib3, rfc3986, pkginfo, mdurl, idna, docutils, charset-normalizer, certifi, requests, readme-renderer, markdown-it-py, rich, requests-toolbelt, twine 33m WARNING: The script pkginfo is installed in '/home/r/.local/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.0m33m 0m33m WARNING: The scripts docutils, rst2html, rst2html4, rst2html5, rst2latex, rst2man, rst2odt, rst2pseudoxml, rst2s5, rst2xetex and rst2xml are installed in '/home/r/.local/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.0m33m 0m33m WARNING: The script normalizer is installed in '/home/r/.local/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.0m33m 0m33m WARNING: The script markdown-it is installed in '/home/r/.local/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.0m33m 0m33m WARNING: The script twine is installed in '/home/r/.local/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.0m33m 0mSuccessfully installed certifi-2024.6.2 charset-normalizer-3.3.2 docutils-0.21.2 idna-3.7 markdown-it-py-3.0.0 mdurl-0.1.2 nh3-0.2.17 pkginfo-1.11.0 readme-renderer-43.0 requests-2.32.3 requests-toolbelt-1.0.0 rfc3986-2.0.0 rich-13.7.1 twine-5.1.0 urllib3-2.2.1 Defaulting to user installation because normal site-packages is not writeable Processing /home/r/repo Preparing metadata (setup.py) ... ?25ldone ?25hCollecting joblib (from samples-filter==0.0.0) Using cached joblib-1.4.2-py3-none-any.whl.metadata (5.4 kB) Collecting pyarrow (from samples-filter==0.0.0) Downloading pyarrow-16.1.0-cp310-cp310-manylinux_2_28_x86_64.whl.metadata (3.0 kB) Requirement already satisfied: requests in /home/r/.local/lib/python3.10/site-packages (from samples-filter==0.0.0) (2.32.3) Collecting torch (from samples-filter==0.0.0) Downloading torch-2.3.0-cp310-cp310-manylinux1_x86_64.whl.metadata (26 kB) Collecting transformers (from samples-filter==0.0.0) Using cached transformers-4.41.2-py3-none-any.whl.metadata (43 kB) Collecting typer (from samples-filter==0.0.0) Downloading typer-0.12.3-py3-none-any.whl.metadata (15 kB) Collecting numpy>=1.16.6 (from pyarrow->samples-filter==0.0.0) Using cached numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) Requirement already satisfied: charset-normalizer<4,>=2 in /home/r/.local/lib/python3.10/site-packages (from requests->samples-filter==0.0.0) (3.3.2) Requirement already satisfied: idna<4,>=2.5 in /home/r/.local/lib/python3.10/site-packages (from requests->samples-filter==0.0.0) (3.7) Requirement already satisfied: urllib3<3,>=1.21.1 in /home/r/.local/lib/python3.10/site-packages (from requests->samples-filter==0.0.0) (2.2.1) Requirement already satisfied: certifi>=2017.4.17 in /home/r/.local/lib/python3.10/site-packages (from requests->samples-filter==0.0.0) (2024.6.2) Collecting filelock (from torch->samples-filter==0.0.0) Using cached filelock-3.14.0-py3-none-any.whl.metadata (2.8 kB) Requirement already satisfied: typing-extensions>=4.8.0 in /home/r/.local/lib/python3.10/site-packages (from torch->samples-filter==0.0.0) (4.12.1) Collecting sympy (from torch->samples-filter==0.0.0) Using cached sympy-1.12.1-py3-none-any.whl.metadata (12 kB) Collecting networkx (from torch->samples-filter==0.0.0) Using cached networkx-3.3-py3-none-any.whl.metadata (5.1 kB) Collecting jinja2 (from torch->samples-filter==0.0.0) Using cached jinja2-3.1.4-py3-none-any.whl.metadata (2.6 kB) Collecting fsspec (from torch->samples-filter==0.0.0) Using cached fsspec-2024.6.0-py3-none-any.whl.metadata (11 kB) Collecting nvidia-cuda-nvrtc-cu12==12.1.105 (from torch->samples-filter==0.0.0) Using cached nvidia_cuda_nvrtc_cu12-12.1.105-py3-none-manylinux1_x86_64.whl.metadata (1.5 kB) Collecting nvidia-cuda-runtime-cu12==12.1.105 (from torch->samples-filter==0.0.0) Using cached nvidia_cuda_runtime_cu12-12.1.105-py3-none-manylinux1_x86_64.whl.metadata (1.5 kB) Collecting nvidia-cuda-cupti-cu12==12.1.105 (from torch->samples-filter==0.0.0) Using cached nvidia_cuda_cupti_cu12-12.1.105-py3-none-manylinux1_x86_64.whl.metadata (1.6 kB) Collecting nvidia-cudnn-cu12==8.9.2.26 (from torch->samples-filter==0.0.0) Using cached nvidia_cudnn_cu12-8.9.2.26-py3-none-manylinux1_x86_64.whl.metadata (1.6 kB) Collecting nvidia-cublas-cu12==12.1.3.1 (from torch->samples-filter==0.0.0) Using cached nvidia_cublas_cu12-12.1.3.1-py3-none-manylinux1_x86_64.whl.metadata (1.5 kB) Collecting nvidia-cufft-cu12==11.0.2.54 (from torch->samples-filter==0.0.0) Using cached nvidia_cufft_cu12-11.0.2.54-py3-none-manylinux1_x86_64.whl.metadata (1.5 kB) Collecting nvidia-curand-cu12==10.3.2.106 (from torch->samples-filter==0.0.0) Using cached nvidia_curand_cu12-10.3.2.106-py3-none-manylinux1_x86_64.whl.metadata (1.5 kB) Collecting nvidia-cusolver-cu12==11.4.5.107 (from torch->samples-filter==0.0.0) Using cached nvidia_cusolver_cu12-11.4.5.107-py3-none-manylinux1_x86_64.whl.metadata (1.6 kB) Collecting nvidia-cusparse-cu12==12.1.0.106 (from torch->samples-filter==0.0.0) Using cached nvidia_cusparse_cu12-12.1.0.106-py3-none-manylinux1_x86_64.whl.metadata (1.6 kB) Collecting nvidia-nccl-cu12==2.20.5 (from torch->samples-filter==0.0.0) Downloading nvidia_nccl_cu12-2.20.5-py3-none-manylinux2014_x86_64.whl.metadata (1.8 kB) Collecting nvidia-nvtx-cu12==12.1.105 (from torch->samples-filter==0.0.0) Using cached nvidia_nvtx_cu12-12.1.105-py3-none-manylinux1_x86_64.whl.metadata (1.7 kB) Collecting triton==2.3.0 (from torch->samples-filter==0.0.0) Downloading triton-2.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.4 kB) Collecting nvidia-nvjitlink-cu12 (from nvidia-cusolver-cu12==11.4.5.107->torch->samples-filter==0.0.0) Using cached nvidia_nvjitlink_cu12-12.5.40-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB) Collecting huggingface-hub<1.0,>=0.23.0 (from transformers->samples-filter==0.0.0) Using cached huggingface_hub-0.23.3-py3-none-any.whl.metadata (12 kB) Requirement already satisfied: packaging>=20.0 in /home/r/.local/lib/python3.10/site-packages (from transformers->samples-filter==0.0.0) (24.0) Collecting pyyaml>=5.1 (from transformers->samples-filter==0.0.0) Using cached PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB) Collecting regex!=2019.12.17 (from transformers->samples-filter==0.0.0) Using cached regex-2024.5.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) Collecting tokenizers<0.20,>=0.19 (from transformers->samples-filter==0.0.0) Using cached tokenizers-0.19.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB) Collecting safetensors>=0.4.1 (from transformers->samples-filter==0.0.0) Using cached safetensors-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) Collecting tqdm>=4.27 (from transformers->samples-filter==0.0.0) Using cached tqdm-4.66.4-py3-none-any.whl.metadata (57 kB) Collecting click>=8.0.0 (from typer->samples-filter==0.0.0) Downloading click-8.1.7-py3-none-any.whl.metadata (3.0 kB) Collecting shellingham>=1.3.0 (from typer->samples-filter==0.0.0) Downloading shellingham-1.5.4-py2.py3-none-any.whl.metadata (3.5 kB) Requirement already satisfied: rich>=10.11.0 in /home/r/.local/lib/python3.10/site-packages (from typer->samples-filter==0.0.0) (13.7.1) Requirement already satisfied: markdown-it-py>=2.2.0 in /home/r/.local/lib/python3.10/site-packages (from rich>=10.11.0->typer->samples-filter==0.0.0) (3.0.0) Requirement already satisfied: pygments<3.0.0,>=2.13.0 in /usr/local/lib/python3.10/dist-packages (from rich>=10.11.0->typer->samples-filter==0.0.0) (2.17.2) Collecting MarkupSafe>=2.0 (from jinja2->torch->samples-filter==0.0.0) Using cached MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.0 kB) Collecting mpmath<1.4.0,>=1.1.0 (from sympy->torch->samples-filter==0.0.0) Using cached mpmath-1.3.0-py3-none-any.whl.metadata (8.6 kB) Requirement already satisfied: mdurl~=0.1 in /home/r/.local/lib/python3.10/site-packages (from markdown-it-py>=2.2.0->rich>=10.11.0->typer->samples-filter==0.0.0) (0.1.2) Using cached joblib-1.4.2-py3-none-any.whl (301 kB) Downloading pyarrow-16.1.0-cp310-cp310-manylinux_2_28_x86_64.whl (40.8 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m132m40.8/40.8/MB0m/31m30.9mMB/s0mBetam36m0:00:000m:010m:010m ?25hDownloading torch-2.3.0-cp310-cp310-manylinux1_x86_64.whl (779.1 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m932m779.1/779.1/MB0m131m619.5mkB/s0mBetam36m0:00:000m:010m:010m ?25hUsing cached nvidia_cublas_cu12-12.1.3.1-py3-none-manylinux1_x86_64.whl (410.6 MB) Using cached nvidia_cuda_cupti_cu12-12.1.105-py3-none-manylinux1_x86_64.whl (14.1 MB) Using cached nvidia_cuda_nvrtc_cu12-12.1.105-py3-none-manylinux1_x86_64.whl (23.7 MB) Using cached nvidia_cuda_runtime_cu12-12.1.105-py3-none-manylinux1_x86_64.whl (823 kB) Downloading nvidia_cudnn_cu12-8.9.2.26-py3-none-manylinux1_x86_64.whl (731.7 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m932m731.7/731.7/MB0m731m647.5mkB/s0mBetam36m0:00:000m:010m:010m ?25hUsing cached nvidia_cufft_cu12-11.0.2.54-py3-none-manylinux1_x86_64.whl (121.6 MB) Using cached nvidia_curand_cu12-10.3.2.106-py3-none-manylinux1_x86_64.whl (56.5 MB) Using cached nvidia_cusolver_cu12-11.4.5.107-py3-none-manylinux1_x86_64.whl (124.2 MB) Using cached nvidia_cusparse_cu12-12.1.0.106-py3-none-manylinux1_x86_64.whl (196.0 MB) Downloading nvidia_nccl_cu12-2.20.5-py3-none-manylinux2014_x86_64.whl (176.2 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m132m176.2/176.21MB0m131m1.51MB/s0mMeta036m0:00:000m0:010m:010m ?25hUsing cached nvidia_nvtx_cu12-12.1.105-py3-none-manylinux1_x86_64.whl (99 kB) Downloading triton-2.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (168.1 MB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m132m168.1/168.11MB0m131m1.71MB/s0mMeta036m0:00:000m0:010m:010m ?25hUsing cached transformers-4.41.2-py3-none-any.whl (9.1 MB) Downloading typer-0.12.3-py3-none-any.whl (47 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m47.2/47.22kB0mm31m5.1mMB/s0m6eta-36m0:00:000m ?25hDownloading click-8.1.7-py3-none-any.whl (97 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m97.9/97.99kB0mm31m11.3 MB/s0mmeta-36m0:00:000m ?25hUsing cached huggingface_hub-0.23.3-py3-none-any.whl (401 kB) Downloading fsspec-2024.6.0-py3-none-any.whl (176 kB) 2K5l 90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━0m032m176.9/176.9 kB0m 31m18.8eMB/s0m-eta:36m0:00:000m ?25hUsing cached numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.2 MB) Using cached PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (705 kB) Using cached regex-2024.5.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (775 kB) Using cached safetensors-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB) Downloading shellingham-1.5.4-py2.py3-none-any.whl (9.8 kB) Using cached tokenizers-0.19.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB) Using cached tqdm-4.66.4-py3-none-any.whl (78 kB) Using cached filelock-3.14.0-py3-none-any.whl (12 kB) Using cached jinja2-3.1.4-py3-none-any.whl (133 kB) Using cached networkx-3.3-py3-none-any.whl (1.7 MB) Using cached sympy-1.12.1-py3-none-any.whl (5.7 MB) Using cached MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25 kB) Using cached mpmath-1.3.0-py3-none-any.whl (536 kB) Using cached nvidia_nvjitlink_cu12-12.5.40-py3-none-manylinux2014_x86_64.whl (21.3 MB) Building wheels for collected packages: samples-filter Building wheel for samples-filter (setup.py) ... ?25ldone ?25h Created wheel for samples-filter: filename=samples_filter-0.0.0-py3-none-any.whl size=18471 sha256=43e0966487a3a6a891f2dc19de4a99051bbd48bfe6cd9a036bc94c18a7cfa6a7 Stored in directory: /tmp/pip-ephem-wheel-cache-05ugd3lj/wheels/c7/0e/d0/fb6f69505460d26bbb21b68b57a5063f9df68215a2c0f5c072 Successfully built samples-filter Installing collected packages: mpmath, tqdm, sympy, shellingham, safetensors, regex, pyyaml, nvidia-nvtx-cu12, nvidia-nvjitlink-cu12, nvidia-nccl-cu12, nvidia-curand-cu12, nvidia-cufft-cu12, nvidia-cuda-runtime-cu12, nvidia-cuda-nvrtc-cu12, nvidia-cuda-cupti-cu12, nvidia-cublas-cu12, numpy, networkx, MarkupSafe, joblib, fsspec, filelock, click, triton, pyarrow, nvidia-cusparse-cu12, nvidia-cudnn-cu12, jinja2, huggingface-hub, typer, tokenizers, nvidia-cusolver-cu12, transformers, torch, samples-filter 33m WARNING: The script tqdm is installed in '/home/r/.local/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.0m33m 0m33m WARNING: The script isympy is installed in '/home/r/.local/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.0m33m 0m33m WARNING: The script f2py is installed in '/home/r/.local/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.0m33m 0m33m WARNING: The script huggingface-cli is installed in '/home/r/.local/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.0m33m 0m33m WARNING: The script typer is installed in '/home/r/.local/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.0m33m 0m33m WARNING: The script transformers-cli is installed in '/home/r/.local/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.0m33m 0m33m WARNING: The scripts convert-caffe2-to-onnx, convert-onnx-to-caffe2 and torchrun are installed in '/home/r/.local/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.0m33m 0m33m WARNING: The script samples-filter is installed in '/home/r/.local/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.0m33m 0mSuccessfully installed MarkupSafe-2.1.5 click-8.1.7 filelock-3.14.0 fsspec-2024.6.0 huggingface-hub-0.23.3 jinja2-3.1.4 joblib-1.4.2 mpmath-1.3.0 networkx-3.3 numpy-1.26.4 nvidia-cublas-cu12-12.1.3.1 nvidia-cuda-cupti-cu12-12.1.105 nvidia-cuda-nvrtc-cu12-12.1.105 nvidia-cuda-runtime-cu12-12.1.105 nvidia-cudnn-cu12-8.9.2.26 nvidia-cufft-cu12-11.0.2.54 nvidia-curand-cu12-10.3.2.106 nvidia-cusolver-cu12-11.4.5.107 nvidia-cusparse-cu12-12.1.0.106 nvidia-nccl-cu12-2.20.5 nvidia-nvjitlink-cu12-12.5.40 nvidia-nvtx-cu12-12.1.105 pyarrow-16.1.0 pyyaml-6.0.1 regex-2024.5.15 safetensors-0.4.3 samples-filter-0.0.0 shellingham-1.5.4 sympy-1.12.1 tokenizers-0.19.1 torch-2.3.0 tqdm-4.66.4 transformers-4.41.2 triton-2.3.0 typer-0.12.3 31mERROR: usage: __main__.py [options] [file_or_dir] [file_or_dir] [...] __main__.py: error: unrecognized arguments: --cov --cov-fail-under=40 inifile: None rootdir: /home/r/repo 0m make: *** [Makefile:50: cov] Error 4 container 89f6be8559951e96d63e88ba7440ba17eea6b679d5ef74134961e27b5f385eb4 is dead Wed Jun 5 16:40:41 UTC 2024