From 4a67c20b707ab1a456a4d31b78a62b6cd266139f Mon Sep 17 00:00:00 2001 From: carry <2641257231@qq.com> Date: Fri, 25 Apr 2025 20:59:10 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=B7=BB=E5=8A=A0=E5=B9=B6=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E8=AE=BA=E6=96=87=E7=AB=A0=E8=8A=82=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加了新的章节文件:相关技术介绍、需求分析、关键技术实现,并更新了总结与展望章节的内容。同时在主文件中引入了这些新章节,确保论文结构完整。 --- paper/latex/chapters/conclusion.tex | 4 ++-- paper/latex/chapters/implementation.tex | 3 +++ paper/latex/chapters/requirement.tex | 3 +++ paper/latex/chapters/technology.tex | 3 +++ paper/latex/main.tex | 6 ++++++ 5 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 paper/latex/chapters/implementation.tex create mode 100644 paper/latex/chapters/requirement.tex create mode 100644 paper/latex/chapters/technology.tex diff --git a/paper/latex/chapters/conclusion.tex b/paper/latex/chapters/conclusion.tex index 2d727e1..c723b9f 100644 --- a/paper/latex/chapters/conclusion.tex +++ b/paper/latex/chapters/conclusion.tex @@ -1,6 +1,6 @@ -% 结论章节 +% 第五章 总结与展望 -\section{结论} +\section{总结与展望} 本文提出的文档驱动自适应编码框架有效解决了大模型微调中的样本利用率问题,实验结果表明该方法在多个NLP任务上性能提升显著。 \ No newline at end of file diff --git a/paper/latex/chapters/implementation.tex b/paper/latex/chapters/implementation.tex new file mode 100644 index 0000000..4d648a8 --- /dev/null +++ b/paper/latex/chapters/implementation.tex @@ -0,0 +1,3 @@ +% 第四章:关键技术实现 + +\section{关键技术实现} \ No newline at end of file diff --git a/paper/latex/chapters/requirement.tex b/paper/latex/chapters/requirement.tex new file mode 100644 index 0000000..7b2da04 --- /dev/null +++ b/paper/latex/chapters/requirement.tex @@ -0,0 +1,3 @@ +% 第三章:需求分析 + +\section{需求分析} \ No newline at end of file diff --git a/paper/latex/chapters/technology.tex b/paper/latex/chapters/technology.tex new file mode 100644 index 0000000..5320c51 --- /dev/null +++ b/paper/latex/chapters/technology.tex @@ -0,0 +1,3 @@ +% 第二章:相关技术介绍 + +\section{相关技术介绍} \ No newline at end of file diff --git a/paper/latex/main.tex b/paper/latex/main.tex index dad4caa..1bc7559 100644 --- a/paper/latex/main.tex +++ b/paper/latex/main.tex @@ -129,6 +129,12 @@ \newpage \input{chapters/introduction} \newpage + \input{chapters/technology} + \newpage + \input{chapters/requirement} + \newpage + \input{chapters/implementation} + \newpage \input{chapters/conclusion}