Changeway-Qwen3.6-27B-V1

⚠️ Note: This repository contains the LoRA adapter weights only. It is not a standalone model. You must load it alongside the base model Qwen/Qwen3.6-27B.

This LoRA adapter is fine-tuned to enhance the model's capabilities specifically in the Cybersecurity domain. It was efficiently trained using Unsloth.

πŸ›‘οΈ Domain Focus: Cybersecurity

This fine-tuned adapter improves the base model's performance in:

  • Threat intelligence analysis
  • Log analysis and incident response
  • General cybersecurity knowledge retrieval

πŸ’» How to Merge and Save (Unsloth)

You can easily download this LoRA adapter, merge it with the base model, and save it as a complete 16-bit model using Unsloth.

Make sure you have Unsloth installed, then run the following Python script:

from unsloth import FastLanguageModel

# 1. Point model_name directly to this Hugging Face repository!
# Unsloth will automatically read the config and load the base model together with the LoRA.
LORA_DIR = "CTCT-CT2/Changeway-Qwen3.6-27B-LoRA-V1" 

model, tokenizer = FastLanguageModel.from_pretrained(
    model_name = LORA_DIR, 
    max_seq_length = 8192,
    dtype = None,
    load_in_4bit = False, # Note: It is best to disable 4bit when merging, load in 16bit mode
    device_map = "auto",  # [!] Let it automatically take over or force allocation
)

# 2. Merge the LoRA into the Base model and save as a new full model
MERGED_DIR = "./qwen-27b-cybersec-merged"
print(f"Merging and saving to {MERGED_DIR} ...")

model.save_pretrained_merged(MERGED_DIR, tokenizer, save_method="merged_16bit")
print("Merge completed successfully!")

πŸš€ Training Details

Downloads last month
15
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Model tree for CTCT-CT2/Changeway-Qwen3.6-27B-LoRA-V1

Base model

Qwen/Qwen3.6-27B
Adapter
(151)
this model