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"