Alexie-Z-Yevich

Results 1 issues of Alexie-Z-Yevich

依据官方文档中的步骤对CodeQwen1.5-7B-Chat进行微调,流程全部跑通了,但是加载数据后并没有看出微调后的效果,甚至于自我认知微调都没有work ![image](https://github.com/modelscope/swift/assets/100772629/1341bdf3-e127-4833-bcd3-8854f9b00162) ```python sft_args = SftArguments( model_type=ModelType.codeqwen1half_7b_chat, model_id_or_path="qwen/CodeQwen1.5-7B-Chat", # dataset=[DatasetName.coig_cqia_chinese_traditional], custom_train_dataset_path=["F:/AAA/train.json"], train_dataset_sample=1000, logging_steps=5, max_length=2048, learning_rate=5e-5, warmup_ratio=0.4, output_dir='output', lora_target_modules=['ALL'], self_cognition_sample=500, dataloader_num_workers=0, model_name=['小黄', 'Xiao Huang'], model_author=['魔搭', 'ModelScope']) ``` train.json中只有1条数据,复制了100遍,训练完之后也没有work ```python # Experimental...