Fixes
- Added header and footer to demo page
- Test and Demo pages supports more then one face on the image
- More friendly error message when session is expired
- More friendly error message when user uploads incorrect image
- Better autocomplete support
- Lots of fixes for roles and permissions system
Migration from 0.4.0
There are no breaking changes in 0.4.1, to migrate from 0.4.0 all you need is:
- Stop CompreFace with command:
docker-compose stop
- Download new version, extract it and replace old files with new
- Run
docker-compose up -d
How to install:
- Download CompreFace_0.4.1.zip archive or run:
wget -q -O tmp.zip 'https://github.com/exadel-inc/CompreFace/releases/download/v0.4.1/CompreFace_0.4.1.zip' && unzip tmp.zip && rm tmp.zip
- To start CompreFace run:
docker-compose up -d
- Open in your browser: http://localhost:8000/login
- To stop properly run:
docker-compose stop
- To start again run:
docker-compose start
More detail install guide(and Windows instructions) is on our readme page.
Assets
3
Features
- Replaced logistics regression with euclidean distance (much better recognition results for face collections with more then 100 faces)
- Added 1:1 recognition (verification)
- Test page for Face collections (ex models)
- Added quick demo to start page
- Added ability to not save photos to database (Probably will help with GDRP compliance)
Fixes
- Fixed security issue with storing token in local storage
- Lots of small fixes
Braking changes
We apologize for braking changes, we'll make our best to avoid them in future.
- Updated "Recognize faces from given image" rest endpoint. You need to add "/faces" in URL to make it work again.
- Unfortunately you need to drop DB from 0.3 version to make it work.
How to install:
- Download CompreFace_0.4.0.zip archive or run:
wget -q -O tmp.zip 'https://github.com/exadel-inc/CompreFace/releases/download/v0.4.0/CompreFace_0.4.0.zip' && unzip tmp.zip && rm tmp.zip
- To start CompreFace run:
docker-compose up -d
- Open in your browser: http://localhost:8000/login
- To stop properly run:
docker-compose stop
- To start again run:
docker-compose start
More detail install guide(and Windows instructions) is on our readme page.
Assets
3
pospielov
released this
CompreFace is the application for face recognition that can be integrated as a standalone server or deployed on cloud, and can be set up and used without machine learning knowledge.
We use one of the most popular face recognition methods based on deep neural networks, and provide a convenient API for model training and face recognition. We also provide a convenient roles system with which you can easily control who has access to the model.
Every user can create several models trained on different subsets of people.
How to install:
- Download
CompreFace_0.3.0.zip
archive - Extract it
- Run
docker-compose up -d
- To stop it properly run
docker-compose stop