Skip to content

v0.28.0 Easy start and Arrays & Dictionaries support

Compare
Choose a tag to compare
@Tomansion Tomansion released this 31 Jul 14:04
· 79 commits to main since this release

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.

New columns types:
image

Unfolding menu:
image

Unfolded columns:
image
Columns can be unfolded recursively

Unfolding an array column will add more data to the project:
image

Mode details on the Array & Dictionaries unfolding documentation

New features

  • Columns menu on right click
    image

Improvements

  • Widgets no longer have a default column. The columns used to be wrong and broke the widget.
    image

  • Columns that aren't compatible with widget columns are now disable from the column selection menu
    image