├── .gitignore ├── LICENSE ├── README.md ├── articles ├── 00-introduction │ ├── image │ │ └── introduction │ │ │ ├── 1694248366853.png │ │ │ ├── 1694249048730.png │ │ │ └── 1694249575455.png │ ├── imgs │ │ ├── langchain+chatglm.png │ │ ├── 大模型技术栈-实战与应用.png │ │ └── 大模型技术栈-算法与原理.png │ ├── introduction.docx │ └── introduction.md ├── 01-agent │ ├── imgs │ │ ├── image-20230909103314020.png │ │ ├── image-20230909103849920.png │ │ ├── image-20230909111629069.png │ │ ├── image-20230909112136592.png │ │ ├── react_font.png │ │ ├── 行动决策与环境感知的任务协同分析-第二篇 │ │ │ ├── image-20230909103849920.png │ │ │ ├── image-20231021205743582.png │ │ │ ├── image-20231021213049923.png │ │ │ ├── image-20231021213107635.png │ │ │ ├── image-20231021221344238.png │ │ │ └── images.jpeg │ │ └── 行动决策与环境感知的任务协同分析 │ │ │ ├── image-20230909103314020.png │ │ │ ├── image-20230909103849920.png │ │ │ ├── image-20230909111629069.png │ │ │ ├── image-20230909133639650.png │ │ │ ├── image-20230909152745682.png │ │ │ ├── image-20230909152808532.png │ │ │ ├── image-20230909160034084.png │ │ │ ├── image-20230909160047075.png │ │ │ ├── image-20230909160058793.png │ │ │ ├── image-20230909160334508.png │ │ │ └── image-20230909160347941.png │ ├── 关于REACT中行动决策与环境感知的任务协同分析.pptx │ ├── 此处是一个高维空间在同空间下,低维的子空间映射图.kra │ ├── 行动决策与环境感知的任务协同分析-第一篇.md │ └── 行动决策与环境感知的任务协同分析-第二篇.md ├── 02-chatchat加载p-tuning │ └── chatchat加载ptuning.md ├── 03-大模型技术栈概览 │ ├── 大模型技术栈-算法与原理.docx │ └── 大模型技术栈-算法与原理.png ├── 04-大模型推理优化策略 │ ├── 大模型推理优化策略.docx │ └── 大模型推理优化策略.png ├── 05-大模型指令对齐训练 │ ├── 大模型指令对齐训练原理.docx │ └── 大模型指令对齐训练原理.png ├── 06-大模型分布式训练技术 │ ├── 分布式训练技术原理.docx │ └── 分布式训练技术原理.png ├── 07-大模型应用技术原理 │ ├── 大模型应用技术原理.docx │ └── 大模型应用技术原理.png ├── 08-强化学习简介 │ └── 强化学习简介.docx ├── 09-AIOps调研报告 │ ├── AIOps.docx │ └── AIOps.png ├── 10-AIOps方法论 │ ├── AIOps方法论.docx │ └── AIOps方法论.png ├── 11-RCA根因分析技术 │ ├── RCA Survey.docx │ └── RCA Survey.png └── 12-有限马尔可夫过程简介 │ └── 有限马尔可夫过程.md └── chatchat-qrcode.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | 3 | /.idea 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/README.md -------------------------------------------------------------------------------- /articles/00-introduction/image/introduction/1694248366853.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/00-introduction/image/introduction/1694248366853.png -------------------------------------------------------------------------------- /articles/00-introduction/image/introduction/1694249048730.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/00-introduction/image/introduction/1694249048730.png -------------------------------------------------------------------------------- /articles/00-introduction/image/introduction/1694249575455.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/00-introduction/image/introduction/1694249575455.png -------------------------------------------------------------------------------- /articles/00-introduction/imgs/langchain+chatglm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/00-introduction/imgs/langchain+chatglm.png -------------------------------------------------------------------------------- /articles/00-introduction/imgs/大模型技术栈-实战与应用.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/00-introduction/imgs/大模型技术栈-实战与应用.png -------------------------------------------------------------------------------- /articles/00-introduction/imgs/大模型技术栈-算法与原理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/00-introduction/imgs/大模型技术栈-算法与原理.png -------------------------------------------------------------------------------- /articles/00-introduction/introduction.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/00-introduction/introduction.docx -------------------------------------------------------------------------------- /articles/00-introduction/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/00-introduction/introduction.md -------------------------------------------------------------------------------- /articles/01-agent/imgs/image-20230909103314020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/imgs/image-20230909103314020.png -------------------------------------------------------------------------------- /articles/01-agent/imgs/image-20230909103849920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/imgs/image-20230909103849920.png -------------------------------------------------------------------------------- /articles/01-agent/imgs/image-20230909111629069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/imgs/image-20230909111629069.png -------------------------------------------------------------------------------- /articles/01-agent/imgs/image-20230909112136592.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/imgs/image-20230909112136592.png -------------------------------------------------------------------------------- /articles/01-agent/imgs/react_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/imgs/react_font.png -------------------------------------------------------------------------------- /articles/01-agent/imgs/行动决策与环境感知的任务协同分析-第二篇/image-20230909103849920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/imgs/行动决策与环境感知的任务协同分析-第二篇/image-20230909103849920.png -------------------------------------------------------------------------------- /articles/01-agent/imgs/行动决策与环境感知的任务协同分析-第二篇/image-20231021205743582.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/imgs/行动决策与环境感知的任务协同分析-第二篇/image-20231021205743582.png -------------------------------------------------------------------------------- /articles/01-agent/imgs/行动决策与环境感知的任务协同分析-第二篇/image-20231021213049923.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/imgs/行动决策与环境感知的任务协同分析-第二篇/image-20231021213049923.png -------------------------------------------------------------------------------- /articles/01-agent/imgs/行动决策与环境感知的任务协同分析-第二篇/image-20231021213107635.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/imgs/行动决策与环境感知的任务协同分析-第二篇/image-20231021213107635.png -------------------------------------------------------------------------------- /articles/01-agent/imgs/行动决策与环境感知的任务协同分析-第二篇/image-20231021221344238.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/imgs/行动决策与环境感知的任务协同分析-第二篇/image-20231021221344238.png -------------------------------------------------------------------------------- /articles/01-agent/imgs/行动决策与环境感知的任务协同分析-第二篇/images.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/imgs/行动决策与环境感知的任务协同分析-第二篇/images.jpeg -------------------------------------------------------------------------------- /articles/01-agent/imgs/行动决策与环境感知的任务协同分析/image-20230909103314020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/imgs/行动决策与环境感知的任务协同分析/image-20230909103314020.png -------------------------------------------------------------------------------- /articles/01-agent/imgs/行动决策与环境感知的任务协同分析/image-20230909103849920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/imgs/行动决策与环境感知的任务协同分析/image-20230909103849920.png -------------------------------------------------------------------------------- /articles/01-agent/imgs/行动决策与环境感知的任务协同分析/image-20230909111629069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/imgs/行动决策与环境感知的任务协同分析/image-20230909111629069.png -------------------------------------------------------------------------------- /articles/01-agent/imgs/行动决策与环境感知的任务协同分析/image-20230909133639650.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/imgs/行动决策与环境感知的任务协同分析/image-20230909133639650.png -------------------------------------------------------------------------------- /articles/01-agent/imgs/行动决策与环境感知的任务协同分析/image-20230909152745682.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/imgs/行动决策与环境感知的任务协同分析/image-20230909152745682.png -------------------------------------------------------------------------------- /articles/01-agent/imgs/行动决策与环境感知的任务协同分析/image-20230909152808532.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/imgs/行动决策与环境感知的任务协同分析/image-20230909152808532.png -------------------------------------------------------------------------------- /articles/01-agent/imgs/行动决策与环境感知的任务协同分析/image-20230909160034084.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/imgs/行动决策与环境感知的任务协同分析/image-20230909160034084.png -------------------------------------------------------------------------------- /articles/01-agent/imgs/行动决策与环境感知的任务协同分析/image-20230909160047075.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/imgs/行动决策与环境感知的任务协同分析/image-20230909160047075.png -------------------------------------------------------------------------------- /articles/01-agent/imgs/行动决策与环境感知的任务协同分析/image-20230909160058793.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/imgs/行动决策与环境感知的任务协同分析/image-20230909160058793.png -------------------------------------------------------------------------------- /articles/01-agent/imgs/行动决策与环境感知的任务协同分析/image-20230909160334508.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/imgs/行动决策与环境感知的任务协同分析/image-20230909160334508.png -------------------------------------------------------------------------------- /articles/01-agent/imgs/行动决策与环境感知的任务协同分析/image-20230909160347941.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/imgs/行动决策与环境感知的任务协同分析/image-20230909160347941.png -------------------------------------------------------------------------------- /articles/01-agent/关于REACT中行动决策与环境感知的任务协同分析.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/关于REACT中行动决策与环境感知的任务协同分析.pptx -------------------------------------------------------------------------------- /articles/01-agent/此处是一个高维空间在同空间下,低维的子空间映射图.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/此处是一个高维空间在同空间下,低维的子空间映射图.kra -------------------------------------------------------------------------------- /articles/01-agent/行动决策与环境感知的任务协同分析-第一篇.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/行动决策与环境感知的任务协同分析-第一篇.md -------------------------------------------------------------------------------- /articles/01-agent/行动决策与环境感知的任务协同分析-第二篇.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/01-agent/行动决策与环境感知的任务协同分析-第二篇.md -------------------------------------------------------------------------------- /articles/02-chatchat加载p-tuning/chatchat加载ptuning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/02-chatchat加载p-tuning/chatchat加载ptuning.md -------------------------------------------------------------------------------- /articles/03-大模型技术栈概览/大模型技术栈-算法与原理.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/03-大模型技术栈概览/大模型技术栈-算法与原理.docx -------------------------------------------------------------------------------- /articles/03-大模型技术栈概览/大模型技术栈-算法与原理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/03-大模型技术栈概览/大模型技术栈-算法与原理.png -------------------------------------------------------------------------------- /articles/04-大模型推理优化策略/大模型推理优化策略.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/04-大模型推理优化策略/大模型推理优化策略.docx -------------------------------------------------------------------------------- /articles/04-大模型推理优化策略/大模型推理优化策略.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/04-大模型推理优化策略/大模型推理优化策略.png -------------------------------------------------------------------------------- /articles/05-大模型指令对齐训练/大模型指令对齐训练原理.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/05-大模型指令对齐训练/大模型指令对齐训练原理.docx -------------------------------------------------------------------------------- /articles/05-大模型指令对齐训练/大模型指令对齐训练原理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/05-大模型指令对齐训练/大模型指令对齐训练原理.png -------------------------------------------------------------------------------- /articles/06-大模型分布式训练技术/分布式训练技术原理.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/06-大模型分布式训练技术/分布式训练技术原理.docx -------------------------------------------------------------------------------- /articles/06-大模型分布式训练技术/分布式训练技术原理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/06-大模型分布式训练技术/分布式训练技术原理.png -------------------------------------------------------------------------------- /articles/07-大模型应用技术原理/大模型应用技术原理.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/07-大模型应用技术原理/大模型应用技术原理.docx -------------------------------------------------------------------------------- /articles/07-大模型应用技术原理/大模型应用技术原理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/07-大模型应用技术原理/大模型应用技术原理.png -------------------------------------------------------------------------------- /articles/08-强化学习简介/强化学习简介.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/08-强化学习简介/强化学习简介.docx -------------------------------------------------------------------------------- /articles/09-AIOps调研报告/AIOps.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/09-AIOps调研报告/AIOps.docx -------------------------------------------------------------------------------- /articles/09-AIOps调研报告/AIOps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/09-AIOps调研报告/AIOps.png -------------------------------------------------------------------------------- /articles/10-AIOps方法论/AIOps方法论.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/10-AIOps方法论/AIOps方法论.docx -------------------------------------------------------------------------------- /articles/10-AIOps方法论/AIOps方法论.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/10-AIOps方法论/AIOps方法论.png -------------------------------------------------------------------------------- /articles/11-RCA根因分析技术/RCA Survey.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/11-RCA根因分析技术/RCA Survey.docx -------------------------------------------------------------------------------- /articles/11-RCA根因分析技术/RCA Survey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/11-RCA根因分析技术/RCA Survey.png -------------------------------------------------------------------------------- /articles/12-有限马尔可夫过程简介/有限马尔可夫过程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/articles/12-有限马尔可夫过程简介/有限马尔可夫过程.md -------------------------------------------------------------------------------- /chatchat-qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatchat-space/chatchat-knowledgebase/HEAD/chatchat-qrcode.jpg --------------------------------------------------------------------------------