Skip to content

fixed init of positional embeddings #75

fixed init of positional embeddings

fixed init of positional embeddings #75

Workflow file for this run

name: Run Pytest
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run Pytest
env:
PYTHONPATH: .
run: |
pytest ./tests