LLM4Decompile 是一款开源大型语言模型,专注于反编译工作,我们将其试用过程进行介绍:
论文地址:https://arxiv.org/abs/2403.05286
代码地址:https://github.com/albertan017/LLM4Decompile
首先,找到代码位置:
1.搭建基础环境1.python3,我用的是3.12.4
2.安装Anaconda,命令行图形化界面都行。
按照指引,执行以下命令:
cd LLM4Decompile
conda create -n 'llm4decompile' python=3.9 -y
conda activate llm4decompile
pip install -r requirements.txt
注意,如果执行最后一句(pip install)如果有些依赖没有成功,可以暂时忽略。
3.编译源代码+转换成大模型识别的格式:
执行代码参考github里面的例子: