v0.28.0 Easy start and Arrays & Dictionaries support
Easy start update
DebiAI is now available as a standalone python module using pip.
As of now DebiAI can be installed with Docker or git for production. But now using pip you can switch between production and development more quickly by installing once DebiAI and running your script.
New command to install DebiAI as python package:
pip install debiai-gui
New command to run DebiAI:
debiai-gui start
New commands to launch the backend in development:
cd debiai/debiaiServer
pip install -r debiaiServer/requirements.txt
python3 run_debiai_server_dev.py
Arrays & Dictionaries support
Arrays and Dictionaries are now supported by DebiAI and can import by the python module or by the data providers.
Arrays and Dictionaries can't be used as columns for most widgets (apart from the Sample array
widget) but they can be unfolded from the dashboard. This allows you to explore the project's data whatever their dimension. For example, you can analyze the Woodscape images and obstacles data without having to create a second project.
Unfolded columns:
Columns can be unfolded recursively
Unfolding an array column will add more data to the project:
Mode details on the Array & Dictionaries unfolding documentation