refact: 移动目录,删除不必要的子文件夹

This commit is contained in:
carry
2025-05-29 18:27:02 +08:00
parent 5d6217c04f
commit 2e72d1e1bd
22 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
\begin{table}[!ht]
\centering
\caption{LLM 发展中的关键里程碑事件}
\label{tab:llm_milestones}
\begin{tabular}{>{\centering\arraybackslash}p{1.5cm}>{\centering\arraybackslash}p{2.8cm}p{10cm}}
\toprule
\rowcolor[gray]{0.9} \textbf{年份} & \textbf{里程碑} & \textbf{重要性} \\
\midrule
1966 & ELIZA & 第一个使用 NLP 的聊天机器人,基于关键词模拟对话。 \\
\addlinespace[0.5ex]
\rowcolor[gray]{0.95} 2017 & Transformer 架构 & 引入自注意力机制和平行处理,使得模型更加高效和上下文感知。 \\
\addlinespace[0.5ex]
2018 & BERT & 第一个突破性的 LLM在自然语言理解方面取得了显著进展。 \\
\addlinespace[0.5ex]
\rowcolor[gray]{0.95} 2018 & GPT-1 & 第一个使用 Transformer 架构进行生成文本的概念验证。 \\
\addlinespace[0.5ex]
2019 & GPT-2 & 展示了生成令人信服的文本的能力,引发了关于潜在滥用的担忧。 \\
\addlinespace[0.5ex]
\rowcolor[gray]{0.95} 2020 & GPT-3 & 参数规模显著增大1750 亿),展示了前所未有的语言理解和生成能力,成为 ChatGPT 的基础。 \\
\addlinespace[0.5ex]
2022 & ChatGPT & 面向消费者的应用程序,凭借其对话能力使 LLM 引起了主流关注。 \\
\addlinespace[0.5ex]
\rowcolor[gray]{0.95} 2023 & GPT-4 & 多模态模型,具有更高的准确性和推理能力。 \\
\addlinespace[0.5ex]
2023 & LLaMA & 流行的开源 LLM推动了 AI 的普及。 \\
\addlinespace[0.5ex]
\rowcolor[gray]{0.95} 2025 & DeepSeek-R1 & 在美国境外开发的高性能开源推理模型,凸显了 LLM 开发领域日益激烈的全球竞争。 \\
\addlinespace[0.5ex]
2025 & Claude 3 & GPT 模型的竞争者,强调乐于助人、诚实和无害,具有强大的推理和多模态能力。 \\
\addlinespace[0.5ex]
\rowcolor[gray]{0.95} 2025 & Gemini & 一系列多模态 AI 模型,旨在跨不同设备运行并涵盖广泛的用途,包括推理。 \\
\bottomrule
\end{tabular}
\end{table}

View File

@@ -0,0 +1,56 @@
\begin{figure}[H]
\centering
\begin{tikzpicture}[node distance=1.5cm, auto,
block/.style={rectangle, draw, fill=white, text width=12cm, text centered, rounded corners, minimum height=1.2cm, font=\small},
layer/.style={rectangle, draw, fill=white, text width=12cm, text centered, rounded corners, minimum height=4cm, font=\small},
module/.style={rectangle, draw, fill=white, text width=3cm, text centered, rounded corners, minimum height=1cm, font=\small},
arrow/.style={thick,->,>=stealth},
title/.style={font=\bfseries\small}
]
% 定义三层架构
\node[layer, fill=blue!10, text height=5cm] (presentation) at (0,0) {};
\node[title, above=0.5cm of presentation.north west, anchor=west] {表现层};
\node[layer, fill=green!10, below=1cm of presentation] (business) {};
\node[title, above=0.5cm of business.north west, anchor=west] {业务逻辑层};
\node[layer, fill=orange!10, below=1cm of business] (data) {};
\node[title, above=0.5cm of data.north west, anchor=west] {数据访问层};
% 表现层模块
\node[module, fill=blue!20] (ui1) at (-3.5, 1.5) {模型管理};
\node[module, fill=blue!20] (ui2) at (0, 1.5) {模型推理};
\node[module, fill=blue!20] (ui3) at (3.5, 1.5) {模型微调};
\node[module, fill=blue!20] (ui4) at (-3.5, 0) {数据集生成};
\node[module, fill=blue!20] (ui5) at (0, 0) {数据集管理};
\node[module, fill=blue!20] (ui6) at (3.5, 0) {提示词模板管理};
\node[module, fill=blue!20] (ui7) at (0, -1.5) {系统设置};
% 业务逻辑层模块
\node[module, fill=green!20] (bl1) at (-3.5, -5) {模型训练模块\\(Unsloth/TRL)};
\node[module, fill=green!20] (bl2) at (0, -5) {模型推理模块\\(流式生成)};
\node[module, fill=green!20] (bl3) at (3.5, -5) {数据集生成模块\\(LangChain)};
\node[module, fill=green!20] (bl4) at (-2, -6.5) {数据处理模块};
\node[module, fill=green!20] (bl5) at (2, -6.5) {配置管理模块};
% 数据访问层模块
\node[module, fill=orange!20] (dl1) at (-3.5, -10.5) {SQLite\\(系统配置)};
\node[module, fill=orange!20] (dl2) at (0, -10.5) {TinyDB\\(数据集管理)};
\node[module, fill=orange!20] (dl3) at (3.5, -10.5) {JSON文件\\(导入/导出)};
% 层间连接
\draw[arrow] (presentation.south) -- (business.north) node[midway, right] {函数调用};
\draw[arrow] (business.south) -- (data.north) node[midway, right] {数据操作};
% 添加Gradio框架标注
\node[above=0.2cm of presentation.north east, anchor=east, font=\small\itshape] {基于Gradio框架};
% % 添加说明
% \node[below=0.2cm of data.south, text width=12cm, text centered, font=\footnotesize]
% {系统采用三层架构设计,实现了功能模块间的解耦与分层,提高了系统的可扩展性和可维护性};
\end{tikzpicture}
\caption{系统三层架构设计图}
\label{fig:system-architecture}
\end{figure}

File diff suppressed because it is too large Load Diff