theprint commited on
Commit
36427f4
·
verified ·
1 Parent(s): 17c2eb7

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +8 -0
README.md CHANGED
@@ -76,6 +76,14 @@ response = tokenizer.decode(outputs[0], skip_special_tokens=True)
76
  print(response)
77
  ```
78
 
 
 
 
 
 
 
 
 
79
  ## Limitations
80
 
81
  May hallucinate or provide incorrect information. Not suitable for critical decision making.
 
76
  print(response)
77
  ```
78
 
79
+ ## GGUF Quantized Versions
80
+
81
+ Quantized GGUF versions are available in the `gguf/` directory for use with llama.cpp:
82
+
83
+ - `RRT1-3B-q4_k_m.gguf` - 4-bit quantization (recommended for most use cases)
84
+ - `RRT1-3B-q5_k_m.gguf` - 5-bit quantization (higher quality)
85
+ - `RRT1-3B-q8_0.gguf` - 8-bit quantization (highest quality)
86
+
87
  ## Limitations
88
 
89
  May hallucinate or provide incorrect information. Not suitable for critical decision making.