--- license: apache-2.0 base_model: Qwen/Qwen2.5-3B-Instruct tags: - qwen - instruct - stressstrain - 3b - fine-tuned --- # pandoradox/qwen2.5-3b-instruct_stressstrain_150 This is a fine-tuned version of Qwen/Qwen2.5-3B-Instruct on the stressstrain dataset. ## Model Details - **Base Model**: Qwen/Qwen2.5-3B-Instruct - **Dataset**: stressstrain - **Model Size**: 3b - **Checkpoint**: 150 - **Training Method**: LoRA (Low-Rank Adaptation) ## Usage ```python from transformers import AutoModelForCausalLM, AutoTokenizer model = AutoModelForCausalLM.from_pretrained("pandoradox/qwen2.5-3b-instruct_stressstrain_150") tokenizer = AutoTokenizer.from_pretrained("pandoradox/qwen2.5-3b-instruct_stressstrain_150") # Your inference code here ```