gitextract_lwp3pzpi/ ├── .gitignore ├── CITATION ├── Evaluation/ │ ├── automatic_eval.py │ ├── automatic_metrics.py │ ├── llm_eval.py │ └── llm_score.py ├── LICENSE ├── LooGLE-testdata/ │ ├── longdep_qa.jsonl │ ├── longdep_summarization.jsonl │ ├── shortdep_cloze.jsonl │ └── shortdep_qa.jsonl ├── Output/ │ ├── longdep_qa_reorder_gpt4-32k.jsonl │ ├── longdep_summarization_llama-index.jsonl │ ├── shortdep_qa_chatglm2-6b-32k.jsonl │ ├── shortdep_qa_gpt-3.5-turbo-16k.jsonl │ └── shortdep_qa_llama-index.jsonl ├── Prediction/ │ ├── pred_gpt_models.py │ ├── pred_llamaindex.py │ └── pred_opensource_models.py ├── README.md ├── Reorder/ │ ├── get_max_deviation.py │ ├── get_reorder_deviation.py │ └── reorder_eval.py ├── Retrieval/ │ └── pred_retrieval_based_method.py ├── Tools/ │ ├── Labeling_form_A_annotator.html │ └── Labeling_form_Q_annotator.html ├── config/ │ ├── task2maxlen.json │ └── task2prompt.json ├── docs/ │ ├── .gitignore │ ├── 404.html │ ├── Gemfile │ ├── _config.yml │ ├── _includes/ │ │ └── head-custom.html │ ├── _layouts/ │ │ └── default.html │ ├── assets/ │ │ ├── css/ │ │ │ └── style.scss │ │ └── js/ │ │ └── main.js │ ├── backup.html │ └── index.md └── requirements.txt