Recent posts

llama v2 model

less than 1 minute read

hugging face llama 실행해 보기 import torch from transformers import LlamaTokenizer, LlamaForCausalLM ## v2 models model_path = 'openlm-research/open_llama_7b_v...

falcon 설치해 보기 추천 싸이트

1 minute read

falcon설치 해보기 falcon huggingface from transformers import AutoTokenizer, AutoModelForCausalLM import transformers import torch model = "tiiuae/falcon-40b" ...

stable diffusion prompt 추천 싸이트

1 minute read

stable diffusion prompt 추천 prompt search prompt search 무료로 다양한 프롬프트들을 검색할 수 있다. 애니메이션 버전과 실사화 버전릐 프롬프트를 따로 검색할 수 있다. 매주 가장 인기 있었던 프롬프트를 확인할 수 있다. 각 프롬프트에 ...

model download site

less than 1 minute read

stable diffusion model download huggingface huggingface arthub arthub civitai civitai 추천 동양인 ChilloutMix 서양인 Deliberate

stable diffusion에 controlnet 설치하기

less than 1 minute read

stable diffusion에서 controlnet 사용하기 webui에서 아래 기능들을 사용할수 있다. controlnet github openpose github 설치 install내용에 아래 github 주소를 넣는다. https://github.com/Mikubill...