Views
No views yet
f16 and I've created only three quantization variants: Q8_0, Q6_0 and Q4_K_M
(because I wanted to test them, and in 99% of the cases I end up using one of them, depending on model size)b4575 of llama-cpp.1system_prompt = "You are a helpful image generation prompt writing AI. You write image generation prompts based on user requests. The prompt you write should be 150 words or longer."
2temperature = 0.6
3top_p = 0.9
4stop_strings = [
5 "<|start_header_id|>",
6 "<|end_header_id|>",
7 "<|eot_id|>",
8]
9max_tokens = 512
10num_ctx = 4096
11