Stable Diffusion에 대하여..
·
COMPUTER VISION
안녕하세요, 오랜만에 티스토리로 돌아왔습니다. 오늘 새벽에 잡은 코드 버그가 stable diffusion과 latent space 관련이었는데요, 조금이라도 기록 해두는 편이 좋을 것 같아서 글을 적어보려합니다. https://stable-diffusion-art.com/how-stable-diffusion-work/ How does Stable Diffusion work?Stable Diffusion is a latent diffusion model that generates AI images from text. Instead of operating in the high-dimensional image space, it first compresses the image into the latent sp..
[Java] 정처기 실기 기출 문제 풀이 (2023년)
·
자격증/정보처리기사 (실기)
2023년 1회 1. 다음 Java 코드에 대한 출력 값을 작성하시오.class Parent { int x = 100; Parent() { this(500); } Parent(int x) { this.x = x; } int getX() { return x; }} class Child extends Parent { int x = 4000; Child() { this(5000); } Child(int x) { this.x = x; }} public class Main { public static void main(String[] args) { Child obj..
[논문 리뷰] Poison-splat: Computation Cost Attack on 3D Gaussian Splatting (ICLR 2025)
·
COMPUTER VISION
해당 논문은 3D Gaussian Splatting 모델의 유연성이 컴퓨팅 비용에 관한 공격으로 이어질 수 있음을 밝히고 최초로 컴퓨팅 비용을 늘릴 수 있는 data poisoning 공격인 Poison-splat을 제안하였습니다. https://arxiv.org/abs/2410.08190 Poison-splat: Computation Cost Attack on 3D Gaussian Splatting3D Gaussian splatting (3DGS), known for its groundbreaking performance and efficiency, has become a dominant 3D representation and brought progress to many 3D vision tasks...