<style></style>

<script>
jQuery(function($) {
    // Function to force repaint/reflow
    function forceRepaint() {
        document.body.style.display = 'none';
        document.body.offsetHeight; // Force reflow
        document.body.style.display = 'block';
        window.dispatchEvent(new Event('resize'));
    }

    function closeAllOffCanvas(exceptID = null) {
        let anyOpen = false; // Track if another Off-Canvas remains open

        $(".e-off-canvas").each(function() {
            let canvasID = $(this).attr("id");

            if (!exceptID || canvasID !== exceptID) {
                $(this).removeClass("e-off-canvas-visible")
                       .addClass("e-off-canvas-hidden")
                       .attr("aria-hidden", "true")
                       .css({
                           "z-index": "10",
                           "visibility": "hidden",
                           "opacity": "0"
                       });

                // Full removal delay set to 0ms
                setTimeout(() => {
                    if ($(this).attr("aria-hidden") === "true") {
                        $(this).css("display", "none");
                    }
                }, 0);
            } else {
                anyOpen = true; // At least one Off-Canvas is still open
            }
        });

        // Remove white background delay set to 0ms
        setTimeout(() => {
            if (!$(".e-off-canvas-visible").length) {
                $("body").removeClass("off-canvas-active");
                forceRepaint(); // Force repaint when closing all
            }
        }, 0);
    }

    function openOffCanvas(targetID) {
        let targetCanvas = $(targetID);

        if (targetCanvas.length) {
            // Close all others EXCEPT the one we're opening
            closeAllOffCanvas(targetID);

            // Open immediately with delay set to 0ms
            setTimeout(() => {
                targetCanvas.removeClass("e-off-canvas-hidden")
                            .addClass("e-off-canvas-visible")
                            .attr("aria-hidden", "false")
                            .css({
                                "z-index": "9999",
                                "visibility": "visible",
                                "opacity": "1",
                                "display": "block"
                            });

                // Ensure the White Background Stays Visible
                $("body").addClass("off-canvas-active");
                
                // Force repaint after opening
                forceRepaint();

            }, 0);
        }
    }

    // Decode Base64
    function decodeBase64(str) {
        try {
            return atob(str);
        } catch (e) {
            return null;
        }
    }

    // Handle Elementor Off-Canvas OPEN clicks
    $(document).on('click', '[href*="elementor-action%3Aaction%3Doff_canvas%3Aopen"]', function(event) {
        event.preventDefault();
        let href = decodeURIComponent($(this).attr("href"));

        let base64Match = href.match(/settings=([^&]+)/);
        if (base64Match) {
            let decodedSettings = decodeBase64(base64Match[1]);

            try {
                let settingsObj = JSON.parse(decodedSettings);
                if (settingsObj.id) {
                    let offCanvasID = "#off-canvas-" + settingsObj.id;
                    openOffCanvas(offCanvasID);
                }
            } catch (e) {}
        }
    });

    // Handle Elementor Off-Canvas CLOSE clicks
    $(document).on('click', '[href*="elementor-action%3Aaction%3Doff_canvas%3Aclose"]', function(event) {
        event.preventDefault();
        closeAllOffCanvas();
    });

    // Ensure all Off-Canvas elements start hidden
    $(".e-off-canvas").each(function() {
        $(this).attr("aria-hidden", "true").css({
            "z-index": "10",
            "visibility": "hidden",
            "opacity": "0",
            "display": "none"
        });
    });

    // Handle same-page anchor link clicks
    $(document).on('click', 'a[href*="#"]', function(event) {
        let href = $(this).attr('href');
        if (href.indexOf('#') !== -1) {
            // Close all off-canvas widgets when an anchor link is clicked
            closeAllOffCanvas();
        }
    });

});
</script>
				
			
Vier Anwendungsfälle für generative KI im Mittelstand

ARIC Insights | From customer service to intelligent image recognition

This post has been translated by an AI and may contain translational inaccuracies.

Note: This event is in the past. You can now find all events in our KI event calendar.


 

Online impulse on March 19, 2024 at 4 p.m.

From customer service and knowledge management to intelligent image recognition – the potential applications of generative AI in a business context are at least as diverse as they are challenging.

In this session, Michael Koch and Daniel Blümlein will present four sought-after use cases from their business practice. Participants will also be able to share examples of the use of generative AI in their company and discuss them.

This insight is particularly interesting for CEOs (especially CIOs of medium-sized companies), innovation managers and digital transformation managers.

Our speakers

Michael Koch, ARIC Board of Directors
Michael Koch

Michael Koch is Business Director for Artificial Intelligence at Lufthansa Industry Solutions, member of the ARIC board, speaker and consultant. His motto: AI in practice – easy to use, secure and trustworthy. He has been involved in the provision of data-driven solutions and AI applications for over 15 years and knows how AI can be used in everyday life.

Here you can find an interview with Michael Koch.

 

 

 

 

 

Daniel Blümlein from LHIND
Daniel Blümlein

Daniel Blümlein is a developer and consultant in the field of artificial intelligence. Daniel Blümlein has been working in the fields of data science and artificial intelligence since 2017. Through his dual studies in business informatics, he was able to apply his knowledge on a freelance basis at various industrial companies. Among other things, he implemented various spare parts forecasts and automated incoming goods inspections. More recently, he has mainly focused on large language models and works at Lufthansa Industry Solutions as a consultant and developer.

 


This format is offered within the framework of EDIH Hamburg, with support from the EU and IFB Hamburg. #EDIHHamburg

It is also part of the ARIC Insights – Generative AI series.