Sign inSign up

izendainc/izenda-ml-app

By izendainc

Updated almost 6 years ago

A natural language query service of of Izenda Series 7

Image
0

7.0K

izendainc/izenda-ml-app repository overview

A natural language query service of Izenda Series 7

Latest version: 3.11.2

Supported OS

  • Linux Ubuntu 18.04 or above
  • Windows 10 /Server 2016 or higher

Prerequisite

  • Docker
Prerequisite
  • Make sure ports in docker file are free on the server.
How to run

This Docker image is an addition to the Izenda 7 Series BI platform and is deployed to leverage deep learning prediction models and natural language processing features. Also, please take note that this image is dependent on izendainc/nlp_solr image.

Step 1

Create a docker-compose.yml file with following content

version: '3.1'

services:
  ml_app:
	container_name: ml_app
	restart: always
	# build: .
	image: izendainc/izenda-ml-app:3.11.2
	# image: ml_app
	depends_on:
	  - nlp_solr
	ports:
	  - "8000:8000"
	volumes:
	  - logs:/usr/src/ml_services/logs
	  - guided-config:/usr/src/ml_services/app/config
	  - guided-db_config:/usr/src/ml_services/app/db_config
	  - nat-config:/usr/src/ml_services/app/nat_config
	  - nat-db_config:/usr/src/ml_services/app/nat_db_config
	  - prediction-config:/usr/src/ml_services/app/prediction/config
	  - prediction-models:/usr/src/ml_services/app/prediction/models
	  - solrdata2:/usr/src/ml_services/app/xml
  nlp_solr:
	container_name: nlp_solr
	image: izendainc/nlp_solr:3.11.2
	restart: always
	command: bin/solr start -f
	volumes:
	  - solrdata1:/opt/solr
	  - solrdata2:/var/solr/data
volumes:
  solrdata1:
  solrdata2:
  logs:
  guided-config:
  guided-db_config:
  nat-config:
  nat-db_config:
  prediction-config:
  prediction-models:
Step 2

Open command prompt at the same location with above docker-compose.yml Run the following command

docker-compose up
Step 3

Open Izenda BI portal and set NLQ service IP address with port 8000 in settings tab.

Note: To use and configure izenda NLQ service your license for those functionality should enabled.

Tag summary

Content type

Image

Digest

Size

1.1 GB

Last updated

almost 6 years ago

docker pull izendainc/izenda-ml-app:3.11.2