-
Notifications
You must be signed in to change notification settings - Fork 3
64 lines (58 loc) · 1.72 KB
/
train_workflow.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Training Workflow
on:
workflow_dispatch:
inputs:
script_content:
description: 'Content of train.py'
required: true
type: string
jobs:
train:
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
# Cache pip packages
- name: Cache pip packages
uses: actions/cache@v3
id: pip-cache
with:
path: |
~/.cache/pip
key: ${{ runner.os }}-pip-v1
restore-keys: |
${{ runner.os }}-pip-
# Cache PyTorch specific directories
- name: Cache PyTorch
uses: actions/cache@v3
id: pytorch-cache
with:
path: |
~/.cache/torch
~/.cache/torch_extensions
~/.local/lib/python*/site-packages/torch
~/.local/lib/python*/site-packages/torch_*
key: ${{ runner.os }}-pytorch-v1
restore-keys: |
${{ runner.os }}-pytorch-
# Install dependencies
- name: Install dependencies
run: |
pip install torch numpy
# Print versions for debugging
python -c "import torch; print(f'PyTorch version: {torch.__version__}')"
python -c "import numpy; print(f'NumPy version: {numpy.__version__}')"
- name: Create and run training script
run: |
echo "${{ inputs.script_content }}" > train.py
echo "Content of train.py:"
cat train.py
python train.py > training.log 2>&1
- name: Upload logs
uses: actions/upload-artifact@v3
if: always()
with:
name: training-logs
path: training.log