Skip to content

Commit

Permalink
add github action
Browse files Browse the repository at this point in the history
Signed-off-by: Niels Bantilan <[email protected]>
  • Loading branch information
cosmicBboy committed Jun 11, 2024
1 parent 5647a50 commit fe67deb
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/fine_tune.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Run fine-tuning

# trigger when push on main
on:
push:
branches:
- main

jobs:
fine-tune-model:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
- name: Install dependencies
run: pip install unionai
- name: Run fine-tuning
run: bash fine_tune.sh
6 changes: 6 additions & 0 deletions fine_tune.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#/usr/bin bash

unionai run --copy-all --remote \
llm_edge_finetuning/workflows_news.py train_workflow \
--config config/phi_3_mini_128k_instruct.json \
--categories '["science", "technology", "business"]'

0 comments on commit fe67deb

Please sign in to comment.