A natural language query service of of Izenda Series 7
7.0K
Latest version: 3.11.2
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.
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:
Open command prompt at the same location with above docker-compose.yml Run the following command
docker-compose up
Open Izenda BI portal and set NLQ service IP address with port 8000 in settings tab.
Content type
Image
Digest
Size
1.1 GB
Last updated
almost 6 years ago
docker pull izendainc/izenda-ml-app:3.11.2