feat: ✨ PT fast small checkpoint #2925
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: scripts | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: main | |
jobs: | |
test-analyze: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python: ["3.8", "3.9"] | |
framework: [tensorflow, pytorch] | |
steps: | |
- if: matrix.os == 'macos-latest' | |
name: Install MacOS prerequisites | |
run: brew install cairo pango gdk-pixbuf libffi | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
architecture: x64 | |
- if: matrix.framework == 'tensorflow' | |
name: Cache python modules (TF) | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pkg-deps-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }} | |
- if: matrix.framework == 'pytorch' | |
name: Cache python modules (PT) | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pkg-deps-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }} | |
- if: matrix.framework == 'tensorflow' | |
name: Install package (TF) | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e .[tf] --upgrade | |
- if: matrix.framework == 'pytorch' | |
name: Install package (PT) | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e .[torch] --upgrade | |
- name: Run analysis script | |
run: | | |
wget https://github.com/mindee/doctr/releases/download/v0.1.0/sample.pdf | |
python scripts/analyze.py sample.pdf --noblock | |
test-detect-text: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python: ["3.8", "3.9"] | |
framework: [tensorflow, pytorch] | |
steps: | |
- if: matrix.os == 'macos-latest' | |
name: Install MacOS prerequisites | |
run: brew install cairo pango gdk-pixbuf libffi | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
architecture: x64 | |
- if: matrix.framework == 'tensorflow' | |
name: Cache python modules (TF) | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pkg-deps-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }} | |
- if: matrix.framework == 'pytorch' | |
name: Cache python modules (PT) | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pkg-deps-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }} | |
- if: matrix.framework == 'tensorflow' | |
name: Install package (TF) | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e .[tf] --upgrade | |
- if: matrix.framework == 'pytorch' | |
name: Install package (PT) | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e .[torch] --upgrade | |
- name: Run detection script | |
run: | | |
wget https://github.com/mindee/doctr/releases/download/v0.1.0/sample.pdf | |
python scripts/detect_text.py sample.pdf | |
test-evaluate: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python: ["3.8", "3.9"] | |
framework: [tensorflow, pytorch] | |
steps: | |
- if: matrix.os == 'macos-latest' | |
name: Install MacOS prerequisites | |
run: brew install cairo pango gdk-pixbuf libffi | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
architecture: x64 | |
- if: matrix.framework == 'tensorflow' | |
name: Cache python modules (TF) | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pkg-deps-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }} | |
- if: matrix.framework == 'pytorch' | |
name: Cache python modules (PT) | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pkg-deps-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }} | |
- if: matrix.framework == 'tensorflow' | |
name: Install package (TF) | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e .[tf] --upgrade | |
- if: matrix.framework == 'pytorch' | |
name: Install package (PT) | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e .[torch] --upgrade | |
- name: Run evaluation script | |
run: | | |
python scripts/evaluate.py db_resnet50 crnn_vgg16_bn --samples 10 | |
python scripts/evaluate_kie.py db_resnet50 crnn_vgg16_bn --samples 10 | |
test-collectenv: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python: ["3.8", "3.9"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
architecture: x64 | |
- name: Run environment collection script | |
run: python scripts/collect_env.py |