From a8f67f0a3412df7ccd514efe6f1aa83a594abadb Mon Sep 17 00:00:00 2001 From: Konstantin Baierer Date: Mon, 2 Dec 2019 13:38:36 +0100 Subject: [PATCH] :memo: readme: downloading models --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 99a92d8..6158a8b 100644 --- a/README.md +++ b/README.md @@ -21,11 +21,22 @@ pip install ocrd_calamari ## Install models +Download standard models: + ``` wget https://github.com/Calamari-OCR/calamari_models/archive/master.zip unzip master.zip ``` +Download models trained on GT4HistOCR data: + +``` +wget https://file.spk-berlin.de:8443/calamari-models/GT4HistOCR/model.tar.xz +mkdir gt4hist-calamari +cd gt4hist-calamari +tar xf ../model.tar.xz +``` + ## Example Usage ~~~