├── LICENSE ├── Legal Case Entailment ├── README.md ├── T5 │ ├── ds_config_gptj.json │ ├── summarize_dataset.py │ ├── train.sh │ └── train_gptj_summarize.py ├── inference.py ├── lexical models │ ├── form_corpus.py │ ├── form_query.py │ ├── index.sh │ └── query_search.sh └── ranker │ ├── reranker │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── arguments.cpython-38.pyc │ │ ├── data.cpython-38.pyc │ │ ├── modeling.cpython-38.pyc │ │ └── trainer.cpython-38.pyc │ ├── arguments.py │ ├── data.py │ ├── dist │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── sampler.cpython-38.pyc │ │ └── sampler.py │ ├── modeling.py │ └── trainer.py │ ├── run_train.py │ ├── setup.py │ └── train.sh ├── Legal Case Retrieval ├── README.md ├── lexical models │ ├── form_corpus.py │ ├── form_query.py │ ├── index.sh │ └── query_search.sh ├── lightgbm │ ├── .DS_Store │ ├── data │ │ └── __init__.py │ └── src │ │ ├── .DS_Store │ │ ├── __init__.py │ │ ├── trees │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── data_format_read.cpython-38.pyc │ │ │ ├── data_format_read.cpython-39.pyc │ │ │ ├── ndcg.cpython-38.pyc │ │ │ └── ndcg.cpython-39.pyc │ │ ├── convert_output_test.py │ │ ├── data.py │ │ ├── data_format_read.py │ │ ├── lgb_ltr.py │ │ ├── ndcg.py │ │ └── xgb_ltr.py │ │ └── utils │ │ └── __init__.py ├── post-process │ ├── README.md │ ├── grid_search.py │ ├── inference.py │ └── year.py ├── pre-process │ ├── process.py │ ├── reference.py │ └── summary.py └── utils │ ├── eval.py │ ├── train_qid.tsv │ └── valid_qid.tsv └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/LICENSE -------------------------------------------------------------------------------- /Legal Case Entailment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/README.md -------------------------------------------------------------------------------- /Legal Case Entailment/T5/ds_config_gptj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/T5/ds_config_gptj.json -------------------------------------------------------------------------------- /Legal Case Entailment/T5/summarize_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/T5/summarize_dataset.py -------------------------------------------------------------------------------- /Legal Case Entailment/T5/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/T5/train.sh -------------------------------------------------------------------------------- /Legal Case Entailment/T5/train_gptj_summarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/T5/train_gptj_summarize.py -------------------------------------------------------------------------------- /Legal Case Entailment/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/inference.py -------------------------------------------------------------------------------- /Legal Case Entailment/lexical models/form_corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/lexical models/form_corpus.py -------------------------------------------------------------------------------- /Legal Case Entailment/lexical models/form_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/lexical models/form_query.py -------------------------------------------------------------------------------- /Legal Case Entailment/lexical models/index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/lexical models/index.sh -------------------------------------------------------------------------------- /Legal Case Entailment/lexical models/query_search.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/lexical models/query_search.sh -------------------------------------------------------------------------------- /Legal Case Entailment/ranker/reranker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/ranker/reranker/__init__.py -------------------------------------------------------------------------------- /Legal Case Entailment/ranker/reranker/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/ranker/reranker/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Legal Case Entailment/ranker/reranker/__pycache__/arguments.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/ranker/reranker/__pycache__/arguments.cpython-38.pyc -------------------------------------------------------------------------------- /Legal Case Entailment/ranker/reranker/__pycache__/data.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/ranker/reranker/__pycache__/data.cpython-38.pyc -------------------------------------------------------------------------------- /Legal Case Entailment/ranker/reranker/__pycache__/modeling.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/ranker/reranker/__pycache__/modeling.cpython-38.pyc -------------------------------------------------------------------------------- /Legal Case Entailment/ranker/reranker/__pycache__/trainer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/ranker/reranker/__pycache__/trainer.cpython-38.pyc -------------------------------------------------------------------------------- /Legal Case Entailment/ranker/reranker/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/ranker/reranker/arguments.py -------------------------------------------------------------------------------- /Legal Case Entailment/ranker/reranker/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/ranker/reranker/data.py -------------------------------------------------------------------------------- /Legal Case Entailment/ranker/reranker/dist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Legal Case Entailment/ranker/reranker/dist/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/ranker/reranker/dist/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Legal Case Entailment/ranker/reranker/dist/__pycache__/sampler.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/ranker/reranker/dist/__pycache__/sampler.cpython-38.pyc -------------------------------------------------------------------------------- /Legal Case Entailment/ranker/reranker/dist/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/ranker/reranker/dist/sampler.py -------------------------------------------------------------------------------- /Legal Case Entailment/ranker/reranker/modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/ranker/reranker/modeling.py -------------------------------------------------------------------------------- /Legal Case Entailment/ranker/reranker/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/ranker/reranker/trainer.py -------------------------------------------------------------------------------- /Legal Case Entailment/ranker/run_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/ranker/run_train.py -------------------------------------------------------------------------------- /Legal Case Entailment/ranker/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/ranker/setup.py -------------------------------------------------------------------------------- /Legal Case Entailment/ranker/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Entailment/ranker/train.sh -------------------------------------------------------------------------------- /Legal Case Retrieval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/README.md -------------------------------------------------------------------------------- /Legal Case Retrieval/lexical models/form_corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/lexical models/form_corpus.py -------------------------------------------------------------------------------- /Legal Case Retrieval/lexical models/form_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/lexical models/form_query.py -------------------------------------------------------------------------------- /Legal Case Retrieval/lexical models/index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/lexical models/index.sh -------------------------------------------------------------------------------- /Legal Case Retrieval/lexical models/query_search.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/lexical models/query_search.sh -------------------------------------------------------------------------------- /Legal Case Retrieval/lightgbm/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/lightgbm/.DS_Store -------------------------------------------------------------------------------- /Legal Case Retrieval/lightgbm/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Legal Case Retrieval/lightgbm/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/lightgbm/src/.DS_Store -------------------------------------------------------------------------------- /Legal Case Retrieval/lightgbm/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Legal Case Retrieval/lightgbm/src/trees/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Legal Case Retrieval/lightgbm/src/trees/__pycache__/data_format_read.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/lightgbm/src/trees/__pycache__/data_format_read.cpython-38.pyc -------------------------------------------------------------------------------- /Legal Case Retrieval/lightgbm/src/trees/__pycache__/data_format_read.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/lightgbm/src/trees/__pycache__/data_format_read.cpython-39.pyc -------------------------------------------------------------------------------- /Legal Case Retrieval/lightgbm/src/trees/__pycache__/ndcg.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/lightgbm/src/trees/__pycache__/ndcg.cpython-38.pyc -------------------------------------------------------------------------------- /Legal Case Retrieval/lightgbm/src/trees/__pycache__/ndcg.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/lightgbm/src/trees/__pycache__/ndcg.cpython-39.pyc -------------------------------------------------------------------------------- /Legal Case Retrieval/lightgbm/src/trees/convert_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/lightgbm/src/trees/convert_output_test.py -------------------------------------------------------------------------------- /Legal Case Retrieval/lightgbm/src/trees/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/lightgbm/src/trees/data.py -------------------------------------------------------------------------------- /Legal Case Retrieval/lightgbm/src/trees/data_format_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/lightgbm/src/trees/data_format_read.py -------------------------------------------------------------------------------- /Legal Case Retrieval/lightgbm/src/trees/lgb_ltr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/lightgbm/src/trees/lgb_ltr.py -------------------------------------------------------------------------------- /Legal Case Retrieval/lightgbm/src/trees/ndcg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/lightgbm/src/trees/ndcg.py -------------------------------------------------------------------------------- /Legal Case Retrieval/lightgbm/src/trees/xgb_ltr.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Legal Case Retrieval/lightgbm/src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Legal Case Retrieval/post-process/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/post-process/README.md -------------------------------------------------------------------------------- /Legal Case Retrieval/post-process/grid_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/post-process/grid_search.py -------------------------------------------------------------------------------- /Legal Case Retrieval/post-process/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/post-process/inference.py -------------------------------------------------------------------------------- /Legal Case Retrieval/post-process/year.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/post-process/year.py -------------------------------------------------------------------------------- /Legal Case Retrieval/pre-process/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/pre-process/process.py -------------------------------------------------------------------------------- /Legal Case Retrieval/pre-process/reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/pre-process/reference.py -------------------------------------------------------------------------------- /Legal Case Retrieval/pre-process/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/pre-process/summary.py -------------------------------------------------------------------------------- /Legal Case Retrieval/utils/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/utils/eval.py -------------------------------------------------------------------------------- /Legal Case Retrieval/utils/train_qid.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/utils/train_qid.tsv -------------------------------------------------------------------------------- /Legal Case Retrieval/utils/valid_qid.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/Legal Case Retrieval/utils/valid_qid.tsv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/THUIR-COLIEE2023/HEAD/README.md --------------------------------------------------------------------------------