Skip to content

Add training guide and align text detection model training with recognition model #12

Add training guide and align text detection model training with recognition model

Add training guide and align text detection model training with recognition model #12

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- 'main'
- 'ci/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install pipenv
run: pip install pipenv
- name: Install dependencies
run: |
pipenv install --dev
pipenv run pip install torch torchvision
- name: Check formatting and types
run: pipenv run qa