-
Notifications
You must be signed in to change notification settings - Fork 24
42 lines (38 loc) · 1.16 KB
/
example-plots.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Example plots
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 8
matrix:
python-version: [3.7, 3.8]
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install numpy -U
pip install torch==1.4.0 -f https://download.pytorch.org/whl/torch_stable.html
pip install matplotlib
- name: Install package
run: python setup.py install
- name: Preparation
run: mkdir artifact
- name: Plot warmup period
run: |
cd artifact
python ../examples/plots/effective_warmup_period.py --output png
- name: Plot warmup schedule
run: |
cd artifact
python ../examples/plots/warmup_schedule.py --output png
- uses: actions/upload-artifact@v4
with:
name: artifact_${{ matrix.os }}_${{ matrix.python-version }}
path: artifact