This is the repository of Pseudo Lab's Text-to-Image Generation (feat. Diffusion) team.
💡 Our aim is to review papers and code related to image generation and text-to-image generation models, approach them theoretically, and conduct various experiments by fine-tuning diffusion based models.
About Us - Text-to-Image Generation (feat. Diffusion) Team
참여 방법: 매주 수요일 오후 9시, 가짜연구소 Discord Room-DH 로 입장!
- 조상우 [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
- 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 text-to-image-generation
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"