Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zenml-io/cengine
Core Engine CLI/ Python SDK/ Python API Client repository
https://github.com/zenml-io/cengine
Last synced: about 2 months ago
JSON representation
Core Engine CLI/ Python SDK/ Python API Client repository
- Host: GitHub
- URL: https://github.com/zenml-io/cengine
- Owner: zenml-io
- License: apache-2.0
- Created: 2020-10-13T11:23:10.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-11-13T07:50:09.000Z (about 4 years ago)
- Last Synced: 2023-03-03T21:14:21.797Z (almost 2 years ago)
- Language: Python
- Size: 447 KB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
maiot Core Engine
#### Automate ML with repeatable pipelines
Hello there! This is the repository for the maiot Core Engine. If you would like to see the published
pip package can be found [here](https://pypi.org/project/cengine).The Core Engine is a platform that lets you create machine learning pipelines for production use-cases.
Our [website](https://maiot.io) gives an overview of the features of the Core Engine and if you find
it interesting, you can sign up for an early access [here](https://maiot.io/#early-access). You can also learn
more about how to use the Core Engine [here](https://docs.maiot.io).## How to install from pip
You can easily install `cengine` using pip:
```bash
pip install cengine
```## How to install from source
On the other hand, if you like to install from the source directly, you can follow:
```bash
make venv
source venv/bin/activate
make install
make build
```## Known errors in installation
If you run into a `psutil` error, please install the python-dev libraries:```bash
sudo apt update
sudo apt install python3.x-dev
```## Enabling auto completion on the CLI
For Bash, add this to ~/.bashrc:
```bash
eval "$(_CENGINE_COMPLETE=source_bash cengine)"
```For Zsh, add this to ~/.zshrc:
```bash
eval "$(_CENGINE_COMPLETE=source_zsh cengine)"
```For Fish, add this to ~/.config/fish/completions/foo-bar.fish:
```bash
eval (env _CENGINE_COMPLETE=source_fish cengine)
```## Authors
* **maiot GmbH** - [maiot.io](https://maiot.io) - [maiot Docs](https://docs.maiot.io)