Dmitry Beresnev commited on
Commit
dc883f9
·
1 Parent(s): c7c8563

fix repo name of model

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -88,8 +88,8 @@ EXPOSE 7860
88
  # "--host", "0.0.0.0", "--port", "7860", "-c", "4096", "-t", "4", "-ngl", "0", "--cont-batching", "-b", "512"]
89
  #
90
  # Example Qwen2.5 7B Instruct (8k context, safer on 10GB RAM):
91
- # Use a repo with confirmed single-file GGUF naming.
92
- CMD ["llama-server", "--hf-repo", "tensorblock/Qwen2.5-7B-Instruct-GGUF", "--hf-file", "Qwen2.5-7B-Instruct-Q4_K_M.gguf", "--host", "0.0.0.0", "--port", "7860", "-c", "8192", "-t", "4", "-ngl", "0", "--cont-batching", "-b", "256"]
93
  #
94
  # Example Qwen2.5-Coder 7B Instruct (32k context):
95
  # CMD ["llama-server", "-hf", "Qwen/Qwen2.5-Coder-7B-Instruct-GGUF:Qwen2.5-Coder-7B-Instruct.Q4_K_M.gguf",
 
88
  # "--host", "0.0.0.0", "--port", "7860", "-c", "4096", "-t", "4", "-ngl", "0", "--cont-batching", "-b", "512"]
89
  #
90
  # Example Qwen2.5 7B Instruct (8k context, safer on 10GB RAM):
91
+ # Verified llama.cpp args from model card.
92
+ CMD ["llama-server", "--hf-repo", "paultimothymooney/Qwen2.5-7B-Instruct-Q4_K_M-GGUF", "--hf-file", "qwen2.5-7b-instruct-q4_k_m.gguf", "--host", "0.0.0.0", "--port", "7860", "-c", "8192", "-t", "4", "-ngl", "0", "--cont-batching", "-b", "256"]
93
  #
94
  # Example Qwen2.5-Coder 7B Instruct (32k context):
95
  # CMD ["llama-server", "-hf", "Qwen/Qwen2.5-Coder-7B-Instruct-GGUF:Qwen2.5-Coder-7B-Instruct.Q4_K_M.gguf",