diff --git a/README.md b/README.md index e7a86ec..08d41ce 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,10 @@ 本开源项目试图给读者讲解现代机器学习系统的设计原理和实现经验。 +## 发布历史 + +- 3.17.2022: 本书处于勘误阶段。如发现文字和图片错误,可创建Issue并@[章节编辑](info/editors.md)。我们非常欢迎社区提交PR直接勘误。 + ## 适用读者 本书的常见读者包括: @@ -18,11 +22,11 @@ ## 构建指南 -请参考[构建指南](INFO.md)来了解如何构建本书的网页版本和PDF版本。 +请参考[构建指南](info/info.md)来了解如何构建本书的网页版本和PDF版本。 ## 写作指南 -我们欢迎大家来一起贡献和更新本书的内容。常见的贡献方式是提交PR来更新和添加Markdown文件。写作的风格和图片要求请参考[风格指南](STYLE_GUIDE.md)。同时,机器学习领域涉及到大量的中英文翻译,相关的翻译要求请参考[术语指南](TERMINOLOGY.md)。 +我们欢迎大家来一起贡献和更新本书的内容。常见的贡献方式是提交PR来更新和添加Markdown文件。写作的风格和图片要求请参考[风格指南](info/style.md)。同时,机器学习领域涉及到大量的中英文翻译,相关的翻译要求请参考[术语指南](info/terminology.md)。 ## 内容介绍 diff --git a/config.ini b/config.ini index 0626b6b..a051d73 100644 --- a/config.ini +++ b/config.ini @@ -22,7 +22,7 @@ notebooks = *.md */*.md resources = img/ mlsyszh/ mlsys.bib # Files that will be skipped. -exclusions = */*_origin.md README.md STYLE_GUIDE.md INFO.md CODE_OF_CONDUCT.md CONTRIBUTING.md contrib/*md +exclusions = */*_origin.md README.md info/*md contrib/*md # If True (default), then will evaluate the notebook to obtain outputs. eval_notebook = True diff --git a/info/editors.md b/info/editors.md new file mode 100644 index 0000000..7221fd2 --- /dev/null +++ b/info/editors.md @@ -0,0 +1,37 @@ +## 编辑 + +本书由超过30位人工智能系统领域的学术专家和开发人员共同完成。以下为各个章节编辑负责人: + +项目README: [@luomai](https://github.com/luomai) + +第1章 - 导论:[@luomai](https://github.com/luomai) + +第2章 - 编程模型:[@Laicheng0830](https://github.com/Laicheng0830) + +第3章 - 计算图:[@hanjr92](https://github.com/hanjr92) + +进阶篇序言:[@ganzhiliang](https://github.com/ganzhiliang) + +第4章 - 编译器前端和IR: [TODO] [@LiangZhibo](https://github.com/LiangZhibo) + +第5章 - 编译器后端和运行时: [TODO] + +第6章 - 硬件加速器:[TODO] + +第7章 - 数据处理框架: [@eedalong](https://github.com/eedalong) + +第8章 - 模型部署: [TODO] + +第9章 - 分布式训练系统: [@luomai](https://github.com/luomai) + +拓展篇序言:[@luomai](https://github.com/luomai) + +第10章 - 深度学习推荐系统:[@future-xy](https://github.com/future-xy) + +第11章 - 联邦学习系统:[TODO] + +第12章 - 强化学习系统:[@quantumiracle](https://github.com/quantumiracle) + +第13章 - 可解释性AI系统:[TODO] + +附录:机器学习介绍:[@zsdonghao](https://github.com/zsdonghao) diff --git a/INFO.md b/info/info.md similarity index 95% rename from INFO.md rename to info/info.md index 6eeb879..643e567 100644 --- a/INFO.md +++ b/info/info.md @@ -77,8 +77,8 @@ d2lbook build pdf ## 样式规范 -贡献请遵照本教程的[样式规范](STYLE_GUIDE.md)。 +贡献请遵照本教程的[样式规范](style.md)。 ## 中英文术语对照 -翻译请参照[中英文术语对照](TERMINOLOGY.md)。 +翻译请参照[中英文术语对照](terminology.md)。 diff --git a/STYLE_GUIDE.md b/info/style.md similarity index 100% rename from STYLE_GUIDE.md rename to info/style.md diff --git a/TERMINOLOGY.md b/info/terminology.md similarity index 100% rename from TERMINOLOGY.md rename to info/terminology.md