Skip to content
This repository was archived by the owner on Dec 1, 2024. It is now read-only.

FlexGen for Data wrangle Tasks. #91

Merged
merged 4 commits into from
Mar 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ dist
flexgen/apps/data
flexgen/apps/runs
flexgen/apps/benchmark_output
flexgen/apps/data_wrangle/data
flexgen/apps/data_wrangle/outputs
flexgen/apps/data_wrangle/core

# pickle
*.pkl
Expand Down
18 changes: 18 additions & 0 deletions flexgen/apps/data_wrangle/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# FlexGen for Data Wrangling Tasks.

Here we show how to use FlexGen for the data wrangling tasks. The implementation follows the [fm_data_tasks](https://github.com/HazyResearch/fm_data_tasks) repo from [HazyResearch](https://github.com/HazyResearch).

## Install

- Run our install.sh scripts to install additional python library and download the desired datasets.


## Examples

- To check the outcome and verify the result of a data imputation task (e.g., Restaurant), run:

bash test_single_query_case.sh

- To test FlexGen Throughput of a data imputation task (e.g., Restaurant), run:

bash test_batch_query.case.sh
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why use different naming style "test_single_query_case.sh" and "test_batch_query.case.sh"?

Loading