mirror of
https://github.com/qurator-spk/sbb_binarization.git
synced 2025-06-09 20:29:57 +02:00
minimal CI setup
This commit is contained in:
parent
6543e74deb
commit
a24670edcc
3 changed files with 81 additions and 1 deletions
47
.circleci/config.yml
Normal file
47
.circleci/config.yml
Normal file
|
@ -0,0 +1,47 @@
|
|||
version: 2
|
||||
|
||||
jobs:
|
||||
|
||||
build-python36:
|
||||
docker:
|
||||
- image: python:3.6
|
||||
steps:
|
||||
- checkout
|
||||
- restore_cache:
|
||||
keys:
|
||||
- model-cache
|
||||
- run: make model
|
||||
- save_cache:
|
||||
key: model-cache
|
||||
paths:
|
||||
models.tar.gz
|
||||
models
|
||||
- run: make install
|
||||
- run: git submodule update --init
|
||||
- run: make test
|
||||
|
||||
build-python37:
|
||||
docker:
|
||||
- image: python:3.7
|
||||
steps:
|
||||
- checkout
|
||||
- restore_cache:
|
||||
keys:
|
||||
- model-cache
|
||||
- run: make model
|
||||
- save_cache:
|
||||
key: model-cache
|
||||
paths:
|
||||
models.tar.gz
|
||||
models
|
||||
- run: make install
|
||||
- run: git submodule update --init
|
||||
- run: make test
|
||||
|
||||
workflows:
|
||||
version: 2
|
||||
build:
|
||||
jobs:
|
||||
- build-python36
|
||||
- build-python37
|
||||
#- build-python38 # no tensorflow for python 3.8
|
34
Makefile
34
Makefile
|
@ -1,4 +1,36 @@
|
|||
all: install
|
||||
# Directory to store models
|
||||
MODEL_DIR = $(PWD)/models
|
||||
|
||||
# BEGIN-EVAL makefile-parser --make-help Makefile
|
||||
|
||||
help:
|
||||
@echo ""
|
||||
@echo " Targets"
|
||||
@echo ""
|
||||
@echo " install Install with pip"
|
||||
@echo " model Downloads the pre-trained models from qurator-data.de"
|
||||
@echo " test Run tests"
|
||||
@echo ""
|
||||
@echo " Variables"
|
||||
@echo ""
|
||||
@echo " MODEL_DIR Directory to store models"
|
||||
|
||||
# END-EVAL
|
||||
|
||||
# Install with pip
|
||||
install:
|
||||
pip install .
|
||||
|
||||
# Downloads the pre-trained models from qurator-data.de
|
||||
model: $(MODEL_DIR)/model1_bin.h5
|
||||
|
||||
$(MODEL_DIR)/model1_bin.h5: models.tar.gz
|
||||
tar xf models.tar.gz
|
||||
|
||||
models.tar.gz:
|
||||
wget 'https://qurator-data.de/sbb_binarization/models.tar.gz'
|
||||
|
||||
# Run tests
|
||||
test: model
|
||||
cd repo/assets/data/kant_aufklaerung_1784/data; ocrd-sbb-binarize -I OCR-D-IMG -O BIN -P model $(MODEL_DIR)
|
||||
cd repo/assets/data/kant_aufklaerung_1784-page-region/data; ocrd-sbb-binarize -I OCR-D-IMG -O BIN -P model $(MODEL_DIR) -P level-of-operation region
|
||||
|
|
1
setup.py
1
setup.py
|
@ -19,6 +19,7 @@ setup(
|
|||
license='Apache License 2.0',
|
||||
packages=find_packages(exclude=('tests', 'docs')),
|
||||
include_package_data=True,
|
||||
package_data={'': ['*.json', '*.yml', '*.yaml']},
|
||||
install_requires=install_requires,
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue