| """ | |
| EvoRM Baselines Package | |
| ======================== | |
| Contains: | |
| - original/ : Original source code from published baselines | |
| - evorm_wrappers/ : EvoRM plug-and-play wrappers for each baseline | |
| Original Repositories: | |
| - ChatEA : https://github.com/IDEA-FinAI/ChatEA (ACL 2024) | |
| - MatchGPT : https://github.com/wbsg-uni-mannheim/MatchGPT (ADBIS 2023) | |
| - anymatch : https://github.com/Jantory/anymatch (arXiv 2024) | |
| - LELA : https://github.com/NDobricic/LELA (IJCAI 2026) | |
| - fm_data_tasks: https://github.com/HazyResearch/fm_data_tasks (VLDB 2023) [LLM-DP] | |
| - MIMIC_2_OMOP : https://github.com/meniData1/MIMIC_2_OMOP [ReMatch] | |
| - Table-GPT : https://github.com/microsoft/Table-GPT (SIGMOD 2024) | |
| """ | |
| # Re-export evorm wrappers | |
| from baselines.evorm_wrappers.zero_cot import align_entities as zero_cot_align | |
| from baselines.evorm_wrappers.self_consistency import align_entities as sc_align | |
| from baselines.evorm_wrappers.chat_ea import align_entities as chatea_align | |
| from baselines.evorm_wrappers.cohard import align_entities as cohard_align | |
| from baselines.evorm_wrappers.matchgpt import run_matchgpt, run_anymatch | |
| from baselines.evorm_wrappers.lela_el import run_lela, run_schema_matching | |