search
HomeTechnology peripheralsAIManage demands and use large models to solve problems: the chart processing artifact SheetCopilot is online

This silky smooth operation process is simply good news for professionals!

Manage demands and use large models to solve problems: the chart processing artifact SheetCopilot is online

Recently, researchers from the Institute of Automation, Chinese Academy of Sciences, Hong Kong Polytechnic and other institutions have created a "Table AI Assistant" "SheetCopilot, this intelligent agent can generate solutions for manipulating tables based on user instructions and execute them on specific software (such as Excel, GoogleSheets, etc.). SheetCopilot can quickly connect to multiple table processing software, and supports multi-table operations, chart drawing and pivot table generation. It is expected to empower table data processing and visualization in multiple fields and take a key step towards realizing a generalist intelligent assistant.

Manage demands and use large models to solve problems: the chart processing artifact SheetCopilot is online

## Website: https://sheetcopilot-demo.github.io/

Paper: https://arxiv.org/abs/2305.19308

Let us first experience how SheetCopilot can significantly improve work efficiency through the following examples.

Suppose you are a newbie and one day your boss asks you to help him analyze sales data. When you get the form and look at it, you'll be dazzled by the thousands of rows of data. You don't know where to start, so you check it as you go.

First, you try to extract the name of each Product, and then use a formula to sum the income of each Product.

Manage demands and use large models to solve problems: the chart processing artifact SheetCopilot is online

After working on it for more than 20 minutes, SUMIF kept reporting "#NAME?" errors, so I gave up.

I continued to search online and found that there is such a convenient tool as a Pivot table, so I started the second challenge.

Manage demands and use large models to solve problems: the chart processing artifact SheetCopilot is online

It took more than twenty minutes to finally get it done. The whole process took nearly an hour, and the efficiency was not satisfactory. Every time your boss gives you a new form processing task, your previous experience is of little use, so you can only view the website and process it from scratch.

Your colleagues use SheetCopilot and can complete all kinds of strange requirements in just a few seconds :).

Manage demands and use large models to solve problems: the chart processing artifact SheetCopilot is online

Seeing that SheetCopilot is so smooth, you gave it a try and it was easy to draw a picture.

Manage demands and use large models to solve problems: the chart processing artifact SheetCopilot is online

With SheetCopilot, you no longer need to slide the mouse across half the table to select data that exceeds the screen. Thousands of rows can be easily selected. Data moves between multiple tables.

Manage demands and use large models to solve problems: the chart processing artifact SheetCopilot is online

Why SheetCopilot was proposed

For a long time, people have longed for someone who can become proficient even without professional experience. Ability to master complex software. Many of us have been in situations where we didn't know how to navigate PhotoShop's cumbersome interface, wanted to analyze data but didn't know the advanced feature of PivotTables, wanted to draw gears but didn't know anything about Solidworks.

With the emergence of large language models (LLMs) with powerful language understanding and generation capabilities, this vision is closer to reality than ever before. If LLM can be guided to master various software, the almost unlimited potential of LLM can be released, thereby allowing human productivity to reach unprecedented heights.

This article points out that the spreadsheet is an ideal basis for conducting this research because it is a common and versatile production tool. However, table manipulation faces diverse challenges, and it is difficult for users to master sufficient table processing and programming skills to cope with ever-changing task requirements.

If there is a generalist AI agent that masters rich software control skills, not only will office efficiency be greatly improved, but enterprise output will also be greatly accelerated. The emergence of SheetCopilot just fits people's vision.

What are the highlights of SheetCopilot

1. Covering the typical needs of table processing

SheetCopilot covers It handles almost all typical tasks of table operations and can excellently complete various chart generation tasks.

Manage demands and use large models to solve problems: the chart processing artifact SheetCopilot is online

Sales data analysis

Manage demands and use large models to solve problems: the chart processing artifact SheetCopilot is online

Experimental chart drawing

Manage demands and use large models to solve problems: the chart processing artifact SheetCopilot is online

##Complex formula calculation

Manage demands and use large models to solve problems: the chart processing artifact SheetCopilot is online

##Applying Conditional Formatting

2. Beyond the VBA-based approach

SheetCopilot is superior to the method of using GPT-3.5 to generate VBA code and execute it. The generated solution is significantly better than the latter (see the figure below), which makes SheetCopilot expected to become a powerful AI auxiliary tool for data processing personnel in the future. .

Manage demands and use large models to solve problems: the chart processing artifact SheetCopilot is online

Not only that, compared to the obscure VBA code, the solution generated by SheetCopilot contains easy-to-understand steps. This eliminates the pain of learning a new programming language and struggling to debug it.

Manage demands and use large models to solve problems: the chart processing artifact SheetCopilot is online

Left picture: lengthy VBA code; right picture: SheetCopilot simple and easy to understand solution plan.

3. Comfortable using experience

SheetCopilot in When the network connection is stable, it only takes about 10 steps of multi-table combination operations to quickly complete the task in tables with thousands of rows and dozens of columns. This not only frees up the user's tired eyes, but also saves the time wasted in finding the website and trying the steps one by one, and also avoids the cost of learning VBA.

Manage demands and use large models to solve problems: the chart processing artifact SheetCopilot is online

Method Principle

This article abstracts the core functions required for table manipulation into a set of virtual APIs (called atomic operations, see the figure below), which are used to generate solutions as LLM A bridge for interaction with application software.

Manage demands and use large models to solve problems: the chart processing artifact SheetCopilot is online

The simplest method is to generate all steps of a task in one query of LLM. However, as the complexity of the task increases, subsequent steps become more dependent on the execution results of previous steps, making it difficult for this kind of open-loop control to obtain correct results. For example, LLM has difficulty determining the scope of an operation if it cannot determine where the data will be visible after filtering.

In order to achieve efficient closed-loop control, SheetCopilot optimizes solutions based on software status feedback and external atomic operation knowledge base, improving success rate and efficiency.

How to evaluate

This article proposes a high-quality evaluation benchmark. The tasks of this benchmark have diverse formulations and involve rich atomic operations, as shown in the following word cloud:

Manage demands and use large models to solve problems: the chart processing artifact SheetCopilot is online

This benchmark adopts the following Metrics about success rate (higher is better):

  • Exec@1: Execution success rate of the generated task solution.
  • Pass@1: Task pass rate, that is, the proportion of solutions that can match any reference answer after execution.

This benchmark also considers the following efficiency metrics (lower is better):

  • A50: Will meet mission requirements The number of steps in the solution is divided by the minimum number of steps in the reference answer, and then the median of all calculations is taken.
  • A90: The calculation method is the same as above, but the 90th percentile of all calculation results is taken. This indicator reflects the extreme value distribution of the number of actions.

Experimental results

Manage demands and use large models to solve problems: the chart processing artifact SheetCopilot is online

##Table 1: Comparison on SheetCopilot data set GPT-3.5-Turbo, GPT-4, Claude and how to generate VBA.

Unsurprisingly, GPT-4 has the highest proportion of solutions that meet the task requirements and has the best efficiency, while GPT-3.5-Turbo follows closely behind, with Claude winning the most. times but also close to GPT-3.5-Turbo.

One noteworthy result is that SheetCopilot achieved an excellent success rate compared to the method of translating user instructions into VBA code and executing them on Excel. This means that SheetCopilot brings software intelligent control a big step closer to us, allowing users who cannot program to command computers to complete complex tasks through daily communication.

Let’s take a look at the advantages and disadvantages of each of these three LLMs through the indicators in each subdivision category below.

Manage demands and use large models to solve problems: the chart processing artifact SheetCopilot is online

GPT-3.5 and GPT-4 easily solve Management (table management operations such as sorting and filtering) and Entry & manipulation (data input and manipulation) tasks, both achieved 100% executability rate. In addition, the three LLMs each showed the best efficiency in different task categories. This interesting finding shows that each LLM has its unique advantages and that GPT-4 cannot outperform other models.

Conclusion

SheetCopilot uses LLM to successfully form a closed loop of perception, reasoning and decision-making through text interfaces to achieve efficient spreadsheet control and promote smarter software control. Going to the next level also brings new inspiration to researchers interested in generalist agents.

The above is the detailed content of Manage demands and use large models to solve problems: the chart processing artifact SheetCopilot is online. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:51CTO.COM. If there is any infringement, please contact admin@php.cn delete
Most Used 10 Power BI Charts - Analytics VidhyaMost Used 10 Power BI Charts - Analytics VidhyaApr 16, 2025 pm 12:05 PM

Harnessing the Power of Data Visualization with Microsoft Power BI Charts In today's data-driven world, effectively communicating complex information to non-technical audiences is crucial. Data visualization bridges this gap, transforming raw data i

Expert Systems in AIExpert Systems in AIApr 16, 2025 pm 12:00 PM

Expert Systems: A Deep Dive into AI's Decision-Making Power Imagine having access to expert advice on anything, from medical diagnoses to financial planning. That's the power of expert systems in artificial intelligence. These systems mimic the pro

Three Of The Best Vibe Coders Break Down This AI Revolution In CodeThree Of The Best Vibe Coders Break Down This AI Revolution In CodeApr 16, 2025 am 11:58 AM

First of all, it’s apparent that this is happening quickly. Various companies are talking about the proportions of their code that are currently written by AI, and these are increasing at a rapid clip. There’s a lot of job displacement already around

Runway AI's Gen-4: How Can AI Montage Go Beyond AbsurdityRunway AI's Gen-4: How Can AI Montage Go Beyond AbsurdityApr 16, 2025 am 11:45 AM

The film industry, alongside all creative sectors, from digital marketing to social media, stands at a technological crossroad. As artificial intelligence begins to reshape every aspect of visual storytelling and change the landscape of entertainment

How to Enroll for 5 Days ISRO AI Free Courses? - Analytics VidhyaHow to Enroll for 5 Days ISRO AI Free Courses? - Analytics VidhyaApr 16, 2025 am 11:43 AM

ISRO's Free AI/ML Online Course: A Gateway to Geospatial Technology Innovation The Indian Space Research Organisation (ISRO), through its Indian Institute of Remote Sensing (IIRS), is offering a fantastic opportunity for students and professionals to

Local Search Algorithms in AILocal Search Algorithms in AIApr 16, 2025 am 11:40 AM

Local Search Algorithms: A Comprehensive Guide Planning a large-scale event requires efficient workload distribution. When traditional approaches fail, local search algorithms offer a powerful solution. This article explores hill climbing and simul

OpenAI Shifts Focus With GPT-4.1, Prioritizes Coding And Cost EfficiencyOpenAI Shifts Focus With GPT-4.1, Prioritizes Coding And Cost EfficiencyApr 16, 2025 am 11:37 AM

The release includes three distinct models, GPT-4.1, GPT-4.1 mini and GPT-4.1 nano, signaling a move toward task-specific optimizations within the large language model landscape. These models are not immediately replacing user-facing interfaces like

The Prompt: ChatGPT Generates Fake PassportsThe Prompt: ChatGPT Generates Fake PassportsApr 16, 2025 am 11:35 AM

Chip giant Nvidia said on Monday it will start manufacturing AI supercomputers— machines that can process copious amounts of data and run complex algorithms— entirely within the U.S. for the first time. The announcement comes after President Trump si

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!