ShadowHunter222 commited on
Commit
8de1c3c
·
verified ·
1 Parent(s): ebf6f9f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -4,8 +4,8 @@ FROM ghcr.io/ggml-org/llama.cpp:server
4
  RUN apt update && apt install wget -y && rm -rf /var/lib/apt/lists/*
5
 
6
 
7
- # 1. THE MAIN MODEL: LFM2.5-2.6B in Q4_K_M — best speed/quality balance for CPU
8
- RUN wget "https://huggingface.co/LiquidAI/LFM2.5-2.6B-GGUF/resolve/main/LFM2.5-2.6B-Q4_K_M.gguf" -O /model.gguf
9
 
10
 
11
  # Clear the entrypoint and use shell form CMD
 
4
  RUN apt update && apt install wget -y && rm -rf /var/lib/apt/lists/*
5
 
6
 
7
+ # 1. THE MAIN MODEL: LFM2.5-8B-A1B in Q4_K_M — MoE with only ~1.5B active params per token
8
+ RUN wget "https://huggingface.co/LiquidAI/LFM2.5-8B-A1B-GGUF/resolve/main/LFM2.5-8B-A1B-Q4_K_M.gguf" -O /model.gguf
9
 
10
 
11
  # Clear the entrypoint and use shell form CMD