lifatsastain commited on
Commit
27e53ac
·
verified ·
1 Parent(s): 6919767

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: peft
3
+ base_model: Qwen/Qwen2.5-7B-Instruct
4
+ tags:
5
+ - lora
6
+ - sft
7
+ - transformers
8
+ - trl
9
+ - education
10
+ - machine-learning
11
+ license: apache-2.0
12
+ pipeline_tag: text-generation
13
+ language:
14
+ - en
15
+ ---
16
+
17
+ # teach_lora1 — ML Tutor LoRA
18
+
19
+ A LoRA adapter fine-tuned on top of **Qwen2.5-7B-Instruct** to teach machine learning concepts clearly and accessibly — the way great teachers do.
20
+
21
+ The model explains ML topics using:
22
+ - Intuitive analogies first, before the math
23
+ - Gradual concept build-up, one step at a time
24
+ - An encouraging, patient tone that makes learners feel capable
25
+ - A practice question at the end of every answer to reinforce understanding
26
+
27
+ ## Dataset Quality (DeepSeek judge, 5-point scale)
28
+
29
+ | Dimension | Score / 5 |
30
+ |-------------------|-----------|
31
+ | Analogy quality | 4.67 |
32
+ | Clarity | 5.00 |
33
+ | Encouraging tone | 5.00 |
34
+ | Practice question | 5.00 |
35
+ | Conciseness | 4.33 |
36
+ | **Average total** | **24.0 / 25** |
37
+
38
+ 0 entries flagged below threshold.
39
+
40
+ ## Usage
41
+
42
+ ```python
43
+ from transformers import AutoModelForCausalLM, AutoTokenizer, BitsAndBytesConfig
44
+ from peft import PeftModel
45
+ import torch
46
+
47
+ BASE_MODEL = "Qwen/Qwen2.5-7B-Instruct"
48
+ LORA_PATH = "your-username/teach_lora1" # this repo
49
+
50
+ quant_config = BitsAndBytesConfig(
51
+ load_in_4bit=True,
52
+ bnb_4bit_quant_type="nf4",
53
+ bnb_4bit_use_double_quant=True,
54
+ bnb_4bit_compute_dtype=torch.bfloat16,
55
+ )
56
+
57
+ model = AutoModelForCausalLM.from_pretrained(
58
+ BASE_MODEL, quantization_config=quant_config, device_map="auto"
59
+ )
60
+ model = PeftModel.from_pretrained(model, LORA_PATH)
61
+ model.eval()
62
+
63
+ tokenizer = AutoTokenizer.from_pretrained(LORA_PATH)
64
+
65
+ SYSTEM = (
66
+ "You are an ML tutor teaching CS students who know coding but not ML. "
67
+ "Always start with an intuitive analogy, build up to the concept, "
68
+ "and end with a practice question. Be encouraging and patient."
69
+ )
70
+
71
+ messages = [
72
+ {"role": "system", "content": SYSTEM},
73
+ {"role": "user", "content": "What is gradient descent?"},
74
+ ]
75
+ text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
76
+ inputs = tokenizer(text, return_tensors="pt").to(model.device)
77
+
78
+ with torch.no_grad():
79
+ output_ids = model.generate(**inputs, max_new_tokens=512, temperature=0.7, top_p=0.9,
80
+ do_sample=True, pad_token_id=tokenizer.eos_token_id)
81
+
82
+ new_tokens = output_ids[0][inputs["input_ids"].shape[-1]:]
83
+ print(tokenizer.decode(new_tokens, skip_special_tokens=True))
84
+ ```
85
+
86
+ ## Training Details
87
+
88
+ | Parameter | Value |
89
+ |------------------------|-------------------------------|
90
+ | Base model | Qwen2.5-7B-Instruct |
91
+ | LoRA rank (r) | 16 |
92
+ | LoRA alpha | 32 |
93
+ | LoRA dropout | 0.05 |
94
+ | Target modules | q_proj, k_proj, v_proj, o_proj |
95
+ | Training epochs | 1 |
96
+ | Learning rate | 2e-4 |
97
+ | Batch size | 1 (grad accum 16) |
98
+ | Max sequence length | 512 |
99
+ | Quantization | 4-bit NF4 |
100
+ | Optimizer | paged_adamw_8bit |
101
+
102
+ ### Framework Versions
103
+
104
+ - PEFT 0.18.1
105
+ - TRL 0.29.0
106
+ - Transformers 5.3.0
107
+ - PyTorch 2.10.0+cu126
108
+ - Datasets 4.7.0
adapter_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": null,
6
+ "base_model_name_or_path": "D:\\LmModels\\Qwen2.5-7B-Instruct4",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": false,
13
+ "inference_mode": true,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 32,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.05,
22
+ "megatron_config": null,
23
+ "megatron_core": "megatron.core",
24
+ "modules_to_save": null,
25
+ "peft_type": "LORA",
26
+ "peft_version": "0.18.1",
27
+ "qalora_group_size": 16,
28
+ "r": 16,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "q_proj",
33
+ "o_proj",
34
+ "k_proj",
35
+ "v_proj"
36
+ ],
37
+ "target_parameters": null,
38
+ "task_type": "CAUSAL_LM",
39
+ "trainable_token_indices": null,
40
+ "use_dora": false,
41
+ "use_qalora": false,
42
+ "use_rslora": false
43
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9789cdd0b2bb57a9939b7d33230dea2483398a4ebdf021cbf27e0361fb753ef2
3
+ size 20215208
chat_template.jinja ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0]['role'] == 'system' %}
4
+ {{- messages[0]['content'] }}
5
+ {%- else %}
6
+ {{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}
7
+ {%- endif %}
8
+ {{- "\n\n# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
9
+ {%- for tool in tools %}
10
+ {{- "\n" }}
11
+ {{- tool | tojson }}
12
+ {%- endfor %}
13
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
14
+ {%- else %}
15
+ {%- if messages[0]['role'] == 'system' %}
16
+ {{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
17
+ {%- else %}
18
+ {{- '<|im_start|>system\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\n' }}
19
+ {%- endif %}
20
+ {%- endif %}
21
+ {%- for message in messages %}
22
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
23
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
24
+ {%- elif message.role == "assistant" %}
25
+ {{- '<|im_start|>' + message.role }}
26
+ {%- if message.content %}
27
+ {{- '\n' + message.content }}
28
+ {%- endif %}
29
+ {%- for tool_call in message.tool_calls %}
30
+ {%- if tool_call.function is defined %}
31
+ {%- set tool_call = tool_call.function %}
32
+ {%- endif %}
33
+ {{- '\n<tool_call>\n{"name": "' }}
34
+ {{- tool_call.name }}
35
+ {{- '", "arguments": ' }}
36
+ {{- tool_call.arguments | tojson }}
37
+ {{- '}\n</tool_call>' }}
38
+ {%- endfor %}
39
+ {{- '<|im_end|>\n' }}
40
+ {%- elif message.role == "tool" %}
41
+ {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
42
+ {{- '<|im_start|>user' }}
43
+ {%- endif %}
44
+ {{- '\n<tool_response>\n' }}
45
+ {{- message.content }}
46
+ {{- '\n</tool_response>' }}
47
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
48
+ {{- '<|im_end|>\n' }}
49
+ {%- endif %}
50
+ {%- endif %}
51
+ {%- endfor %}
52
+ {%- if add_generation_prompt %}
53
+ {{- '<|im_start|>assistant\n' }}
54
+ {%- endif %}
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3fd169731d2cbde95e10bf356d66d5997fd885dd8dbb6fb4684da3f23b2585d8
3
+ size 11421892
tokenizer_config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "backend": "tokenizers",
4
+ "bos_token": null,
5
+ "clean_up_tokenization_spaces": false,
6
+ "eos_token": "<|im_end|>",
7
+ "errors": "replace",
8
+ "extra_special_tokens": [
9
+ "<|im_start|>",
10
+ "<|im_end|>",
11
+ "<|object_ref_start|>",
12
+ "<|object_ref_end|>",
13
+ "<|box_start|>",
14
+ "<|box_end|>",
15
+ "<|quad_start|>",
16
+ "<|quad_end|>",
17
+ "<|vision_start|>",
18
+ "<|vision_end|>",
19
+ "<|vision_pad|>",
20
+ "<|image_pad|>",
21
+ "<|video_pad|>"
22
+ ],
23
+ "is_local": true,
24
+ "model_max_length": 131072,
25
+ "pad_token": "<|endoftext|>",
26
+ "split_special_tokens": false,
27
+ "tokenizer_class": "Qwen2Tokenizer",
28
+ "unk_token": null
29
+ }