Skip to content

MAD-SG/generative-ai-start-to-surrender

Repository files navigation

Generative AI: From Start to Surrender

Explore the Documentation Online 📖

Discover the full documentation for "Generative AI: From Start to Surrender" online. Dive into detailed guides and resources to enhance your understanding of generative AI technologies.

Read Online

Contributor 👥

We are grateful for the contributions from our community. Here are some of our key contributors:

  • GitHub

Your contributions help make this project better. Thank you for your support!

Contribution

vscode 设置保存图片位置. vscode 可以支持直接复制图片,会把粘贴板上的图片复制到markdown 文件中,并且保存文件到指定目录中

在settings.json中添加

{
    "markdown.copyFiles.destination": {
        "**/*": "${documentWorkspaceFolder}/docs/images/"
    },
    ...
}

使用Markdownlint

Markdownlint 是一个对 Markdown 进行规范检查的扩展,除了给出 lint 提示外,也支持自动修复部分问题(比如空行、列表缩进等)。 打开 VS Code 设置后,可根据需要启用自动修复选项:

{
   ...
   "editor.codeActionsOnSave": {
      "source.fixAll.markdownlint": true
   },
   "markdownlint.config": {
        "default": true,
        "MD033": false,
        "MD049":false,
        "MD022":false,
    }
}

其中markdownlint.config 可以控制对特定的error选择进行忽略。选择"MD049" 对数学公式的自动修复进行忽略。

交叉引用

如果想引用其他的markdown 文件中的某个章节或者内容,可以添加一个anchor

<a id="elbo"></a>
#### 9.3.1-ELBO

引用时

[引用](<relative_path/to/file.md#elbo)

BUGS

MARKDOWN

  1. bmatrix cannot be rendered

  2. Use extension "MathJax 3 Plugin for Github" to render equationalt text

  3. cannot render \mathbf

  4. $$ $$ 需要换行。在 Markdown 中,单个换行符(按下 Enter)通常不会被视为换行,而是被解析为一个空格,除非渲染器明确支持换行。

行间公式保持下面的格式

text...

$$...$$




License

This repository contains both the book content and source code. Each is licensed separately:

  1. Book Content:

  2. Code:

Please ensure you follow the respective license terms when using this material.