├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CLAUDE.md ├── LECTURES ├── 2505 │ ├── README.md │ ├── docs │ │ ├── 企业数字化转型的测度难题_基于大语言模型的新方法和新发现-20240104.pdf │ │ ├── 大语言模型、文本情绪与金融市场_姜富伟.pdf │ │ └── 微调入门.docx │ ├── figs │ │ ├── API1.png │ │ ├── API2.png │ │ ├── prompt示例.pdf │ │ ├── 处理结果.png │ │ ├── 林黛玉.png │ │ ├── 经济增长.png │ │ ├── 顶王.png │ │ └── 顶王2.png │ ├── llm_report.pdf │ ├── llm_report.tex │ └── notebooks │ │ ├── data │ │ ├── 提取结果.csv │ │ └── 政府工作报告 │ │ │ └── 上海市 │ │ │ ├── 2004.txt │ │ │ ├── 2005.txt │ │ │ ├── 2006.txt │ │ │ ├── 2007.txt │ │ │ ├── 2008.txt │ │ │ ├── 2009.txt │ │ │ ├── 2010.txt │ │ │ ├── 2011.txt │ │ │ ├── 2012.txt │ │ │ ├── 2013.txt │ │ │ ├── 2014.txt │ │ │ ├── 2015.txt │ │ │ ├── 2016.txt │ │ │ ├── 2017.txt │ │ │ ├── 2018.txt │ │ │ ├── 2019.txt │ │ │ ├── 2020.txt │ │ │ ├── 2021.txt │ │ │ ├── 2022.txt │ │ │ └── 2023.txt │ │ └── example.ipynb └── 2509 │ ├── 0902.ipynb │ ├── AI数据处理的前提准备.md │ ├── example.ipynb │ ├── llm_report.pdf │ └── 提取结果.xlsx ├── LICENSE ├── README.md ├── docs ├── References.md ├── figures │ ├── logo.ico │ └── logo.png ├── index.md ├── 第一章 │ ├── command-line-tools.md │ ├── github使用教程.md │ ├── pythonenv.md │ └── quickstart.md ├── 第七章 │ └── LLM_example.md ├── 第三章 │ ├── Evaluation.md │ └── dataPreparation.md ├── 第二章 │ ├── API_intro.md │ ├── API_python.md │ └── Boost_API.md ├── 第五章 │ ├── MCP_example.md │ └── MCP_intro.md ├── 第六章 │ ├── autogen.md │ └── coze.md ├── 第四章 │ └── RAG.md └── 附录 │ └── README.md ├── mkdocs.yml ├── requirements.txt └── 学习路径.docx /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LECTURES/2505/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/README.md -------------------------------------------------------------------------------- /LECTURES/2505/docs/企业数字化转型的测度难题_基于大语言模型的新方法和新发现-20240104.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/docs/企业数字化转型的测度难题_基于大语言模型的新方法和新发现-20240104.pdf -------------------------------------------------------------------------------- /LECTURES/2505/docs/大语言模型、文本情绪与金融市场_姜富伟.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/docs/大语言模型、文本情绪与金融市场_姜富伟.pdf -------------------------------------------------------------------------------- /LECTURES/2505/docs/微调入门.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/docs/微调入门.docx -------------------------------------------------------------------------------- /LECTURES/2505/figs/API1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/figs/API1.png -------------------------------------------------------------------------------- /LECTURES/2505/figs/API2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/figs/API2.png -------------------------------------------------------------------------------- /LECTURES/2505/figs/prompt示例.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/figs/prompt示例.pdf -------------------------------------------------------------------------------- /LECTURES/2505/figs/处理结果.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/figs/处理结果.png -------------------------------------------------------------------------------- /LECTURES/2505/figs/林黛玉.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/figs/林黛玉.png -------------------------------------------------------------------------------- /LECTURES/2505/figs/经济增长.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/figs/经济增长.png -------------------------------------------------------------------------------- /LECTURES/2505/figs/顶王.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/figs/顶王.png -------------------------------------------------------------------------------- /LECTURES/2505/figs/顶王2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/figs/顶王2.png -------------------------------------------------------------------------------- /LECTURES/2505/llm_report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/llm_report.pdf -------------------------------------------------------------------------------- /LECTURES/2505/llm_report.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/llm_report.tex -------------------------------------------------------------------------------- /LECTURES/2505/notebooks/data/提取结果.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/notebooks/data/提取结果.csv -------------------------------------------------------------------------------- /LECTURES/2505/notebooks/data/政府工作报告/上海市/2004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/notebooks/data/政府工作报告/上海市/2004.txt -------------------------------------------------------------------------------- /LECTURES/2505/notebooks/data/政府工作报告/上海市/2005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/notebooks/data/政府工作报告/上海市/2005.txt -------------------------------------------------------------------------------- /LECTURES/2505/notebooks/data/政府工作报告/上海市/2006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/notebooks/data/政府工作报告/上海市/2006.txt -------------------------------------------------------------------------------- /LECTURES/2505/notebooks/data/政府工作报告/上海市/2007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/notebooks/data/政府工作报告/上海市/2007.txt -------------------------------------------------------------------------------- /LECTURES/2505/notebooks/data/政府工作报告/上海市/2008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/notebooks/data/政府工作报告/上海市/2008.txt -------------------------------------------------------------------------------- /LECTURES/2505/notebooks/data/政府工作报告/上海市/2009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/notebooks/data/政府工作报告/上海市/2009.txt -------------------------------------------------------------------------------- /LECTURES/2505/notebooks/data/政府工作报告/上海市/2010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/notebooks/data/政府工作报告/上海市/2010.txt -------------------------------------------------------------------------------- /LECTURES/2505/notebooks/data/政府工作报告/上海市/2011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/notebooks/data/政府工作报告/上海市/2011.txt -------------------------------------------------------------------------------- /LECTURES/2505/notebooks/data/政府工作报告/上海市/2012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/notebooks/data/政府工作报告/上海市/2012.txt -------------------------------------------------------------------------------- /LECTURES/2505/notebooks/data/政府工作报告/上海市/2013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/notebooks/data/政府工作报告/上海市/2013.txt -------------------------------------------------------------------------------- /LECTURES/2505/notebooks/data/政府工作报告/上海市/2014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/notebooks/data/政府工作报告/上海市/2014.txt -------------------------------------------------------------------------------- /LECTURES/2505/notebooks/data/政府工作报告/上海市/2015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/notebooks/data/政府工作报告/上海市/2015.txt -------------------------------------------------------------------------------- /LECTURES/2505/notebooks/data/政府工作报告/上海市/2016.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/notebooks/data/政府工作报告/上海市/2016.txt -------------------------------------------------------------------------------- /LECTURES/2505/notebooks/data/政府工作报告/上海市/2017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/notebooks/data/政府工作报告/上海市/2017.txt -------------------------------------------------------------------------------- /LECTURES/2505/notebooks/data/政府工作报告/上海市/2018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/notebooks/data/政府工作报告/上海市/2018.txt -------------------------------------------------------------------------------- /LECTURES/2505/notebooks/data/政府工作报告/上海市/2019.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/notebooks/data/政府工作报告/上海市/2019.txt -------------------------------------------------------------------------------- /LECTURES/2505/notebooks/data/政府工作报告/上海市/2020.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/notebooks/data/政府工作报告/上海市/2020.txt -------------------------------------------------------------------------------- /LECTURES/2505/notebooks/data/政府工作报告/上海市/2021.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/notebooks/data/政府工作报告/上海市/2021.txt -------------------------------------------------------------------------------- /LECTURES/2505/notebooks/data/政府工作报告/上海市/2022.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/notebooks/data/政府工作报告/上海市/2022.txt -------------------------------------------------------------------------------- /LECTURES/2505/notebooks/data/政府工作报告/上海市/2023.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/notebooks/data/政府工作报告/上海市/2023.txt -------------------------------------------------------------------------------- /LECTURES/2505/notebooks/example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2505/notebooks/example.ipynb -------------------------------------------------------------------------------- /LECTURES/2509/0902.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2509/0902.ipynb -------------------------------------------------------------------------------- /LECTURES/2509/AI数据处理的前提准备.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2509/AI数据处理的前提准备.md -------------------------------------------------------------------------------- /LECTURES/2509/example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2509/example.ipynb -------------------------------------------------------------------------------- /LECTURES/2509/llm_report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2509/llm_report.pdf -------------------------------------------------------------------------------- /LECTURES/2509/提取结果.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LECTURES/2509/提取结果.xlsx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/README.md -------------------------------------------------------------------------------- /docs/References.md: -------------------------------------------------------------------------------- 1 | # 参考资料 2 | 3 | -------------------------------------------------------------------------------- /docs/figures/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/docs/figures/logo.ico -------------------------------------------------------------------------------- /docs/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/docs/figures/logo.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/第一章/command-line-tools.md: -------------------------------------------------------------------------------- 1 | # 学会使用命令行 2 | 3 | -------------------------------------------------------------------------------- /docs/第一章/github使用教程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/docs/第一章/github使用教程.md -------------------------------------------------------------------------------- /docs/第一章/pythonenv.md: -------------------------------------------------------------------------------- 1 | # Python环境配置 2 | 3 | -------------------------------------------------------------------------------- /docs/第一章/quickstart.md: -------------------------------------------------------------------------------- 1 | # 计算机上手配置 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/第七章/LLM_example.md: -------------------------------------------------------------------------------- 1 | # LLM应用推荐 2 | 3 | -------------------------------------------------------------------------------- /docs/第三章/Evaluation.md: -------------------------------------------------------------------------------- 1 | # 模型评估与测试 2 | 3 | -------------------------------------------------------------------------------- /docs/第三章/dataPreparation.md: -------------------------------------------------------------------------------- 1 | # 数据集准备 2 | 3 | -------------------------------------------------------------------------------- /docs/第二章/API_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/docs/第二章/API_intro.md -------------------------------------------------------------------------------- /docs/第二章/API_python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/docs/第二章/API_python.md -------------------------------------------------------------------------------- /docs/第二章/Boost_API.md: -------------------------------------------------------------------------------- 1 | # 多线程方法加速调用 2 | 3 | -------------------------------------------------------------------------------- /docs/第五章/MCP_example.md: -------------------------------------------------------------------------------- 1 | # MCP示例 2 | 3 | -------------------------------------------------------------------------------- /docs/第五章/MCP_intro.md: -------------------------------------------------------------------------------- 1 | # MCP基本结构 2 | 3 | -------------------------------------------------------------------------------- /docs/第六章/autogen.md: -------------------------------------------------------------------------------- 1 | # autogen 2 | -------------------------------------------------------------------------------- /docs/第六章/coze.md: -------------------------------------------------------------------------------- 1 | # coze 2 | 3 | -------------------------------------------------------------------------------- /docs/第四章/RAG.md: -------------------------------------------------------------------------------- 1 | # 如何构建与部署知识库 2 | 3 | -------------------------------------------------------------------------------- /docs/附录/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/docs/附录/README.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/requirements.txt -------------------------------------------------------------------------------- /学习路径.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhiyu-econ/EconLLM-Lab/HEAD/学习路径.docx --------------------------------------------------------------------------------