Hybrid Optimization for Time Series (HOTS)
HOTS solves problems presented as time series using machine learning and optimization methods.
The library supports multiple resource related problems (placement, allocation), presented as one or more metrics.
HOTS works on any platform with Python 3.8 and up.
The dev Python version must be used to install the package (for example install the package python3.10-dev in order to use Python 3.10).
A solver needs to be installed for using HOTS. By default, GLPK is installed with HOTS, but the user needs to install the following packages before using HOTS :
- libglpk-dev
- glpk-utils
A Makefile is provided, which creates a virtual environment and install HOTS. You can do :
make
The application can be used simply by running :
hots /path/to/data/folder
Make sure to activate the virtual environment before running HOTS with :
source venv/bin/activate
Some parameters can be defined with the hots
command, such as :
k
: the number of clusters used in clustering ;tau
: the window size during the loop process ;param
: a specific parameter file to use.
All the CLI options are found running the help
option :
hots --help
More parameters can be defined through a .JSON
file, for which an example is provided in the tests
folder. See the documentation, section User manual
, for more details about all the parameters.
Note that a test data is provided within the package, so you can easily test the installation with :
hots /tests/data/generated_7
A Docker container can be easily built for running hots
, using the Dockerfile
provided in the package.
If you are not used to Docker, you can follow the installation guideline here : https://docs.docker.com/engine/install/, and the post-install process here (Linux) : https://docs.docker.com/engine/install/linux-postinstall/.
As soon as Docker is setup, you can run the following commands (being at the root of the directory, with the Dockerfile) :
docker build -t hots .
Once the container is created, you can run it, by running the following :
docker run -it hots /bin/bash
You will be prompted to a new shell, in which you can follow the same steps as for Python.
Authors:
- Etienne Leclercq - Software design, lead developer
- Jonathan Rivalan - Product owner, Lead designer
- Marco Mariani
- Gilles Lenfant
- Soobash Daiboo
- Kang Du
- Amaury Sauret
- SMILE R&D
As HOTS was created during a PhD, credits have to be given to academic supervisors, Céline Rouveirol and Frédéric Roupin, involved in the algorithm thinking.
This software is provided under the terms of the MIT license you can read in the LICENSE.txt
file of the repository or the package.