Todd
Results
2
issues of
Todd
If I interpret the code right, the center frequencies are calculated in function `rb_space` as follows 1. divide frequency range from cutoff to fs/2 into N (frequency band number) parts,...
多图微调训练,llm_type=minicpm,报错“data fetch error“。 调试后发现,finetune/dataset.py的conversation_to_ids函数有bug。 根据llm_type的不同,conversation_to_ids函数会分别调用conversation_to_ids_llama3、conversation_to_ids_qwen2、conversation_to_ids_minicpm。前两个函数返回的input_ids是numpy对象,而最后一个函数直接返回list。然而conversation_to_ids函数的第146行使用`.shape`的方式获取input_ids的大小,导致错误。