Views
No views yet
1{"op_code":8,"trial_id":91,"user_attr":{"index":92}}
2{"op_code":5,"trial_id":91,"param_name":"direction_scope","param_value_internal":0,"distribution":"{\"name\": \"CategoricalDistribution\", \"attributes\": {\"choices\": [\"global\", \"per layer\"]}}"}
3{"op_code":5,"trial_id":91,"param_name":"direction_index","param_value_internal":22.99689239818904,"distribution":"{\"name\": \"FloatDistribution\", \"attributes\": {\"step\": null, \"low\": 18.8, \"high\": 42.300000000000004, \"log\": false}}"}
4{"op_code":5,"trial_id":91,"param_name":"attn.o_proj.max_weight","param_value_internal":0.9380271121080993,"distribution":"{\"name\": \"FloatDistribution\", \"attributes\": {\"step\": null, \"low\": 0.8, \"high\": 1.5, \"log\": false}}"}
5{"op_code":5,"trial_id":91,"param_name":"attn.o_proj.max_weight_position","param_value_internal":31.525636769399277,"distribution":"{\"name\": \"FloatDistribution\", \"attributes\": {\"step\": null, \"low\": 28.2, \"high\": 47.0, \"log\": false}}"}
6{"op_code":5,"trial_id":91,"param_name":"attn.o_proj.min_weight","param_value_internal":0.6709461371984545,"distribution":"{\"name\": \"FloatDistribution\", \"attributes\": {\"step\": null, \"low\": 0.0, \"high\": 1.0, \"log\": false}}"}
7{"op_code":5,"trial_id":91,"param_name":"attn.o_proj.min_weight_distance","param_value_internal":13.951007092798159,"distribution":"{\"name\": \"FloatDistribution\", \"attributes\": {\"step\": null, \"low\": 1.0, \"high\": 28.2, \"log\": false}}"}
8{"op_code":5,"trial_id":91,"param_name":"mlp.down_proj.max_weight","param_value_internal":1.4972406248581245,"distribution":"{\"name\": \"FloatDistribution\", \"attributes\": {\"step\": null, \"low\": 0.8, \"high\": 1.5, \"log\": false}}"}
9{"op_code":5,"trial_id":91,"param_name":"mlp.down_proj.max_weight_position","param_value_internal":31.16484541825036,"distribution":"{\"name\": \"FloatDistribution\", \"attributes\": {\"step\": null, \"low\": 28.2, \"high\": 47.0, \"log\": false}}"}
10{"op_code":5,"trial_id":91,"param_name":"mlp.down_proj.min_weight","param_value_internal":0.8981925043519114,"distribution":"{\"name\": \"FloatDistribution\", \"attributes\": {\"step\": null, \"low\": 0.0, \"high\": 1.0, \"log\": false}}"}
11{"op_code":5,"trial_id":91,"param_name":"mlp.down_proj.min_weight_distance","param_value_internal":27.79514343007045,"distribution":"{\"name\": \"FloatDistribution\", \"attributes\": {\"step\": null, \"low\": 1.0, \"high\": 28.2, \"log\": false}}"}
12{"op_code":8,"trial_id":91,"user_attr":{"direction_index":22.99689239818904}}
13{"op_code":8,"trial_id":91,"user_attr":{"parameters":{"attn.o_proj":{"max_weight":0.9380271121080993,"max_weight_position":31.525636769399277,"min_weight":0.6293656674563509,"min_weight_distance":13.951007092798159},"mlp.down_proj":{"max_weight":1.4972406248581245,"max_weight_position":31.16484541825036,"min_weight":1.3448103064587396,"min_weight_distance":27.79514343007045}}}}
14{"op_code":8,"trial_id":91,"user_attr":{"kl_divergence":0.17889629304409027}}
15{"op_code":8,"trial_id":91,"user_attr":{"refusals":9}}
<think></think> blocks in its output. Meanwhile, specifying enable_thinking=False is no longer required.transformers.transformers<4.51.0, you will encounter the following error:KeyError: 'qwen3_moe'1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_name = "Qwen/Qwen3-Coder-30B-A3B-Instruct"
4
5# load the tokenizer and the model
6tokenizer = AutoTokenizer.from_pretrained(model_name)
7model = AutoModelForCausalLM.from_pretrained(
8 model_name,
9 torch_dtype="auto",
10 device_map="auto"
11)
12
13# prepare the model input
14prompt = "Write a quick sort algorithm."
15messages = [
16 {"role": "user", "content": prompt}
17]
18text = tokenizer.apply_chat_template(
19 messages,
20 tokenize=False,
21 add_generation_prompt=True,
22)
23model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
24
25# conduct text completion
26generated_ids = model.generate(
27 **model_inputs,
28 max_new_tokens=65536
29)
30output_ids = generated_ids[0][len(model_inputs.input_ids[0]):].tolist()
31
32content = tokenizer.decode(output_ids, skip_special_tokens=True)
33
34print("content:", content)32,768.1# Your tool implementation
2def square_the_number(num: float) -> dict:
3 return num ** 2
4
5# Define Tools
6tools=[
7 {
8 "type":"function",
9 "function":{
10 "name": "square_the_number",
11 "description": "output the square of the number.",
12 "parameters": {
13 "type": "object",
14 "required": ["input_num"],
15 "properties": {
16 'input_num': {
17 'type': 'number',
18 'description': 'input_num is a number that will be squared'
19 }
20 },
21 }
22 }
23 }
24]
25
26import OpenAI
27# Define LLM
28client = OpenAI(
29 # Use a custom endpoint compatible with OpenAI API
30 base_url='http://localhost:8000/v1', # api_base
31 api_key="EMPTY"
32)
33
34messages = [{'role': 'user', 'content': 'square the number 1024'}]
35
36completion = client.chat.completions.create(
37 messages=messages,
38 model="Qwen3-Coder-30B-A3B-Instruct",
39 max_tokens=65536,
40 tools=tools,
41)
42
43print(completion.choice[0])temperature=0.7, top_p=0.8, top_k=20, repetition_penalty=1.05.@misc{qwen3technicalreport,
title={Qwen3 Technical Report},
author={Qwen Team},
year={2025},
eprint={2505.09388},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2505.09388},
}