replace normality with anyascii (#40) #91
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
# This workflow will run unit tests | |
name: Benchmark Utterance Tags Corpus | |
on: | |
push: | |
branches: | |
- dev | |
workflow_dispatch: | |
jobs: | |
postag: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install System Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt install python3-dev | |
python -m pip install build wheel | |
- name: Install repo | |
run: | | |
pip install .[sklearn] | |
- name: Benchmark dataset | |
run: | | |
python scripts/benchmarks/utttags.py | |
- name: Commit benchmark | |
uses: EndBug/add-and-commit@v9 | |
with: | |
message: Brown benchmark | |
add: 'models/*.md --force' | |
pull: '--rebase --autostash' |