yuto0o commited on
Commit
1c747b5
·
1 Parent(s): c4fe745

model小さく

Browse files
Files changed (1) hide show
  1. ml_api/model_loader.py +2 -1
ml_api/model_loader.py CHANGED
@@ -11,7 +11,8 @@ def get_model():
11
 
12
  if _model is None:
13
  print("Loading Qwen2.5-3B-Instruct... (Lazy Loading)")
14
- model_name = "Qwen/Qwen2.5-3B-Instruct"
 
15
 
16
  _tokenizer = AutoTokenizer.from_pretrained(model_name)
17
 
 
11
 
12
  if _model is None:
13
  print("Loading Qwen2.5-3B-Instruct... (Lazy Loading)")
14
+ model_name = "Qwen/Qwen2.5-1.5B-Instruct"
15
+ # model_name = "Qwen/Qwen2.5-3B-Instruct" # 遅い
16
 
17
  _tokenizer = AutoTokenizer.from_pretrained(model_name)
18