An open API service indexing awesome lists of open source software.

https://github.com/mad-sg/generative-ai-start-to-surrender

Generative AI: From Start to Surrender – A Practical Guide to Mastering and Struggling with AI Models
https://github.com/mad-sg/generative-ai-start-to-surrender

continuous-normalizing-flows ddpm diffusion energy-based-model flow-matching gan generative-ai nerf pytorch rectified-flow score-matching stylegan vae vae-pytorch

Last synced: 2 months ago
JSON representation

Generative AI: From Start to Surrender – A Practical Guide to Mastering and Struggling with AI Models

Awesome Lists containing this project

README

        

# Generative AI: From Start to Surrender

## Explore the Documentation Online :book:

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](https://img.shields.io/badge/Read-Online-blue?style=for-the-badge)](https://mad-sg.github.io/generative-ai-start-to-surrender/)

## Contributor :busts_in_silhouette:

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

- [![GitHub](https://img.shields.io/badge/GitHub-Qian%20Lilong-lightgrey?logo=github&style=social)](https://github.com/tsiendragon)

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

## Contribution

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

在settings.json中添加

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

### 使用Markdownlint

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

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

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

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

```markdown

#### 9.3.1-ELBO
```

引用时

```markdown
[引用](