forked from karpathy/nanoGPT
-
Notifications
You must be signed in to change notification settings - Fork 18
28 lines (27 loc) · 1.05 KB
/
cpu-test-all-softmax.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: Install Then Test All Softmaxes
on: [push, pull_request]
jobs:
Install-And-Test-Softmax:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "${{ github.repository }} repository has been cloned to the runner."
- run: echo "Currently on ${{ github.ref }} branch"
- name: ls of directory
run: |
ls ${{ github.workspace }}
- name: Install CPU Dependencies
run: |
python3 -m venv venv
source venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
python3 -m pip install numpy transformers datasets tiktoken wandb tqdm tensorboard
python3 -m pip install -r requirements_cpu.txt
- name: Test all softmax variations
run: |
source venv/bin/activate
python3 data/shakespeare_char/prepare.py
cd tests
source test_all_softmax_variations_cpu.sh