File size: 406 Bytes
02e3a67 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
name: Download Polyglot Models
on:
workflow_dispatch:
jobs:
download_models:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Polyglot
run: pip install polyglot
- name: Download Models
run: python setup.py |