Skip to content

nata-examples

nata-examples #7

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