mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-29 08:41:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			386 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			386 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| #
 | |
| # Temporary script - will be removed in the future
 | |
| #
 | |
| 
 | |
| cd `dirname $0`
 | |
| cd ..
 | |
| 
 | |
| ./main --color --instruct --threads 4 \
 | |
|        --model ./models/gpt4all-7B/gpt4all-lora-quantized.bin \
 | |
|        --file ./prompts/alpaca.txt \
 | |
|        --batch_size 8 --ctx_size 2048 -n -1 \
 | |
|        --repeat_last_n 64 --repeat_penalty 1.3 \
 | |
|        --n_predict 128 --temp 0.1 --top_k 40 --top_p 0.95
 | 
