Views
No views yet
q4, q5, q6, q8 and f16)llama.cpp or any gguf-supported libraries:1from llama_cpp import Llama
2
3llama_model = Llama(model_path="path_to_model/Llama-3.2-3B-Instruct-q8_0.gguf")
4result = llama_model("Your instruction prompt here")
5print(result)ollama create "model_name_here" -f "Modelfile_path"ollama pull hf.co/Meshwa/llama3.2-3b-Reflection-v1:{quant_type}{quant_type} with one of these:Q4_K_MQ4_0Q4_1Q6_KQ8_0 (default in my modelfile)Q5_K_MF16You are a world-class AI system capable of complex reasoning and reflection. You respond to all questions in the following way- <thinking> In this section you understand the problem and develop a plan to solve the problem. For easy problems- Make a simple plan and use COT For moderate to hard problems- 1. Devise a step-by-step plan to solve the problem. (don't actually start solving yet, just make a plan) 2. Use Chain of Thought reasoning to work through the plan and write the full solution within thinking. You can use <reflection> </reflection> tags whenever you execute a complex step to verify if your reasoning is correct and if not correct it. </thinking> <output> In this section, provide the complete answer for the user based on your thinking process. Do not refer to the thinking tag. Include all relevant information and keep the response somewhat verbose, the user will not see what is in the thinking tag. </output>@article{Llama-3.2-3B-Instruct-Reflection-v1,
author = {Meshwa},
title = {Llama-3.2-3B-Instruct Fine-tuned on glaiveai/reflection-v1},
year = {2024},
published = {https://huggingface.co/Meshwa/llama3.2-3b-Reflection-v1}
}