├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── ds_zero3_cpu.yaml ├── lora.json ├── loss.py ├── peft_lora_embedding_semantic_search.py ├── prepare_dataset.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalkraj/e5-mistral-7b-instruct/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalkraj/e5-mistral-7b-instruct/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalkraj/e5-mistral-7b-instruct/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalkraj/e5-mistral-7b-instruct/HEAD/README.md -------------------------------------------------------------------------------- /ds_zero3_cpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalkraj/e5-mistral-7b-instruct/HEAD/ds_zero3_cpu.yaml -------------------------------------------------------------------------------- /lora.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalkraj/e5-mistral-7b-instruct/HEAD/lora.json -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalkraj/e5-mistral-7b-instruct/HEAD/loss.py -------------------------------------------------------------------------------- /peft_lora_embedding_semantic_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalkraj/e5-mistral-7b-instruct/HEAD/peft_lora_embedding_semantic_search.py -------------------------------------------------------------------------------- /prepare_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalkraj/e5-mistral-7b-instruct/HEAD/prepare_dataset.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalkraj/e5-mistral-7b-instruct/HEAD/requirements.txt --------------------------------------------------------------------------------