분류 전체보기123 InstructPix2Pix: Learning to Follow Image Editing Instructions InstructPix2PixAbstract∘ image와 instruction(ex. "Swap sunflowers with roses") 입력→ edited image∘ language model(GPT-3)과 text-to-image model(Stable Diffusion)로 생성한 image editing example dataset으로 학습∘ edit에 걸리는 시간이 짧음 - forward pass에서 edit 진행 - example마다 이루어지는 fine-tuning, inversion이 없음 1. Introduction ∘ 생성 모델이 사람이 작성한 image editing instruction을 따르도록 학습시키는 방법에 관한 연구∘ 서로 다른 modality를 가진 LLM(GPT-3).. 2025. 1. 28. [백준/BOJ] 2164번 카드2 C++ 문제 링크 : https://www.acmicpc.net/problem/2164 맞힌 코드#include using namespace std;int n;int main(void){ cin >> n; queue q; for (int i=0; i 2024. 11. 20. [프로그래머스] 42842번 카펫 C++ 문제 링크 : https://school.programmers.co.kr/learn/courses/30/lessons/42842?language=cpp 메모- sqrt() https://blockdmask.tistory.com/307 [C언어/C++] pow, sqrt 함수에 대해서(루트함수, 제곱, 제곱근)안녕하세요. BlockDMask 입니다 오늘은 (저는) 자주 쓰지는 않지만 꼭 알아둬야하는 함수를 두개 묶어서 가지고왔습니다. 바로 pow, sqrt 함수인데요. 중학교때 제곱과 제곱근(루트) 배우셨죠? 그걸이blockdmask.tistory.com 풀이- yellow의 세로 길이를 i로 하는 for문. yellow를 i로 나누어 떨어지는 경우 i와 yellow/i가 노란색 부분의 세로, 가로 길이.. 2024. 11. 13. [프로그래머스] 86491번 최소직사각형 C++ 문제 링크 : https://school.programmers.co.kr/learn/courses/30/lessons/86491 맞힌 코드#include using namespace std;int solution(vector> sizes) { int w = 0; int h = 0; for (int i=0; iw) w = sizes[i][0]; if (sizes[i][1]>h) h = sizes[i][1]; } return w*h;} 2024. 11. 13. [프로그래머스] 42747번 H-Index C++ 문제 링크 : https://school.programmers.co.kr/learn/courses/30/lessons/42747 메모 맞힌 코드#include using namespace std;int solution(vector citations) { int answer = 0; sort(citations.begin(), citations.end(), greater()); for (int i=0; i= i+1){ answer++; } } return answer;} 2024. 11. 13. [프로그래머스] 42748번 K번째수 C++ 문제 링크 : https://school.programmers.co.kr/learn/courses/30/lessons/42748 메모- sort 문법 맞힌 코드#include using namespace std;vector solution(vector array, vector> commands) { vector answer; for (int l=0; l v; int i = commands[l][0]; int j = commands[l][1]; int k = commands[l][2]; for (int m=i-1; m 2024. 11. 12. [프로그래머스] 1844번 게임 맵 최단거리 C++ 문제 링크 : https://school.programmers.co.kr/learn/courses/30/lessons/1844 메모- bfs 방법으로 풀이- vector> maps의 n, m 값 구하는 코드는 다음과 같음 int n = maps.size(); int m = maps.[0].size();- maps의 값이 1 이하인 경우 방문하지 못한 것으로 판별해 -1 return 맞힌 코드#include using namespace std;int solution(vector > maps){ int answer = 0; int dx[] = {0, 0, -1, 1}; int dy[] = {-1, 1, 0, 0}; int n = maps.size(); int m = maps[0.. 2024. 11. 11. [백준/BOJ] 20125번 쿠키의 신체 측정 C++ 문제 링크 : https://www.acmicpc.net/problem/20125 틀린 코드out of bounds 에러 뜸#include using namespace std;string arr[1001][1001];int main(){ int n; cin >> n; /* string p; for (int i=1; i> p; if(p=="*"){ arr[i][j] = 1; } } } */ int x, y; while (true){ for (int i=1; i0; i--){ if(arr[x][i]=="*") .. 2024. 11. 7. 이전 1 2 3 4 ··· 16 다음