Views
No views yet
DoesntKnowAI/NitroOxziT-8B using llama.cpp via the ggml.ai's GGUF-my-repo space.
Refer to the original model card for more details on the model.1slices:
2 - sources:
3 - model: NousResearch/Hermes-3-Llama-3.1-8B
4 layer_range: [0, 32]
5 weight: 0.60
6 - model: cognitivecomputations/Dolphin3.0-Llama3.1-8B
7 layer_range: [0, 32]
8 weight: 0.40
9merge_method: slerp
10parameters:
11 t:
12 - model: NousResearch/Hermes-3-Llama-3.1-8B
13 value: 1.0
14 - model: cognitivecomputations/Dolphin3.0-Llama3.1-8B
15 value: 1.0
16base_model: NousResearch/Hermes-3-Llama-3.1-8B
17dtype: bfloat161brew install llama.cpp
2llama-cli --hf-repo DoesntKnowAI/NitroOxziT-8B-Q8_0-GGUF --hf-file nitrooxzit-8b-q8_0.gguf -p "The meaning to life and the universe is"llama-server --hf-repo DoesntKnowAI/NitroOxziT-8B-Q8_0-GGUF --hf-file nitrooxzit-8b-q8_0.gguf -c 2048git clone https://github.com/ggerganov/llama.cppLLAMA_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./llama-cli --hf-repo DoesntKnowAI/NitroOxziT-8B-Q8_0-GGUF --hf-file nitrooxzit-8b-q8_0.gguf -p "The meaning to life and the universe is"./llama-server --hf-repo DoesntKnowAI/NitroOxziT-8B-Q8_0-GGUF --hf-file nitrooxzit-8b-q8_0.gguf -c 2048