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.
git clone https://github.com/intelec-ai/intelecai-installation.git
start_servers.bat
.stop_servers.bat
.wget https://github.com/intelec-ai/intelecai-installation/archive/master.zip
unzip intelecai-installation-master.zip
git clone https://github.com/intelec-ai/intelecai-installation.git
cd intelecai-installation
chmod +x *.sh
./start_servers.sh
../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 run docker service logs ky0p7rt281be
in the following case:
docker stack ps intelecai
to find out the task ID. Then execute docker inspect [taskID]
. For example,Please write to info@intelec.ai or fill this form to report a problem or give a feedback.