Close Menu
Ztoog
    What's Hot
    Science

    How AI could help scientists spot ‘ultra-emission’ methane plumes faster—from space

    Gadgets

    Amazon has Citizen watches on deep discount just in time for Father’s Day

    Science

    Superconductor hopes dashed after journal retracts ‘red matter’ study

    Important Pages:
    • About Us
    • Contact us
    • Privacy Policy
    • Terms & Conditions
    Facebook X (Twitter) Instagram Pinterest
    Facebook X (Twitter) Instagram Pinterest
    Ztoog
    • Home
    • The Future

      How I Turn Unstructured PDFs into Revenue-Ready Spreadsheets

      Is it the best tool for 2025?

      The clocks that helped define time from London’s Royal Observatory

      Summer Movies Are Here, and So Are the New Popcorn Buckets

      India-Pak conflict: Pak appoints ISI chief, appointment comes in backdrop of the Pahalgam attack

    • Technology

      Ensure Hard Work Is Recognized With These 3 Steps

      Cicada map 2025: Where will Brood XIV cicadas emerge this spring?

      Is Duolingo the face of an AI jobs crisis?

      The US DOD transfers its AI-based Open Price Exploration for National Security program to nonprofit Critical Minerals Forum to boost Western supply deals (Ernest Scheyder/Reuters)

      The more Google kills Fitbit, the more I want a Fitbit Sense 3

    • Gadgets

      Maono Caster G1 Neo & PD200X Review: Budget Streaming Gear for Aspiring Creators

      Apple plans to split iPhone 18 launch into two phases in 2026

      Upgrade your desk to Starfleet status with this $95 USB-C hub

      37 Best Graduation Gift Ideas (2025): For College Grads

      Backblaze responds to claims of “sham accounting,” customer backups at risk

    • Mobile

      Samsung Galaxy S25 Edge promo materials leak

      What are people doing with those free T-Mobile lines? Way more than you’d expect

      Samsung doesn’t want budget Galaxy phones to use exclusive AI features

      COROS’s charging adapter is a neat solution to the smartwatch charging cable problem

      Fortnite said to return to the US iOS App Store next week following court verdict

    • Science

      Failed Soviet probe will soon crash to Earth – and we don’t know where

      Trump administration cuts off all future federal funding to Harvard

      Does kissing spread gluten? New research offers a clue.

      Why Balcony Solar Panels Haven’t Taken Off in the US

      ‘Dark photon’ theory of light aims to tear up a century of physics

    • AI

      How to build a better AI benchmark

      Q&A: A roadmap for revolutionizing health care through data-driven innovation | Ztoog

      This data set helps researchers spot harmful stereotypes in LLMs

      Making AI models more trustworthy for high-stakes settings | Ztoog

      The AI Hype Index: AI agent cyberattacks, racing robots, and musical models

    • Crypto

      ‘The Big Short’ Coming For Bitcoin? Why BTC Will Clear $110,000

      Bitcoin Holds Above $95K Despite Weak Blockchain Activity — Analytics Firm Explains Why

      eToro eyes US IPO launch as early as next week amid easing concerns over Trump’s tariffs

      Cardano ‘Looks Dope,’ Analyst Predicts Big Move Soon

      Speak at Ztoog Disrupt 2025: Applications now open

    Ztoog
    Home » Bringing the End-User into the AI Picture
    AI

    Bringing the End-User into the AI Picture

    Facebook Twitter Pinterest WhatsApp
    Bringing the End-User into the AI Picture
    Share
    Facebook Twitter LinkedIn Pinterest WhatsApp

    There is a ton of knowledge lately on each single section concerned in constructing AI algorithms, and that is nice!

    This covers loading/getting ready information, characteristic engineering, coaching, testing, hyper-parameterization, validation, explainability, MLOps, and deployment.

    Overlooking End-Users in AI Applications

    At the similar time, I’m puzzled to see how little is talked about about the “end-user”: the end-user being a enterprise particular person with no AI background interacting with the software program. – Vincent Gosselin
    Even if AI has led to many “automated” AI purposes (as an example, autonomous autos, buying and selling bots, and so forth), most firms want end-users to “collaborate”/work together with an AI engine. – Vincent Gosselin

    Let’s take two examples:

    1. QSR Store Sales Forecast
    2. A two-month Cash Flow Prediction for a big Franchised model.

    In Example 1, a QSR retailer supervisor connects to the new forecasting software program. Through an ergonomic GUI, she/he can generate subsequent week’s gross sales forecast (created by the AI engine). Then, she/he simply found 5 minutes in the past {that a} competitor throughout the highway is operating a brand new promotion immediately. She/He might then choose to decrease the generated forecast by 10% throughout peak hours. Here, the end-user wants to switch the output of the forecast engine.

    In Example 2, the firm treasurer desires to run the Cash Flow Prediction for the subsequent two months. However, he desires to play with completely different inflation values and consider the influence on the forecast. Here, the end-user desires to manage an enter parameter (the inflation price) to the AI Engine.

    There are numerous different examples the place end-users want to switch an AI engine’s enter or output. This is an integral a part of the Decision Process.

    Taipy’s Capabilities to reinforce end-user interplay with AI

    To deal with these conditions, we outlined (as a part of the Taipy open supply crew) the idea of “scenario” and “data nodes”. A state of affairs is nothing greater than the execution of your algorithm (pipeline) given a set of enter data (enter information nodes).

    We have additionally carried out three important capabilities:

    1. Data Nodes

    Ability to mannequin pipelines as a sequence of Python duties in addition to Data Nodes (something that may be an enter or an output of a Python process). An information node can connect with any information format (SQL, NoSQL, CSV, JSON, and so forth) or a parameter (a Python object, i.e., A date entered by the end-user by the graphical interface).

    2. Scenarios

    Ability to document every pipeline execution (inside a registry). We name such execution a ‘scenario’.

    3. Scenario comparability

    Ability to retrieve previous/registered eventualities, evaluate them, monitor them, and so forth.

    We determined to offer two choices for outlining your pipeline in Taipy: Programmatically or utilizing a Visual Code Graph Editor.

    Let’s take an instance

    1. Create a pipeline

    Let’s take a simple pipeline case with:

    – A single process: “predict”, calling the inference of an AI engine

    – 2 enter Data Nodes: ‘historical_temperature” and “date_to_forecast”.

    A single process pipeline with 2 information nodes

    ‍

    To create this pipeline, with Taipy, we’ve two choices:

    Option 1: Programmatical Configuration

    We can dive into Python code. This script creates a scenario_cfg object:

    from taipy import Config
    
    # Configuration of Data Nodes
    historical_temperature_cfg = Config.configure_data_node("historical_temperature")
    date_to_forecast_cfg = Config.configure_data_node("date_to_forecast")
    predictions_cfg = Config.configure_data_node("predictions")
    
    # Configuration of duties
    predict_cfg = Config.configure_task(id="predict",
                                        operate=predict,
                                        enter=[historical_temperature_cfg, date_to_forecast_cfg],
                                        output=predictions_cfg)
    
    # Configuration of a state of affairs configuration
    scenario_cfg = Config.configure_scenario(id="my_scenario", task_configs=[predict_cfg])

    Option 2: Graphical Editor Configuration

    Or, we are able to use Taipy Studio, the Pipeline/DAG Graphical Editor that enhances pipelines creation. (It’s a VS Code extension)

    Taipy Studio, the Pipeline/DAG Graphical Editor

    The scenario_cfg object is then created by loading the earlier diagram and saved as a TOML file.

    Config.load('config.toml')
    
    # my_scenario is the id of the state of affairs configured
    scenario_cfg = Config.eventualities['my_scenario']

    Discover Taipy Studio

    2. Execute completely different eventualities

    Scenarios are simply cases of the earlier pipeline configuration.

    Here:

    1. We create a state of affairs (an occasion of the pipeline configuration above)

    2. We initialize its enter information nodes

    3. We execute it (tp.submit())

    import taipy as tp
    
    # Run of the Taipy Core service
    tp.Core().run()
    
    # Creation of the state of affairs
    state of affairs = tp.create_scenario(scenario_cfg)
    
    # Initialize the 2 enter information nodes
    state of affairs.historical_temperature.write(information)
    state of affairs.date_to_forecast.write(dt.datetime.now())
    
    # execution of the state of affairs
    tp.submit(state of affairs)
    
    print("Publish the predictions", state of affairs.predictions.learn())

    Note that behind the display screen, the execution of a given state of affairs is registered, i.e., an automated storage of knowledge associated to every information node used at the time of execution.

    Benefits

    This comparatively “simple” state of affairs administration course of outlined on this article permits for:

    1. A wealthy set of consumer functionalities comparable to:

    • Easy Retrieval of all eventualities over a given interval and their related enter/output information nodes permits simple information lineage.
    • Comparing two or extra eventualities based mostly on some KPIs: the worth of a given information node.
    • Tracking over time a given KPI
    • Re-executing a previous state of affairs with new values (can change the worth of a given information node)

    2. Full pipeline Versioning: Essential for high quality Project administration

    Overall pipeline versioning is badly wanted when new information nodes/sources are launched or a brand new model of a given Python code (avoiding incompatibilities with beforehand run eventualities).

    3. Narrowing the hole between Data Scientists/Developers & End-users

    By offering entry to the whole repository of end-user eventualities, information scientists and Python devs can higher perceive how end-users use the software program.

    And to go additional

    To assist this course of, we discovered it useful to offer particular graphical objects to discover previous eventualities visually, show their enter and output information nodes, modify them, re-execute eventualities, and so forth.

    For this objective, we prolonged Taipy’s graphical library to offer a brand new set of graphical parts for Scenario visualization.

    Here’s an instance of such a state of affairs ‘navigator’.

    Scenario Navigator
    Scenario viewer

    Conclusion

    This is our interpretation of state of affairs administration. We hope such an article will set off extra curiosity and dialogue on this significant matter and result in higher AI software program and, finally, higher selections.


    This article was initially printed on Taipy.

    Thanks to Taipy crew for the thought management/ Educational article. Taipy crew has supported us on this content material/article.


    Vincent Gosselin, Co-Founder & CEO of Taipy, is a distinguished AI innovator with over three many years of experience, notably with ILOG and IBM. He has mentored quite a few information science groups and led groundbreaking AI tasks for world giants like Samsung, McDonald’s, and Toyota. Vincent’s mastery in mathematical modeling, machine studying, and time collection prediction has revolutionized operations in manufacturing, retail, and logistics. A Paris-Saclay University alum with an MSc in Comp. Science & AI, his mission is evident: to remodel AI from pilot tasks to important instruments for end-users throughout industries.


    🐝 Join the Fastest Growing AI Research Newsletter Read by Researchers from Google + NVIDIA + Meta + Stanford + MIT + Microsoft and lots of others…

    Share. Facebook Twitter Pinterest LinkedIn WhatsApp

    Related Posts

    AI

    How to build a better AI benchmark

    AI

    Q&A: A roadmap for revolutionizing health care through data-driven innovation | Ztoog

    AI

    This data set helps researchers spot harmful stereotypes in LLMs

    AI

    Making AI models more trustworthy for high-stakes settings | Ztoog

    AI

    The AI Hype Index: AI agent cyberattacks, racing robots, and musical models

    AI

    Novel method detects microbial contamination in cell cultures | Ztoog

    AI

    Seeing AI as a collaborator, not a creator

    AI

    “Periodic table of machine learning” could fuel AI discovery | Ztoog

    Leave A Reply Cancel Reply

    Follow Us
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    Top Posts
    Technology

    What is The Role of Artificial Intelligence in Healthcare?

    AI is turning into increasingly more well-liked. As we’re using it in our every day…

    Mobile

    Google Messages putting American users at risk, report claims

    American authorities officers have urged residents to solely use encrypted apps to guard their communications…

    The Future

    EcoFlow DELTA 2 Max is a great way to manage offline, or off-grid

    (*2*) We’ve had the chance to take a look at a couple of EcoFlow gadgets…

    Crypto

    PanCakeSwap Soars 50% After 10 Million Tokens Burned

    The current improve in worth of PancakeSwap has captured the eye of the cryptocurrency neighborhood,…

    The Future

    Microsoft Identifies Layer 7 DDoS Attack as the Culprit for Failure of Services in Early June

    Earlier this month, (*7*) observed extreme visitors coming in by their companies like OneDrive. They…

    Our Picks
    AI

    Revolutionizing Long-Term Multivariate Time-Series Forecasting: Introducing PDETime, a Novel Machine Learning Approach Leveraging Neural PDE Solvers for Unparalleled Accuracy

    Gadgets

    12 Best Instant Cameras (2024): Instax, Lomography, Polaroid

    AI

    CMU Researchers Propose a Simple and Effective Attack Method that Causes Aligned Language Models to Generate Objectionable Behaviors at a High Success Rate

    Categories
    • AI (1,482)
    • Crypto (1,744)
    • Gadgets (1,796)
    • Mobile (1,839)
    • Science (1,853)
    • Technology (1,789)
    • The Future (1,635)
    Most Popular
    Science

    Qianfan: China’s answer to SpaceX’s Starlink mega constellation is also threatening astronomy

    Mobile

    Google settles suit over “deceptive” Pixel 4 radio ads for $8 million

    Mobile

    The high-end Xiaomi 12T is discounted by 40% on Amazon UK and is just irresistible

    Ztoog
    Facebook X (Twitter) Instagram Pinterest
    • Home
    • About Us
    • Contact us
    • Privacy Policy
    • Terms & Conditions
    © 2025 Ztoog.

    Type above and press Enter to search. Press Esc to cancel.