Edit model card

Komodo-Logo

Komodo is a Qwen 2.5-7B-Instruct-FineTuned model on TIGER-Lab/MathInstruct dataset to increase math performance of the base model.

This model is 4bit-quantizated. You should import it 16bit if you want to use 7B parameters!

Suggested Usage:

tokenizer = AutoTokenizer.from_pretrained("suayptalha/Komodo-7B-Instruct")
model = AutoModelForCausalLM.from_pretrained("suayptalha/Komodo-7B-Instruct")

example_prompt = """Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.

### Instruction:
{}

### Input:
{}

### Response:
{}"""

inputs = tokenizer(
[
    example_prompt.format(
        "", #Your question here
        "", #Given input here
        "", #Output (for training)
    )
], return_tensors = "pt").to("cuda")

outputs = model.generate(**inputs, max_new_tokens = 512, use_cache = True)
tokenizer.batch_decode(outputs)
Downloads last month
24
Safetensors
Model size
4.46B params
Tensor type
FP16
·
F32
·
U8
·
Inference Examples
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social visibility and check back later, or deploy to Inference Endpoints (dedicated) instead.

Model tree for suayptalha/Komodo-7B-Instruct

Base model

Qwen/Qwen2.5-7B
Quantized
(56)
this model

Dataset used to train suayptalha/Komodo-7B-Instruct

Collection including suayptalha/Komodo-7B-Instruct