Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 756 Bytes

README.md

File metadata and controls

37 lines (31 loc) · 756 Bytes

FaceDetectionApp

This application analyses face images and classifies into three categories, age by group, gender and ethnicity.

Prerequisites

First install Node.js in to your local system with command:

sudo apt install nodejs

Installation

  1. Clone the repo
    git clone https://github.com/akahardzzz0011/FaceDetectionApp.git
  2. Install node modules into ./server
    npm install
  3. Install node modules to client in ./client
     npm install
  4. Set environment variables in ./client/.env.local
    REACT_APP_SERVER_HOST_ADDRESS="http://localhost:3003/"
  5. Run server in ./server
    npm start
  6. Run client in ./client
     npm start