├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── evaluate_tablegpt_result.py ├── generate_all_test.sh ├── generate_all_train.sh ├── generate_tablegpt_data.py ├── reproduce.ipynb └── tablegpt ├── __init__.py ├── data_generator.py ├── evaluator.py ├── prompt_generator.py ├── table_serializer.py └── table_tasks ├── __init__.py ├── base_table_task.py ├── column_augmentation.py ├── column_finding.py ├── column_type_annotation.py ├── data_imputation.py ├── entity_matching.py ├── error_detection.py ├── header_value_matching.py ├── list_extraction.py ├── missing_value_identification.py ├── nl2sql.py ├── row_augmentation.py ├── row_column_filtering.py ├── row_column_sorting.py ├── row_column_swapping.py ├── row_to_row_transformation.py ├── schema_matching.py ├── table_question.py ├── table_summary.py └── table_task_factory.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/SECURITY.md -------------------------------------------------------------------------------- /evaluate_tablegpt_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/evaluate_tablegpt_result.py -------------------------------------------------------------------------------- /generate_all_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/generate_all_test.sh -------------------------------------------------------------------------------- /generate_all_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/generate_all_train.sh -------------------------------------------------------------------------------- /generate_tablegpt_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/generate_tablegpt_data.py -------------------------------------------------------------------------------- /reproduce.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/reproduce.ipynb -------------------------------------------------------------------------------- /tablegpt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/__init__.py -------------------------------------------------------------------------------- /tablegpt/data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/data_generator.py -------------------------------------------------------------------------------- /tablegpt/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/evaluator.py -------------------------------------------------------------------------------- /tablegpt/prompt_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/prompt_generator.py -------------------------------------------------------------------------------- /tablegpt/table_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/table_serializer.py -------------------------------------------------------------------------------- /tablegpt/table_tasks/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tablegpt/table_tasks/base_table_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/table_tasks/base_table_task.py -------------------------------------------------------------------------------- /tablegpt/table_tasks/column_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/table_tasks/column_augmentation.py -------------------------------------------------------------------------------- /tablegpt/table_tasks/column_finding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/table_tasks/column_finding.py -------------------------------------------------------------------------------- /tablegpt/table_tasks/column_type_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/table_tasks/column_type_annotation.py -------------------------------------------------------------------------------- /tablegpt/table_tasks/data_imputation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/table_tasks/data_imputation.py -------------------------------------------------------------------------------- /tablegpt/table_tasks/entity_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/table_tasks/entity_matching.py -------------------------------------------------------------------------------- /tablegpt/table_tasks/error_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/table_tasks/error_detection.py -------------------------------------------------------------------------------- /tablegpt/table_tasks/header_value_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/table_tasks/header_value_matching.py -------------------------------------------------------------------------------- /tablegpt/table_tasks/list_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/table_tasks/list_extraction.py -------------------------------------------------------------------------------- /tablegpt/table_tasks/missing_value_identification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/table_tasks/missing_value_identification.py -------------------------------------------------------------------------------- /tablegpt/table_tasks/nl2sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/table_tasks/nl2sql.py -------------------------------------------------------------------------------- /tablegpt/table_tasks/row_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/table_tasks/row_augmentation.py -------------------------------------------------------------------------------- /tablegpt/table_tasks/row_column_filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/table_tasks/row_column_filtering.py -------------------------------------------------------------------------------- /tablegpt/table_tasks/row_column_sorting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/table_tasks/row_column_sorting.py -------------------------------------------------------------------------------- /tablegpt/table_tasks/row_column_swapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/table_tasks/row_column_swapping.py -------------------------------------------------------------------------------- /tablegpt/table_tasks/row_to_row_transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/table_tasks/row_to_row_transformation.py -------------------------------------------------------------------------------- /tablegpt/table_tasks/schema_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/table_tasks/schema_matching.py -------------------------------------------------------------------------------- /tablegpt/table_tasks/table_question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/table_tasks/table_question.py -------------------------------------------------------------------------------- /tablegpt/table_tasks/table_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/table_tasks/table_summary.py -------------------------------------------------------------------------------- /tablegpt/table_tasks/table_task_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Table-GPT/HEAD/tablegpt/table_tasks/table_task_factory.py --------------------------------------------------------------------------------