Instructions to use carefood/agent1-health-analysis-8b-gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use carefood/agent1-health-analysis-8b-gguf with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf carefood/agent1-health-analysis-8b-gguf:Q8_0 # Run inference directly in the terminal: llama cli -hf carefood/agent1-health-analysis-8b-gguf:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf carefood/agent1-health-analysis-8b-gguf:Q8_0 # Run inference directly in the terminal: llama cli -hf carefood/agent1-health-analysis-8b-gguf:Q8_0
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf carefood/agent1-health-analysis-8b-gguf:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf carefood/agent1-health-analysis-8b-gguf:Q8_0
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf carefood/agent1-health-analysis-8b-gguf:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf carefood/agent1-health-analysis-8b-gguf:Q8_0
Use Docker
docker model run hf.co/carefood/agent1-health-analysis-8b-gguf:Q8_0
- LM Studio
- Jan
- Ollama
How to use carefood/agent1-health-analysis-8b-gguf with Ollama:
ollama run hf.co/carefood/agent1-health-analysis-8b-gguf:Q8_0
- Unsloth Studio
How to use carefood/agent1-health-analysis-8b-gguf with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for carefood/agent1-health-analysis-8b-gguf to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for carefood/agent1-health-analysis-8b-gguf to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for carefood/agent1-health-analysis-8b-gguf to start chatting
- Docker Model Runner
How to use carefood/agent1-health-analysis-8b-gguf with Docker Model Runner:
docker model run hf.co/carefood/agent1-health-analysis-8b-gguf:Q8_0
- Lemonade
How to use carefood/agent1-health-analysis-8b-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull carefood/agent1-health-analysis-8b-gguf:Q8_0
Run and chat with the model
lemonade run user.agent1-health-analysis-8b-gguf-Q8_0
List all available models
lemonade list
- Atomic Chat
How to use from
Unsloth StudioInstall Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex
# Run unsloth studio
unsloth studio -H 0.0.0.0 -p 8888
# Then open http://localhost:8888 in your browser
# Search for carefood/agent1-health-analysis-8b-gguf to start chattingUsing HuggingFace Spaces for Unsloth
# No setup required# Open https://huggingface.co/spaces/unsloth/studio in your browser
# Search for carefood/agent1-health-analysis-8b-gguf to start chattingQuick Links
Health Analysis Agent (GGUF)
๋ชจ๋ธ ์ค๋ช
๊ฑด๊ฐ ์ค๋ฌธ์กฐ์ฌ ๊ฒฐ๊ณผ๋ฅผ ๋ถ์ํ์ฌ ์ฌ์ฉ์์ ๊ฑด๊ฐ ์ํ๋ฅผ ํ๊ฐํ๋ ์ ๋ฌธ AI
์ฃผ์ ๊ธฐ๋ฅ: ์ค๋ฌธ์กฐ์ฌ โ ๊ฑด๊ฐ์ํ ๋ถ์
๊ธฐ์ ์ธ๋ถ์ฌํญ
- Base Model: MLP-KTLim/llama-3-Korean-Bllossom-8B
- Fine-tuning Method: LoRA (Low-Rank Adaptation)
- Quantization: 8-bit during training
- Format: GGUF
- Language: Korean (ํ๊ตญ์ด)
์ฌ์ฉ ๋ฐฉ๋ฒ
GGUF ๋ฒ์
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("carefood/agent1-health-analysis-8bgguf")
model = AutoModelForCausalLM.from_pretrained("carefood/agent1-health-analysis-8bgguf")
# ์ฌ์ฉ ์์
prompt = "์ค๋ฌธ์กฐ์ฌ ๊ฒฐ๊ณผ๋ฅผ ๋ถ์ํด์ฃผ์ธ์..."
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_length=512)
response = tokenizer.decode(outputs[0], skip_special_tokens=True)
ํ๋ จ ๋ฐ์ดํฐ
- ํ๊ตญ์ธ ๊ฑด๊ฐ ์ค๋ฌธ์กฐ์ฌ ๋ฐ์ดํฐ
- ์ง๋ณ๋ณ ์์ ์ ๋ณด
- ์์ฌ๋ฃ ์ถ์ฒ ๋ฐ์ดํฐ
์ ํ์ฌํญ
- ์๋ฃ์ง์ ์ ๋ฌธ์ ์ง๋จ์ ๋์ฒดํ์ง ์์ต๋๋ค
- ์ฐธ๊ณ ์ฉ ์ ๋ณด๋ก๋ง ํ์ฉํด์ฃผ์ธ์
- ์ฌ๊ฐํ ๊ฑด๊ฐ ๋ฌธ์ ๋ ๋ฐ๋์ ์๋ฃ์ง๊ณผ ์๋ดํ์ธ์
๊ฐ๋ฐ์
- Organization: carefood
- Contact: GitHub Issues
์ด ๋ชจ๋ธ์ ๊ฑด๊ฐ ๊ด๋ฆฌ ๋ณด์กฐ ๋ชฉ์ ์ผ๋ก๋ง ์ฌ์ฉํด์ฃผ์ธ์.
- Downloads last month
- 106
Hardware compatibility
Log In to add your hardware
8-bit
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐ Ask for provider support
Model tree for carefood/agent1-health-analysis-8b-gguf
Base model
meta-llama/Meta-Llama-3-8B Finetuned
MLP-KTLim/llama-3-Korean-Bllossom-8B
Install Unsloth Studio (macOS, Linux, WSL)
# Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for carefood/agent1-health-analysis-8b-gguf to start chatting