increase dropout value for gpt 126m #838
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: autoconf | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
jobs: | |
unit_tests: | |
runs-on: ubuntu-latest | |
env: | |
working-directory: ./auto_configurator | |
steps: | |
- name: checkout the repo | |
uses: actions/checkout@v3 | |
- name: install dependencies | |
run: | | |
python -m pip install pytest | |
pip install -r requirements.txt | |
pip install requests-mock | |
- name: run unit tests | |
run: pytest | |
working-directory: ${{env.working-directory}} |