-
Notifications
You must be signed in to change notification settings - Fork 61
46 lines (46 loc) · 1.14 KB
/
examples-nata.yaml
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
43
44
45
46
name: nata-examples
on:
workflow_dispatch:
push:
branches:
- CM-9290-investigate-concurrent-futures-thread-pool-executor-performance-and-data-loss-problem
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
# - "3.10"
# - "3.9"
# - "3.8"
- "3.7"
- "3.6"
- "3.5"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -V
python -m pip install --upgrade pip
python -m pip install -U \
ipython \
nbconvert \
'tensorflow==1.15.2' \
numpy \
matplotlib \
keras \
scikit-learn \
'torch>=1' \
'fastai==1.0.38' \
dataclasses \
chainer \
mlflow
- name: Debug installed dependencies
run: |
python -m pip list
- name: Run
run: python pytorch/comet-pytorch-ddp-mnist-single-experiment.py