We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ea181f commit 95ead2aCopy full SHA for 95ead2a
.github/workflows/cpu-torch-latest.yml
@@ -37,6 +37,15 @@ jobs:
37
python -c "import torch; print('torch:', torch.__version__, torch)"
38
python -c "import torch; print('CUDA available:', torch.cuda.is_available())"
39
40
+ - name: Install transformers
41
+ run: |
42
+ git clone https://github.com/huggingface/transformers
43
+ cd transformers
44
+ # if needed switch to the last known good SHA until transformers@master is fixed
45
+ git checkout 6c3f168b3
46
+ git rev-parse --short HEAD
47
+ pip install .
48
+
49
- name: Install deepspeed
50
run: |
51
pip install .[dev,autotuning]
0 commit comments