본문 바로가기

전체 글117

ModuleNotFoundError: No module named 'pycocotools' pip install pycocotools 은 다음과 같은 에러 뿜음 ModuleNotFoundError: No module named 'pycocotools' 해결방법 conda install -c conda-forge pycocotools 2023. 9. 13.
VScode 경로 설정을 pycharm 과 같게 바꾸기 vscode lanuch.json 에서 [F1] or [Ctrl] + [Shift] + [p] Debug: Add Configuration.. 에서 "cwd", "env" 를 넣어서 아래와 같이 추가하기 { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "Python: Current File", "type": "python", ".. 2023. 9. 12.
a1111 txt2img default resolution 변경하기 (for SDXL) sdxl 1.0은 1024 x 1024 기준으로 학습되었기 때문에 a1111에서 default 를 1024 로 해 놓으면 편하다. ui-config.json 에가서 "txt2img/Width/value" : 1024 "txt2img/Height/value" : 1024 로 변경 결과 2023. 9. 2.
a1111 sdxl1.0 적용하기 안녕하세요. 1. civitai 가서 sdxl을 찾습니다. https://civitai.com/ Civitai | Stable Diffusion models, embeddings, LoRAs and more Civitai is a platform for Stable Diffusion AI Art models. Browse a collection of thousands of models from a growing number of creators. Join an engaged community in reviewing models and sharing images with prompts to get you started. civitai.com 2. 그중에서 sdxl 을 가서 링크 주소 복사 3. wget 으.. 2023. 9. 2.
[Docker] Linux docker 환경에서 a1111 실행해 보기 1. docker pulldocker pull pytorch/pytorch:2.0.1-cuda11.7-cudnn8-devel 2. docker run  docker run -itd --gpus all --restart always --name pytorch211 pytorch/pytorch:2.1.1-cuda12.1-cudnn8-devel /bin/bashdocker run -itd --gpus all --restart always --name cvml_a1111 -v /home/cvmlserver7/Sungmin/data:/usr/src/data pytorch/pytorch:2.0.1-cuda11.7-cudnn8-devel /bin/bash 3. docker attach / docker execdock.. 2023. 8. 30.
[Docker] window docker 환경에서 a1111 실행해 보기 1. docker pull docker pull pytorch/pytorch:2.0.1-cuda11.7-cudnn8-devel 2. docker run docker run -itd --gpus all --restart always --name cvml_a1111 -v /mnt/d/data:/usr/src/data pytorch/pytorch:2.0.1-cuda11.7-cudnn8-devel /bin/bash 3. docker attach docker attach cvml_aaaa1 4. install git apt-get update apt-get install git -y 5. git clone git clone https://github.com/AUTOMATIC1111/stable-diffusion-.. 2023. 8. 24.