├── README.md ├── make_unsupervised_data └── make_data.py ├── requirements.txt ├── training ├── train_info_rag.py └── train_info_rag.sh └── utils ├── ds_utils.py ├── model └── model_utils.py ├── module └── lora.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc1234/INFO-RAG/HEAD/README.md -------------------------------------------------------------------------------- /make_unsupervised_data/make_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc1234/INFO-RAG/HEAD/make_unsupervised_data/make_data.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc1234/INFO-RAG/HEAD/requirements.txt -------------------------------------------------------------------------------- /training/train_info_rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc1234/INFO-RAG/HEAD/training/train_info_rag.py -------------------------------------------------------------------------------- /training/train_info_rag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc1234/INFO-RAG/HEAD/training/train_info_rag.sh -------------------------------------------------------------------------------- /utils/ds_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc1234/INFO-RAG/HEAD/utils/ds_utils.py -------------------------------------------------------------------------------- /utils/model/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc1234/INFO-RAG/HEAD/utils/model/model_utils.py -------------------------------------------------------------------------------- /utils/module/lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc1234/INFO-RAG/HEAD/utils/module/lora.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc1234/INFO-RAG/HEAD/utils/utils.py --------------------------------------------------------------------------------