- Notifications
You must be signed in to change notification settings - Fork0
Automatically fill in missing values in tabular data using in-context learning techniques.
License
Ki-Seki/autotab
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Welcome to Auto Tabular Completion. It automatically fill in missing values in tabular data using in-context learning techniques. This tool leverages the capabilities of LLMs to predict output values based on given input data.
Checkdemo.ipynb for more details.
Note
Give it a try with my personal key in the two demo notebooks (valid until 2024-11-01).Silicon Flow provides free API. You can sign up and get your own API key.
Your Excel file should contain columns prefixed with[Input]
for input variables and[Output]
for known or expected output values. Any columns not following this naming convention will be ignored during the prediction process.
Use asyncio and ClientSession: Refactor the code to use
asyncio
andClientSession
for asynchronous processing instead of usingThreadPoolExecutor
. This will improve efficiency and scalability for handling API requests and data processing.Save Data to SQLite Table: Update the code to save results into a SQLite database instead of an Excel file. This will involve creating a SQLite table and implementing the necessary functions to insert data into it.
About
Automatically fill in missing values in tabular data using in-context learning techniques.