This is the repository of PseudoDiffusers team.
๐ก Our aim is to review papers and code related to computer vision generation models, approach them theoretically, and conduct various experiments by fine-tuning diffusion based models.
์ฐธ์ฌ ๋ฐฉ๋ฒ: ๋งค์ฃผ ์์์ผ ์คํ 9์, ๊ฐ์ง์ฐ๊ตฌ์ Discord Room-DH ๋ก ์ ์ฅ!
DiffInject: Revisiting Debias via Synthetic Data Generation using Diffusion-based Style Injection
Donggeun Ko*, Sangwoo Jo*, Dongjun Lee, Namjun Park, Jaekwang KIM
CVPR 2024 Workshop
PDF
- ์กฐ์์ฐ [Sangwoo Jo] | Github | Linkedin |
- ๋ฌธ๊ด์ [Kwangsu Mun] | Github | Linkedin |
- ๊น์ง์ [Jisu Kim] | Github | Linkedin |
- ๋ฐ๋ฒ์ [Beomsoo Park] | Github | Linkedin |
- ์ง์นํ [Seunghwan Ji] | Github | Linkedin |
- ๊ณ ๋๊ทผ [Donggeun Sean Ko] | Github | Linkedin |
- ์กฐ๋จ๊ฒฝ [Namkyeong Cho] | Github | Linkedin |
- ๊น์ ํ [SeonHoon Kim] | Github | Linkedin |
- ์ด์คํ [Junhyoung Lee] | Github | Linkedin |
- ์กฐํ์ [Hyoungseo Cho] | Github | Linkedin |
- ์ ์ ํ [Jeonghwa Yoo] | Github | Linkedin |
- ๋ฐ์ธํ [Sehwan Park] | Github | Linkedin |
- ์ก๊ฑดํ [Geonhak Song] | Github | Linkedin |
- ํ๋ํ [Donghyun Han] | GitHub | Linkedin |
- ์ด์ฐฝํ [ChangHwan Lee] | Github | Linkedin |
- ์ ๊ฒฝ๋ฏผ [Kyeongmin Yu] | Github | Linkdedin |
- ์ด์ ์ธ [Jeongin Lee] | Github | Linkedin |
- ๊นํ์ [Hyunsoo Kim] | Github | Linkedin |
- Clone the repo on your local computer
git clone https://github.com/Pseudo-Lab/text-to-image-generation.git
- Install required packages
pip install jupyter-book==0.15.1
pip install ghp-import==2.1.0
-
Change the contents in
book/docs
folder with the following format and update_toc.yml
file accordingly- reference: https://github.com/Pseudo-Lab/SegCrew-Book
- default template: https://github.com/Pseudo-Lab/Jupyter-Book-Template
- 3.1. Add information section on top of the markdown page
- **Title:** {๋
ผ๋ฌธ ์ ๋ชฉ}, {ํํ/ํ์ ์ง๋ช
}
- **Reference**
- Paper: [{๋
ผ๋ฌธ ๋งํฌ}]({๋
ผ๋ฌธ ๋งํฌ})
- Code: [{code ๋งํฌ}]({code ๋งํฌ})
- Review: [{review ๋งํฌ}]({review ๋งํฌ})
- **Author:** {๋ฆฌ๋ทฐ ์์ฑ์ ๊ธฐ์
}
- **Edited by:** {๋ฆฌ๋ทฐ ํธ์ง์ ๊ธฐ์
}
- **Last updated on {์ต์ข
update ๋ ์ง e.g. Apr. 12, 2023}**
- 3-2. Use the following template when displaying images
:::{figure-md}
<img src="{์ฃผ์}" alt="{tag๋ช
}" class="bg-primary mb-1" width="{800px}">
{์ ๋ชฉ} \ (source: {์ถ์ฒ})
:::
- 3-3. Update
_toc.yml
file accordingly
format: jb-book
root: intro
parts:
- caption: Paper/Code Review
chapters:
- file: docs/review/vae
- file: docs/review/gan
- Build the book using Jupyter Book command
jupyter-book build ./book
- Sync your local and remote repositories
cd pseudodiffusers
git add .
git commit -m "adding my first book!"
git push
- Publish your Jupyter Book with Github Pages
ghp-import -n -p -f book/_build/html -m "initial publishing"