Cedar Qwen3.5-27B SFT v2

This is the 27B supervised fine-tuned base model used by the Cedar/RAISE access-control policy generation experiments. It maps natural-language access-control requirements and schemas to Cedar policies.

The model is based on Qwen/Qwen3.5-27B and is the required base for StephenChou/cedar-raise-qwen3.5-27b.

Loading

from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "StephenChou/cedar-qwen27b-sft-v2"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
    model_id,
    torch_dtype="auto",
    device_map="auto",
    trust_remote_code=True,
)

For vLLM:

from vllm import LLM

llm = LLM(
    model="StephenChou/cedar-qwen27b-sft-v2",
    dtype="bfloat16",
    trust_remote_code=True,
)

Intended use

Research on translating natural-language access-control requirements into Cedar policies. Outputs should be validated with the Cedar parser and semantic checks before deployment.

License

Apache-2.0, following the base model.

Downloads last month
12
Safetensors
Model size
27B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for StephenChou/cedar-qwen27b-sft-v2

Base model

Qwen/Qwen3.5-27B
Finetuned
(318)
this model
Adapters
1 model