项目作者: cschen1205

项目描述 :
Deep Learning Computer Vision Web Api in Spring
高级语言: Java
项目地址: git://github.com/cschen1205/spring-deep-vision-api.git
创建时间: 2018-04-03T03:48:32Z
项目社区:https://github.com/cschen1205/spring-deep-vision-api

开源协议:MIT License

下载


spring-deep-vision-api

Deep Learning Computer Vision Web Api in Spring

Usage

Build

Make sure you have Java 8 SDK and maven installed on your local machine.

If you are on Windows platform, Run make.ps1 in the project root (from Powershell) to build the server jar:

  1. ./make.ps1

If you are on a unix machine, run the following command:

  1. mvn -f pom.xml clean package -Plocal -U
  2. cp dp-machine-learning-server/target/dp-machine-learning-server.jar bin/dp-machine-learning-server.jar

Run backend

Run the following command from the root directory of the project:

  1. java -jar bin/dp-machine-learning-server.jar

This will start the backend server running at http://localhost:8081

To view the list of api available, the link is at http://localhost:8081/swagger-ui.html

Run frontend

Run the following command from the root directory of the project:

  1. cd dp-machine-learning-frontend
  2. npm install
  3. npm start

This will start the Vue frontend running at http://localhost:8088