Close Menu
Ztoog
    What's Hot
    Technology

    SpaceX Shifts the 2nd Launch of Its Starship Rocket to Saturday

    The Future

    Ahead of Congressional hearing on child safety, X announces plans to hire 100 moderators in Austin

    Gadgets

    How to Use Obsidian for Writing and Productivity

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

      Any wall can be turned into a camera to see around corners

      JD Vance and President Trump’s Sons Hype Bitcoin at Las Vegas Conference

      AI may already be shrinking entry-level jobs in tech, new research suggests

      Today’s NYT Strands Hints, Answer and Help for May 26 #449

      LiberNovo Omni: The World’s First Dynamic Ergonomic Chair

    • Technology

      A Replit employee details a critical security flaw in web apps created using AI-powered app builder Lovable that exposes API keys and personal info of app users (Reed Albergotti/Semafor)

      Gemini in Google Drive can now help you skip watching that painfully long Zoom meeting

      Apple iPhone exports from China to the US fall 76% as India output surges

      Today’s NYT Wordle Hints, Answer and Help for May 26, #1437

      5 Skills Kids (and Adults) Need in an AI World – O’Reilly

    • Gadgets

      8 Best Vegan Meal Delivery Services and Kits (2025), Tested and Reviewed

      Google Home is getting deeper Gemini integration and a new widget

      Google Announces AI Ultra Subscription Plan With Premium Features

      Google shows off Android XR-based glasses, announces Warby Parker team-up

      The market’s down, but this OpenAI for the stock market can help you trade up

    • Mobile

      Microsoft is done being subtle – this new tool screams “upgrade now”

      Wallpaper Wednesday: Android wallpapers 2025-05-28

      Google can make smart glasses accessible with Warby Parker, Gentle Monster deals

      vivo T4 Ultra specs leak

      Forget screens: more details emerge on the mysterious Jony Ive + OpenAI device

    • Science

      Analysts Say Trump Trade Wars Would Harm the Entire US Energy Sector, From Oil to Solar

      Do we have free will? Quantum experiments may soon reveal the answer

      Was Planet Nine exiled from the solar system as a baby?

      How farmers can help rescue water-loving birds

      A trip to the farm where loofahs grow on vines

    • AI

      Rationale engineering generates a compact new tool for gene therapy | Ztoog

      The AI Hype Index: College students are hooked on ChatGPT

      Learning how to predict rare kinds of failures | Ztoog

      Anthropic’s new hybrid AI model can work on tasks autonomously for hours at a time

      AI learns how vision and sound are connected, without human intervention | Ztoog

    • Crypto

      GameStop bought $500 million of bitcoin

      CoinW Teams Up with Superteam Europe to Conclude Solana Hackathon and Accelerate Web3 Innovation in Europe

      Ethereum Net Flows Turn Negative As Bulls Push For $3,500

      Bitcoin’s Power Compared To Nuclear Reactor By Brazilian Business Leader

      Senate advances GENIUS Act after cloture vote passes

    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

    Rationale engineering generates a compact new tool for gene therapy | Ztoog

    AI

    The AI Hype Index: College students are hooked on ChatGPT

    AI

    Learning how to predict rare kinds of failures | Ztoog

    AI

    Anthropic’s new hybrid AI model can work on tasks autonomously for hours at a time

    AI

    AI learns how vision and sound are connected, without human intervention | Ztoog

    AI

    How AI is introducing errors into courtrooms

    AI

    With AI, researchers predict the location of virtually any protein within a human cell | Ztoog

    AI

    Google DeepMind’s new AI agent cracks real-world problems better than humans can

    Leave A Reply Cancel Reply

    Follow Us
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    Top Posts
    The Future

    Take Care of Your Eyes Naturally With These 10 Tips

    It’s simple to take your eyes without any consideration, however imaginative and prescient issues can…

    Science

    Jets of liquid bounce off hot surfaces without ever touching them

    If you prepare dinner with stainless-steel pans, you’re most likely aware of the Leidenfrost impactFranck…

    Gadgets

    Will You Get One? The New Affordable Apple Pencil Is Now Available For Purchase

    Early October Apple launched a brand new, extra reasonably priced Apple Pencil, which is now…

    Crypto

    Ethereum Bears Gain Upper Hand With Escalating Sell-Off

    The Ethereum (ETH) market has been gripped by escalating bearish sentiment because the taker buy-sell…

    Crypto

    Cryptoquant Founder Explains Why Mt. Gox’s 47,000 BTC Move Won’t Affect Price

    Defunct crypto trade Mt. Gox’s latest Bitcoin transfers have continued to trigger issues for the…

    Our Picks
    Gadgets

    Hands-on with Cherry MX2A switches: A lot less wobble, a little more confusion

    Mobile

    Google Pixel 8 review: Primed for success

    Crypto

    Bitcoin Price Plunge To $12,000 Is Not Foreseeable

    Categories
    • AI (1,493)
    • Crypto (1,753)
    • Gadgets (1,804)
    • Mobile (1,850)
    • Science (1,866)
    • Technology (1,802)
    • The Future (1,648)
    Most Popular
    The Future

    Macquarie cuts Paytm target on ‘serious risk of exodus of customers’

    Science

    US verges on vaccination tipping point, faces thousands of needless deaths: FDA

    The Future

    The Shining’s Colorado Hotel Will Host Blumhouse’s New Horror Exhibit

    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.