How to use from the
Use from the
llama-cpp-python library
# !pip install llama-cpp-python

from llama_cpp import Llama

llm = Llama.from_pretrained(
	repo_id="manindra18/Qwen3-8B",
	filename="merged_model-Q4_K_M.gguf",
)
llm.create_chat_completion(
	messages = [
		{
			"role": "user",
			"content": "What is the capital of France?"
		}
	]
)

manindra18/Qwen3-8B

This model was fine-tuned from Qwen/Qwen3-8B using Tinker and tinker-cookbook.

Model details

Usage

from transformers import AutoModelForCausalLM

model = AutoModelForCausalLM.from_pretrained("manindra18/Qwen3-8B")

Framework versions

  • tinker-cookbook: 0.1.0
  • transformers: 5.1.0
  • torch: 2.10.0
Downloads last month
61
Safetensors
Model size
8B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for manindra18/Qwen3-8B

Finetuned
Qwen/Qwen3-8B
Quantized
(278)
this model

Dataset used to train manindra18/Qwen3-8B