SkyNetWalker commited on
Commit
734c9d0
Β·
verified Β·
1 Parent(s): bbfc835

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -7
app.py CHANGED
@@ -13,17 +13,12 @@ import ollama
13
 
14
  # Model from run.sh
15
  MODEL_ID_MAP = {
16
- "(LiquidAI)LFM2-1.2B": 'hf.co/LiquidAI/LFM2-1.2B-GGUF:Q5_K_M',
17
- "(LiquidAI)LFM2-700M": 'hf.co/LiquidAI/LFM2-700M-GGUF:Q5_K_M',
18
- "(LiquidAI)LFM2-350M": 'hf.co/LiquidAI/LFM2-350M-GGUF:Q5_K_M',
19
- "(Google)Gemma-3-270M-it-qat": 'hf.co/unsloth/gemma-3-270m-it-qat-GGUF:Q5_K_M',
20
- "(ι˜Ώι‡Œεƒε•)Qwen3-4B-Instruct-2507": 'hf.co/bartowski/Qwen_Qwen3-4B-Instruct-2507-GGUF:Q4_K_M',
21
  "(IBM)Granite3.3-2B": 'granite3.3:2b',
 
22
  "(Meta)Llama3.2-3B-Instruct": 'hf.co/bartowski/Llama-3.2-3B-Instruct-GGUF:Q4_K_M', # OK speed with CPU
23
  #"(ι˜Ώι‡Œεƒε•)Qwen3-4B-Thinking-2507": 'hf.co/bartowski/Qwen_Qwen3-4B-Thinking-2507-GGUF:Q4_K_M',
24
  "(Google)Gemma3n-e2b-it": 'gemma3n:e2b-it-q4_K_M',
25
- #"(Tencent)ζ··ε…ƒ-1.8B-Instruct":'hf.co/bartowski/tencent_Hunyuan-1.8B-Instruct-GGUF:Q4_K_M',
26
- #"(Tencent)ζ··ε…ƒ-4B-Instruct": 'hf.co/bartowski/tencent_Hunyuan-4B-Instruct-GGUF:Q4_K_M',
27
  "(HuggingFace)SmolLM2-360M": 'smollm2:360m-instruct-q5_K_M'
28
  }
29
 
 
13
 
14
  # Model from run.sh
15
  MODEL_ID_MAP = {
 
 
 
 
 
16
  "(IBM)Granite3.3-2B": 'granite3.3:2b',
17
+ "(ι˜Ώι‡Œεƒε•)Qwen3-4B-Instruct-2507": 'hf.co/bartowski/Qwen_Qwen3-4B-Instruct-2507-GGUF:Q4_K_M',
18
  "(Meta)Llama3.2-3B-Instruct": 'hf.co/bartowski/Llama-3.2-3B-Instruct-GGUF:Q4_K_M', # OK speed with CPU
19
  #"(ι˜Ώι‡Œεƒε•)Qwen3-4B-Thinking-2507": 'hf.co/bartowski/Qwen_Qwen3-4B-Thinking-2507-GGUF:Q4_K_M',
20
  "(Google)Gemma3n-e2b-it": 'gemma3n:e2b-it-q4_K_M',
21
+ "(Google)Gemma-3-270M-it-qat": 'hf.co/unsloth/gemma-3-270m-it-qat-GGUF:Q5_K_M',
 
22
  "(HuggingFace)SmolLM2-360M": 'smollm2:360m-instruct-q5_K_M'
23
  }
24