The Containerized Analytics Runtime and Management Engine. Carme is also a moon of Jupyter.
Carme is framework which enables data scientists to create and deploy AI applications. Carme attempts to take the pain out projects by facilitating common tasks relevant to the majority of analytics teams, such as:
- Use Jupyter, Jupyterlab, and Jupyterhub setup in a container-based environment.
- Simplified version control for data and models for increased reproducibility.
- Directed acyclic graph (DAG) creation, monitoring, and deployment for data pipelines.
- Setup of cluster and GPU infrastructure for scaling analyses.
- Starter notebooks for best-of-class deep learning analyses.
- Dash and Bokeh data application deployment.
Carme can improve workflows for individuals, teams, as well as data science classrooms.
Install Python3 via python.org or Miniconda or Anaconda and pip
using the recommended method for your platform.
The easiest way to get Carme with conda is with this script.
wget https://raw.githubusercontent.com/CarmeLabs/carme/master/scripts/get/get_carme_conda.sh
source get_carme_conda.sh
Alternately, you can use the following series of commands.
conda create --name carme-env --yes
source activate carme-env
conda install -c anaconda pip --yes
wget https://raw.githubusercontent.com/CarmeLabs/carme/master/requirements.txt
pip uninstall carme --yes
pip install -r requirements.txt
pip install git+https://github.com/CarmeLabs/carme.git
rm requirements.txt
Alternate, if using pure Python you can use Python virtual environments. This script will install carme.
wget https://raw.githubusercontent.com/CarmeLabs/carme/master/scripts/get/get_carme.sh
source get_carme.sh
Alternately, you can enter the commands below.
python3 -m venv carme-env
source carme-env/bin/activate
wget https://raw.githubusercontent.com/CarmeLabs/carme/master/requirements.txt
pip3 install -r requirements.txt
pip3 install git+https://github.com/CarmeLabs/carme.git
You will also need Docker in order to use Carme. Here is how you get Docker.
git clone https://github.com/CarmeLabs/carme
cd carme
conda create --name carme-env --yes
source activate carme-env
conda install -c anaconda pip --yes
pip uninstall carme --yes
pip install -r requirements.txt
pip install -e .
git clone https://github.com/CarmeLabs/carme
cd carme
python3 -m venv carme-env
source carme-env/bin/activate
pip3 install -r requirements.txt
pip3 install -e .
python setup.py test