Skip to main content
Question

ML Workbench Examples / GitHub Repositories

  • September 22, 2026
  • 2 replies
  • 16 views

Ayse Nurperi Ozgen
Level 8
Forum|alt.badge.img+14

I’m currently exploring the Celonis Machine Learning Workbench and looking for some practical examples to learn from.

I found the official PyCelonis Examples repository on GitHub, which is very helpful for understanding PyCelonis and interacting with Celonis resources. However, I was wondering whether there are also repositories, sample notebooks, or templates focused more on end-to-end ML Workbench use cases.

I’m particularly interested in Supply Chain examples such as:

  • Late/on-time delivery prediction
  • Supplier or procurement risk prediction
  • Inventory-related predictions
  • Lead time prediction
  • Bottleneck or process outcome prediction

I also came across the older O2C – On-Time Delivery Prediction example, but it seems to rely on the legacy celonis_ml package.

Does anyone know of any up-to-date PyCelonis 2.x / ML Workbench GitHub repositories, Jupyter notebooks, or sample projects that could be used as a starting point?

And if you have built something similar yourself and can share the general approach or architecture, I’d love to learn from it. 😊

Thanks in advance!

2 replies

abhishek.chatu14
Level 12
Forum|alt.badge.img+8

This is the approach that I would follow for the same
Β 

  1. Define prediction point β€” only use information available at that point in time.
  2. Feature engineering β€” supplier performance, lead time, PO changes, quantity, material, plant, etc.
  3. Export data to ML Workbench using PyCelonisΒ 
    • PyCelonisΒ Documentation
  4. Train and validate ML model β€” start with Logistic Regression / Random Forest / XGBoost.
  5. Generate predictions for current/open POs.
  6. Bring predictions back into Celonis as risk scores/predicted outcomes.
  7. Use predictions operationally β€” dashboards, Action Flows, alerts/interventions.
  8. Measure impact β€” compare predicted-risk cases, interventions, and actual outcomes.
  9. Supply-chain ML examples to use as modelling references:
    Supply Chain Analytics β€” Late Delivery / Shipment Duration Prediction
    Supply Chain Late Delivery Prediction
    Late Delivery Prediction β€” ML/API Example

Ayse Nurperi Ozgen
Level 8
Forum|alt.badge.img+14

Thank you so much for the detailed explanation! This is exactly what I was looking for.Β 

Really appreciate you taking the time to share this!