You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At first, the repo is mainly about my process of implementing basic diffusion models from scratch when I'm studying diffusion models. Then, I started researching about image restoration problem and want to apply diffusion model, more specificially, on medical image, so this repo is more like a place where I record my researching journey. I may have made some (more like a lot :>) mistakes, I will certainly happy if you let me know about it.
You can test [MoDL](https://arxiv.org/pdf/1712.02862) by running this experiment & modify any params in it
63
+
```bash
64
+
python src/train.py experiment=modl.yaml
65
+
```
66
+
Or [DDIM](https://arxiv.org/pdf/2010.02502) by running this experiment & modify net params in it
67
+
```bash
68
+
python src/train.py experiment=diffusion.yaml
69
+
```
70
+
Or [DDPM](https://arxiv.org/abs/2006.11239) by running this experiment & modify net params in it
71
+
```bash
72
+
python src/train.py experiment=diffusion.yaml
73
+
```
74
+
You can see the result on wandb by run this script
75
+
```bash
76
+
export WANDB_API_KEY=
77
+
python src/train.py experiment=diffusion.yaml
78
+
```
79
+
## My result
80
+
I will update sooner or later :> (this is my happy face incase you don't know)
81
+
<br>
82
+
<sub>A little confession as usual. Recently, I have applied to lots of AI jobs, but I got rejected from all of them, which is sad. However, I believe that when one door shuts, another one opens. I want to try my best and learn a lot, so I won’t have any regrets one day. </sub>
0 commit comments