This repository is intended to help people set up Intelec AI on their computer or server. Please note that Intelec AI works on Docker. Hence, please download and install docker before starting to set up Intelec AI.
Intelec AI is a zero code machine learning platform. It can help you automate building and deploying machine learning models.
- Download, install and start docker in your machine, if you haven't done it so far. You can install Docker Desktop for Windows following this link https://docs.docker.com/docker-for-windows/install/ and clicking on "Download from Docker Hub".
- Download the required files for Intelec AI set up from Github. You can do it either of the following 2 ways:
- download them as a zip file from here https://github.com/intelec-ai/intelecai-installation/archive/master.zip and unzip it (right click on the zip file and choose "Extract All...")
- or clone the git repository like this
git clone https://github.com/intelec-ai/intelecai-installation.git
- Increase the size of the shared memory by adding "default-shm-size": "2gb" into the Docker Engine settings like the following. Then click on the "Apply & restart" button and wait until docker is restarted.
- Start Intelec AI by clicking on
start_servers.bat
. - Visit http://localhost:7700 to open Intelec AI.
- You can stop Intelec AI by clicking on
stop_servers.bat
.
- Download, install and start docker in your machine, if you haven't done it so far. You can install Docker Desktop for Mac or Docker Community Edition for Linux (choose the appropriate linux distribution from the left hand side).
- In Linux, Manage docker as a non-root user
- Download the required files for Intelec AI set up from Github. You can do it either of the following 2 ways:
- download them as a zip file from here https://github.com/intelec-ai/intelecai-installation/archive/master.zip and unzip it. For example,
wget https://github.com/intelec-ai/intelecai-installation/archive/master.zip
unzip intelecai-installation-master.zip
- or clone the git repository like this
git clone https://github.com/intelec-ai/intelecai-installation.git
- download them as a zip file from here https://github.com/intelec-ai/intelecai-installation/archive/master.zip and unzip it. For example,
- Go to the downloaded folder and give 'executable' permission to the required files:
cd intelecai-installation
chmod +x *.sh
- Now you can start Intelec AI by running
./start_servers.sh
. - Visit http://localhost:7700 to open Intelec AI.
- You can stop Intelec AI by running
./stop_servers.sh
.
You need to have Linux operating system and an Nvidia GPU in order to add GPU support to your Intelec AI installation. If you have them, please go ahead and install Nvidia drivers and nvidia-container-toolkit. You will also need to set nvidia as default runtime in /etc/docker/daemon.json
:
{
"default-runtime":"nvidia",
"runtimes": {
"nvidia": {
"path": "nvidia-container-runtime",
"runtimeArgs": []
}
}
}
If you can't open the web page of Intelec AI, you can use following techniques to find out the problem:
-
If you have an older version of docker, please uninstall it, then install a newer one, hopefully the latest version.
-
Check whether all docker services of Intelec AI are running. "REPLICAS" column should show "1/1" for all services. If one of the services is "0/1", then check the log of that service to find out why:
docker service logs [service ID]
. For example, you will need to rundocker service logs ky0p7rt281be
in the following case:
- If a failed service has no logs, check why the service can't be started. You can do it by inspecting the corresponding docker task. First, run
docker stack ps intelecai
to find out the task ID. Then executedocker inspect [taskID]
. For example,
Please write to info@intelec.ai or fill this form to report a problem or give a feedback.