--- base_model: Clemylia/ReeCi tags: - gguf - llama-cpp - colab --- # clemylia/reeci-gguf This is a GGUF quantized version of the [Clemylia/ReeCi](https://huggingface.co/Clemylia/ReeCi) model. Converted using `llama.cpp`. ## How to use ```bash # First, clone llama.cpp git clone https://github.com/ggerganov/llama.cpp cd llama.cpp # Then, download this GGUF file # For example, using wget: wget https://huggingface.co/clemylia/reeci-gguf/resolve/main/Reecifp16.gguf # Compile llama.cpp (if you haven't already) make # Run the model ./main -m Reecifp16.gguf -p "Hello, my name is" ``` Enjoy!