Fix generate() by adding greedy decoding code for do_sample=False #515
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CD | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '.devcontainer/**' | |
- '.github/**' | |
- '.vscode/**' | |
- '.gitignore' | |
- '*.md' | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- '.devcontainer/**' | |
- '.github/**' | |
- '.vscode/**' | |
- '.gitignore' | |
- '*.md' | |
# Allow this workflow to be called from other workflows | |
workflow_call: | |
inputs: | |
# Requires at least one input to be valid, but in practice we don't need any | |
dummy: | |
type: string | |
required: false | |
permissions: | |
actions: write | |
contents: write | |
jobs: | |
checks: | |
name: Checks | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
- "3.7" | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: 1.4.0 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "poetry" | |
- name: Install dependencies | |
run: | | |
poetry lock --check | |
poetry install --with dev | |
- name: Check format | |
run: make check-format | |
- name: Unit test | |
run: make unit-test | |
- name: Acceptance test | |
run: make acceptance-test | |
# - name: Type check | |
# run: poetry run mypy transformer_lens | |
- name: Build check | |
run: poetry build |