Skip to content

analyze the alpaca results (max_new_tokens = 50) #470

analyze the alpaca results (max_new_tokens = 50)

analyze the alpaca results (max_new_tokens = 50) #470

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python tests
on:
push: {}
workflow_dispatch: {}
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: ["3.11.9"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
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 poetry
uses: snok/install-poetry@v1
- name: Install poetry extras
run: |
poetry install --all-extras
- name: Lint with Ruff
run: |
poetry run ruff check --output-format=github .
- uses: isort/isort-action@master
with:
configuration: --profile black --check-only --diff
- uses: psf/black@stable
with:
options: "--check --verbose"
jupyter: true
- name: Test
run: |
poetry run python ./scripts/test.py all -- -vvv