전체 글

· 운영체제
CFS와 관련된 첨부의 article을 읽고 중요한 내용을 요약하여 발표하시오. https://opensource.com/article/19/2/fair-scheduling-linux CFS: Completely fair process scheduling in Linux CFS gives every task a fair share of processor resources in a low-fuss but highly efficient way. opensource.com CFS: Completely fair process scheduling in Linux CFS gives every task a fair share of processor resources in a low-fuss but highly eff..
https://github.com/happy-jihye/Cartoon-StyleGAN GitHub - happy-jihye/Cartoon-StyleGAN: Fine-tuning StyleGAN2 for Cartoon Face GenerationFine-tuning StyleGAN2 for Cartoon Face Generation. Contribute to happy-jihye/Cartoon-StyleGAN development by creating an account on GitHub.github.com FINE-TUNING STYLEGAN2 FOR CARTOON FACE GENERATION 논문 리뷰 1. Introduction StyleGAN모델은 이미지의 속성뿐만 아니라 확률적인 부분까지 학습하여..
cartoon_stylegan2.ipynb 코드 리뷰https://github.com/happy-jihye/Cartoon-StyleGAN/blob/main/Cartoon_StyleGAN2.ipynb GitHub - happy-jihye/Cartoon-StyleGAN: Fine-tuning StyleGAN2 for Cartoon Face GenerationFine-tuning StyleGAN2 for Cartoon Face Generation. Contribute to happy-jihye/Cartoon-StyleGAN development by creating an account on GitHub.github.com 1. Set up and Generate Images using pretrained mo..
· 운영체제
요즘 CPU core의 개수가 늘어감에 따라 parallel programming이 활성화되고 있다. 수업시간에 잠깐 다룬 강의노트 p.13의 방법에 대해 보다 자세히 조사하여 설명하시오. 이 방법에 대해 조사하기 전에 parallel programming에 대해 이해해 보도록 한다. parallelism(병렬성)이라는 단어는 concurrency(동시성)과 비교하면서 설명하면 이해하기 쉽다. 이는 컴퓨터공학과 학생의 기본적인 상식일만큼 매우 중요한 단어이다! 1. Concurrency vs Parallelism Concurrency(동시성) cpu 코어 하나가 timesharing으로 context switching 하면 프로그램이 동시에 수행되는 것처럼 보이는 것 Parallelism(병렬성) cpu..
만서다