From b6b5f63b6af3f7dbda76634512344f291f74f981 Mon Sep 17 00:00:00 2001 From: Petr Masopust Date: Tue, 20 Aug 2019 21:53:06 +0200 Subject: [PATCH] Add FAQ and git lfs info --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index e0fcf0d..37c8b28 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,10 @@ Mass faces identification and recognition in images. +**You must have git lfs installed before cloning this repo !** + +Because of github stupid git lfs pricing there is also [alternative mirror](https://gitea.ehp.cz/Aprar/faceserver) with copy of this repository. + ## Installation The simplest complete installation is docker compose: ``docker-compose up -d`` in root directory. For detailed installation instructions look at [API server](apiserver/README.md) or [vectorizer](vectorizer/README.md) readme files. @@ -67,6 +71,19 @@ Only API server listen to customer requests, the rest are internal components an * Face alignment between identification and recognition * Web user interface (help needed !) +## FAQ + +* Unable to connect to vectorizer or _pickle.UnpicklingError: invalid load key, 'v'. +Missing model data - probably cloned repository without git lfs. +To download and use pretrained models in already cloned repository: +```shell script +git lfs install +git lfs checkout +git lfs fetch + +docker-compose build +``` + ## Based on Github repositories: