Balázs Thomay commited on
Commit
6f1ef1a
·
1 Parent(s): 7162200

Fix adapter path and repopulate model files for HF Spaces deployment

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ from mlx_lm.sample_utils import make_sampler
6
  print("Loading fine-tuned model...")
7
  model, tokenizer = mlx_lm.load(
8
  'mlx-community/Llama-3.2-3B-Instruct-4bit',
9
- adapter_path='./models/llama3.2-3b-quotes-lora-mlx'
10
  )
11
  print("✅ Model loaded successfully!")
12
 
 
6
  print("Loading fine-tuned model...")
7
  model, tokenizer = mlx_lm.load(
8
  'mlx-community/Llama-3.2-3B-Instruct-4bit',
9
+ adapter_path='./models'
10
  )
11
  print("✅ Model loaded successfully!")
12