Views
No views yet
Qwen/Qwen3.5-27Bqwen3_5_disable_thinkingpython (action language the agent emits)32learning_rate = 1e-5group_size = 8, groups_per_batch = 16max_tokens = 1024, max_trajectory_tokens = 12000distances = 1,2,3,4max_steps_off_policy = Nonesave_every = 5adapter_model.safetensors — Tinker raw LoRA adapter weightsadapter_config.json — adapter metadata (rank, alpha, target modules)README.md — this filetinker://c533f7ee-d0f6-567f-90ec-90ecc549733c:train:0/sampler_weights/000210--lora-modules loading, run on a machine that can
host the base model:1from tinker_cookbook.weights import build_lora_adapter
2
3build_lora_adapter(
4 base_model="Qwen/Qwen3.5-27B",
5 adapter_path="./tinker_adapter", # this repo's contents
6 output_path="./peft_adapter",
7)