You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Creator is the core brain of the crane project, including the implementation of the crane's core algorithm and the algorithm evaluation module. It helps you better achieve the purpose of increasing efficiency and reducing costs through the iteration of algorithm optimization.
Motivation
Crane's algorithm module is deeply coupled with the crane code. The advantage of this is that the algorithm can be directly integrated into the entire crane system, and the algorithm will be updated after the crane is updated, but this also brings several disadvantages:
Unfriendly to algorithm developers: The current mainstream algorithm development process uses an interpreted language such as python as the default model development language, while the algorithm implementation language of crane is a compiled language such as golang, so algorithm engineers have a certain learning burden
The algorithm iteration of the crane system is prone to problems: the current algorithm verification is only a small-scale test case, without a large-scale offline algorithm evaluation, it is difficult to ensure that the algorithm can play a role in complex online applications
The algorithm iteration of crane is submerged in numerous commits, which is inconvenient for the maintenance and participation of community partners. Here, the crane version and the algorithm version are formed into a mapping relationship
In order to solve the above problems and allow more partners to participate in the crane resource optimization algorithm, we open source and maintain this repository, and work with the community to help the Finops best practice project - crane.
Usage
Jupyter Lab
You need install git and git lfs
$ git lfs clone https://github.com/gocrane/creator.git /data/creator
$ docker run -it -e GRANT_SUDO=yes --user root --shm-size=20g --ip 9.135.117.96 -p 8888:8888 -v /data:/data --name jupyter docker.io/xieydd/scipy-notebook:20220413 /bin/bash # set ip to your own
$ jupyter-lab build --app-dir=/tmp/estimator/
$ jupyter-lab --allow-root --app-dir=/tmp/estimator/jupyter-lab --notebook-dir=/docker/creator/
You can visit your jupyter lab server via https://9.135.117.96:8888/lab, you need keep ip with your docker run shell.
Version Matrix
The following table lists the most recent few versions of the project.
Creator Version
Crane Version
v0.1.0
v0.4.0
latest (master HEAD)
v0.4.0
About
Creator is the brain of crane project, contains crane core algorithm module and evaluation module.