diff --git a/paper/latex/figures/system_architecture.tex b/paper/latex/figures/system_architecture.tex index dd990cf..1a08054 100644 --- a/paper/latex/figures/system_architecture.tex +++ b/paper/latex/figures/system_architecture.tex @@ -16,7 +16,7 @@ \node[title, above=0.1cm of business.north west, anchor=west] {业务逻辑层}; \node[layer, fill=orange!10, below=0.5cm of business] (data) {}; - \node[title, above=0.1cm of data.north west, anchor=west] {数据访问层模块}; + \node[title, above=0.1cm of data.north west, anchor=west] {数据访问层}; % 表现层模块 \node[module, fill=blue!20] (ui1) at (-3.5, 1.5) {模型管理}; diff --git a/paper/latex/pic/training_metrics.png b/paper/latex/pic/training_metrics.png deleted file mode 100644 index 5038e89..0000000 Binary files a/paper/latex/pic/training_metrics.png and /dev/null differ diff --git a/report/.gitignore b/report/.gitignore new file mode 100644 index 0000000..85f7417 --- /dev/null +++ b/report/.gitignore @@ -0,0 +1,21 @@ +# LaTeX临时文件 +*.aux +*.log +*.out +*.toc +*.synctex.gz +*.bbl +*.blg +*.dvi +*.fdb_latexmk +*.fls +*.lof +*.lot +*.idx +*.ilg +*.ind +*.nav +*.snm +*.vrb +*.xdv +*.pdf \ No newline at end of file diff --git a/report/chapters/acknowledgements.tex b/report/chapters/acknowledgements.tex new file mode 100644 index 0000000..1580cf9 --- /dev/null +++ b/report/chapters/acknowledgements.tex @@ -0,0 +1,7 @@ +\begin{frame} +\frametitle{致谢} +\begin{center} +\LARGE{\textbf{感谢聆听!}}\\[0.5cm] +\large{欢迎各位老师提出宝贵意见} +\end{center} +\end{frame} \ No newline at end of file diff --git a/report/chapters/background.tex b/report/chapters/background.tex new file mode 100644 index 0000000..21a2341 --- /dev/null +++ b/report/chapters/background.tex @@ -0,0 +1,10 @@ +% 研究背景 +\section{研究背景} +\begin{frame} +\frametitle{研究背景} +\begin{itemize} +\item[\faCheckCircle] 研究领域现状:大语言模型在公开数据集与开源项目中表现优异,但在处理企业私有库时存在局限性 +\item[\faExclamationTriangle] 存在的问题:缺乏对私有库专有函数、类及其交互细节的深度理解,无法精准引用库中的类、方法或属性 +\item[\faFlask] 研究意义:通过深度解析私有库文档,对大语言模型进行微调与优化,提升生成代码的准确性和实用性 +\end{itemize} +\end{frame} \ No newline at end of file diff --git a/report/chapters/conclusion.tex b/report/chapters/conclusion.tex new file mode 100644 index 0000000..07ab4a2 --- /dev/null +++ b/report/chapters/conclusion.tex @@ -0,0 +1,26 @@ +% 总结与展望 +\section{总结与展望} +\begin{frame} +\frametitle{总结与展望} +\begin{itemize} +\item[\faBook] 主要工作总结 + \begin{itemize} + \item 提出了文档驱动的自适应编码大模型微调框架 + \item 实现了三层架构设计(表现层、业务逻辑层和数据访问层) + \item 实现了大语言模型的微调 + \end{itemize} +\item[\faLightbulb] 创新点总结 + \begin{itemize} + \item 开发了基于栈结构的Markdown文档解析器 + \item 采用了QLoRA参数高效微调方法 + \item 构建了基于提示工程的数据集生成工具 + \end{itemize} +\item[\faRoad] 未来工作展望 + \begin{itemize} + \item 边缘计算部署 + \item 更多的格式输入支持 + \item CICD集成 + \end{itemize} +\item[\faGithub] 软件仓库地址:\href{https://gitea.carry.fit/carry/gzhu-biyesheji}{https://gitea.carry.fit/carry/gzhu-biyesheji} +\end{itemize} +\end{frame} \ No newline at end of file diff --git a/report/chapters/design.tex b/report/chapters/design.tex new file mode 100644 index 0000000..6d65e56 --- /dev/null +++ b/report/chapters/design.tex @@ -0,0 +1,6 @@ +% 系统设计 +\section{系统设计} +\begin{frame} +\frametitle{系统架构} +\begin{center}\includegraphics[width=\textwidth,height=0.7\textheight,keepaspectratio]{./pic/system_architecture.png}\end{center} +\end{frame} \ No newline at end of file diff --git a/report/chapters/results.tex b/report/chapters/results.tex new file mode 100644 index 0000000..ca578a6 --- /dev/null +++ b/report/chapters/results.tex @@ -0,0 +1,85 @@ +% 实验结果 +\section{实验结果} + +\begin{frame} +\frametitle{实验条件介绍} +\begin{itemize} +\item[\faLaptop] 硬件配置 + \begin{itemize} + \item 笔记本型号:Lenovo Legion R7000P 2021H + \item CPU:AMD Ryzen 7 5800H + \item GPU:NVIDIA GeForce RTX 3060 Laptop GPU(6GB显存) + \item 内存:16GB DDR4 + \end{itemize} +\item[\faUbuntu] 软件环境 + \begin{itemize} + \item 操作系统:Ubuntu 22.04 LTS(通过WSL2运行) + \item Python版本:3.11.6 + \item 深度学习框架:PyTorch 2.1.0+cu121 + \end{itemize} +\item[\faRobot] 微调模型:unsloth官方qwen-2.5-3b-4bit量化模型(\href{https://huggingface.co/unsloth/Qwen2.5-3B-Instruct-bnb-4bit}{https://huggingface.co/unsloth/Qwen2.5-3B-Instruct-bnb-4bit}) +\item[\faBook] 仓库文档:unsloth官方仓库文档(\href{https://docs.unsloth.ai/}{https://docs.unsloth.ai/}) +\end{itemize} +\end{frame} + +\begin{frame} +\frametitle{训练指标变化} +\begin{figure}[h] +\centering +\begin{tikzpicture} +\begin{axis}[ + xlabel=Step, + ylabel=Loss, + width=\textwidth, + height=0.8\textheight] +\addplot[mark=none] table[x=Step,y=loss,col sep=comma] {./figures/training_data.csv}; +\end{axis} +\end{tikzpicture} +\caption{训练损失变化曲线} +\end{figure} +\end{frame} + +\begin{frame} +\frametitle{训练指标变化} +\begin{figure}[h] +\centering +\begin{tikzpicture} +\begin{axis}[ + xlabel=Step, + ylabel=Grad Norm, + width=\textwidth, + height=0.8\textheight] +\addplot[mark=none] table[x=Step,y=grad_norm,col sep=comma] {./figures/training_data.csv}; +\end{axis} +\end{tikzpicture} +\caption{梯度范数变化曲线} +\end{figure} +\end{frame} + +\begin{frame} +\frametitle{训练指标变化} +\begin{figure}[h] +\centering +\begin{tikzpicture} +\begin{axis}[ + xlabel=Step, + ylabel=Learning Rate, + width=\textwidth, + height=0.8\textheight] +\addplot[mark=none] table[x=Step,y=learning_rate,col sep=comma] {./figures/training_data.csv}; +\end{axis} +\end{tikzpicture} +\caption{学习率变化曲线} +\end{figure} +\end{frame} + +\begin{frame} +\frametitle{微调效果验证} +\begin{figure}[htbp] +\centering +\includegraphics[width=0.45\textwidth]{./pic/before_train.png} +\hspace{0.05\textwidth} +\includegraphics[width=0.45\textwidth]{./pic/after_train.png} +\caption{训练前后对比} +\end{figure} +\end{frame} \ No newline at end of file diff --git a/report/chapters/technology.tex b/report/chapters/technology.tex new file mode 100644 index 0000000..5c63d47 --- /dev/null +++ b/report/chapters/technology.tex @@ -0,0 +1,24 @@ +% 技术介绍 +\section{技术介绍} +\begin{frame} +\frametitle{技术介绍} +\begin{itemize} +\item \faDesktop 前端技术栈 + \begin{itemize} + \item Gradio - Python 机器学习前端框架 + \end{itemize} +\item \faServer 后端技术栈 + \begin{itemize} + \item Python - 主要开发语言 + \item SQLite - 轻量级关系型数据库 + \item TinyDB - 轻量级非关系型数据库 + \item LangChain - 大语言模型应用框架 + \end{itemize} +\item \faBrain 人工智能技术 + \begin{itemize} + \item Qwen2.5 - 开源大语言模型 + \item Unsloth - 开源微调工具 + \item QLoRA - 低秩适应微调技术 + \end{itemize} +\end{itemize} +\end{frame} \ No newline at end of file diff --git a/report/figures/training_data.csv b/report/figures/training_data.csv new file mode 100644 index 0000000..bad9833 --- /dev/null +++ b/report/figures/training_data.csv @@ -0,0 +1,1001 @@ +Wall time,Step,grad_norm,learning_rate,loss +1745776475,5,0.669125497,0.000199886,2.437799931 +1745776516,19,0.77576071,0.000199488,1.825199962 +1745776539,27,0.499134421,0.00019926,2.3598001 +1745776542,28,0.607412994,0.000199232,2.322000027 +1745776579,41,0.526714742,0.000198862,1.67750001 +1745776600,48,0.486247063,0.000198663,1.811200023 +1745776603,49,0.480234593,0.000198634,1.663300037 +1745776644,63,0.492378086,0.000198236,1.224799991 +1745776646,64,0.666788936,0.000198207,1.252400041 +1745776658,68,0.601050436,0.000198094,1.925699949 +1745776669,72,0.701449752,0.00019798,1.849400043 +1745776687,78,0.595016599,0.000197809,1.978899956 +1745776702,83,0.836427331,0.000197667,2.30250001 +1745776723,90,0.752524734,0.000197468,1.978899956 +1745776752,100,0.704373479,0.000197183,1.760200024 +1745776764,104,0.847987354,0.000197069,1.597599983 +1745776776,108,0.592884064,0.000196955,1.681100011 +1745776817,122,0.611223221,0.000196557,1.170400023 +1745776829,126,0.73131907,0.000196443,1.587900043 +1745776832,127,0.586550117,0.000196415,1.589300036 +1745776838,129,0.784199357,0.000196358,1.344300032 +1745776844,131,0.702612102,0.000196301,1.669199944 +1745776858,137,0.667642474,0.00019613,1.579100013 +1745776876,145,0.67065233,0.000195903,0.867699981 +1745776882,148,0.70748359,0.000195817,1.707000017 +1745776905,158,0.700962067,0.000195533,1.736299992 +1745776912,161,0.589051545,0.000195447,2.199700117 +1745776917,163,0.843929887,0.000195391,1.776100039 +1745776922,165,0.694833577,0.000195334,1.705000043 +1745776941,173,0.72277981,0.000195106,1.559700012 +1745776952,178,0.728590071,0.000194964,1.350600004 +1745776985,192,0.749016464,0.000194565,1.906100035 +1745777013,204,0.723686278,0.000194224,1.290300012 +1745777018,206,0.904402733,0.000194167,1.390900016 +1745777036,214,0.673756003,0.000193939,0.993399978 +1745777071,230,0.667938471,0.000193484,1.091400027 +1745777105,245,0.857189059,0.000193057,1.677899957 +1745777108,246,0.66783917,0.000193029,1.325000048 +1745777137,259,0.708358169,0.000192659,1.327600002 +1745777139,260,0.696712732,0.000192631,0.734000027 +1745777167,272,0.770395935,0.000192289,0.692600012 +1745777174,275,0.839413106,0.000192204,2.130199909 +1745777192,283,1.083558559,0.000191976,1.325799942 +1745777199,286,0.772487462,0.000191891,1.298900008 +1745777211,291,0.988351822,0.000191748,1.316699982 +1745777222,296,0.621288419,0.000191606,0.783999979 +1745777252,309,0.632342696,0.000191236,0.805599988 +1745777270,317,0.772060871,0.000191009,0.906000018 +1745777274,319,0.55184561,0.000190952,0.712599993 +1745777277,320,0.786289394,0.000190923,1.081900001 +1745777284,323,0.824997008,0.000190838,0.696500003 +1745777337,346,0.830534041,0.000190184,1.292500019 +1745777339,347,1.277575493,0.000190155,1.063199997 +1745777366,359,1.023375988,0.000189814,1.366299987 +1745777379,365,0.816934466,0.000189643,1.051200032 +1745777382,366,0.657472372,0.000189614,1.194300056 +1745777384,367,1.015310645,0.000189586,0.997200012 +1745777410,379,0.830804288,0.000189245,1.092000008 +1745777428,387,0.859659314,0.000189017,1.275200009 +1745777437,391,0.851864994,0.000188903,0.953499973 +1745777441,393,0.821514547,0.000188846,1.224499941 +1745777464,403,0.889717281,0.000188562,0.775600016 +1745777468,405,0.682697177,0.000188505,0.774699986 +1745777493,416,0.767498136,0.000188192,0.513400018 +1745777507,422,1.017907739,0.000188021,1.809000015 +1745777510,423,0.625673294,0.000187993,0.991400003 +1745777541,437,0.877158284,0.000187594,1.002799988 +1745777544,438,0.80651325,0.000187566,0.958599985 +1745777548,440,0.845542073,0.000187509,1.085500002 +1745777564,447,0.914067268,0.00018731,1.172999978 +1745777598,462,0.769426346,0.000186883,0.859700024 +1745777607,466,1.161617875,0.000186769,1.199399948 +1745777614,469,1.026721835,0.000186684,1.194399953 +1745777618,471,0.819837034,0.000186627,1.301100016 +1745777627,475,0.768916667,0.000186513,0.977599978 +1745777630,476,1.186233878,0.000186485,1.208999991 +1745777640,481,0.741264999,0.000186342,1.364799976 +1745777643,482,0.771084964,0.000186314,0.835699975 +1745777656,488,0.885741413,0.000186143,0.963199973 +1745777709,511,1.06467557,0.000185489,1.279399991 +1745777713,513,0.79968971,0.000185432,0.763800025 +1745777716,514,0.947679758,0.000185403,1.114500046 +1745777718,515,0.838594675,0.000185375,1.093000054 +1745777725,518,0.715767264,0.00018529,1.094300032 +1745777730,520,0.803318441,0.000185233,1.208699942 +1745777761,534,0.963535309,0.000184834,1.022799969 +1745777764,535,0.803730249,0.000184806,1.435899973 +1745777768,537,0.881738901,0.000184749,1.019099951 +1745777773,539,0.646617055,0.000184692,0.985700011 +1745777779,541,0.767787874,0.000184635,1.094400048 +1745777790,545,0.831731498,0.000184521,0.844500005 +1745777795,547,0.732076645,0.000184464,0.689199984 +1745777809,553,1.036145687,0.000184294,1.204399943 +1745777818,557,0.626746476,0.00018418,1.408300042 +1745777832,563,1.062179446,0.000184009,0.994700015 +1745777837,565,0.934060276,0.000183952,1.106400013 +1745777846,569,0.975628674,0.000183838,1.184299946 +1745777884,585,0.922383487,0.000183383,1.083400011 +1745777898,591,1.017105699,0.000183212,0.828299999 +1745777907,595,0.955127358,0.000183099,0.798699975 +1745777912,597,1.033809066,0.000183042,0.776199996 +1745777954,615,1.001715541,0.00018253,0.901199996 +1745777975,624,0.886688769,0.000182273,0.410299987 +1745777986,629,0.955400765,0.000182131,0.703700006 +1745777988,630,0.952499449,0.000182103,0.734399974 +1745778007,638,0.651279032,0.000181875,0.956200004 +1745778021,644,0.997050464,0.000181704,0.657199979 +1745778023,645,0.733035684,0.000181676,0.445199996 +1745778035,650,0.851001441,0.000181534,1.084200025 +1745778056,659,1.44598949,0.000181278,1.001000047 +1745778077,668,0.946549058,0.000181021,0.680000007 +1745778096,676,0.834762633,0.000180794,0.439900011 +1745778098,677,1.209012151,0.000180765,0.769599974 +1745778136,693,1.030470133,0.00018031,0.780499995 +1745778140,695,1.196207047,0.000180253,0.885299981 +1745778202,722,0.793997347,0.000179485,0.474700004 +1745778207,724,0.733438611,0.000179428,0.552100003 +1745778212,726,0.611062884,0.000179371,0.457599998 +1745778219,729,1.017438173,0.000179286,0.887300014 +1745778225,732,1.135642767,0.0001792,0.654299974 +1745778228,733,1.531584859,0.000179172,1.031900048 +1745778254,745,1.241144538,0.000178831,0.820100009 +1745778299,765,0.869245768,0.000178261,0.636200011 +1745778325,776,0.827634454,0.000177949,0.446500003 +1745778327,777,1.052571416,0.00017792,0.555700004 +1745778341,783,0.979224682,0.000177749,0.613300025 +1745778355,789,0.82897532,0.000177579,0.446200013 +1745778391,805,1.034936905,0.000177123,0.787400007 +1745778394,806,1.003634691,0.000177095,0.72329998 +1745778398,808,1.228363395,0.000177038,0.798600018 +1745778427,820,0.649968088,0.000176697,0.921299994 +1745778456,833,0.884137809,0.000176327,0.369899988 +1745778475,841,1.299226761,0.000176099,0.777700007 +1745778482,844,1.153564453,0.000176014,0.894299984 +1745778514,858,0.93966192,0.000175615,0.626299977 +1745778526,863,1.023438573,0.000175473,0.677299976 +1745778535,867,0.701830029,0.000175359,0.453500003 +1745778547,872,0.95842576,0.000175217,1.04429996 +1745778581,887,1.095156431,0.00017479,0.840200007 +1745778606,898,0.793328106,0.000174477,0.379700005 +1745778615,902,0.743397415,0.000174363,0.466600001 +1745778679,931,0.834807396,0.000173538,0.462900013 +1745778684,933,0.648819149,0.000173481,0.371600002 +1745778707,943,0.745461106,0.000173197,0.490399987 +1745778723,950,0.927531242,0.000172998,0.425300002 +1745778755,964,0.890991211,0.000172599,0.466800004 +1745778836,1000,0.954384744,0.000171575,0.809199989 +1745778850,1003,0.792323232,0.00017149,0.603900015 +1745778854,1005,1.262999535,0.000171433,0.84009999 +1745778879,1016,0.694534421,0.00017112,0.391600013 +1745778895,1023,1.627935886,0.00017092,1.077900052 +1745778905,1027,0.960619569,0.000170807,0.522000015 +1745778909,1029,0.967088878,0.00017075,0.494100004 +1745778930,1038,1.076974869,0.000170494,0.687399983 +1745778976,1057,0.895044386,0.000169953,0.507499993 +1745779008,1071,1.175272584,0.000169555,1.125800014 +1745779011,1072,1.384612083,0.000169526,0.801699996 +1745779015,1074,0.853760123,0.000169469,0.328299999 +1745779025,1078,1.032249928,0.000169356,0.727500021 +1745779045,1087,1.199019313,0.000169099,0.847500026 +1745779073,1099,1.063115716,0.000168758,0.866999984 +1745779082,1103,0.96053201,0.000168644,0.4384 +1745779086,1105,1.006346583,0.000168587,0.736400008 +1745779093,1108,0.99047184,0.000168502,0.686100006 +1745779098,1110,1.228808641,0.000168445,0.901199996 +1745779102,1112,0.788023472,0.000168388,0.464300007 +1745779125,1122,0.812449098,0.000168104,0.302700013 +1745779134,1126,0.710420132,0.00016799,0.433499992 +1745779150,1133,1.300768375,0.000167791,0.711199999 +1745779155,1135,1.185309052,0.000167734,0.632099986 +1745779166,1140,0.873482525,0.000167591,0.513000011 +1745779182,1147,0.536997318,0.000167392,0.685100019 +1745779194,1152,1.18606174,0.00016725,0.875100017 +1745779196,1153,0.724254072,0.000167222,0.597299993 +1745779223,1165,0.889515102,0.00016688,0.555400014 +1745779244,1175,0.702254713,0.000166596,0.398600012 +1745779249,1177,0.807212889,0.000166539,0.459500015 +1745779251,1178,0.423265785,0.00016651,0.186499998 +1745779267,1185,1.012679219,0.000166311,0.313300014 +1745779278,1190,0.945872664,0.000166169,0.217399999 +1745779287,1194,0.941315591,0.000166055,0.334399998 +1745779289,1195,1.30945313,0.000166026,0.317400008 +1745779316,1207,0.88430649,0.000165685,0.170200005 +1745779334,1215,0.704765916,0.000165457,0.290199995 +1745779343,1219,0.66335535,0.000165344,0.258300006 +1745779359,1226,1.262841582,0.000165144,0.600899994 +1745779401,1245,1.100461245,0.000164604,0.231700003 +1745779405,1247,0.983985245,0.000164547,0.552600026 +1745779416,1252,0.668486655,0.000164405,0.153899997 +1745779419,1253,0.791264117,0.000164376,0.301200002 +1745779423,1255,0.920121253,0.000164319,0.317400008 +1745779429,1258,1.042229056,0.000164234,0.278200001 +1745779438,1262,0.577004611,0.00016412,0.205899999 +1745779451,1268,0.719183326,0.000163949,0.187000006 +1745779460,1272,0.710058808,0.000163836,0.280000001 +1745779471,1277,0.769889414,0.000163693,0.323000014 +1745779485,1283,0.506689489,0.000163523,0.261900008 +1745779491,1286,1.103278041,0.000163437,0.461199999 +1745779502,1291,0.477311641,0.000163295,0.116099998 +1745779520,1299,0.8685202,0.000163067,0.372000009 +1745779529,1303,0.761532485,0.000162953,0.307900012 +1745779539,1307,1.245371461,0.00016284,0.507300019 +1745779559,1316,0.936608613,0.000162584,0.307000011 +1745779575,1323,0.718995273,0.000162384,0.288199991 +1745779582,1326,0.8415851,0.000162299,0.220500007 +1745779584,1327,0.917433739,0.000162271,0.336600006 +1745779604,1336,1.089907765,0.000162015,0.493699998 +1745779627,1346,1.226738811,0.00016173,0.692600012 +1745779661,1361,0.741950452,0.000161303,0.177599996 +1745779669,1365,1.031413078,0.000161189,0.257400006 +1745779694,1376,0.685537338,0.000160876,0.151099995 +1745779697,1377,1.019259334,0.000160848,0.407799989 +1745779706,1381,1.092564702,0.000160734,0.488599986 +1745779735,1394,0.888154507,0.000160364,0.280900002 +1745779789,1418,0.468822867,0.000159681,0.163699999 +1745779837,1439,0.802174151,0.000159084,0.296700001 +1745779839,1440,0.450671136,0.000159055,0.117200002 +1745779881,1458,0.85918045,0.000158543,0.241600007 +1745779883,1459,0.622847736,0.000158515,0.166700006 +1745779890,1462,0.903177321,0.000158429,0.272799999 +1745779920,1475,0.742919207,0.000158059,0.220799997 +1745779924,1477,0.836010039,0.000158003,0.381700009 +1745779949,1488,0.730145574,0.00015769,0.2958 +1745779956,1491,0.920006752,0.000157604,0.356400013 +1745779965,1495,0.618639648,0.00015749,0.1972 +1745779982,1503,1.132806897,0.000157263,0.448500007 +1745779998,1510,0.790017903,0.000157064,0.246199995 +1745780001,1511,1.227881312,0.000157035,0.565800011 +1745780007,1514,0.900107801,0.00015695,0.337000012 +1745780014,1517,1.048547149,0.000156864,0.299199998 +1745780041,1529,1.1155653,0.000156523,0.414299995 +1745780055,1535,0.912510216,0.000156352,0.360500008 +1745780063,1539,0.988744438,0.000156238,0.363299996 +1745780085,1549,0.876195967,0.000155954,0.198500007 +1745780092,1552,0.715558946,0.000155869,0.172199994 +1745780123,1566,0.948795855,0.00015547,0.636500001 +1745780130,1569,0.588770032,0.000155385,0.535300016 +1745780141,1574,0.813023686,0.000155243,0.26730001 +1745780148,1577,1.428598166,0.000155157,0.772700012 +1745780170,1586,0.891056538,0.000154901,0.502900004 +1745780194,1597,0.886262476,0.000154588,0.244299993 +1745780205,1602,0.652859151,0.000154446,0.191300005 +1745780209,1604,0.87487483,0.000154389,0.281300008 +1745780263,1628,0.754654646,0.000153706,0.260699987 +1745780283,1636,1.081161976,0.000153478,0.446700007 +1745780287,1638,0.801035821,0.000153422,0.421000004 +1745780308,1647,0.706143856,0.000153165,0.243499994 +1745780310,1648,0.707298577,0.000153137,0.297300011 +1745780325,1655,0.960742891,0.000152938,0.221799999 +1745780343,1663,0.792329907,0.00015271,0.234999999 +1745780352,1667,0.841401696,0.000152596,0.395300001 +1745780361,1671,0.768656969,0.000152483,0.247400001 +1745780377,1678,0.890912473,0.000152283,0.233999997 +1745780381,1680,0.896562874,0.000152226,0.388000011 +1745780395,1686,1.124374747,0.000152056,0.3028 +1745780415,1695,1.236979008,0.0001518,0.393900007 +1745780433,1703,0.752921879,0.000151572,0.375699997 +1745780438,1705,0.482680589,0.000151515,0.150900006 +1745780446,1708,1.268706679,0.00015143,0.379299998 +1745780453,1711,0.812398255,0.000151344,0.248500004 +1745780455,1712,0.848136842,0.000151316,0.391400009 +1745780472,1719,0.878563404,0.000151117,0.287999988 +1745780484,1724,0.511169374,0.000150975,0.182099998 +1745780500,1731,0.595858634,0.000150775,0.170000002 +1745780521,1740,1.363909364,0.000150519,0.536800027 +1745780534,1746,0.828966022,0.000150349,0.245800003 +1745780554,1755,0.523295581,0.000150092,0.109200001 +1745780578,1766,0.341214806,0.000149779,0.087700002 +1745780600,1776,0.383517295,0.000149495,0.113700002 +1745780605,1778,0.55280602,0.000149438,0.056499999 +1745780621,1785,0.368459314,0.000149239,0.0704 +1745780632,1790,0.549353063,0.000149097,0.164299995 +1745780639,1793,0.619729042,0.000149011,0.063100003 +1745780657,1801,0.903185308,0.000148784,0.159999996 +1745780701,1820,0.617146671,0.000148243,0.128399998 +1745780726,1831,0.886353731,0.00014793,0.146500006 +1745780764,1848,0.836283267,0.000147446,0.196799994 +1745780773,1852,0.33563453,0.000147332,0.090800002 +1745780793,1861,0.687563062,0.000147076,0.235100001 +1745780805,1866,0.935740232,0.000146934,0.203199998 +1745780807,1867,0.656607568,0.000146906,0.107299998 +1745780809,1868,0.817758024,0.000146877,0.214100003 +1745780858,1889,0.792834044,0.00014628,0.243200004 +1745780883,1900,0.885665953,0.000145967,0.309500009 +1745780890,1903,0.514903128,0.000145881,0.090899996 +1745780904,1909,0.619725645,0.000145711,0.188899994 +1745780906,1910,0.599166334,0.000145682,0.200599998 +1745780927,1919,0.531597137,0.000145426,0.136199996 +1745780942,1925,0.614124298,0.000145255,0.125599995 +1745780944,1926,0.607369006,0.000145227,0.166199997 +1745780968,1937,0.371850044,0.000144914,0.109200001 +1745780977,1941,0.548915505,0.0001448,0.115900002 +1745780988,1946,0.44726941,0.000144658,0.066100001 +1745780993,1948,0.684306979,0.000144601,0.175899997 +1745781013,1957,0.776216745,0.000144345,0.118199997 +1745781022,1961,0.379118323,0.000144231,0.063699998 +1745781024,1962,0.662571192,0.000144203,0.130099997 +1745781028,1964,0.825808704,0.000144146,0.224000007 +1745781030,1965,0.816844523,0.000144117,0.226199999 +1745781035,1967,0.47931236,0.00014406,0.126100004 +1745781059,1978,0.426391661,0.000143747,0.0973 +1745781064,1980,0.567356527,0.00014369,0.162300006 +1745781083,1988,0.619471788,0.000143463,0.101300001 +1745781085,1989,0.783669114,0.000143434,0.163499996 +1745781092,1992,0.799137473,0.000143349,0.204400003 +1745781181,2027,0.766566813,0.000142353,0.1928 +1745781249,2056,1.119629502,0.000141528,0.388599992 +1745781285,2071,0.648379862,0.000141101,0.137400001 +1745781305,2080,0.881024182,0.000140845,0.178399995 +1745781328,2090,0.985717952,0.000140561,0.229900002 +1745781347,2098,0.480394602,0.000140333,0.110699996 +1745781354,2101,0.639995635,0.000140248,0.235200003 +1745781361,2104,0.598038316,0.000140162,0.106799997 +1745781375,2110,0.740123212,0.000139991,0.178800002 +1745781386,2115,0.412330717,0.000139849,0.097999997 +1745781389,2116,0.579102218,0.000139821,0.115800001 +1745781398,2120,1.068606377,0.000139707,0.330000013 +1745781400,2121,0.76353842,0.000139678,0.186000004 +1745781417,2128,0.812135875,0.000139479,0.192000002 +1745781444,2140,0.653565049,0.000139138,0.194800004 +1745781489,2160,0.331275314,0.000138569,0.095899999 +1745781512,2170,0.667924225,0.000138284,0.173199996 +1745781552,2188,0.998092711,0.000137772,0.286900014 +1745781568,2195,0.612832069,0.000137573,0.125699997 +1745781602,2210,0.673898041,0.000137146,0.166299999 +1745781606,2212,0.672590673,0.000137089,0.171100006 +1745781615,2216,0.744215012,0.000136975,0.205400005 +1745781637,2226,0.875158072,0.000136691,0.176200002 +1745781661,2237,0.901054084,0.000136378,0.248999998 +1745781668,2240,0.761181116,0.000136292,0.125100002 +1745781680,2245,0.90284735,0.00013615,0.238600001 +1745781709,2258,0.631911099,0.00013578,0.142499998 +1745781763,2282,0.597971141,0.000135097,0.188700005 +1745781817,2306,0.818270266,0.000134415,0.260600001 +1745781842,2317,0.919811368,0.000134102,0.28639999 +1745781849,2320,0.778931737,0.000134016,0.150800005 +1745781861,2325,0.673637092,0.000133874,0.127900004 +1745781879,2333,0.613179803,0.000133646,0.187299997 +1745781902,2343,0.63216275,0.000133362,0.1523 +1745781924,2353,0.375072271,0.000133077,0.038899999 +1745781940,2360,0.542761803,0.000132878,0.084299996 +1745782008,2390,0.347193062,0.000132024,0.046700001 +1745782017,2394,0.470490307,0.000131911,0.071800001 +1745782019,2395,0.222681046,0.000131882,0.035599999 +1745782028,2399,0.339465648,0.000131768,0.045899998 +1745782103,2432,0.526237547,0.000130829,0.103399999 +1745782112,2436,0.644442797,0.000130716,0.127299994 +1745782114,2437,0.366123021,0.000130687,0.057100002 +1745782126,2442,0.380846858,0.000130545,0.046 +1745782155,2455,0.575146556,0.000130175,0.127100006 +1745782173,2463,0.375282377,0.000129947,0.064099997 +1745782180,2466,0.766005695,0.000129862,0.143600002 +1745782225,2486,0.458385557,0.000129293,0.087399997 +1745782243,2494,0.433760822,0.000129065,0.060400002 +1745782254,2499,0.586233854,0.000128923,0.138500005 +1745782259,2501,0.545060873,0.000128866,0.118600003 +1745782265,2504,0.48740378,0.000128781,0.100900002 +1745782270,2506,0.504746318,0.000128724,0.088 +1745782272,2507,0.406053483,0.000128695,0.096600004 +1745782297,2518,0.307522058,0.000128382,0.024 +1745782301,2520,0.418116719,0.000128326,0.0726 +1745782306,2522,0.765468359,0.000128269,0.149900004 +1745782311,2524,0.545783758,0.000128212,0.122000001 +1745782322,2529,0.55997771,0.000128069,0.100299999 +1745782326,2531,0.794486046,0.000128013,0.106700003 +1745782344,2539,0.40606457,0.000127785,0.067400001 +1745782406,2566,0.427083403,0.000127017,0.057500001 +1745782408,2567,0.680776,0.000126988,0.103299998 +1745782433,2578,0.601157069,0.000126675,0.136899993 +1745782435,2579,0.314168811,0.000126647,0.0581 +1745782458,2589,0.609700561,0.000126362,0.124600001 +1745782467,2593,0.297059655,0.000126248,0.0352 +1745782482,2600,0.370220751,0.000126049,0.071599998 +1745782498,2607,0.447893173,0.00012585,0.089400001 +1745782528,2620,0.596262932,0.00012548,0.096100003 +1745782547,2628,0.61352706,0.000125253,0.142000005 +1745782549,2629,0.745293558,0.000125224,0.227599993 +1745782566,2636,0.471123934,0.000125025,0.083999999 +1745782573,2639,0.589220405,0.00012494,0.151500002 +1745782575,2640,0.568450809,0.000124911,0.072099999 +1745782578,2641,0.564233601,0.000124883,0.181099996 +1745782584,2644,0.490110666,0.000124797,0.083999999 +1745782627,2663,0.271233171,0.000124257,0.040899999 +1745782645,2671,0.750589848,0.000124029,0.115999997 +1745782647,2672,0.372146159,0.000124001,0.071000002 +1745782654,2675,0.506923318,0.000123915,0.112199999 +1745782669,2682,0.680515289,0.000123716,0.155100003 +1745782676,2685,0.874189079,0.000123631,0.158199996 +1745782681,2687,0.731626391,0.000123574,0.076499999 +1745782687,2690,0.329735994,0.000123488,0.045899998 +1745782696,2694,0.603128314,0.000123375,0.137199998 +1745782716,2703,0.54739821,0.000123119,0.117600001 +1745782731,2709,0.602637291,0.000122948,0.098999999 +1745782742,2714,0.520931184,0.000122806,0.279599994 +1745782751,2718,0.545681477,0.000122692,0.110799998 +1745782779,2730,0.581335008,0.00012235,0.118699998 +1745782781,2731,0.665722966,0.000122322,0.151700005 +1745782791,2735,0.432217032,0.000122208,0.095200002 +1745782802,2740,0.656720877,0.000122066,0.123000003 +1745782805,2741,0.48093912,0.000122037,0.159199998 +1745782807,2742,0.481757432,0.000122009,0.100100003 +1745782814,2745,0.897812426,0.000121923,0.122299999 +1745782834,2754,0.440293849,0.000121667,0.062600002 +1745782837,2755,0.3765544,0.000121639,0.054299999 +1745782839,2756,0.500379443,0.00012161,0.111400001 +1745782850,2761,0.513209581,0.000121468,0.119900003 +1745782862,2766,0.435640037,0.000121326,0.077100001 +1745782868,2769,0.471675158,0.000121241,0.079400003 +1745782879,2774,0.464157224,0.000121098,0.092200004 +1745782890,2779,0.639606476,0.000120956,0.125100002 +1745782905,2786,0.657018125,0.000120757,0.096500002 +1745782932,2798,0.537826598,0.000120415,0.098399997 +1745782965,2813,0.550090849,0.000119989,0.1215 +1745782993,2825,0.16341044,0.000119647,0.022700001 +1745783015,2835,0.619533718,0.000119363,0.127700001 +1745783025,2839,0.315100402,0.000119249,0.0469 +1745783038,2845,0.543380558,0.000119078,0.107600003 +1745783054,2852,0.69416213,0.000118879,0.184699997 +1745783056,2853,0.60386467,0.00011885,0.080899999 +1745783078,2862,0.433540136,0.000118594,0.112400003 +1745783080,2863,0.506429493,0.000118566,0.134200007 +1745783123,2882,0.448723197,0.000118025,0.060800001 +1745783126,2883,0.562016368,0.000117997,0.086199999 +1745783146,2892,0.414678872,0.000117741,0.0605 +1745783150,2894,0.328020036,0.000117684,0.024900001 +1745783208,2919,0.647611976,0.000116973,0.1131 +1745783215,2922,0.780598342,0.000116887,0.105999999 +1745783222,2925,0.467492014,0.000116802,0.117399998 +1745783235,2931,0.247460574,0.000116631,0.0407 +1745783244,2935,0.206431419,0.000116517,0.035799999 +1745783284,2953,0.455745995,0.000116005,0.068000004 +1745783291,2956,0.387211919,0.00011592,0.059099998 +1745783307,2963,0.030676248,0.000115721,0.0033 +1745783313,2966,0.444782138,0.000115635,0.070500001 +1745783318,2968,0.580744147,0.000115578,0.032900002 +1745783331,2974,0.624646783,0.000115408,0.156000003 +1745783361,2987,0.313249797,0.000115038,0.056699999 +1745783384,2997,0.659350574,0.000114753,0.064599998 +1745783391,3000,0.425197005,0.000114668,0.059099998 +1745783405,3003,0.396747321,0.000114582,0.0722 +1745783424,3011,0.566088378,0.000114355,0.100699998 +1745783445,3020,0.254807472,0.000114099,0.028899999 +1745783480,3035,0.404977113,0.000113672,0.082400002 +1745783511,3048,0.345920116,0.000113302,0.064199999 +1745783595,3084,0.395774662,0.000112278,0.024700001 +1745783597,3085,0.408540428,0.000112249,0.097400002 +1745783611,3091,0.32114768,0.000112079,0.067299999 +1745783625,3097,0.601259649,0.000111908,0.152700007 +1745783641,3104,0.427825749,0.000111709,0.071099997 +1745783643,3105,0.408460438,0.00011168,0.064999998 +1745783646,3106,0.656872272,0.000111652,0.135600001 +1745783650,3108,0.500707805,0.000111595,0.122400001 +1745783660,3112,0.365363568,0.000111481,0.046700001 +1745783669,3116,0.475396127,0.000111367,0.047899999 +1745783679,3120,0.43056789,0.000111253,0.116099998 +1745783681,3121,0.296812296,0.000111225,0.0405 +1745783683,3122,0.584080219,0.000111196,0.0977 +1745783695,3127,0.555623472,0.000111054,0.142399997 +1745783699,3129,0.589520812,0.000110997,0.073299997 +1745783723,3139,0.142919794,0.000110713,0.0229 +1745783739,3146,0.435171306,0.000110514,0.082900003 +1745783807,3174,0.296863109,0.000109717,0.046599999 +1745783819,3179,0.397542328,0.000109575,0.083300002 +1745783840,3188,0.327624887,0.000109319,0.0469 +1745783847,3191,0.084408723,0.000109233,0.0132 +1745783851,3193,0.292972803,0.000109176,0.048999999 +1745783867,3200,0.34336558,0.000108977,0.056699999 +1745783878,3205,0.726954699,0.000108835,0.177499995 +1745783906,3217,0.313249737,0.000108493,0.095799997 +1745783909,3218,0.351453245,0.000108465,0.128999993 +1745783916,3221,0.409427464,0.00010838,0.132100001 +1745783920,3223,0.462820023,0.000108323,0.128999993 +1745783937,3230,0.47790724,0.000108123,0.097999997 +1745783965,3242,0.592132926,0.000107782,0.0964 +1745783970,3244,0.199690461,0.000107725,0.033399999 +1745784022,3266,0.565694332,0.000107099,0.1052 +1745784028,3269,0.376101315,0.000107014,0.081900001 +1745784099,3299,0.477198154,0.00010616,0.098999999 +1745784117,3307,0.18625243,0.000105933,0.034400001 +1745784198,3341,0.280520111,0.000104965,0.050999999 +1745784210,3346,0.214557916,0.000104823,0.0244 +1745784236,3357,0.399768621,0.00010451,0.078299999 +1745784258,3366,0.641920507,0.000104254,0.161200002 +1745784275,3373,0.149949193,0.000104055,0.0262 +1745784279,3375,0.614049137,0.000103998,0.055100001 +1745784286,3378,0.500194132,0.000103912,0.132400006 +1745784291,3380,0.570459604,0.000103855,0.179399997 +1745784302,3385,0.240401238,0.000103713,0.022500001 +1745784305,3386,0.332128048,0.000103685,0.0568 +1745784324,3394,0.743249357,0.000103457,0.163000003 +1745784326,3395,0.41183728,0.000103429,0.065300003 +1745784350,3405,0.228544593,0.000103144,0.0229 +1745784359,3409,0.629102647,0.00010303,0.144999996 +1745784382,3419,0.247132465,0.000102746,0.040800001 +1745784391,3423,0.60937202,0.000102632,0.068400003 +1745784401,3427,0.514544427,0.000102518,0.0572 +1745784419,3435,0.236955732,0.000102291,0.037 +1745784431,3440,0.399139434,0.000102148,0.059900001 +1745784465,3455,0.632376909,0.000101721,0.131899998 +1745784467,3456,0.273325175,0.000101693,0.0405 +1745784481,3462,0.403796524,0.000101522,0.075300001 +1745784497,3469,0.48288992,0.000101323,0.102799997 +1745784528,3483,0.337857574,0.000100925,0.108099997 +1745784530,3484,0.572918892,0.000100896,0.139400005 +1745784533,3485,0.38357842,0.000100868,0.050099999 +1745784535,3486,0.415320069,0.000100839,0.087899998 +1745784549,3492,0.31240499,0.000100669,0.044799998 +1745784553,3494,0.499468327,0.000100612,0.066799998 +1745784569,3501,0.411584496,0.000100413,0.084299996 +1745784576,3504,0.455562562,0.000100327,0.124200001 +1745784601,3515,0.422092319,0.000100014,0.079300001 +1745784628,3527,0.419208646,9.97E-05,0.091799997 +1745784649,3536,0.477078319,9.94E-05,0.0296 +1745784662,3542,0.186366215,9.92E-05,0.016799999 +1745784669,3545,0.36301893,9.92E-05,0.040800001 +1745784682,3551,0.173873141,9.90E-05,0.018300001 +1745784701,3559,0.380330801,9.88E-05,0.057700001 +1745784719,3567,0.379636914,9.85E-05,0.076200001 +1745784726,3570,0.308157146,9.84E-05,0.058800001 +1745784739,3576,0.402558416,9.83E-05,0.054400001 +1745784742,3577,0.17423968,9.83E-05,0.0218 +1745784760,3585,0.280689806,9.80E-05,0.059700001 +1745784766,3588,0.16947864,9.79E-05,0.019300001 +1745784769,3589,0.101804756,9.79E-05,0.0104 +1745784796,3601,0.437355548,9.76E-05,0.056400001 +1745784826,3614,0.308587849,9.72E-05,0.054000001 +1745784828,3615,0.290723622,9.72E-05,0.034400001 +1745784831,3616,0.403987497,9.71E-05,0.121699996 +1745784833,3617,0.327198029,9.71E-05,0.020099999 +1745784864,3631,0.377921611,9.67E-05,0.025800001 +1745784919,3655,0.143929079,9.60E-05,0.0264 +1745784926,3658,0.242009744,9.59E-05,0.0206 +1745784930,3660,0.648873627,9.59E-05,0.052200001 +1745784935,3662,0.304517239,9.58E-05,0.053300001 +1745784942,3665,0.400949776,9.57E-05,0.066799998 +1745784951,3669,0.286642909,9.56E-05,0.043900002 +1745784958,3672,0.315595627,9.55E-05,0.052200001 +1745784960,3673,0.333824754,9.55E-05,0.032099999 +1745785000,3691,0.088112228,9.50E-05,0.0119 +1745785023,3701,0.274886578,9.47E-05,0.033500001 +1745785049,3713,0.556815386,9.44E-05,0.113799997 +1745785060,3718,0.167077303,9.42E-05,0.0211 +1745785063,3719,0.388444215,9.42E-05,0.117700003 +1745785069,3722,0.403800428,9.41E-05,0.064000003 +1745785094,3733,0.231441796,9.38E-05,0.025699999 +1745785096,3734,0.1330553,9.38E-05,0.0077 +1745785122,3746,0.290499479,9.34E-05,0.051899999 +1745785125,3747,0.223163679,9.34E-05,0.0233 +1745785129,3749,0.335949957,9.34E-05,0.0339 +1745785131,3750,0.456321746,9.33E-05,0.134499997 +1745785138,3753,0.207908735,9.32E-05,0.026000001 +1745785140,3754,0.440810144,9.32E-05,0.065700002 +1745785143,3755,0.224057525,9.32E-05,0.038800001 +1745785158,3762,0.339454442,9.30E-05,0.0517 +1745785163,3764,0.438646525,9.29E-05,0.1215 +1745785201,3781,0.31425342,9.24E-05,0.0561 +1745785205,3783,0.163361147,9.24E-05,0.0199 +1745785208,3784,0.105970003,9.24E-05,0.013 +1745785216,3788,0.332471251,9.22E-05,0.0414 +1745785223,3791,0.414499313,9.22E-05,0.0779 +1745785262,3808,0.05924793,9.17E-05,0.0076 +1745785275,3814,0.182454064,9.15E-05,0.040100001 +1745785298,3824,0.15626885,9.12E-05,0.019400001 +1745785334,3840,0.18509762,9.08E-05,0.029999999 +1745785354,3849,0.312347949,9.05E-05,0.046500001 +1745785359,3851,0.198750794,9.05E-05,0.0261 +1745785364,3853,0.297824383,9.04E-05,0.035500001 +1745785375,3858,0.150958136,9.03E-05,0.0164 +1745785381,3861,0.263672471,9.02E-05,0.036600001 +1745785402,3870,0.280560613,8.99E-05,0.048799999 +1745785409,3873,0.255308956,8.98E-05,0.0605 +1745785477,3903,0.379709154,8.90E-05,0.095299996 +1745785490,3909,0.4264144,8.88E-05,0.0372 +1745785497,3912,0.613229275,8.87E-05,0.093500003 +1745785506,3916,0.297522336,8.86E-05,0.051100001 +1745785520,3922,0.431542099,8.84E-05,0.117600001 +1745785526,3925,0.154359281,8.83E-05,0.018200001 +1745785542,3932,0.080809779,8.81E-05,0.0103 +1745785547,3934,0.055888813,8.81E-05,0.0073 +1745785553,3937,0.130211562,8.80E-05,0.0123 +1745785593,3954,0.310098827,8.75E-05,0.056600001 +1745785602,3958,0.232471034,8.74E-05,0.034499999 +1745785620,3966,0.528138399,8.72E-05,0.063699998 +1745785622,3967,0.204938829,8.72E-05,0.02 +1745785642,3976,0.306091368,8.69E-05,0.060199998 +1745785655,3982,0.609294593,8.67E-05,0.126900002 +1745785657,3983,0.13291201,8.67E-05,0.0144 +1745785666,3987,1.524515986,8.66E-05,0.218500003 +1745785680,3993,0.287911892,8.64E-05,0.065300003 +1745785705,4001,0.140831515,8.62E-05,0.023499999 +1745785724,4009,0.341974735,8.60E-05,0.0722 +1745785733,4013,0.353980958,8.58E-05,0.052099999 +1745785737,4015,0.561301649,8.58E-05,0.0682 +1745785758,4024,0.292469949,8.55E-05,0.023 +1745785769,4029,0.289190978,8.54E-05,0.054200001 +1745785782,4035,0.334902585,8.52E-05,0.050099999 +1745785796,4041,0.33733201,8.50E-05,0.044599999 +1745785811,4048,0.321041822,8.48E-05,0.070299998 +1745785852,4066,0.253451616,8.43E-05,0.031199999 +1745785894,4085,0.134748667,8.38E-05,0.0112 +1745785904,4089,0.346670508,8.37E-05,0.106200002 +1745785913,4093,0.49563989,8.36E-05,0.043699998 +1745785950,4110,0.409272045,8.31E-05,0.0748 +1745785964,4116,0.083600767,8.29E-05,0.0111 +1745785978,4122,0.513408899,8.27E-05,0.062399998 +1745785985,4125,0.159284294,8.27E-05,0.019400001 +1745786035,4147,0.691197872,8.20E-05,0.035599999 +1745786051,4154,0.063750803,8.18E-05,0.006 +1745786057,4157,0.114591196,8.17E-05,0.018999999 +1745786082,4168,0.355159491,8.14E-05,0.062600002 +1745786105,4178,0.298794836,8.11E-05,0.066100001 +1745786107,4179,0.10208822,8.11E-05,0.0116 +1745786114,4182,0.30515033,8.10E-05,0.048700001 +1745786138,4193,0.365379483,8.07E-05,0.067299999 +1745786174,4208,0.235091597,8.03E-05,0.0096 +1745786205,4222,0.238421664,7.99E-05,0.030999999 +1745786219,4228,0.136315346,7.97E-05,0.0098 +1745786224,4230,0.168643594,7.97E-05,0.0218 +1745786239,4237,0.340087563,7.95E-05,0.066200003 +1745786262,4247,0.087152213,7.92E-05,0.0091 +1745786269,4250,0.240466118,7.91E-05,0.023700001 +1745786276,4253,0.179224387,7.90E-05,0.020199999 +1745786278,4254,0.366654038,7.90E-05,0.031199999 +1745786287,4258,0.453914434,7.89E-05,0.112099998 +1745786310,4268,0.445805818,7.86E-05,0.076099999 +1745786339,4281,0.339468956,7.82E-05,0.0656 +1745786341,4282,0.085465804,7.82E-05,0.0066 +1745786379,4299,0.103146888,7.77E-05,0.0114 +1745786405,4310,0.337282926,7.74E-05,0.061299998 +1745786425,4319,0.263463587,7.71E-05,0.035300002 +1745786437,4324,0.183472514,7.70E-05,0.033100002 +1745786448,4329,0.06314481,7.69E-05,0.0074 +1745786462,4335,0.396100402,7.67E-05,0.072499998 +1745786482,4344,0.339981318,7.64E-05,0.041700002 +1745786500,4352,0.182715595,7.62E-05,0.029200001 +1745786520,4361,0.364775866,7.59E-05,0.063199997 +1745786557,4377,0.05591457,7.55E-05,0.0063 +1745786564,4380,0.231341511,7.54E-05,0.014 +1745786600,4396,0.196536422,7.49E-05,0.0337 +1745786618,4404,0.256910741,7.47E-05,0.051100001 +1745786628,4408,0.228177249,7.46E-05,0.0242 +1745786634,4411,0.245772213,7.45E-05,0.043200001 +1745786641,4414,0.194034711,7.44E-05,0.022399999 +1745786644,4415,0.288987607,7.44E-05,0.033799998 +1745786662,4423,0.187839761,7.42E-05,0.023700001 +1745786667,4425,0.254398882,7.41E-05,0.052700002 +1745786692,4436,0.232686579,7.38E-05,0.0341 +1745786710,4444,0.257649511,7.36E-05,0.028899999 +1745786736,4455,0.181694314,7.33E-05,0.0261 +1745786745,4459,0.269478798,7.32E-05,0.044 +1745786762,4467,0.226778358,7.29E-05,0.038199998 +1745786814,4490,0.155642763,7.23E-05,0.020500001 +1745786828,4496,0.359773755,7.21E-05,0.07 +1745786837,4500,0.37064302,7.20E-05,0.066799998 +1745786871,4515,0.257915854,7.16E-05,0.059099998 +1745786884,4521,0.275179118,7.14E-05,0.050799999 +1745786891,4524,0.255644023,7.13E-05,0.041499998 +1745786895,4526,0.104831934,7.12E-05,0.0154 +1745786911,4533,0.465352774,7.10E-05,0.030099999 +1745786918,4536,0.367538989,7.10E-05,0.042599998 +1745786927,4540,0.212340698,7.08E-05,0.036499999 +1745786936,4544,0.226462841,7.07E-05,0.0526 +1745786938,4545,0.118877143,7.07E-05,0.0122 +1745786974,4561,0.263085067,7.03E-05,0.041900001 +1745786979,4563,0.269368201,7.02E-05,0.0286 +1745786983,4565,0.243801385,7.01E-05,0.044399999 +1745786992,4569,0.18988739,7.00E-05,0.029899999 +1745787005,4575,0.148261353,6.99E-05,0.021400001 +1745787024,4583,0.043324217,6.96E-05,0.0042 +1745787047,4593,0.337748855,6.93E-05,0.090400003 +1745787078,4607,0.167700738,6.89E-05,0.0261 +1745787085,4610,0.117343836,6.89E-05,0.0105 +1745787092,4613,0.299287349,6.88E-05,0.050099999 +1745787163,4645,0.292708874,6.79E-05,0.062700003 +1745787175,4650,0.055704456,6.77E-05,0.0075 +1745787177,4651,0.280214757,6.77E-05,0.0504 +1745787186,4655,0.111501358,6.76E-05,0.0096 +1745787195,4659,0.198563248,6.75E-05,0.032600001 +1745787197,4660,0.3880108,6.74E-05,0.112800002 +1745787204,4663,0.107681841,6.73E-05,0.005 +1745787215,4668,0.266140759,6.72E-05,0.0495 +1745787217,4669,0.181473747,6.72E-05,0.025599999 +1745787239,4679,0.120029226,6.69E-05,0.0148 +1745787258,4687,0.318943143,6.67E-05,0.082199998 +1745787266,4691,0.226125211,6.66E-05,0.038800001 +1745787271,4693,0.028388115,6.65E-05,0.0032 +1745787284,4699,0.318284392,6.63E-05,0.0539 +1745787302,4707,0.130311906,6.61E-05,0.018100001 +1745787304,4708,0.045328163,6.61E-05,0.0057 +1745787317,4714,0.218200341,6.59E-05,0.031199999 +1745787324,4717,0.371723235,6.58E-05,0.0832 +1745787357,4731,0.154206574,6.54E-05,0.0165 +1745787367,4735,0.182061985,6.53E-05,0.0132 +1745787374,4738,0.030815007,6.52E-05,0.0038 +1745787424,4760,0.043446001,6.46E-05,0.0037 +1745787440,4767,0.238670826,6.44E-05,0.048900001 +1745787453,4773,0.197429597,6.42E-05,0.037900001 +1745787463,4777,0.033958178,6.41E-05,0.0036 +1745787465,4778,0.198892787,6.41E-05,0.0207 +1745787496,4791,0.084602088,6.37E-05,0.0073 +1745787528,4805,0.185767278,6.33E-05,0.026900001 +1745787534,4808,0.186313972,6.32E-05,0.029999999 +1745787541,4811,0.21183908,6.31E-05,0.038699999 +1745787546,4813,0.283184081,6.31E-05,0.036200002 +1745787550,4815,0.034289546,6.30E-05,0.0037 +1745787587,4831,0.149928838,6.26E-05,0.022600001 +1745787591,4833,0.131247953,6.25E-05,0.0175 +1745787596,4835,0.120452441,6.25E-05,0.0114 +1745787598,4836,0.147040412,6.24E-05,0.017100001 +1745787600,4837,0.081776299,6.24E-05,0.0095 +1745787617,4844,0.194759041,6.22E-05,0.035 +1745787619,4845,0.282337964,6.22E-05,0.0228 +1745787662,4863,0.093295678,6.17E-05,0.0086 +1745787669,4866,0.145408049,6.16E-05,0.0101 +1745787707,4883,0.123204261,6.11E-05,0.019099999 +1745787737,4896,0.033805244,6.07E-05,0.0038 +1745787766,4909,0.207389146,6.03E-05,0.0392 +1745787770,4911,0.124305308,6.03E-05,0.0196 +1745787813,4930,0.031892195,5.98E-05,0.0039 +1745787822,4934,0.044276711,5.96E-05,0.0045 +1745787838,4941,0.082719177,5.94E-05,0.0082 +1745787847,4945,0.140067562,5.93E-05,0.017899999 +1745787859,4950,0.252204448,5.92E-05,0.0407 +1745787929,4981,0.180536732,5.83E-05,0.0307 +1745787952,4991,0.290573001,5.80E-05,0.041900001 +1745787954,4992,0.178119361,5.80E-05,0.031199999 +1745788033,5024,0.200275168,5.71E-05,0.0187 +1745788087,5048,0.232946083,5.64E-05,0.032699998 +1745788114,5060,0.30767265,5.61E-05,0.041299999 +1745788119,5062,0.238680184,5.60E-05,0.044599999 +1745788130,5067,0.295921683,5.59E-05,0.070900001 +1745788152,5077,0.210439235,5.56E-05,0.0219 +1745788159,5080,0.210048825,5.55E-05,0.023600001 +1745788161,5081,0.176989749,5.55E-05,0.0195 +1745788179,5089,0.245633274,5.52E-05,0.0297 +1745788183,5091,0.384459883,5.52E-05,0.073100001 +1745788194,5096,0.211359084,5.50E-05,0.0254 +1745788278,5133,0.201170251,5.40E-05,0.027899999 +1745788287,5137,0.292249471,5.39E-05,0.051899999 +1745788296,5141,0.199076712,5.37E-05,0.022399999 +1745788311,5148,0.165452316,5.35E-05,0.025900001 +1745788320,5152,0.134783134,5.34E-05,0.0127 +1745788322,5153,0.185984641,5.34E-05,0.0228 +1745788327,5155,0.117487989,5.34E-05,0.0111 +1745788329,5156,0.223106727,5.33E-05,0.023499999 +1745788356,5168,0.194215521,5.30E-05,0.0295 +1745788376,5177,0.192106679,5.27E-05,0.0195 +1745788401,5188,0.096210256,5.24E-05,0.0143 +1745788425,5199,0.206826493,5.21E-05,0.0337 +1745788430,5201,0.037044387,5.20E-05,0.0041 +1745788441,5206,0.207068697,5.19E-05,0.0184 +1745788446,5208,0.231103033,5.18E-05,0.040100001 +1745788457,5213,0.103423908,5.17E-05,0.0612 +1745788471,5219,0.234087735,5.15E-05,0.0266 +1745788486,5226,0.172364384,5.13E-05,0.030300001 +1745788496,5230,0.089528866,5.12E-05,0.0089 +1745788516,5239,0.110973269,5.10E-05,0.0145 +1745788551,5254,0.148486108,5.05E-05,0.0129 +1745788553,5255,0.355826259,5.05E-05,0.064800002 +1745788563,5259,0.352941543,5.04E-05,0.082500003 +1745788572,5263,0.577632487,5.03E-05,0.083700001 +1745788579,5266,0.301338464,5.02E-05,0.0504 +1745788627,5287,0.089967653,4.96E-05,0.0117 +1745788643,5294,0.087287627,4.94E-05,0.0118 +1745788648,5296,0.287799954,4.93E-05,0.055799998 +1745788652,5298,0.195638388,4.93E-05,0.032099999 +1745788701,5319,0.072816312,4.87E-05,0.006 +1745788703,5320,0.036434077,4.87E-05,0.057399999 +1745788710,5323,0.032336906,4.86E-05,0.0033 +1745788715,5325,0.177676022,4.85E-05,0.024900001 +1745788724,5329,0.204033211,4.84E-05,0.024700001 +1745788726,5330,0.272741914,4.84E-05,0.0337 +1745788737,5335,0.14755623,4.82E-05,0.035700001 +1745788742,5337,0.17061682,4.82E-05,0.023399999 +1745788747,5339,0.125541478,4.81E-05,0.013 +1745788758,5344,0.2226073,4.80E-05,0.022299999 +1745788800,5363,0.14011015,4.74E-05,0.0199 +1745788813,5369,0.994787812,4.73E-05,0.039900001 +1745788818,5371,0.183080301,4.72E-05,0.022 +1745788825,5374,0.101798967,4.71E-05,0.0127 +1745788846,5383,0.312901706,4.69E-05,0.053100001 +1745788871,5394,0.106428966,4.66E-05,0.0124 +1745788891,5403,0.064399183,4.63E-05,0.0051 +1745788893,5404,0.04951413,4.63E-05,0.0068 +1745788902,5408,0.194310829,4.62E-05,0.023499999 +1745788925,5418,0.058677569,4.59E-05,0.0048 +1745788941,5425,0.201995641,4.57E-05,0.0297 +1745788950,5429,0.205679268,4.56E-05,0.034000002 +1745788965,5436,0.134696051,4.54E-05,0.0083 +1745788988,5446,0.172121212,4.51E-05,0.0283 +1745788993,5448,0.045210525,4.50E-05,0.0046 +1745789004,5453,0.161420777,4.49E-05,0.019200001 +1745789009,5455,0.230745584,4.48E-05,0.036600001 +1745789013,5457,0.019818177,4.48E-05,0.0024 +1745789016,5458,0.263686359,4.47E-05,0.018100001 +1745789020,5460,0.336097986,4.47E-05,0.072800003 +1745789045,5471,0.137268245,4.44E-05,0.017999999 +1745789104,5497,0.024397796,4.36E-05,0.003 +1745789122,5505,0.115500964,4.34E-05,0.011 +1745789129,5508,0.102721378,4.33E-05,0.0135 +1745789134,5510,0.245025352,4.32E-05,0.038699999 +1745789136,5511,0.175253674,4.32E-05,0.0133 +1745789151,5518,0.013624831,4.30E-05,0.0011 +1745789160,5522,0.240519166,4.29E-05,0.0506 +1745789165,5524,0.162133992,4.29E-05,0.0121 +1745789171,5527,0.107817687,4.28E-05,0.015799999 +1745789214,5546,0.114878476,4.22E-05,0.0113 +1745789230,5553,0.135502353,4.20E-05,0.017100001 +1745789241,5558,0.263963252,4.19E-05,0.0352 +1745789263,5568,0.148746923,4.16E-05,0.0222 +1745789291,5580,0.085360952,4.13E-05,0.0103 +1745789346,5605,0.136995032,4.05E-05,0.0144 +1745789433,5644,0.196543038,3.94E-05,0.035399999 +1745789456,5654,0.217543468,3.92E-05,0.032600001 +1745789487,5668,0.195638239,3.88E-05,0.023800001 +1745789498,5673,0.149207294,3.86E-05,0.0211 +1745789532,5688,0.178436458,3.82E-05,0.0185 +1745789575,5707,0.294322938,3.76E-05,0.032699998 +1745789590,5714,0.306939542,3.74E-05,0.032000002 +1745789597,5717,0.179982781,3.74E-05,0.015 +1745789613,5724,0.192489967,3.72E-05,0.0188 +1745789629,5731,0.220497057,3.70E-05,0.038699999 +1745789636,5734,0.119541384,3.69E-05,0.0187 +1745789651,5741,0.304927021,3.67E-05,0.053100001 +1745789674,5751,0.224839136,3.64E-05,0.0126 +1745789678,5753,0.17238453,3.63E-05,0.0309 +1745789684,5756,0.084309526,3.62E-05,0.0131 +1745789687,5757,0.153947547,3.62E-05,0.0228 +1745789689,5758,0.184373513,3.62E-05,0.0288 +1745789691,5759,0.036196645,3.62E-05,0.0041 +1745789707,5766,0.194286153,3.60E-05,0.032499999 +1745789722,5773,0.033982169,3.58E-05,0.0038 +1745789743,5782,0.263519406,3.55E-05,0.0502 +1745789761,5790,0.053605836,3.53E-05,0.0063 +1745789807,5810,0.148093835,3.47E-05,0.018100001 +1745789834,5822,0.126708314,3.44E-05,0.0113 +1745789859,5833,0.184829697,3.41E-05,0.0273 +1745789897,5850,0.334622711,3.36E-05,0.045200001 +1745789919,5860,0.029779412,3.33E-05,0.0028 +1745789935,5867,0.151324376,3.31E-05,0.019400001 +1745789941,5870,0.088377886,3.30E-05,0.0079 +1745789964,5880,0.158876061,3.27E-05,0.0229 +1745789966,5881,0.197102636,3.27E-05,0.0255 +1745789971,5883,0.069155656,3.26E-05,0.0058 +1745790000,5896,0.075685933,3.23E-05,0.0108 +1745790058,5922,0.128354415,3.15E-05,0.020099999 +1745790087,5935,0.052095078,3.12E-05,0.0058 +1745790119,5949,0.13833119,3.08E-05,0.019200001 +1745790131,5954,0.146347895,3.06E-05,0.021299999 +1745790137,5957,0.163005114,3.05E-05,0.021199999 +1745790155,5965,0.146357819,3.03E-05,0.01 +1745790168,5971,0.112878472,3.01E-05,0.0107 +1745790194,5982,0.127313972,2.98E-05,0.014 +1745790214,5991,0.192872286,2.96E-05,0.030400001 +1745790229,5998,0.062184516,2.94E-05,0.0051 +1745790250,6004,0.153754905,2.92E-05,0.0146 +1745790260,6008,0.019843223,2.91E-05,0.0025 +1745790264,6010,0.351390868,2.90E-05,0.042100001 +1745790266,6011,0.248973563,2.90E-05,0.026699999 +1745790335,6041,0.162866756,2.81E-05,0.025599999 +1745790344,6045,0.209569708,2.80E-05,0.020500001 +1745790346,6046,0.119220637,2.80E-05,0.0125 +1745790365,6054,0.211306497,2.78E-05,0.031800002 +1745790403,6071,0.096975677,2.73E-05,0.0112 +1745790417,6077,0.026174303,2.71E-05,0.0025 +1745790421,6079,0.142894745,2.71E-05,0.0164 +1745790423,6080,0.185625598,2.70E-05,0.030099999 +1745790449,6091,0.130129069,2.67E-05,0.0134 +1745790455,6094,0.193092793,2.66E-05,0.028200001 +1745790487,6108,0.132155448,2.62E-05,0.019099999 +1745790496,6112,0.144756824,2.61E-05,0.0211 +1745790501,6114,0.17871134,2.61E-05,0.0231 +1745790528,6126,0.136573151,2.57E-05,0.0188 +1745790548,6134,0.069031805,2.55E-05,0.0073 +1745790559,6139,0.158827588,2.54E-05,0.0146 +1745790564,6141,0.015756367,2.53E-05,0.0012 +1745790569,6143,0.110325404,2.52E-05,0.0087 +1745790629,6169,0.287527889,2.45E-05,0.038199998 +1745790695,6198,0.11476212,2.37E-05,0.0112 +1745790713,6206,0.16406779,2.34E-05,0.0233 +1745790726,6212,0.213190526,2.33E-05,0.0243 +1745790749,6222,0.10860429,2.30E-05,0.0129 +1745790759,6226,0.257673174,2.29E-05,0.081600003 +1745790768,6230,0.213269591,2.28E-05,0.024599999 +1745790777,6234,0.29444316,2.26E-05,0.040199999 +1745790784,6237,0.20998697,2.26E-05,0.022600001 +1745790789,6239,0.194353819,2.25E-05,0.0177 +1745790800,6244,0.01898225,2.24E-05,0.0022 +1745790818,6252,0.083778292,2.21E-05,0.0078 +1745790859,6270,0.223723084,2.16E-05,0.034899998 +1745790882,6280,0.288874656,2.13E-05,0.044599999 +1745790886,6282,0.279914439,2.13E-05,0.033500001 +1745790902,6289,0.223095432,2.11E-05,0.025699999 +1745790920,6297,0.079040498,2.09E-05,0.0099 +1745790923,6298,0.139237896,2.08E-05,0.016100001 +1745790930,6301,0.147791728,2.07E-05,0.015799999 +1745790964,6315,0.122075431,2.03E-05,0.0089 +1745790997,6329,0.122157022,1.99E-05,0.0099 +1745791005,6333,0.045922946,1.98E-05,0.0051 +1745791008,6334,0.199602425,1.98E-05,0.029899999 +1745791010,6335,0.188957378,1.98E-05,0.027000001 +1745791039,6348,0.173501968,1.94E-05,0.0189 +1745791053,6354,0.183288351,1.92E-05,0.030999999 +1745791064,6359,0.154239595,1.91E-05,0.020099999 +1745791066,6360,0.121170297,1.91E-05,0.016100001 +1745791071,6362,0.078959644,1.90E-05,0.0103 +1745791078,6365,0.105984606,1.89E-05,0.0074 +1745791082,6367,0.19827719,1.89E-05,0.025900001 +1745791089,6370,0.30860123,1.88E-05,0.057999998 +1745791115,6381,0.153658792,1.85E-05,0.0116 +1745791173,6407,0.052464686,1.77E-05,0.0041 +1745791214,6425,0.155611753,1.72E-05,0.021299999 +1745791248,6440,0.163180068,1.68E-05,0.0166 +1745791254,6443,0.183785543,1.67E-05,0.021400001 +1745791256,6444,0.13433145,1.67E-05,0.016100001 +1745791265,6448,0.094213687,1.66E-05,0.0057 +1745791270,6450,0.079701349,1.65E-05,0.0069 +1745791292,6460,0.144322127,1.62E-05,0.0188 +1745791323,6474,0.17571792,1.58E-05,0.020099999 +1745791354,6488,0.012645872,1.54E-05,0.0014 +1745791363,6492,0.112379968,1.53E-05,0.0115 +1745791370,6495,0.130716175,1.52E-05,0.048900001 +1745791372,6496,0.053214464,1.52E-05,0.0048 +1745791433,6523,0.108969688,1.44E-05,0.0119 +1745791446,6529,0.019299332,1.43E-05,0.0019 +1745791453,6532,0.266277403,1.42E-05,0.034600001 +1745791473,6541,0.152635798,1.39E-05,0.017200001 +1745791487,6547,0.075130984,1.37E-05,0.0052 +1745791499,6552,0.100642376,1.36E-05,0.0078 +1745791501,6553,0.016919242,1.36E-05,0.0019 +1745791503,6554,0.104577757,1.35E-05,0.0089 +1745791508,6556,0.12315277,1.35E-05,0.0124 +1745791529,6565,0.126501843,1.32E-05,0.0184 +1745791536,6568,0.066451691,1.31E-05,0.0049 +1745791540,6570,0.239658445,1.31E-05,0.024599999 +1745791549,6574,0.055303257,1.30E-05,0.0035 +1745791577,6586,0.159446195,1.26E-05,0.0208 +1745791582,6588,0.091927387,1.26E-05,0.0078 +1745791589,6591,0.023165932,1.25E-05,0.0024 +1745791601,6596,0.170985341,1.23E-05,0.0206 +1745791611,6600,0.093574055,1.22E-05,0.01 +1745791649,6616,0.156667009,1.18E-05,0.0115 +1745791651,6617,0.082251891,1.18E-05,0.0065 +1745791661,6621,0.042281285,1.16E-05,0.0043 +1745791682,6630,0.190930948,1.14E-05,0.020099999 +1745791721,6647,0.096812367,1.09E-05,0.0153 +1745791728,6650,0.102095872,1.08E-05,0.0132 +1745791756,6662,0.204079598,1.05E-05,0.0211 +1745791776,6671,0.270352066,1.02E-05,0.032499999 +1745791784,6674,0.030876733,1.01E-05,0.0029 +1745791840,6698,0.138891846,9.45E-06,0.0109 +1745791865,6709,0.066542223,9.13E-06,0.0031 +1745791881,6716,0.09778937,8.93E-06,0.0128 +1745791888,6719,0.160321355,8.85E-06,0.0209 +1745791892,6721,0.11775519,8.79E-06,0.0083 +1745791897,6723,0.145009965,8.74E-06,0.0075 +1745791902,6725,0.029617043,8.68E-06,0.0019 +1745791916,6731,0.090636253,8.51E-06,0.0072 +1745791924,6735,0.106770597,8.39E-06,0.0066 +1745791963,6751,0.146977097,7.94E-06,0.0162 +1745791987,6761,0.032245651,7.65E-06,0.0025 +1745791988,6762,0.269020587,7.63E-06,0.029200001 +1745791993,6764,0.175047576,7.57E-06,0.02 +1745792024,6777,0.196402684,7.20E-06,0.021 +1745792031,6780,0.115120634,7.11E-06,0.0099 +1745792046,6786,0.158754572,6.94E-06,0.0176 +1745792086,6803,0.072745383,6.46E-06,0.005 +1745792095,6807,0.185200408,6.35E-06,0.016100001 +1745792110,6813,0.023745209,6.17E-06,0.0026 +1745792132,6822,0.047426056,5.92E-06,0.0035 +1745792134,6823,0.205670178,5.89E-06,0.022600001 +1745792155,6832,0.227098629,5.63E-06,0.021 +1745792163,6835,0.021742078,5.55E-06,0.0014 +1745792170,6838,0.121088997,5.46E-06,0.0087 +1745792181,6843,0.247726038,5.32E-06,0.024900001 +1745792185,6845,0.080167897,5.26E-06,0.008 +1745792200,6851,0.173075408,5.09E-06,0.0218 +1745792221,6860,0.168032438,4.84E-06,0.0134 +1745792237,6867,0.092811935,4.64E-06,0.0094 +1745792246,6871,0.09696538,4.52E-06,0.0069 +1745792258,6876,0.182822213,4.38E-06,0.0103 +1745792297,6893,0.20013468,3.90E-06,0.020500001 +1745792347,6915,0.017382432,3.27E-06,0.0015 +1745792352,6917,0.227773771,3.22E-06,0.034899998 +1745792359,6920,0.209376723,3.13E-06,0.022600001 +1745792384,6931,0.258725107,2.82E-06,0.0385 +1745792401,6938,0.056995153,2.62E-06,0.0036 +1745792418,6945,0.023858737,2.42E-06,0.0016 +1745792441,6955,0.093116574,2.13E-06,0.0088 +1745792453,6960,0.014997101,1.99E-06,0.0014 +1745792487,6975,0.185029164,1.56E-06,0.0196 +1745792490,6976,0.01093912,1.54E-06,0.0009 +1745792504,6982,0.029115355,1.37E-06,0.0018 +1745792528,6992,0.168986276,1.08E-06,0.017100001 +1745792540,6997,0.206358209,9.39E-07,0.021199999 +1745792545,6999,0.374779671,8.82E-07,0.048900001 +1745792559,7002,0.272317767,7.97E-07,0.0265 +1745792585,7013,0.162129194,4.84E-07,0.0156 +1745792598,7019,0.071128309,3.13E-07,0.0047 +1745792622,7029,0.17629762,2.85E-08,0.0163 diff --git a/report/main.tex b/report/main.tex new file mode 100644 index 0000000..3ac147a --- /dev/null +++ b/report/main.tex @@ -0,0 +1,46 @@ +\documentclass[aspectratio=43]{beamer} +\usepackage{ctex} +\usepackage{graphicx} +\usepackage{amsmath} +\usepackage{hyperref} +\usepackage{listings} +\usepackage{xcolor} +\usepackage{fontawesome5} +\usepackage{subcaption} +\usepackage{booktabs} +\usepackage{tikz} +\usepackage{pgfplots} +\pgfplotsset{compat=1.18} + +% 设置主题 +\usetheme{Madrid} +\usecolortheme{default} +\setbeamertemplate{navigation symbols}{} + +% 标题信息 +\title{基于文档驱动的自适应编码大模型微调框架} +\subtitle{毕业设计答辩} +\author[XXX]{姓名:XXX \\ 学号:XXX \\ 指导教师:XXX} +\institute{广州大学} +\date{\today} + +\begin{document} + +% 标题页 +\frame{\titlepage} + +% 目录 +\begin{frame} +\frametitle{目录} +\tableofcontents +\end{frame} + +% 引入各章节内容 +\input{chapters/background} +\input{chapters/technology} +\input{chapters/design} +\input{chapters/results} +\input{chapters/conclusion} +\input{chapters/acknowledgements} + +\end{document} \ No newline at end of file diff --git a/report/pic/after_train.png b/report/pic/after_train.png new file mode 100644 index 0000000..a6cc163 Binary files /dev/null and b/report/pic/after_train.png differ diff --git a/report/pic/before_train.png b/report/pic/before_train.png new file mode 100644 index 0000000..68bc9cd Binary files /dev/null and b/report/pic/before_train.png differ diff --git a/report/pic/system_architecture.png b/report/pic/system_architecture.png new file mode 100644 index 0000000..3b1e7af Binary files /dev/null and b/report/pic/system_architecture.png differ