Metadata-Version: 2.1
Name: green_face_recognition
Version: 0.1.2
Summary: HungLV package
Home-page: https://github.com/leviethung2103/greenlab_ai_utils
Author: Hung LV
Author-email: leviethung1280@gmail.com
License: MIT
Description: # [GreenLabs] - Face Recognition 
        
        This library written in MXNET framework. 
        
        **Author:** 			HungLV
        
        **Last Update:**    July 9, 2020
        
        **It features:**
        
        * Face Detection 
        * Extract Face Embedding
        * Search Face in database
        
        **Code:** 
        
        **Documentation:** 
        
        **User-Guide:** 
        
        **Model zoo:** 
        
        **Tech report:**
        
        ## What's new
        
        * `[Jul 9]` Initial version
        
        ## Installation 
        
        Make sure `conda` is installed
        
        ```
        pip install green-face-recognition
        ```
        
        ## Getting started
        Prepare the config file as `yaml` type. Take a look [this example](https://github.com/leviethung2103/face-recognition-baseline/blob/master/configs/server_api.yaml).
        
        **Show the list of models**
        
        ```python
        from face_recognition import models
        models.show_avai_models()
        ```
        
        **Load the models**
        
        ```python
        retina_model = models.build_model('retina-r50',config_path)
        arcface = models.build_model('arc-face',config_path)
        ```
        
        
        
        ## Appendix
        
        Generate the distributions for uploading to server
        
        ```
        python3 setup.py sdist bdist_wheel 
        ```
        
        Upload to server
        
        ```
        python3 -m twine upload --repository pypi dist/*
        ```
        
        ## Reference
        
        [1. RetinaFaceModel](https://github.com/deepinsight/insightface/tree/master/RetinaFace)
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
