https://huggingface.co/heegyu/EEVE-Korean-Instruct-10.8B-v1.0-GGUF/tree/main
에서 모델 파일 다운로드 합니다.
저는ggml-model-Q5_K_M.gguf 을 다운로드 받았습니다.
다운로드 받고해당 프로젝트 폴더를 만듭니다.
- HuggingFace-Hub 설치
pip install huggingface-hub
Modelfile 생성
FROM ggml-model-Q5_K_M.gguf
TEMPLATE """{{- if .System }}
<s>{{ .System }}</s>
{{- end }}
<s>Human:
{{ .Prompt }}</s>
<s>Assistant:
"""
SYSTEM """A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions."""
PARAMETER stop <s>
PARAMETER stop </s>
- 아래와 같이 vs-code내에 같은 폴더에 만들어줍니다.
- 그리고 경로에 Model경로 에 맞게 넣어서 실행합니다.
ollama create EEVE-Korean-10.8B -f D:/Develop/ai/ollama/HuggingFacegguf/Modelfile
- 모델 목록으로 설치 확인합니다.
ollama list
설치된걸 확인할수 있습니다.
open-webui에 등록된걸 확인할수 있습니다.
'AI' 카테고리의 다른 글
LangChain 강의] 기본 LLM 체인 (Prompt + LLM) | 멀티 체인 | 구글 Colab 실습 | New Version | 파이썬 (0) | 2024.07.03 |
---|---|
📘 랭체인 튜토리얼 무료 전자책(wikidocs)https://wikidocs.net/book/14314 (0) | 2024.07.02 |
🔥성능이 놀라워요🔥 무료로 한국어🇰🇷 파인튜닝 모델 받아서 나만의 로컬 LLM 호스팅 하기 (0) | 2024.07.02 |
머신러닝이란 무엇인가? (0) | 2024.06.29 |
ChatGPT는 TensorFlow를 사용합니까? (0) | 2024.06.29 |