--- thumbnail: /static-proxy?url=https%3A%2F%2Fcdn-uploads.huggingface.co%2Fproduction%2Fuploads%2F67c10cfba43d7939d60160ff%2FCjyto1cPNAwK2f_-uMyLz.png language: - en license: other inference: false tags: - nsfw - explicit - roleplay - mixed-AI - furry - anthro - dark - chat - llama-cpp - gguf-my-repo pipeline_tag: text-generation library_name: transformers base_model: Mawdistical/Kuwutu-7B datasets: - Delta-Vector/Hydrus-General-Reasoning - Delta-Vector/Hydrus-IF-Mix-Ai2 - Delta-Vector/Hydrus-Army-Inst - Delta-Vector/Hydrus-AM-thinking-Science - Delta-Vector/Hydrus-AM-Thinking-Code-Filtered - Delta-Vector/Hydrus-AM-Thinking-IF-No-Think - Delta-Vector/Hydrus-Tulu-SFT-Mix-V2 - Delta-Vector/Hydrus-System-Chat-2.0 - Delta-Vector/Orion-Praxis-Co-Writer - Delta-Vector/Orion-Co-Writer-51K - Delta-Vector/Orion-Creative_Writing-Complexity - Delta-Vector/Orion-vanilla-backrooms-claude-sharegpt - Delta-Vector/Hydrus-AM-Thinking-Multi-Turn - PocketDoc/Dans-Failuremaxx-Adventure - PocketDoc/Dans-Logicmaxx-SAT-AP - PocketDoc/Dans-MemoryCore-CoreCurriculum-Small - PocketDoc/Dans-Taskmaxx-DataPrepper - PocketDoc/Dans-Prosemaxx-Instructwriter-Long - PocketDoc/Dans-Prosemaxx-InstructWriter-ZeroShot-2 - PocketDoc/Dans-Prosemaxx-InstructWriter-ZeroShot-3 - PocketDoc/Dans-Prosemaxx-InstructWriter-Continue-2 - PocketDoc/Dans-Systemmaxx --- # HailJebus/Kuwutu-7B-Q4_0-GGUF This model was converted to GGUF format from [`Mawdistical/Kuwutu-7B`](https://huggingface.co/Mawdistical/Kuwutu-7B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space. Refer to the [original model card](https://huggingface.co/Mawdistical/Kuwutu-7B) for more details on the model. ## Use with llama.cpp Install llama.cpp through brew (works on Mac and Linux) ```bash brew install llama.cpp ``` Invoke the llama.cpp server or the CLI. ### CLI: ```bash llama-cli --hf-repo HailJebus/Kuwutu-7B-Q4_0-GGUF --hf-file kuwutu-7b-q4_0.gguf -p "The meaning to life and the universe is" ``` ### Server: ```bash llama-server --hf-repo HailJebus/Kuwutu-7B-Q4_0-GGUF --hf-file kuwutu-7b-q4_0.gguf -c 2048 ``` Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well. Step 1: Clone llama.cpp from GitHub. ``` git clone https://github.com/ggerganov/llama.cpp ``` Step 2: Move into the llama.cpp folder and build it with `LLAMA_CURL=1` flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux). ``` cd llama.cpp && LLAMA_CURL=1 make ``` Step 3: Run inference through the main binary. ``` ./llama-cli --hf-repo HailJebus/Kuwutu-7B-Q4_0-GGUF --hf-file kuwutu-7b-q4_0.gguf -p "The meaning to life and the universe is" ``` or ``` ./llama-server --hf-repo HailJebus/Kuwutu-7B-Q4_0-GGUF --hf-file kuwutu-7b-q4_0.gguf -c 2048 ```