Skip to content

chore: readme update#6878

Merged
AlexanderBarabanov merged 17 commits into
developfrom
barabanov/readme-upd
Jun 22, 2026
Merged

chore: readme update#6878
AlexanderBarabanov merged 17 commits into
developfrom
barabanov/readme-upd

Conversation

@AlexanderBarabanov

Copy link
Copy Markdown
Contributor

Readme update.

Signed-off-by: Barabanov, Alexander <alexander.barabanov@intel.com>
Signed-off-by: Barabanov, Alexander <alexander.barabanov@intel.com>
Signed-off-by: Barabanov, Alexander <alexander.barabanov@intel.com>
Signed-off-by: Barabanov, Alexander <alexander.barabanov@intel.com>
Signed-off-by: Barabanov, Alexander <alexander.barabanov@intel.com>
Signed-off-by: Barabanov, Alexander <alexander.barabanov@intel.com>
Signed-off-by: Barabanov, Alexander <alexander.barabanov@intel.com>
Signed-off-by: Barabanov, Alexander <alexander.barabanov@intel.com>
Signed-off-by: Barabanov, Alexander <alexander.barabanov@intel.com>
Signed-off-by: Barabanov, Alexander <alexander.barabanov@intel.com>
Signed-off-by: Barabanov, Alexander <alexander.barabanov@intel.com>
@github-actions github-actions Bot added the DOC Improvements or additions to documentation label Jun 19, 2026
Signed-off-by: Barabanov, Alexander <alexander.barabanov@intel.com>
Signed-off-by: Barabanov, Alexander <alexander.barabanov@intel.com>
@AlexanderBarabanov AlexanderBarabanov marked this pull request as ready for review June 22, 2026 07:54
Copilot AI review requested due to automatic review settings June 22, 2026 07:54

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates the repository root README to reflect the Geti™ project structure (application + getitune library), modernize quick-start guidance, and refresh badges/links to the correct documentation and ecosystem resources.

Changes:

  • Reworked the README intro and navigation links to point to Geti™ and getitune documentation.
  • Added “Quick start” sections for Geti™ (Windows/container/from source) and getitune (PyPI install + minimal example).
  • Restructured Key Features into collapsible sections and refreshed community/ecosystem links.

Comment thread README.md Outdated
Comment thread README.md Outdated
Comment thread README.md Outdated
AlexanderBarabanov and others added 3 commits June 22, 2026 09:44
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Comment thread README.md Outdated
[Documentation](#documentation) •
[Community](#community)
[Geti™ documentation](https://docs.geti.intel.com/) •
[`getitune` documentation](https://open-edge-platform.github.io/geti/latest/index.html)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This documentation is outdated, we don't have getitune documentation right now. Could you remove it?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead there could be a link to README

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done in 6ca30f2

Comment thread README.md Outdated
# Initialize and train using a bundled recipe and dataset
engine = create_engine(
data="tests/assets/classification_cifar10",
model="src/getitune/recipe/classification/multi_class_cls/efficientnet_b0.yaml",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since a user may install it via pypi, the recipe path will be hard to access. I would rather to provide here an example with model name.

from getitune.utils import list_models
from getitune.engine import create_engine
from getitune.types import ExportFormat, ExportPrecision

# List all available models names
all_models = list_models()

# create Engine
engine = create_engine(
    model="efficientnet_b0",
    data="/path/to/dataset",
    work_dir="./my_workspace",
)

# train a model
engine.train()

# Export to FP32 OpenVINO IR (default)
ov_ir_path = engine.export()

# validate engine 
ov_engine = create_engine(
    model="/path/to/exported_model.xml",
    data="/path/to/dataset",
)
ov_engine.test() # test on test subset
ov_engine.predict() # predict on test subset

# optimize a model to int8 quantized version via NNCF tool
ov_engine.optimize()

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done in 6ca30f2

Signed-off-by: Barabanov, Alexander <alexander.barabanov@intel.com>

@Radwan-Ibrahim Radwan-Ibrahim left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thanks Alexander!

@AlexanderBarabanov AlexanderBarabanov added this pull request to the merge queue Jun 22, 2026
Merged via the queue into develop with commit ea150b7 Jun 22, 2026
33 checks passed
@AlexanderBarabanov AlexanderBarabanov deleted the barabanov/readme-upd branch June 22, 2026 10:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

DOC Improvements or additions to documentation

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants