Shreyan Gondaliya commited on
Commit
8ba8901
·
verified ·
1 Parent(s): aa801cf

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -6
README.md CHANGED
@@ -46,15 +46,15 @@ Optimized specifically for Apple Silicon (M-series chips), this model balances t
46
  ## Installation
47
 
48
  Ensure you have the latest version of the MLX language model library installed:
49
-
50
  pip install mlx-lm
51
-
52
 
53
  ## Quick Start
54
 
55
  You can load and run inference with this model locally using the following Python script. It automatically detects and applies the correct chat template for structured instruction-following.
56
 
57
-
58
  from mlx_lm import load, generate
59
 
60
  # Load the optimized 6-bit model and its tokenizer
@@ -72,9 +72,8 @@ if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not
72
 
73
  # Generate the response with real-time streaming/verbosity
74
  response = generate(model, tokenizer, prompt=prompt, verbose=True)
75
-
76
-
77
- ## Acknowledgements
78
 
79
  * **Base Model:** Credit to `Jackrong` for the original [Qwopus3.6-27B-Coder](https://huggingface.co/Jackrong/Qwopus3.6-27B-Coder) architecture.
80
  * **Infrastructure:** The Apple Machine Learning Research team for the ongoing development of the [MLX framework](https://github.com/ml-explore/mlx).
 
46
  ## Installation
47
 
48
  Ensure you have the latest version of the MLX language model library installed:
49
+ ```
50
  pip install mlx-lm
51
+ ```
52
 
53
  ## Quick Start
54
 
55
  You can load and run inference with this model locally using the following Python script. It automatically detects and applies the correct chat template for structured instruction-following.
56
 
57
+ ```
58
  from mlx_lm import load, generate
59
 
60
  # Load the optimized 6-bit model and its tokenizer
 
72
 
73
  # Generate the response with real-time streaming/verbosity
74
  response = generate(model, tokenizer, prompt=prompt, verbose=True)
75
+ ```
76
+ # Acknowledgements
 
77
 
78
  * **Base Model:** Credit to `Jackrong` for the original [Qwopus3.6-27B-Coder](https://huggingface.co/Jackrong/Qwopus3.6-27B-Coder) architecture.
79
  * **Infrastructure:** The Apple Machine Learning Research team for the ongoing development of the [MLX framework](https://github.com/ml-explore/mlx).