mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-30 08:42:00 +00:00 
			
		
		
		
	Add LoRA support (#820)
This commit is contained in:
		| @@ -134,6 +134,17 @@ int main(int argc, char ** argv) { | ||||
|         } | ||||
|     } | ||||
|  | ||||
|     if (!params.lora_adapter.empty()) { | ||||
|         int err = llama_apply_lora_from_file(ctx, | ||||
|                                              params.lora_adapter.c_str(), | ||||
|                                              params.lora_base.empty() ? NULL : params.lora_base.c_str(), | ||||
|                                              params.n_threads); | ||||
|         if (err != 0) { | ||||
|             fprintf(stderr, "%s: error: failed to apply lora adapter\n", __func__); | ||||
|             return 1; | ||||
|         } | ||||
|     } | ||||
|  | ||||
|     // print system information | ||||
|     { | ||||
|         fprintf(stderr, "\n"); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 slaren
					slaren