**Llama-3.2-1B-Code-Knowledge-Value-Eval **
This model is a fine-tuned version of meta-llama/Llama-3.2-1B on the kimsan0622/code-knowledge-eval dataset. It achieves the following results on the evaluation set:
- Loss: 1.0447
- Accuracy: 0.5227
Model Description
The model trained on the Code Knowledge Value Evaluation Dataset is designed to assess the educational and knowledge value of code snippets. It leverages patterns and contextual information from a large collection of open-source code, sourced from the bigcode/the-stack
repository. By analyzing these code samples, the model can evaluate their utility in teaching coding concepts, solving problems, and improving developer education.
The model focuses on understanding the structure, syntax, and logic of various programming languages, enabling it to provide insights into the learning potential and technical depth of different code samples. The dataset used for training consists of 22,786 samples for training, 4,555 for validation, and 18,232 for testing, ensuring that the model is both robust and well-generalized across different coding contexts.
Intended Uses & Limitations
Intended Uses:
- Automated Code Review: The model can be applied in automated systems to assess the knowledge value of code during code review processes. It can help identify areas where code could be optimized for better readability, maintainability, and educational impact.
- Educational Feedback: For instructors and educational platforms, the model can offer feedback on the effectiveness of code samples used in teaching, helping to improve curriculum materials and select code that best conveys core programming concepts.
- Curriculum Development: The model can aid in designing coding courses or instructional materials by suggesting code examples that have higher educational value, supporting a more effective learning experience.
- Technical Skill Assessment: Organizations or platforms can use the model to assess the complexity and educational value of code submissions in coding challenges or exams.
Limitations:
- Narrow Scope in Knowledge Evaluation: The model is specialized in evaluating code from an educational standpoint, focusing primarily on learning potential rather than production-level code quality (e.g., performance optimization or security).
- Language and Domain Limitations: Since the dataset is sourced from
bigcode/the-stack
, it may not cover all programming languages or specialized domains. The model may perform less effectively in underrepresented languages or niche coding styles not well-represented in the dataset. - Not Suitable for All Educational Levels: While the model is designed to evaluate code for educational purposes, its outputs may be better suited for certain levels (e.g., beginner or intermediate coding), and its recommendations might not fully cater to advanced or highly specialized learners.
How to use this model?
import torch
import numpy as np
from transformers import AutoTokenizer, AutoModelForSequenceClassification
# Define the model name or path for loading the tokenizer and model
model_name_or_path = "kimsan0622/Llama-3.2-1B-Code-Knowledge-Value-Eval"
# Load the tokenizer from the pre-trained model
tokenizer = AutoTokenizer.from_pretrained(model_name_or_path)
# Load the pre-trained model for sequence classification and map it to the first CUDA device
model = AutoModelForSequenceClassification.from_pretrained(
model_name_or_path,
device_map="cuda:0",
)
# Example code snippet to be evaluated
code = [
"""
import torch
import numpy as np
from transformers import AutoTokenizer, AutoModelForSequenceClassification
# Define the model name or path for loading the tokenizer and model
model_name_or_path = "kimsan0622/Llama-3.2-1B-Code-Knowledge-Value-Eval"
# Load the tokenizer from the pre-trained model
tokenizer = AutoTokenizer.from_pretrained(model_name_or_path)
# Load the pre-trained model for sequence classification and map it to the first CUDA device
model = AutoModelForSequenceClassification.from_pretrained(
model_name_or_path,
device_map="cuda:0",
)
# Example code snippet to be evaluated
code = ["code 1"]
# Tokenize the input code, setting max length, padding, and truncation
batch = tokenizer(code, max_length=1024, padding=True, truncation=True, return_tensors="pt")
# Perform inference with the model, without computing gradients (for faster inference)
with torch.no_grad():
# Pass the input IDs and attention mask to the model, using the CUDA device
res = model(
input_ids=batch["input_ids"].to("cuda:0"),
attention_mask=batch["attention_mask"].to("cuda:0"),
)
# Move the logits to the CPU, convert them to a numpy array
preds = res.logits.cpu().numpy()
# Get the predicted class by taking the argmax of the logits across the classification axis
preds = np.argmax(preds, axis=1).tolist()
"""
]
# Tokenize the input code, setting max length, padding, and truncation
batch = tokenizer(code, max_length=1024, padding=True, truncation=True, return_tensors="pt")
# Perform inference with the model, without computing gradients (for faster inference)
with torch.no_grad():
# Pass the input IDs and attention mask to the model, using the CUDA device
res = model(
input_ids=batch["input_ids"].to("cuda:0"),
attention_mask=batch["attention_mask"].to("cuda:0"),
)
# Move the logits to the CPU, convert them to a numpy array
preds = res.logits.cpu().numpy()
# Get the predicted class by taking the argmax of the logits across the classification axis
preds = np.argmax(preds, axis=1).tolist()
print(preds)
8 Bit quantization
from transformers import AutoTokenizer, AutoModelForSequenceClassification, BitsAndBytesConfig
# Define the model name or path for loading the model
model_name_or_path = "kimsan0622/Llama-3.2-1B-Code-Knowledge-Value-Eval"
# Configure the model to load in 8-bit precision for memory efficiency
bnb_config = BitsAndBytesConfig(load_in_8bit=True)
# Load the pre-trained model for sequence classification with quantization for 8-bit precision
# This helps reduce memory usage, particularly for large models, and map it to the first CUDA device
model = AutoModelForSequenceClassification.from_pretrained(
model_name_or_path,
quantization_config=bnb_config, # Apply 8-bit quantization
device_map="cuda:0", # Map the model to the first CUDA device
)
4 Bit quntization
from transformers import AutoTokenizer, AutoModelForSequenceClassification, BitsAndBytesConfig
import torch
# Define the model name or path for loading the model
model_name_or_path = "kimsan0622/Llama-3.2-1B-Code-Knowledge-Value-Eval"
# Define configuration parameters for 4-bit quantization
bnb_config_params = {
"bnb_4bit_quant_type": "fp4", # Use FP4 for 4-bit quantization type
"bnb_4bit_compute_dtype": torch.bfloat16, # Use bfloat16 for computation to balance performance and precision
"bnb_4bit_use_double_quant": False, # Disable double quantization, which is typically used to further reduce precision
"bnb_4bit_quant_storage": torch.bfloat16, # Store quantized values in bfloat16 format
}
# Configure the model to load in 4-bit precision for memory and performance optimization
bnb_config = BitsAndBytesConfig(load_in_4bit=True, **bnb_config_params)
# Load the pre-trained model for sequence classification with 4-bit quantization settings
# This reduces memory usage while still maintaining reasonable accuracy, mapping the model to the first CUDA device
model = AutoModelForSequenceClassification.from_pretrained(
model_name_or_path,
quantization_config=bnb_config, # Apply 4-bit quantization configuration
device_map="cuda:0", # Map the model to the first CUDA device
)
Training and evaluation data
kimsan0622/code-knowledge-eval
Training procedure
Training hyperparameters
The following hyperparameters were used during training:
- learning_rate: 0.0001
- train_batch_size: 128
- eval_batch_size: 64
- seed: 42
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- num_epochs: 5.0
Training results
Training Loss | Epoch | Step | Validation Loss | Accuracy |
---|---|---|---|---|
1.0722 | 1.0 | 179 | 1.2996 | 0.4296 |
0.9632 | 2.0 | 358 | 1.0447 | 0.5227 |
0.6905 | 3.0 | 537 | 1.1845 | 0.5412 |
0.3417 | 4.0 | 716 | 1.7654 | 0.5317 |
0.1224 | 5.0 | 895 | 2.3238 | 0.5322 |
Framework versions
- Transformers 4.44.2
- Pytorch 2.3.0
- Datasets 2.20.0
- Tokenizers 0.19.1
Test set results
Confusion matrix
y_true | pred_0 | pred_1 | pred_2 | pred_3 | pred_4 | pred_5 |
---|---|---|---|---|---|---|
0 | 595 | 680 | 21 | 70 | 11 | 0 |
1 | 116 | 727 | 76 | 283 | 39 | 3 |
2 | 36 | 542 | 120 | 871 | 187 | 18 |
3 | 14 | 287 | 107 | 2387 | 1958 | 172 |
4 | 3 | 42 | 8 | 924 | 3798 | 1549 |
5 | 0 | 3 | 0 | 20 | 583 | 1982 |
Classification report
y_true | precision | recall | f1-score | support |
---|---|---|---|---|
0 | 0.78 | 0.43 | 0.56 | 1377 |
1 | 0.32 | 0.58 | 0.41 | 1244 |
2 | 0.36 | 0.07 | 0.11 | 1774 |
3 | 0.52 | 0.48 | 0.50 | 4925 |
4 | 0.58 | 0.60 | 0.59 | 6324 |
5 | 0.53 | 0.77 | 0.63 | 2588 |
accuracy | 0.53 | 18232 | ||
macro avg | 0.52 | 0.49 | 0.47 | 18232 |
weighted avg | 0.53 | 0.53 | 0.51 | 18232 |
8 bit quantization
Confusion matrix
| y_true | precision | recall | f1-score | support | |-------|-------|-------|-------|-------|-------|-------| | 0 | 612 | 660 | 22 | 72 | 11 | 0 | | 1 | 128 | 705 | 83 | 287 | 38 | 3 | | 2 | 37 | 529 | 120 | 887 | 183 | 18 | | 3 | 14 | 277 | 106 | 2413 | 1943 | 172 | | 4 | 3 | 42 | 8 | 944 | 3791 | 1536 | | 5 | 0 | 3 | 0 | 20 | 588 | 1977 |
Classification report
y_true | precision | recall | f1-score | support |
---|---|---|---|---|
0 | 0.77 | 0.44 | 0.56 | 1377 |
1 | 0.32 | 0.57 | 0.41 | 1244 |
2 | 0.35 | 0.07 | 0.11 | 1774 |
3 | 0.52 | 0.49 | 0.51 | 4925 |
4 | 0.58 | 0.60 | 0.59 | 6324 |
5 | 0.53 | 0.76 | 0.63 | 2588 |
accuracy | 0.53 | 18232 | ||
macro avg | 0.51 | 0.49 | 0.47 | 18232 |
weighted avg | 0.53 | 0.53 | 0.51 | 18232 |
4 bit quantization
Confusion matrix
| y_true | precision | recall | f1-score | support | |-------|-------|-------|-------|-------|-------|-------| | 0 | 473 | 792 | 10 | 91 | 11 | 0 | | 1 | 66 | 767 | 47 | 325 | 38 | 1 | | 2 | 22 | 541 | 74 | 955 | 166 | 16 | | 3 | 8 | 282 | 55 | 2609 | 1824 | 147 | | 4 | 3 | 39 | 3 | 1049 | 3831 | 1399 | | 5 | 0 | 3 | 0 | 24 | 672 | 1889 |
Classification report
y_true | precision | recall | f1-score | support |
---|---|---|---|---|
0 | 0.83 | 0.34 | 0.49 | 1377 |
1 | 0.32 | 0.62 | 0.42 | 1244 |
2 | 0.39 | 0.04 | 0.08 | 1774 |
3 | 0.52 | 0.53 | 0.52 | 4925 |
4 | 0.59 | 0.61 | 0.60 | 6324 |
5 | 0.55 | 0.73 | 0.63 | 2588 |
accuracy | 0.53 | 18232 | ||
macro avg | 0.53 | 0.48 | 0.45 | 18232 |
weighted avg | 0.54 | 0.53 | 0.51 | 18232 |
- Downloads last month
- 12
Model tree for kimsan0622/Llama-3.2-1B-Code-Knowledge-Value-Eval
Base model
meta-llama/Llama-3.2-1B