├── LICENSE.txt ├── figure ├── efficiency_result.png ├── generation_results.png └── main_figure.png ├── readme.md ├── requirements.txt ├── run.py ├── scripts └── run.sh └── src ├── LinearRAG.py ├── config.py ├── embedding_store.py ├── evaluate.py ├── ner.py └── utils.py /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEEP-PolyU/LinearRAG/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /figure/efficiency_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEEP-PolyU/LinearRAG/HEAD/figure/efficiency_result.png -------------------------------------------------------------------------------- /figure/generation_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEEP-PolyU/LinearRAG/HEAD/figure/generation_results.png -------------------------------------------------------------------------------- /figure/main_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEEP-PolyU/LinearRAG/HEAD/figure/main_figure.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEEP-PolyU/LinearRAG/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEEP-PolyU/LinearRAG/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEEP-PolyU/LinearRAG/HEAD/run.py -------------------------------------------------------------------------------- /scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEEP-PolyU/LinearRAG/HEAD/scripts/run.sh -------------------------------------------------------------------------------- /src/LinearRAG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEEP-PolyU/LinearRAG/HEAD/src/LinearRAG.py -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEEP-PolyU/LinearRAG/HEAD/src/config.py -------------------------------------------------------------------------------- /src/embedding_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEEP-PolyU/LinearRAG/HEAD/src/embedding_store.py -------------------------------------------------------------------------------- /src/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEEP-PolyU/LinearRAG/HEAD/src/evaluate.py -------------------------------------------------------------------------------- /src/ner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEEP-PolyU/LinearRAG/HEAD/src/ner.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEEP-PolyU/LinearRAG/HEAD/src/utils.py --------------------------------------------------------------------------------