Add MHSA module, Conformer block and encoder with relative PE #508
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: model_tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test-jobs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: "rwth-i6/i6_models" | |
path: "" | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
cache: 'pip' | |
- run: | | |
pip install pytest | |
pip install -r requirements.txt | |
pip install -r requirements_dev.txt | |
- name: Test Models | |
run: | | |
python -m pytest tests |