How to use from
Pi
Start the llama.cpp server
# Install llama.cpp:
brew install llama.cpp
# Start a local OpenAI-compatible server:
llama serve -hf rizkysulaeman/qwen_2_3B_reasoning_en_ft_v1:
Configure the model in Pi
# Install Pi:
npm install -g @earendil-works/pi-coding-agent
# Add to ~/.pi/agent/models.json:
{
  "providers": {
    "llama-cpp": {
      "baseUrl": "http://localhost:8080/v1",
      "api": "openai-completions",
      "apiKey": "none",
      "models": [
        {
          "id": "rizkysulaeman/qwen_2_3B_reasoning_en_ft_v1:"
        }
      ]
    }
  }
}
Run Pi
# Start Pi in your project directory:
pi
Quick Links

Model Card for CALISTA-INDUSTRY/qwen_2_3B_reasoning_en_ft_v1

Model Details

  • Model Name: qwen_2_3B_reasoning_en_ft_v1
  • Developed by: Mohammad Yani & Rizky Sulaeman, Politeknik Negeri Indramayu
  • Model Type: Transformer-based language model
  • Base Model: Qwen/Qwen2-3B
  • Parameter Count: 3.09 billion
  • Language: English
  • License: Apache 2.0
  • Fine-tuned from: Qwen2-3B

Model Description

This model is a fine-tuned version of Qwen2-3B, optimized for enhanced reasoning capabilities in English. It has been trained on a curated dataset to improve performance on tasks requiring logical inference, comprehension, and instruction following.

Intended Uses & Limitations

Direct Use

  • Applications:
    • Logical reasoning tasks
    • Instruction-based question answering
    • Conversational agents requiring enhanced reasoning

Downstream Use

  • Potential Applications:
    • Integration into AI systems requiring reasoning capabilities
    • Further fine-tuning for domain-specific tasks

Out-of-Scope Use

  • Not Recommended For:
    • Tasks requiring real-time decision-making in critical systems
    • Applications involving sensitive or personal data without proper safeguards

Bias, Risks, and Limitations

While efforts have been made to reduce biases during fine-tuning, the model may still exhibit biases present in the training data. Users should be cautious and evaluate the model's outputs, especially in sensitive applications.

How to Use

# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="CALISTA-INDUSTRY/qwen_2_3B_reasoning_en_ft_v1")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
Downloads last month
68
GGUF
Model size
3B params
Architecture
qwen2
Hardware compatibility
Log In to add your hardware

4-bit

5-bit

8-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for rizkysulaeman/qwen_2_3B_reasoning_en_ft_v1

Base model

Qwen/Qwen2.5-3B
Quantized
(277)
this model

Dataset used to train rizkysulaeman/qwen_2_3B_reasoning_en_ft_v1