본문 바로가기
반응형

분류 전체보기571

[Stable Diffusion] Anything V4 prompt 로그 이하 Negative prompt 추가 Negative prompt: lowers, bad anatomy, bad hands, text, error, missing fingers, extra digit, fewer digits, cropped, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, username, blurry, artist name 2023. 3. 23.
[Stable Diffusion] AnythingV3 생성 sample Sampling Method : Euler a 2023. 3. 22.
[Python] Anaconda 에서 Default Python Version 변경하기 변경 가능한 Python Version 확인하기. conda search python 원하는 버전으로 변경 conda install python=3.10.6 [Anaconda] Python 가상환경 생성하기 [Anaconda] Windows 에 설치하기 [Anaconda] 맥북에(Mac) conda 설치 2023. 3. 22.
[Stable Diffusion] Sampling method 에 따른 이미지 생성 결과 로그성 포스팅입니다. 별 내용없이 생성된 이미지 비교하려고 작성했습니다. 아래는 여러 커뮤니티에서 주워들은 이야기 입니다. PLMS, DPM++ 2M Karras 또는 LMS/Keras 을 사용하면 속도가 빠르다더라 txt2img의 경우 Euler를, img2img의 경우 LMS 를 쓴다더라 Euler a와 DDIM 두 개만 사용한다더라 같은 프롬프트에 Sampling Method 만 바꿔서 생성한 이미지들을 쌍으로 올려보겠습니다. Mac 은 하나 생성 시 10~15초 정도 걸리는듯 합니다.. Windows 에서 더 해봐야겠네요. 결론 많이 해보지는 않았지만, txt2img 만 변환해봤는데 LMS 보다는 Euler 이 더 잘 나오는 것 같습니다. LMS 는 뭔가 언발란스한.. LMS 는 txt2txt 해.. 2023. 3. 22.
[Stable Diffusion] Prompt 에 따른 생성 이미지 예제 Stable Diffusion 여러가지 prompt 를 입력하고, 결과를 확인하기 위해서 작성한 로그성 포스트 입니다. prompt {{{masterpiece}}}, {{{best quality}}}, {{ultra-detailed}}, {cinematic lighting}, {illustration}, {beautiful detailed eyes}, {1girl}, upper body, looking at viewer, depth of field Negative prompt: lowers, bad anatomy, bad hands, text, error, missing fingers, extra digit, fewer digits, cropped, worst quality, low quality, no.. 2023. 3. 22.
[Stable Diffusion] WebUI Mac M1 에서 실행해보기 제 Mac 에서 webui 실행해서 생성한 이미지 입니다. 1. Brew 설치는 이전 글 참고https://hello-bryan.tistory.com/223 [Mac] brew install . brew 설치하기Linux의 apt-get 이나 yum 같은 패키지 매니저입니다. Brew site https://brew.sh/index_ko Homebrew The Missing Package Manager for macOS (or Linux). brew.sh 위 사이트에 설명이 다 나와있지만 간단히 설명하면 아래 명령어를hello-bryan.tistory.com 2. 필요한 것들 설치터미널을 열어서 아래 명령어 실행.arch -arm64 brew install cmake protobuf rust python.. 2023. 3. 22.
[YouTube Premium] 유튜브 결제 영수증 확인하기 google play 에 갔다가, gmail 에 갔다가.. 모바일로 유튜브에 가서 구매항목 및 멤버십으로 들어가도 영수증은 안보이고, 그러다가 웹 페이지 들어가서 확인을 했습니다. 매번 까먹어서 찾기 힘드니까 글로 남겨두려고 합니다 ㅎㅎ 결론은 구글 페이에 "결제수단"에 들어가면 있습니다. 링크는 아래에.. https://pay.google.com/gp/w/u/0/home/activity 이렇게 결제내역이 보이고, 클릭하면 우측에 결제 정보 상세가 나옵니다. 끄읕. 2023. 3. 22.
Git 설치 (Windows) Git For Windows 아래 사이트에서 Download 를 합니다. https://gitforwindows.org/ Git for Windows Git for Windows focuses on offering a lightweight, native set of tools that bring the full feature set of the Git SCM to Windows while providing appropriate user interfaces for experienced Git users and novices alike. Git BASH Git for Windows provides a BA gitforwindows.org 다운받은 파일을 실행합니다. Install 클릭 설치가 완료되면 git.. 2023. 3. 22.
[SpringBoot] ElasticSearch Log Level 설정하기 ElasticSearch Log Level 설정하기 Spring Boot에서 Elasticsearch의 Bulk Insert 로그를 비활성화하려면 application.yml 파일에 다음과 같이 설정을 추가할 수 있습니다. application.yml logging: level: org.elasticsearch.action.bulk: ERROR 이 설정은 org.elasticsearch.action.bulk 패키지의 로그 레벨을 ERROR로 변경합니다. Bulk Insert 로그 이외에도 Elasticsearch에서 다른 로그를 제어하려면, 다른 패키지의 로그 레벨을 추가로 설정하면 됩니다. Logback 또한, Logback을 사용하는 경우, logback-spring.xml 파일을 만들고 다음과 같이.. 2023. 3. 14.
[Java] String Null or Empty 체크 Java 문자열의 값이 null 또는 빈 문자열(empty) 확인 방법 Null 체크 String str = null; if (str == null) { System.out.println("문자열이 null입니다."); } 빈 문자열(empty) 체크 String str = ""; if (str.length() == 0) { System.out.println("문자열이 빈 문자열입니다."); } 이때, 만약 str 이 null 이면 오류가 발생합니다. null 일 가능성이 있다면 아래와 같이 체크 해야합니다. null 또는 빈 문자열(empty) 체크 String str = null; if (str == null || str.length() == 0) { System.out.println("문자열이 nu.. 2023. 3. 2.
728x90
반응형