Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Continuous Integration script to reproduce error assert q.is_cuda and k.is_cuda and v.is_cuda #113

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

richelbilderbeek
Copy link

@richelbilderbeek richelbilderbeek commented Sep 9, 2024

Dear DNABERT 2 maintainer,

With this Pull Request I'd like to prove that the documentation is incomplete, by reproducing the error

assert q.is_cuda and k.is_cuda and v.is_cuda

This error is reported too in #11, #20, #34, #96 and #112.

I made the error reproducible with the script in .github/workflow/check_build.yaml, where I copy-paste the install process only. I simply followed the install procedure in the README, using the recommended Python 3.8, yet without the conda setup:

- uses: actions/setup-python@v2
  with:
    python-version: 3.8

- name: install required packages
  run: python3 -m pip install -r requirements.txt

- name: run example code shown in README
  run: python3 .github/workflows/example_huggingface_v4_28.py

The script it runs is copied from the README too:

import torch
from transformers import AutoTokenizer, AutoModel

tokenizer = AutoTokenizer.from_pretrained("zhihan1996/DNABERT-2-117M", trust_remote_code=True)
model = AutoModel.from_pretrained("zhihan1996/DNABERT-2-117M", trust_remote_code=True)

dna = "ACGTAGCATCGGATCTATCTATCGACACTTGGTTATCGATCTACGAGCATCTCGTTAGC"
inputs = tokenizer(dna, return_tensors = 'pt')["input_ids"]
hidden_states = model(inputs)[0] # [1, sequence_length, 768]

# embedding with mean pooling
embedding_mean = torch.mean(hidden_states[0], dim=0)
print(embedding_mean.shape) # expect to be 768

# embedding with max pooling
embedding_max = torch.max(hidden_states[0], dim=0)[0]
print(embedding_max.shape) # expect to be 768

The error log is shown in the next message below.

I think that a user should be able to install a Python module and run example code with success by reading the documentation, hence I think the documentation is incomplete or the error message given is not helpful enough (#112).

I hope you appreciate the effort I put in to make DNABERT 2 even better for everyone. Maybe using CI scripts is new to you, I'd be happy to discuss their pros and cons and I'd be happy to maintain such scripts for my users :-)

Cheers, Richel Bilderbeek

@richelbilderbeek richelbilderbeek changed the title Add Continuous Integration script Add Continuous Integration script to reproduce error assert q.is_cuda and k.is_cuda and v.is_cuda Sep 9, 2024
@richelbilderbeek
Copy link
Author

Ah, you cannot see the errors. They are here (you need to have been logged in to GitHub) and pasted below for convenience:

2024-09-09T06:46:10.2938687Z Current runner version: '2.319.1'
2024-09-09T06:46:10.2962786Z ##[group]Operating System
2024-09-09T06:46:10.2963370Z Ubuntu
2024-09-09T06:46:10.2963723Z 22.04.4
2024-09-09T06:46:10.2964154Z LTS
2024-09-09T06:46:10.2964445Z ##[endgroup]
2024-09-09T06:46:10.2964852Z ##[group]Runner Image
2024-09-09T06:46:10.2965344Z Image: ubuntu-22.04
2024-09-09T06:46:10.2965696Z Version: 20240901.1.0
2024-09-09T06:46:10.2966684Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20240901.1/images/ubuntu/Ubuntu2204-Readme.md
2024-09-09T06:46:10.2968198Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20240901.1
2024-09-09T06:46:10.2969034Z ##[endgroup]
2024-09-09T06:46:10.2969442Z ##[group]Runner Image Provisioner
2024-09-09T06:46:10.2969985Z 2.0.384.1
2024-09-09T06:46:10.2970286Z ##[endgroup]
2024-09-09T06:46:10.2986839Z ##[group]GITHUB_TOKEN Permissions
2024-09-09T06:46:10.2988502Z Actions: write
2024-09-09T06:46:10.2989503Z Attestations: write
2024-09-09T06:46:10.2989965Z Checks: write
2024-09-09T06:46:10.2990430Z Contents: write
2024-09-09T06:46:10.2990815Z Deployments: write
2024-09-09T06:46:10.2991198Z Discussions: write
2024-09-09T06:46:10.2991672Z Issues: write
2024-09-09T06:46:10.2992029Z Metadata: read
2024-09-09T06:46:10.2992362Z Packages: write
2024-09-09T06:46:10.2992828Z Pages: write
2024-09-09T06:46:10.2993205Z PullRequests: write
2024-09-09T06:46:10.2993596Z RepositoryProjects: write
2024-09-09T06:46:10.2994130Z SecurityEvents: write
2024-09-09T06:46:10.2994549Z Statuses: write
2024-09-09T06:46:10.2994905Z ##[endgroup]
2024-09-09T06:46:10.2997970Z Secret source: Actions
2024-09-09T06:46:10.2998549Z Prepare workflow directory
2024-09-09T06:46:10.3617057Z Prepare all required actions
2024-09-09T06:46:10.3774031Z Getting action download info
2024-09-09T06:46:10.5835179Z Download action repository 'actions/checkout@v2' (SHA:ee0669bd1cc54295c223e0bb666b733df41de1c5)
2024-09-09T06:46:10.6967864Z Download action repository 'actions/setup-python@v2' (SHA:e9aba2c848f5ebd159c070c61ea2c4e2b122355e)
2024-09-09T06:46:10.9506973Z Complete job name: check_build
2024-09-09T06:46:11.0433490Z ##[group]Run actions/checkout@v2
2024-09-09T06:46:11.0434144Z with:
2024-09-09T06:46:11.0434534Z   repository: UPPMAX/DNABERT_2
2024-09-09T06:46:11.0435238Z   token: ***
2024-09-09T06:46:11.0435695Z   ssh-strict: true
2024-09-09T06:46:11.0436117Z   persist-credentials: true
2024-09-09T06:46:11.0436588Z   clean: true
2024-09-09T06:46:11.0436986Z   fetch-depth: 1
2024-09-09T06:46:11.0437363Z   lfs: false
2024-09-09T06:46:11.0437741Z   submodules: false
2024-09-09T06:46:11.0438179Z   set-safe-directory: true
2024-09-09T06:46:11.0438619Z ##[endgroup]
2024-09-09T06:46:11.2418144Z Syncing repository: UPPMAX/DNABERT_2
2024-09-09T06:46:11.2421190Z ##[group]Getting Git version info
2024-09-09T06:46:11.2422619Z Working directory is '/home/runner/work/DNABERT_2/DNABERT_2'
2024-09-09T06:46:11.2424325Z [command]/usr/bin/git version
2024-09-09T06:46:11.2425025Z git version 2.46.0
2024-09-09T06:46:11.2426866Z ##[endgroup]
2024-09-09T06:46:11.2443840Z Temporarily overriding HOME='/home/runner/work/_temp/7cc918d7-80a2-43f5-8989-ca3f806b7ae2' before making global git config changes
2024-09-09T06:46:11.2446343Z Adding repository directory to the temporary git global config as a safe directory
2024-09-09T06:46:11.2448649Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/DNABERT_2/DNABERT_2
2024-09-09T06:46:11.2479589Z Deleting the contents of '/home/runner/work/DNABERT_2/DNABERT_2'
2024-09-09T06:46:11.2484425Z ##[group]Initializing the repository
2024-09-09T06:46:11.2487214Z [command]/usr/bin/git init /home/runner/work/DNABERT_2/DNABERT_2
2024-09-09T06:46:11.2601124Z hint: Using 'master' as the name for the initial branch. This default branch name
2024-09-09T06:46:11.2602926Z hint: is subject to change. To configure the initial branch name to use in all
2024-09-09T06:46:11.2604609Z hint: of your new repositories, which will suppress this warning, call:
2024-09-09T06:46:11.2605728Z hint:
2024-09-09T06:46:11.2607018Z hint: 	git config --global init.defaultBranch <name>
2024-09-09T06:46:11.2607856Z hint:
2024-09-09T06:46:11.2608490Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2024-09-09T06:46:11.2609644Z hint: 'development'. The just-created branch can be renamed via this command:
2024-09-09T06:46:11.2610393Z hint:
2024-09-09T06:46:11.2610763Z hint: 	git branch -m <name>
2024-09-09T06:46:11.2611587Z Initialized empty Git repository in /home/runner/work/DNABERT_2/DNABERT_2/.git/
2024-09-09T06:46:11.2615514Z [command]/usr/bin/git remote add origin https://github.com/UPPMAX/DNABERT_2
2024-09-09T06:46:11.2651417Z ##[endgroup]
2024-09-09T06:46:11.2652213Z ##[group]Disabling automatic garbage collection
2024-09-09T06:46:11.2654679Z [command]/usr/bin/git config --local gc.auto 0
2024-09-09T06:46:11.2682477Z ##[endgroup]
2024-09-09T06:46:11.2683342Z ##[group]Setting up auth
2024-09-09T06:46:11.2688532Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2024-09-09T06:46:11.2716981Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
2024-09-09T06:46:11.3032797Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2024-09-09T06:46:11.3061212Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
2024-09-09T06:46:11.3298213Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2024-09-09T06:46:11.3340161Z ##[endgroup]
2024-09-09T06:46:11.3341094Z ##[group]Fetching the repository
2024-09-09T06:46:11.3352685Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +105bb1c14e24d28516b4898ef25acb0d400671a5:refs/remotes/origin/main
2024-09-09T06:46:11.7336901Z remote: Enumerating objects: 25, done.        
2024-09-09T06:46:11.7338081Z remote: Counting objects:   4% (1/25)        
2024-09-09T06:46:11.7338837Z remote: Counting objects:   8% (2/25)        
2024-09-09T06:46:11.7339595Z remote: Counting objects:  12% (3/25)        
2024-09-09T06:46:11.7340444Z remote: Counting objects:  16% (4/25)        
2024-09-09T06:46:11.7341208Z remote: Counting objects:  20% (5/25)        
2024-09-09T06:46:11.7341834Z remote: Counting objects:  24% (6/25)        
2024-09-09T06:46:11.7342478Z remote: Counting objects:  28% (7/25)        
2024-09-09T06:46:11.7343073Z remote: Counting objects:  32% (8/25)        
2024-09-09T06:46:11.7343629Z remote: Counting objects:  36% (9/25)        
2024-09-09T06:46:11.7344287Z remote: Counting objects:  40% (10/25)        
2024-09-09T06:46:11.7344964Z remote: Counting objects:  44% (11/25)        
2024-09-09T06:46:11.7346036Z remote: Counting objects:  48% (12/25)        
2024-09-09T06:46:11.7346898Z remote: Counting objects:  52% (13/25)        
2024-09-09T06:46:11.7347522Z remote: Counting objects:  56% (14/25)        
2024-09-09T06:46:11.7348084Z remote: Counting objects:  60% (15/25)        
2024-09-09T06:46:11.7349055Z remote: Counting objects:  64% (16/25)        
2024-09-09T06:46:11.7349677Z remote: Counting objects:  68% (17/25)        
2024-09-09T06:46:11.7350369Z remote: Counting objects:  72% (18/25)        
2024-09-09T06:46:11.7350959Z remote: Counting objects:  76% (19/25)        
2024-09-09T06:46:11.7351550Z remote: Counting objects:  80% (20/25)        
2024-09-09T06:46:11.7352248Z remote: Counting objects:  84% (21/25)        
2024-09-09T06:46:11.7352848Z remote: Counting objects:  88% (22/25)        
2024-09-09T06:46:11.7353421Z remote: Counting objects:  92% (23/25)        
2024-09-09T06:46:11.7354029Z remote: Counting objects:  96% (24/25)        
2024-09-09T06:46:11.7354613Z remote: Counting objects: 100% (25/25)        
2024-09-09T06:46:11.7355276Z remote: Counting objects: 100% (25/25), done.        
2024-09-09T06:46:11.7356222Z remote: Compressing objects:   5% (1/18)        
2024-09-09T06:46:11.7356932Z remote: Compressing objects:  11% (2/18)        
2024-09-09T06:46:11.7357549Z remote: Compressing objects:  16% (3/18)        
2024-09-09T06:46:11.7358176Z remote: Compressing objects:  22% (4/18)        
2024-09-09T06:46:11.7358881Z remote: Compressing objects:  27% (5/18)        
2024-09-09T06:46:11.7359520Z remote: Compressing objects:  33% (6/18)        
2024-09-09T06:46:11.7360112Z remote: Compressing objects:  38% (7/18)        
2024-09-09T06:46:11.7382932Z remote: Compressing objects:  44% (8/18)        
2024-09-09T06:46:11.7388261Z remote: Compressing objects:  50% (9/18)        
2024-09-09T06:46:11.7393335Z remote: Compressing objects:  55% (10/18)        
2024-09-09T06:46:11.7397214Z remote: Compressing objects:  61% (11/18)        
2024-09-09T06:46:11.7398172Z remote: Compressing objects:  66% (12/18)        
2024-09-09T06:46:11.7398854Z remote: Compressing objects:  72% (13/18)        
2024-09-09T06:46:11.7399486Z remote: Compressing objects:  77% (14/18)        
2024-09-09T06:46:11.7400247Z remote: Compressing objects:  83% (15/18)        
2024-09-09T06:46:11.7400874Z remote: Compressing objects:  88% (16/18)        
2024-09-09T06:46:11.7634026Z remote: Compressing objects:  94% (17/18)        
2024-09-09T06:46:11.7634867Z remote: Compressing objects: 100% (18/18)        
2024-09-09T06:46:11.7635925Z remote: Compressing objects: 100% (18/18), done.        
2024-09-09T06:46:11.9654375Z remote: Total 25 (delta 5), reused 18 (delta 5), pack-reused 0 (from 0)        
2024-09-09T06:46:11.9811307Z From https://github.com/UPPMAX/DNABERT_2
2024-09-09T06:46:11.9813223Z  * [new ref]         105bb1c14e24d28516b4898ef25acb0d400671a5 -> origin/main
2024-09-09T06:46:11.9839185Z ##[endgroup]
2024-09-09T06:46:11.9840074Z ##[group]Determining the checkout info
2024-09-09T06:46:11.9841206Z ##[endgroup]
2024-09-09T06:46:11.9841840Z ##[group]Checking out the ref
2024-09-09T06:46:11.9845430Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main
2024-09-09T06:46:11.9927056Z Switched to a new branch 'main'
2024-09-09T06:46:11.9930290Z branch 'main' set up to track 'origin/main'.
2024-09-09T06:46:11.9935374Z ##[endgroup]
2024-09-09T06:46:11.9969983Z [command]/usr/bin/git log -1 --format='%H'
2024-09-09T06:46:11.9997311Z '105bb1c14e24d28516b4898ef25acb0d400671a5'
2024-09-09T06:46:12.0320500Z ##[group]Run actions/setup-python@v2
2024-09-09T06:46:12.0321023Z with:
2024-09-09T06:46:12.0321344Z   python-version: 3.8
2024-09-09T06:46:12.0321978Z   token: ***
2024-09-09T06:46:12.0322316Z ##[endgroup]
2024-09-09T06:46:12.1438659Z Successfully setup CPython (3.8.18)
2024-09-09T06:46:12.1572949Z ##[group]Run python3 -m pip install -r requirements.txt
2024-09-09T06:46:12.1573730Z �[36;1mpython3 -m pip install -r requirements.txt�[0m
2024-09-09T06:46:12.1604063Z shell: /usr/bin/bash -e {0}
2024-09-09T06:46:12.1604635Z env:
2024-09-09T06:46:12.1605076Z   pythonLocation: /opt/hostedtoolcache/Python/3.8.18/x64
2024-09-09T06:46:12.1605719Z   LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.8.18/x64/lib
2024-09-09T06:46:12.1606309Z ##[endgroup]
2024-09-09T06:46:14.9741529Z Collecting einops (from -r requirements.txt (line 1))
2024-09-09T06:46:15.0189087Z   Downloading einops-0.8.0-py3-none-any.whl.metadata (12 kB)
2024-09-09T06:46:15.1044411Z Collecting transformers==4.29.2 (from -r requirements.txt (line 2))
2024-09-09T06:46:15.1202289Z   Downloading transformers-4.29.2-py3-none-any.whl.metadata (112 kB)
2024-09-09T06:46:15.4164429Z Collecting peft (from -r requirements.txt (line 3))
2024-09-09T06:46:15.4319485Z   Downloading peft-0.12.0-py3-none-any.whl.metadata (13 kB)
2024-09-09T06:46:15.4976424Z Collecting omegaconf (from -r requirements.txt (line 4))
2024-09-09T06:46:15.5138249Z   Downloading omegaconf-2.3.0-py3-none-any.whl.metadata (3.9 kB)
2024-09-09T06:46:15.5802719Z Collecting torch (from -r requirements.txt (line 5))
2024-09-09T06:46:15.5958546Z   Downloading torch-2.4.1-cp38-cp38-manylinux1_x86_64.whl.metadata (26 kB)
2024-09-09T06:46:15.6257299Z Collecting evaluate (from -r requirements.txt (line 6))
2024-09-09T06:46:15.6411781Z   Downloading evaluate-0.4.2-py3-none-any.whl.metadata (9.3 kB)
2024-09-09T06:46:15.6991133Z Collecting accelerate (from -r requirements.txt (line 7))
2024-09-09T06:46:15.7140826Z   Downloading accelerate-0.34.2-py3-none-any.whl.metadata (19 kB)
2024-09-09T06:46:15.7696730Z Collecting filelock (from transformers==4.29.2->-r requirements.txt (line 2))
2024-09-09T06:46:15.7843174Z   Downloading filelock-3.16.0-py3-none-any.whl.metadata (3.0 kB)
2024-09-09T06:46:15.8521465Z Collecting huggingface-hub<1.0,>=0.14.1 (from transformers==4.29.2->-r requirements.txt (line 2))
2024-09-09T06:46:15.8671007Z   Downloading huggingface_hub-0.24.6-py3-none-any.whl.metadata (13 kB)
2024-09-09T06:46:16.1223348Z Collecting numpy>=1.17 (from transformers==4.29.2->-r requirements.txt (line 2))
2024-09-09T06:46:16.1380430Z   Downloading numpy-1.24.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.6 kB)
2024-09-09T06:46:16.2401486Z Collecting packaging>=20.0 (from transformers==4.29.2->-r requirements.txt (line 2))
2024-09-09T06:46:16.2552108Z   Downloading packaging-24.1-py3-none-any.whl.metadata (3.2 kB)
2024-09-09T06:46:16.3156493Z Collecting pyyaml>=5.1 (from transformers==4.29.2->-r requirements.txt (line 2))
2024-09-09T06:46:16.3320088Z   Downloading PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB)
2024-09-09T06:46:16.7977207Z Collecting regex!=2019.12.17 (from transformers==4.29.2->-r requirements.txt (line 2))
2024-09-09T06:46:16.8134008Z   Downloading regex-2024.7.24-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB)
2024-09-09T06:46:16.8667485Z Collecting requests (from transformers==4.29.2->-r requirements.txt (line 2))
2024-09-09T06:46:16.8817692Z   Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB)
2024-09-09T06:46:17.0998032Z Collecting tokenizers!=0.11.3,<0.14,>=0.11.1 (from transformers==4.29.2->-r requirements.txt (line 2))
2024-09-09T06:46:17.1157805Z   Downloading tokenizers-0.13.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB)
2024-09-09T06:46:17.2328115Z Collecting tqdm>=4.27 (from transformers==4.29.2->-r requirements.txt (line 2))
2024-09-09T06:46:17.2476088Z   Downloading tqdm-4.66.5-py3-none-any.whl.metadata (57 kB)
2024-09-09T06:46:17.3701616Z Collecting psutil (from peft->-r requirements.txt (line 3))
2024-09-09T06:46:17.3856195Z   Downloading psutil-6.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (21 kB)
2024-09-09T06:46:17.5529495Z Collecting safetensors (from peft->-r requirements.txt (line 3))
2024-09-09T06:46:17.5684707Z   Downloading safetensors-0.4.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB)
2024-09-09T06:46:17.6129222Z Collecting antlr4-python3-runtime==4.9.* (from omegaconf->-r requirements.txt (line 4))
2024-09-09T06:46:17.6276881Z   Downloading antlr4-python3-runtime-4.9.3.tar.gz (117 kB)
2024-09-09T06:46:17.6633691Z   Installing build dependencies: started
2024-09-09T06:46:19.2865068Z   Installing build dependencies: finished with status 'done'
2024-09-09T06:46:19.2875702Z   Getting requirements to build wheel: started
2024-09-09T06:46:19.5363569Z   Getting requirements to build wheel: finished with status 'done'
2024-09-09T06:46:19.5374425Z   Preparing metadata (pyproject.toml): started
2024-09-09T06:46:19.7415493Z   Preparing metadata (pyproject.toml): finished with status 'done'
2024-09-09T06:46:19.7790538Z Collecting typing-extensions>=4.8.0 (from torch->-r requirements.txt (line 5))
2024-09-09T06:46:19.7936956Z   Downloading typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB)
2024-09-09T06:46:19.8293206Z Collecting sympy (from torch->-r requirements.txt (line 5))
2024-09-09T06:46:19.8439262Z   Downloading sympy-1.13.2-py3-none-any.whl.metadata (12 kB)
2024-09-09T06:46:19.8886975Z Collecting networkx (from torch->-r requirements.txt (line 5))
2024-09-09T06:46:19.9038975Z   Downloading networkx-3.1-py3-none-any.whl.metadata (5.3 kB)
2024-09-09T06:46:19.9407684Z Collecting jinja2 (from torch->-r requirements.txt (line 5))
2024-09-09T06:46:19.9556449Z   Downloading jinja2-3.1.4-py3-none-any.whl.metadata (2.6 kB)
2024-09-09T06:46:20.0014640Z Collecting fsspec (from torch->-r requirements.txt (line 5))
2024-09-09T06:46:20.0166716Z   Downloading fsspec-2024.9.0-py3-none-any.whl.metadata (11 kB)
2024-09-09T06:46:20.0868472Z Collecting nvidia-cuda-nvrtc-cu12==12.1.105 (from torch->-r requirements.txt (line 5))
2024-09-09T06:46:20.1017149Z   Downloading nvidia_cuda_nvrtc_cu12-12.1.105-py3-none-manylinux1_x86_64.whl.metadata (1.5 kB)
2024-09-09T06:46:20.1279248Z Collecting nvidia-cuda-runtime-cu12==12.1.105 (from torch->-r requirements.txt (line 5))
2024-09-09T06:46:20.1425154Z   Downloading nvidia_cuda_runtime_cu12-12.1.105-py3-none-manylinux1_x86_64.whl.metadata (1.5 kB)
2024-09-09T06:46:20.1679570Z Collecting nvidia-cuda-cupti-cu12==12.1.105 (from torch->-r requirements.txt (line 5))
2024-09-09T06:46:20.1825319Z   Downloading nvidia_cuda_cupti_cu12-12.1.105-py3-none-manylinux1_x86_64.whl.metadata (1.6 kB)
2024-09-09T06:46:20.2082371Z Collecting nvidia-cudnn-cu12==9.1.0.70 (from torch->-r requirements.txt (line 5))
2024-09-09T06:46:20.2227475Z   Downloading nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl.metadata (1.6 kB)
2024-09-09T06:46:20.2481230Z Collecting nvidia-cublas-cu12==12.1.3.1 (from torch->-r requirements.txt (line 5))
2024-09-09T06:46:20.2626200Z   Downloading nvidia_cublas_cu12-12.1.3.1-py3-none-manylinux1_x86_64.whl.metadata (1.5 kB)
2024-09-09T06:46:20.2887180Z Collecting nvidia-cufft-cu12==11.0.2.54 (from torch->-r requirements.txt (line 5))
2024-09-09T06:46:20.3034861Z   Downloading nvidia_cufft_cu12-11.0.2.54-py3-none-manylinux1_x86_64.whl.metadata (1.5 kB)
2024-09-09T06:46:20.3320535Z Collecting nvidia-curand-cu12==10.3.2.106 (from torch->-r requirements.txt (line 5))
2024-09-09T06:46:20.3466571Z   Downloading nvidia_curand_cu12-10.3.2.106-py3-none-manylinux1_x86_64.whl.metadata (1.5 kB)
2024-09-09T06:46:20.3718535Z Collecting nvidia-cusolver-cu12==11.4.5.107 (from torch->-r requirements.txt (line 5))
2024-09-09T06:46:20.3865366Z   Downloading nvidia_cusolver_cu12-11.4.5.107-py3-none-manylinux1_x86_64.whl.metadata (1.6 kB)
2024-09-09T06:46:20.4111618Z Collecting nvidia-cusparse-cu12==12.1.0.106 (from torch->-r requirements.txt (line 5))
2024-09-09T06:46:20.4256204Z   Downloading nvidia_cusparse_cu12-12.1.0.106-py3-none-manylinux1_x86_64.whl.metadata (1.6 kB)
2024-09-09T06:46:20.4474266Z Collecting nvidia-nccl-cu12==2.20.5 (from torch->-r requirements.txt (line 5))
2024-09-09T06:46:20.4620987Z   Downloading nvidia_nccl_cu12-2.20.5-py3-none-manylinux2014_x86_64.whl.metadata (1.8 kB)
2024-09-09T06:46:20.4874378Z Collecting nvidia-nvtx-cu12==12.1.105 (from torch->-r requirements.txt (line 5))
2024-09-09T06:46:20.5019371Z   Downloading nvidia_nvtx_cu12-12.1.105-py3-none-manylinux1_x86_64.whl.metadata (1.7 kB)
2024-09-09T06:46:20.5278221Z Collecting triton==3.0.0 (from torch->-r requirements.txt (line 5))
2024-09-09T06:46:20.5430377Z   Downloading triton-3.0.0-1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (1.3 kB)
2024-09-09T06:46:20.5797643Z Collecting nvidia-nvjitlink-cu12 (from nvidia-cusolver-cu12==11.4.5.107->torch->-r requirements.txt (line 5))
2024-09-09T06:46:20.5942798Z   Downloading nvidia_nvjitlink_cu12-12.6.68-py3-none-manylinux2014_x86_64.whl.metadata (1.5 kB)
2024-09-09T06:46:20.6432354Z Collecting datasets>=2.0.0 (from evaluate->-r requirements.txt (line 6))
2024-09-09T06:46:20.6598290Z   Downloading datasets-2.21.0-py3-none-any.whl.metadata (21 kB)
2024-09-09T06:46:20.7370390Z Collecting dill (from evaluate->-r requirements.txt (line 6))
2024-09-09T06:46:20.7516374Z   Downloading dill-0.3.8-py3-none-any.whl.metadata (10 kB)
2024-09-09T06:46:20.9698375Z Collecting pandas (from evaluate->-r requirements.txt (line 6))
2024-09-09T06:46:20.9868323Z   Downloading pandas-2.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (18 kB)
2024-09-09T06:46:21.1543660Z Collecting xxhash (from evaluate->-r requirements.txt (line 6))
2024-09-09T06:46:21.1701384Z   Downloading xxhash-3.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (12 kB)
2024-09-09T06:46:21.2043997Z Collecting multiprocess (from evaluate->-r requirements.txt (line 6))
2024-09-09T06:46:21.2214993Z   Downloading multiprocess-0.70.16-py38-none-any.whl.metadata (7.1 kB)
2024-09-09T06:46:21.3740064Z Collecting pyarrow>=15.0.0 (from datasets>=2.0.0->evaluate->-r requirements.txt (line 6))
2024-09-09T06:46:21.3894923Z   Downloading pyarrow-17.0.0-cp38-cp38-manylinux_2_28_x86_64.whl.metadata (3.3 kB)
2024-09-09T06:46:21.4233598Z Collecting fsspec (from torch->-r requirements.txt (line 5))
2024-09-09T06:46:21.4388523Z   Downloading fsspec-2024.6.1-py3-none-any.whl.metadata (11 kB)
2024-09-09T06:46:21.8820425Z Collecting aiohttp (from datasets>=2.0.0->evaluate->-r requirements.txt (line 6))
2024-09-09T06:46:21.8974714Z   Downloading aiohttp-3.10.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.5 kB)
2024-09-09T06:46:22.0519338Z Collecting charset-normalizer<4,>=2 (from requests->transformers==4.29.2->-r requirements.txt (line 2))
2024-09-09T06:46:22.0673561Z   Downloading charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB)
2024-09-09T06:46:22.0968531Z Collecting idna<4,>=2.5 (from requests->transformers==4.29.2->-r requirements.txt (line 2))
2024-09-09T06:46:22.1116279Z   Downloading idna-3.8-py3-none-any.whl.metadata (9.9 kB)
2024-09-09T06:46:22.1789833Z Collecting urllib3<3,>=1.21.1 (from requests->transformers==4.29.2->-r requirements.txt (line 2))
2024-09-09T06:46:22.1936912Z   Downloading urllib3-2.2.2-py3-none-any.whl.metadata (6.4 kB)
2024-09-09T06:46:22.2300172Z Collecting certifi>=2017.4.17 (from requests->transformers==4.29.2->-r requirements.txt (line 2))
2024-09-09T06:46:22.2443843Z   Downloading certifi-2024.8.30-py3-none-any.whl.metadata (2.2 kB)
2024-09-09T06:46:22.3169457Z Collecting MarkupSafe>=2.0 (from jinja2->torch->-r requirements.txt (line 5))
2024-09-09T06:46:22.3319677Z   Downloading MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.0 kB)
2024-09-09T06:46:22.3692220Z Collecting python-dateutil>=2.8.2 (from pandas->evaluate->-r requirements.txt (line 6))
2024-09-09T06:46:22.3899179Z   Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB)
2024-09-09T06:46:22.4558114Z Collecting pytz>=2020.1 (from pandas->evaluate->-r requirements.txt (line 6))
2024-09-09T06:46:22.4724019Z   Downloading pytz-2024.1-py2.py3-none-any.whl.metadata (22 kB)
2024-09-09T06:46:22.5017675Z Collecting tzdata>=2022.1 (from pandas->evaluate->-r requirements.txt (line 6))
2024-09-09T06:46:22.5165370Z   Downloading tzdata-2024.1-py2.py3-none-any.whl.metadata (1.4 kB)
2024-09-09T06:46:22.5544490Z Collecting mpmath<1.4,>=1.1.0 (from sympy->torch->-r requirements.txt (line 5))
2024-09-09T06:46:22.5690238Z   Downloading mpmath-1.3.0-py3-none-any.whl.metadata (8.6 kB)
2024-09-09T06:46:22.6080425Z Collecting aiohappyeyeballs>=2.3.0 (from aiohttp->datasets>=2.0.0->evaluate->-r requirements.txt (line 6))
2024-09-09T06:46:22.6226890Z   Downloading aiohappyeyeballs-2.4.0-py3-none-any.whl.metadata (5.9 kB)
2024-09-09T06:46:22.6464933Z Collecting aiosignal>=1.1.2 (from aiohttp->datasets>=2.0.0->evaluate->-r requirements.txt (line 6))
2024-09-09T06:46:22.6612667Z   Downloading aiosignal-1.3.1-py3-none-any.whl.metadata (4.0 kB)
2024-09-09T06:46:22.6947439Z Collecting attrs>=17.3.0 (from aiohttp->datasets>=2.0.0->evaluate->-r requirements.txt (line 6))
2024-09-09T06:46:22.7091726Z   Downloading attrs-24.2.0-py3-none-any.whl.metadata (11 kB)
2024-09-09T06:46:22.7905134Z Collecting frozenlist>=1.1.1 (from aiohttp->datasets>=2.0.0->evaluate->-r requirements.txt (line 6))
2024-09-09T06:46:22.8070747Z   Downloading frozenlist-1.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (12 kB)
2024-09-09T06:46:23.0291462Z Collecting multidict<7.0,>=4.5 (from aiohttp->datasets>=2.0.0->evaluate->-r requirements.txt (line 6))
2024-09-09T06:46:23.0442529Z   Downloading multidict-6.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.2 kB)
2024-09-09T06:46:23.3477896Z Collecting yarl<2.0,>=1.0 (from aiohttp->datasets>=2.0.0->evaluate->-r requirements.txt (line 6))
2024-09-09T06:46:23.3627916Z   Downloading yarl-1.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (46 kB)
2024-09-09T06:46:23.3910626Z Collecting async-timeout<5.0,>=4.0 (from aiohttp->datasets>=2.0.0->evaluate->-r requirements.txt (line 6))
2024-09-09T06:46:23.4056491Z   Downloading async_timeout-4.0.3-py3-none-any.whl.metadata (4.2 kB)
2024-09-09T06:46:23.4557348Z Collecting six>=1.5 (from python-dateutil>=2.8.2->pandas->evaluate->-r requirements.txt (line 6))
2024-09-09T06:46:23.4704674Z   Downloading six-1.16.0-py2.py3-none-any.whl.metadata (1.8 kB)
2024-09-09T06:46:23.5267090Z Downloading transformers-4.29.2-py3-none-any.whl (7.1 MB)
2024-09-09T06:46:23.6160329Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.1/7.1 MB 92.4 MB/s eta 0:00:00
2024-09-09T06:46:23.6312122Z Downloading einops-0.8.0-py3-none-any.whl (43 kB)
2024-09-09T06:46:23.6499817Z Downloading peft-0.12.0-py3-none-any.whl (296 kB)
2024-09-09T06:46:23.6692880Z Downloading omegaconf-2.3.0-py3-none-any.whl (79 kB)
2024-09-09T06:46:23.6923896Z Downloading torch-2.4.1-cp38-cp38-manylinux1_x86_64.whl (797.1 MB)
2024-09-09T06:46:30.1520835Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 797.1/797.1 MB 64.0 MB/s eta 0:00:00
2024-09-09T06:46:30.1690548Z Downloading nvidia_cublas_cu12-12.1.3.1-py3-none-manylinux1_x86_64.whl (410.6 MB)
2024-09-09T06:46:33.6761206Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 410.6/410.6 MB 91.0 MB/s eta 0:00:00
2024-09-09T06:46:33.6933631Z Downloading nvidia_cuda_cupti_cu12-12.1.105-py3-none-manylinux1_x86_64.whl (14.1 MB)
2024-09-09T06:46:33.7951948Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 14.1/14.1 MB 141.0 MB/s eta 0:00:00
2024-09-09T06:46:33.8132954Z Downloading nvidia_cuda_nvrtc_cu12-12.1.105-py3-none-manylinux1_x86_64.whl (23.7 MB)
2024-09-09T06:46:33.9985636Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 23.7/23.7 MB 128.7 MB/s eta 0:00:00
2024-09-09T06:46:34.0157461Z Downloading nvidia_cuda_runtime_cu12-12.1.105-py3-none-manylinux1_x86_64.whl (823 kB)
2024-09-09T06:46:34.0257584Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 823.6/823.6 kB 84.4 MB/s eta 0:00:00
2024-09-09T06:46:34.0429780Z Downloading nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl (664.8 MB)
2024-09-09T06:46:41.5746061Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 664.8/664.8 MB 45.4 MB/s eta 0:00:00
2024-09-09T06:46:41.5916751Z Downloading nvidia_cufft_cu12-11.0.2.54-py3-none-manylinux1_x86_64.whl (121.6 MB)
2024-09-09T06:46:42.3758069Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 121.6/121.6 MB 155.5 MB/s eta 0:00:00
2024-09-09T06:46:42.3933479Z Downloading nvidia_curand_cu12-10.3.2.106-py3-none-manylinux1_x86_64.whl (56.5 MB)
2024-09-09T06:46:42.7603274Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 56.5/56.5 MB 154.6 MB/s eta 0:00:00
2024-09-09T06:46:42.7779496Z Downloading nvidia_cusolver_cu12-11.4.5.107-py3-none-manylinux1_x86_64.whl (124.2 MB)
2024-09-09T06:46:43.5723028Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 124.2/124.2 MB 156.7 MB/s eta 0:00:00
2024-09-09T06:46:43.5901038Z Downloading nvidia_cusparse_cu12-12.1.0.106-py3-none-manylinux1_x86_64.whl (196.0 MB)
2024-09-09T06:46:44.8779814Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 196.0/196.0 MB 152.4 MB/s eta 0:00:00
2024-09-09T06:46:44.8994622Z Downloading nvidia_nccl_cu12-2.20.5-py3-none-manylinux2014_x86_64.whl (176.2 MB)
2024-09-09T06:46:46.0442318Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 176.2/176.2 MB 154.3 MB/s eta 0:00:00
2024-09-09T06:46:46.0603668Z Downloading nvidia_nvtx_cu12-12.1.105-py3-none-manylinux1_x86_64.whl (99 kB)
2024-09-09T06:46:46.0809289Z Downloading triton-3.0.0-1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (209.4 MB)
2024-09-09T06:46:47.4723373Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 209.4/209.4 MB 150.7 MB/s eta 0:00:00
2024-09-09T06:46:47.4878804Z Downloading evaluate-0.4.2-py3-none-any.whl (84 kB)
2024-09-09T06:46:47.5069578Z Downloading accelerate-0.34.2-py3-none-any.whl (324 kB)
2024-09-09T06:46:47.5259503Z Downloading datasets-2.21.0-py3-none-any.whl (527 kB)
2024-09-09T06:46:47.5336259Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 527.3/527.3 kB 57.3 MB/s eta 0:00:00
2024-09-09T06:46:47.5483691Z Downloading dill-0.3.8-py3-none-any.whl (116 kB)
2024-09-09T06:46:47.5661443Z Downloading fsspec-2024.6.1-py3-none-any.whl (177 kB)
2024-09-09T06:46:47.5841183Z Downloading huggingface_hub-0.24.6-py3-none-any.whl (417 kB)
2024-09-09T06:46:47.6053553Z Downloading numpy-1.24.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.3 MB)
2024-09-09T06:46:47.7347442Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.3/17.3 MB 135.2 MB/s eta 0:00:00
2024-09-09T06:46:47.7496643Z Downloading packaging-24.1-py3-none-any.whl (53 kB)
2024-09-09T06:46:47.7693040Z Downloading PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (746 kB)
2024-09-09T06:46:47.7781051Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 746.5/746.5 kB 84.8 MB/s eta 0:00:00
2024-09-09T06:46:47.7934140Z Downloading regex-2024.7.24-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (778 kB)
2024-09-09T06:46:47.8024433Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 778.9/778.9 kB 85.5 MB/s eta 0:00:00
2024-09-09T06:46:47.8172108Z Downloading requests-2.32.3-py3-none-any.whl (64 kB)
2024-09-09T06:46:47.8365766Z Downloading safetensors-0.4.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (436 kB)
2024-09-09T06:46:47.8575538Z Downloading tokenizers-0.13.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.8 MB)
2024-09-09T06:46:47.9142694Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.8/7.8 MB 140.4 MB/s eta 0:00:00
2024-09-09T06:46:47.9290356Z Downloading tqdm-4.66.5-py3-none-any.whl (78 kB)
2024-09-09T06:46:47.9469342Z Downloading typing_extensions-4.12.2-py3-none-any.whl (37 kB)
2024-09-09T06:46:47.9676049Z Downloading filelock-3.16.0-py3-none-any.whl (16 kB)
2024-09-09T06:46:47.9848388Z Downloading jinja2-3.1.4-py3-none-any.whl (133 kB)
2024-09-09T06:46:48.0032892Z Downloading multiprocess-0.70.16-py38-none-any.whl (132 kB)
2024-09-09T06:46:48.0227079Z Downloading networkx-3.1-py3-none-any.whl (2.1 MB)
2024-09-09T06:46:48.0392016Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/2.1 MB 136.3 MB/s eta 0:00:00
2024-09-09T06:46:48.0567371Z Downloading pandas-2.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.4 MB)
2024-09-09T06:46:48.1456931Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.4/12.4 MB 141.2 MB/s eta 0:00:00
2024-09-09T06:46:48.1609964Z Downloading psutil-6.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (290 kB)
2024-09-09T06:46:48.1829458Z Downloading sympy-1.13.2-py3-none-any.whl (6.2 MB)
2024-09-09T06:46:48.2282615Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.2/6.2 MB 145.1 MB/s eta 0:00:00
2024-09-09T06:46:48.2440158Z Downloading xxhash-3.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194 kB)
2024-09-09T06:46:48.2645914Z Downloading aiohttp-3.10.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB)
2024-09-09T06:46:48.2764497Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 113.9 MB/s eta 0:00:00
2024-09-09T06:46:48.2914412Z Downloading certifi-2024.8.30-py3-none-any.whl (167 kB)
2024-09-09T06:46:48.3103657Z Downloading charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (141 kB)
2024-09-09T06:46:48.3281429Z Downloading idna-3.8-py3-none-any.whl (66 kB)
2024-09-09T06:46:48.3454680Z Downloading MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26 kB)
2024-09-09T06:46:48.3643968Z Downloading mpmath-1.3.0-py3-none-any.whl (536 kB)
2024-09-09T06:46:48.3718458Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 536.2/536.2 kB 61.6 MB/s eta 0:00:00
2024-09-09T06:46:48.3890780Z Downloading pyarrow-17.0.0-cp38-cp38-manylinux_2_28_x86_64.whl (40.0 MB)
2024-09-09T06:46:48.6480664Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 40.0/40.0 MB 155.2 MB/s eta 0:00:00
2024-09-09T06:46:48.6640599Z Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB)
2024-09-09T06:46:48.6840222Z Downloading pytz-2024.1-py2.py3-none-any.whl (505 kB)
2024-09-09T06:46:48.7052721Z Downloading tzdata-2024.1-py2.py3-none-any.whl (345 kB)
2024-09-09T06:46:48.7247274Z Downloading urllib3-2.2.2-py3-none-any.whl (121 kB)
2024-09-09T06:46:48.7459369Z Downloading nvidia_nvjitlink_cu12-12.6.68-py3-none-manylinux2014_x86_64.whl (19.7 MB)
2024-09-09T06:46:48.8734506Z    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 19.7/19.7 MB 157.0 MB/s eta 0:00:00
2024-09-09T06:46:48.8883132Z Downloading aiohappyeyeballs-2.4.0-py3-none-any.whl (12 kB)
2024-09-09T06:46:48.9051849Z Downloading aiosignal-1.3.1-py3-none-any.whl (7.6 kB)
2024-09-09T06:46:48.9231038Z Downloading async_timeout-4.0.3-py3-none-any.whl (5.7 kB)
2024-09-09T06:46:48.9399167Z Downloading attrs-24.2.0-py3-none-any.whl (63 kB)
2024-09-09T06:46:48.9586721Z Downloading frozenlist-1.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (240 kB)
2024-09-09T06:46:48.9774482Z Downloading multidict-6.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (129 kB)
2024-09-09T06:46:48.9950415Z Downloading six-1.16.0-py2.py3-none-any.whl (11 kB)
2024-09-09T06:46:49.0134839Z Downloading yarl-1.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (460 kB)
2024-09-09T06:46:51.2495981Z Building wheels for collected packages: antlr4-python3-runtime
2024-09-09T06:46:51.2516430Z   Building wheel for antlr4-python3-runtime (pyproject.toml): started
2024-09-09T06:46:51.4982178Z   Building wheel for antlr4-python3-runtime (pyproject.toml): finished with status 'done'
2024-09-09T06:46:51.4991466Z   Created wheel for antlr4-python3-runtime: filename=antlr4_python3_runtime-4.9.3-py3-none-any.whl size=144553 sha256=6d2e44ed622233b1354891d31fc7e181a86941bda27bcec3f7e22d41f9dd82ed
2024-09-09T06:46:51.4993548Z   Stored in directory: /home/runner/.cache/pip/wheels/b1/a3/c2/6df046c09459b73cc9bb6c4401b0be6c47048baf9a1617c485
2024-09-09T06:46:51.5018049Z Successfully built antlr4-python3-runtime
2024-09-09T06:46:52.1546564Z Installing collected packages: tokenizers, pytz, mpmath, antlr4-python3-runtime, xxhash, urllib3, tzdata, typing-extensions, tqdm, sympy, six, safetensors, regex, pyyaml, psutil, packaging, 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, multidict, MarkupSafe, idna, fsspec, frozenlist, filelock, einops, dill, charset-normalizer, certifi, attrs, async-timeout, aiohappyeyeballs, yarl, triton, requests, python-dateutil, pyarrow, omegaconf, nvidia-cusparse-cu12, nvidia-cudnn-cu12, multiprocess, jinja2, aiosignal, pandas, nvidia-cusolver-cu12, huggingface-hub, aiohttp, transformers, torch, datasets, accelerate, peft, evaluate
2024-09-09T06:47:46.1354132Z Successfully installed MarkupSafe-2.1.5 accelerate-0.34.2 aiohappyeyeballs-2.4.0 aiohttp-3.10.5 aiosignal-1.3.1 antlr4-python3-runtime-4.9.3 async-timeout-4.0.3 attrs-24.2.0 certifi-2024.8.30 charset-normalizer-3.3.2 datasets-2.21.0 dill-0.3.8 einops-0.8.0 evaluate-0.4.2 filelock-3.16.0 frozenlist-1.4.1 fsspec-2024.6.1 huggingface-hub-0.24.6 idna-3.8 jinja2-3.1.4 mpmath-1.3.0 multidict-6.0.5 multiprocess-0.70.16 networkx-3.1 numpy-1.24.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-9.1.0.70 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.6.68 nvidia-nvtx-cu12-12.1.105 omegaconf-2.3.0 packaging-24.1 pandas-2.0.3 peft-0.12.0 psutil-6.0.0 pyarrow-17.0.0 python-dateutil-2.9.0.post0 pytz-2024.1 pyyaml-6.0.2 regex-2024.7.24 requests-2.32.3 safetensors-0.4.5 six-1.16.0 sympy-1.13.2 tokenizers-0.13.3 torch-2.4.1 tqdm-4.66.5 transformers-4.29.2 triton-3.0.0 typing-extensions-4.12.2 tzdata-2024.1 urllib3-2.2.2 xxhash-3.5.0 yarl-1.11.0
2024-09-09T06:47:47.4051347Z ##[group]Run python3 .github/workflows/example_huggingface_v4_28.py
2024-09-09T06:47:47.4052143Z �[36;1mpython3 .github/workflows/example_huggingface_v4_28.py�[0m
2024-09-09T06:47:47.4078444Z shell: /usr/bin/bash -e {0}
2024-09-09T06:47:47.4078799Z env:
2024-09-09T06:47:47.4079223Z   pythonLocation: /opt/hostedtoolcache/Python/3.8.18/x64
2024-09-09T06:47:47.4079943Z   LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.8.18/x64/lib
2024-09-09T06:47:47.4080408Z ##[endgroup]
2024-09-09T06:47:51.5606159Z /opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/site-packages/huggingface_hub/file_download.py:1150: FutureWarning: `resume_download` is deprecated and will be removed in version 1.0.0. Downloads always resume when possible. If you want to force a new download, use `force_download=True`.
2024-09-09T06:47:51.5609564Z   warnings.warn(
2024-09-09T06:47:51.5612286Z A new version of the following files was downloaded from https://huggingface.co/zhihan1996/DNABERT-2-117M:
2024-09-09T06:47:51.5614612Z - configuration_bert.py
2024-09-09T06:47:51.5616252Z . Make sure to double-check they do not contain any added malicious code. To avoid downloading new versions of the code file, you can pin a revision.
2024-09-09T06:47:52.1983088Z A new version of the following files was downloaded from https://huggingface.co/zhihan1996/DNABERT-2-117M:
2024-09-09T06:47:52.1984150Z - flash_attn_triton.py
2024-09-09T06:47:52.1985689Z . Make sure to double-check they do not contain any added malicious code. To avoid downloading new versions of the code file, you can pin a revision.
2024-09-09T06:47:52.4467079Z A new version of the following files was downloaded from https://huggingface.co/zhihan1996/DNABERT-2-117M:
2024-09-09T06:47:52.4469055Z - bert_padding.py
2024-09-09T06:47:52.4471368Z . Make sure to double-check they do not contain any added malicious code. To avoid downloading new versions of the code file, you can pin a revision.
2024-09-09T06:47:52.4473726Z A new version of the following files was downloaded from https://huggingface.co/zhihan1996/DNABERT-2-117M:
2024-09-09T06:47:52.4474979Z - bert_layers.py
2024-09-09T06:47:52.4475541Z - flash_attn_triton.py
2024-09-09T06:47:52.4476174Z - bert_padding.py
2024-09-09T06:47:52.4477749Z . Make sure to double-check they do not contain any added malicious code. To avoid downloading new versions of the code file, you can pin a revision.
2024-09-09T06:48:00.3505333Z /opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/site-packages/huggingface_hub/file_download.py:1150: FutureWarning: `resume_download` is deprecated and will be removed in version 1.0.0. Downloads always resume when possible. If you want to force a new download, use `force_download=True`.
2024-09-09T06:48:00.3507940Z   warnings.warn(
2024-09-09T06:48:00.3516506Z /opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/site-packages/transformers/modeling_utils.py:446: FutureWarning: You are using `torch.load` with `weights_only=False` (the current default value), which uses the default pickle module implicitly. It is possible to construct malicious pickle data which will execute arbitrary code during unpickling (See https://github.com/pytorch/pytorch/blob/main/SECURITY.md#untrusted-models for more details). In a future release, the default value for `weights_only` will be flipped to `True`. This limits the functions that could be executed during unpickling. Arbitrary objects will no longer be allowed to be loaded via this mode unless they are explicitly allowlisted by the user via `torch.serialization.add_safe_globals`. We recommend you start setting `weights_only=True` for any use case where you don't have full control of the loaded file. Please open an issue on GitHub for any issues related to this experimental feature.
2024-09-09T06:48:00.3524230Z   return torch.load(checkpoint_file, map_location="cpu")
2024-09-09T06:48:00.3527912Z Some weights of the model checkpoint at zhihan1996/DNABERT-2-117M were not used when initializing BertModel: ['cls.predictions.transform.LayerNorm.bias', 'cls.predictions.transform.dense.bias', 'cls.predictions.transform.LayerNorm.weight', 'cls.predictions.transform.dense.weight', 'cls.predictions.decoder.weight', 'cls.predictions.decoder.bias']
2024-09-09T06:48:00.3532486Z - This IS expected if you are initializing BertModel from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).
2024-09-09T06:48:00.3535875Z - This IS NOT expected if you are initializing BertModel from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).
2024-09-09T06:48:00.3539030Z Some weights of BertModel were not initialized from the model checkpoint at zhihan1996/DNABERT-2-117M and are newly initialized: ['bert.pooler.dense.weight', 'bert.pooler.dense.bias']
2024-09-09T06:48:00.3541582Z You should probably TRAIN this model on a down-stream task to be able to use it for predictions and inference.
2024-09-09T06:48:00.6324226Z Traceback (most recent call last):
2024-09-09T06:48:00.6336888Z   File ".github/workflows/example_huggingface_v4_28.py", line 9, in <module>
2024-09-09T06:48:00.6338032Z     hidden_states = model(inputs)[0] # [1, sequence_length, 768]
2024-09-09T06:48:00.6339997Z   File "/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/site-packages/torch/nn/modules/module.py", line 1553, in _wrapped_call_impl
2024-09-09T06:48:00.6341525Z     return self._call_impl(*args, **kwargs)
2024-09-09T06:48:00.6342966Z   File "/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/site-packages/torch/nn/modules/module.py", line 1562, in _call_impl
2024-09-09T06:48:00.6344286Z     return forward_call(*args, **kwargs)
2024-09-09T06:48:00.6346224Z   File "/home/runner/.cache/huggingface/modules/transformers_modules/zhihan1996/DNABERT-2-117M/d064dece8a8b41d9fb8729fbe3435278786931f1/bert_layers.py", line 609, in forward
2024-09-09T06:48:00.6347913Z     encoder_outputs = self.encoder(
2024-09-09T06:48:00.6349826Z   File "/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/site-packages/torch/nn/modules/module.py", line 1553, in _wrapped_call_impl
2024-09-09T06:48:00.6351212Z     return self._call_impl(*args, **kwargs)
2024-09-09T06:48:00.6352741Z   File "/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/site-packages/torch/nn/modules/module.py", line 1562, in _call_impl
2024-09-09T06:48:00.6354126Z     return forward_call(*args, **kwargs)
2024-09-09T06:48:00.6356001Z   File "/home/runner/.cache/huggingface/modules/transformers_modules/zhihan1996/DNABERT-2-117M/d064dece8a8b41d9fb8729fbe3435278786931f1/bert_layers.py", line 447, in forward
2024-09-09T06:48:00.6357614Z     hidden_states = layer_module(hidden_states,
2024-09-09T06:48:00.6359282Z   File "/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/site-packages/torch/nn/modules/module.py", line 1553, in _wrapped_call_impl
2024-09-09T06:48:00.6361114Z     return self._call_impl(*args, **kwargs)
2024-09-09T06:48:00.6362655Z   File "/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/site-packages/torch/nn/modules/module.py", line 1562, in _call_impl
2024-09-09T06:48:00.6364022Z     return forward_call(*args, **kwargs)
2024-09-09T06:48:00.6365922Z   File "/home/runner/.cache/huggingface/modules/transformers_modules/zhihan1996/DNABERT-2-117M/d064dece8a8b41d9fb8729fbe3435278786931f1/bert_layers.py", line 328, in forward
2024-09-09T06:48:00.6367720Z     attention_output = self.attention(hidden_states, cu_seqlens, seqlen,
2024-09-09T06:48:00.6369584Z   File "/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/site-packages/torch/nn/modules/module.py", line 1553, in _wrapped_call_impl
2024-09-09T06:48:00.6370949Z     return self._call_impl(*args, **kwargs)
2024-09-09T06:48:00.6372389Z   File "/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/site-packages/torch/nn/modules/module.py", line 1562, in _call_impl
2024-09-09T06:48:00.6374062Z     return forward_call(*args, **kwargs)
2024-09-09T06:48:00.6376466Z   File "/home/runner/.cache/huggingface/modules/transformers_modules/zhihan1996/DNABERT-2-117M/d064dece8a8b41d9fb8729fbe3435278786931f1/bert_layers.py", line 241, in forward
2024-09-09T06:48:00.6378605Z     self_output = self.self(input_tensor, cu_seqlens, max_s, indices,
2024-09-09T06:48:00.6380583Z   File "/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/site-packages/torch/nn/modules/module.py", line 1553, in _wrapped_call_impl
2024-09-09T06:48:00.6382050Z     return self._call_impl(*args, **kwargs)
2024-09-09T06:48:00.6383810Z   File "/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/site-packages/torch/nn/modules/module.py", line 1562, in _call_impl
2024-09-09T06:48:00.6385251Z     return forward_call(*args, **kwargs)
2024-09-09T06:48:00.6387243Z   File "/home/runner/.cache/huggingface/modules/transformers_modules/zhihan1996/DNABERT-2-117M/d064dece8a8b41d9fb8729fbe3435278786931f1/bert_layers.py", line 182, in forward
2024-09-09T06:48:00.6389336Z     attention = flash_attn_qkvpacked_func(qkv, bias)
2024-09-09T06:48:00.6391031Z   File "/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/site-packages/torch/autograd/function.py", line 574, in apply
2024-09-09T06:48:00.6392458Z     return super().apply(*args, **kwargs)  # type: ignore[misc]
2024-09-09T06:48:00.6393811Z   File "/home/runner/.cache/huggingface/modules/transformers_modules/zhihan1996/DNABERT-2-117M/d064dece8a8b41d9fb8729fbe3435278786931f1/flash_attn_triton.py", line 1021, in forward
2024-09-09T06:48:00.6394934Z     o, lse, ctx.softmax_scale = _flash_attn_forward(
2024-09-09T06:48:00.6396302Z   File "/home/runner/.cache/huggingface/modules/transformers_modules/zhihan1996/DNABERT-2-117M/d064dece8a8b41d9fb8729fbe3435278786931f1/flash_attn_triton.py", line 781, in _flash_attn_forward
2024-09-09T06:48:00.6397479Z     assert q.is_cuda and k.is_cuda and v.is_cuda
2024-09-09T06:48:00.6397922Z AssertionError
2024-09-09T06:48:01.0374956Z ##[error]Process completed with exit code 1.
2024-09-09T06:48:01.0463010Z Post job cleanup.
2024-09-09T06:48:01.1352861Z [command]/usr/bin/git version
2024-09-09T06:48:01.1389483Z git version 2.46.0
2024-09-09T06:48:01.1434352Z Temporarily overriding HOME='/home/runner/work/_temp/96bbb5ec-9f75-4741-afea-a408eb4fbb5e' before making global git config changes
2024-09-09T06:48:01.1436388Z Adding repository directory to the temporary git global config as a safe directory
2024-09-09T06:48:01.1438605Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/DNABERT_2/DNABERT_2
2024-09-09T06:48:01.1472032Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2024-09-09T06:48:01.1502683Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
2024-09-09T06:48:01.1743468Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2024-09-09T06:48:01.1765235Z http.https://github.com/.extraheader
2024-09-09T06:48:01.1775314Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2024-09-09T06:48:01.1806715Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
2024-09-09T06:48:01.2307258Z Cleaning up orphan processes

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant