Instructions to use Clemylia/reeci-gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use Clemylia/reeci-gguf with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Clemylia/reeci-gguf", filename="Reecifp16.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use Clemylia/reeci-gguf with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Clemylia/reeci-gguf # Run inference directly in the terminal: llama-cli -hf Clemylia/reeci-gguf
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Clemylia/reeci-gguf # Run inference directly in the terminal: llama-cli -hf Clemylia/reeci-gguf
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf Clemylia/reeci-gguf # Run inference directly in the terminal: ./llama-cli -hf Clemylia/reeci-gguf
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf Clemylia/reeci-gguf # Run inference directly in the terminal: ./build/bin/llama-cli -hf Clemylia/reeci-gguf
Use Docker
docker model run hf.co/Clemylia/reeci-gguf
- LM Studio
- Jan
- Ollama
How to use Clemylia/reeci-gguf with Ollama:
ollama run hf.co/Clemylia/reeci-gguf
- Unsloth Studio new
How to use Clemylia/reeci-gguf with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Clemylia/reeci-gguf to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Clemylia/reeci-gguf to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Clemylia/reeci-gguf to start chatting
- Docker Model Runner
How to use Clemylia/reeci-gguf with Docker Model Runner:
docker model run hf.co/Clemylia/reeci-gguf
- Lemonade
How to use Clemylia/reeci-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Clemylia/reeci-gguf
Run and chat with the model
lemonade run user.reeci-gguf-{{QUANT_TAG}}List all available models
lemonade list
llm.create_chat_completion(
messages = "No input example has been defined for this model task."
)clemylia/reeci-gguf
This is a GGUF quantized version of the Clemylia/ReeCi model.
Converted using llama.cpp.
How to use
# 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!
- Downloads last month
- 2
Hardware compatibility
Log In to add your hardware
We're not able to determine the quantization variants.
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support
Model tree for Clemylia/reeci-gguf
Base model
Finisha-F-scratch/Lam-4-zero-F Finetuned
Clemylia/Charlotte-AMITY Finetuned
Finisha-F-scratch/ReeCi
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Clemylia/reeci-gguf", filename="Reecifp16.gguf", )