Skip to content

Commit

Permalink
🎉 修改环境描述
Browse files Browse the repository at this point in the history
  • Loading branch information
Relph1119 committed Oct 14, 2023
1 parent d305346 commit 7105f4b
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 6 deletions.
29 changes: 29 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -237,3 +237,32 @@ notebook/pandas20/data/task11/
/notebook/diffusion_models_learning51/my_homework/data/mnist/MNIST/raw/train-images-idx3-ubyte.gz
/notebook/diffusion_models_learning51/my_homework/data/mnist/MNIST/raw/train-labels-idx1-ubyte
/notebook/diffusion_models_learning51/my_homework/data/mnist/MNIST/raw/train-labels-idx1-ubyte.gz
/notebook/diffusion_models_learning51/assets/unit1/01_introduction_to_diffusers.ipynb
/notebook/diffusion_models_learning51/assets/unit1/01_introduction_to_diffusers_CN.ipynb
/notebook/diffusion_models_learning51/assets/unit1/02_diffusion_models_from_scratch.ipynb
/notebook/diffusion_models_learning51/assets/unit1/02_diffusion_models_from_scratch_CN.ipynb
/notebook/diffusion_models_learning51/assets/unit1/README.md
/notebook/diffusion_models_learning51/assets/unit1/README_CN.md
/notebook/diffusion_models_learning51/assets/unit2/01_finetuning_and_guidance.ipynb
/notebook/diffusion_models_learning51/assets/unit2/01_finetuning_and_guidance_CN.ipynb
/notebook/diffusion_models_learning51/assets/unit2/02_class_conditioned_diffusion_model_example.ipynb
/notebook/diffusion_models_learning51/assets/unit2/02_class_conditioned_diffusion_model_example_CN.ipynb
/notebook/diffusion_models_learning51/assets/unit2/conditional_digit_generation.png
/notebook/diffusion_models_learning51/assets/unit2/finetune_model.py
/notebook/diffusion_models_learning51/assets/unit2/guidance_eg.png
/notebook/diffusion_models_learning51/assets/unit2/README.md
/notebook/diffusion_models_learning51/assets/unit2/README_CN.md
/notebook/diffusion_models_learning51/assets/unit3/01_stable_diffusion_introduction.ipynb
/notebook/diffusion_models_learning51/assets/unit3/01_stable_diffusion_introduction_CN.ipynb
/notebook/diffusion_models_learning51/assets/unit3/cfg_example_0_1_2_10.jpeg
/notebook/diffusion_models_learning51/assets/unit3/README.md
/notebook/diffusion_models_learning51/assets/unit3/README_CN.md
/notebook/diffusion_models_learning51/assets/unit3/sd_demo_images.jpg
/notebook/diffusion_models_learning51/assets/unit3/sd_unet_color.png
/notebook/diffusion_models_learning51/assets/unit3/text_encoder_noborder.png
/notebook/diffusion_models_learning51/assets/unit4/01_ddim_inversion.ipynb
/notebook/diffusion_models_learning51/assets/unit4/01_ddim_inversion_CN.ipynb
/notebook/diffusion_models_learning51/assets/unit4/02_diffusion_for_audio.ipynb
/notebook/diffusion_models_learning51/assets/unit4/02_diffusion_for_audio_CN.ipynb
/notebook/diffusion_models_learning51/assets/unit4/README.md
/notebook/diffusion_models_learning51/assets/unit4/README_CN.md
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ requirements.txt---------------------------运行环境依赖包

## 环境安装
### Python版本
Python 3.8 Windows环境
Python 3.10 Windows环境

### 运行环境配置
安装相关的依赖包
Expand All @@ -81,7 +81,7 @@ jupyter notebook
### pytorch安装
执行以下命令安装pytorch
```shell
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121
```

### pytorch geometric安装
Expand Down
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@

## 环境安装
### Python版本
Mini-Conda Python 3.8 Windows环境
Python 3.10 Windows环境

### Notebook运行环境配置
安装相关的依赖包
Expand All @@ -199,7 +199,7 @@ jupyter notebook
### pytorch安装
执行以下命令安装pytorch
```shell
pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu117
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121
```

### pytorch geometric安装
Expand Down
2 changes: 0 additions & 2 deletions docs/diffusion_models_learning51/contents.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# 第51期《扩散模型从原理到实战》学习笔记


## Task01 扩散模型库入门与零基础实战

本次任务,主要了解了扩散模型的基本原理(前向过程、反向过程、优化目标),并学习了Hugging Face核心功能的使用,根据教程从零搭建了扩散模型,并将BasicUNet和UNet2Model两个模型预测结果进行对比。
Expand All @@ -10,7 +9,6 @@
- [第2章 Hugging Face简介](diffusion_models_learning51/ch02.md)
- [第3章 从零开始搭建扩散模型](diffusion_models_learning51/ch03/ch03.md)


## Task02 微调与引导

个人笔记如下:
Expand Down

0 comments on commit 7105f4b

Please sign in to comment.