Instructions to use tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF", dtype="auto") - llama-cpp-python
How to use tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF", filename="PlayPart-AI-Personal-Trainer-Q2_K.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF:Q2_K
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 tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF:Q2_K
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 tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF:Q2_K
- SGLang
How to use tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Ollama
How to use tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF with Ollama:
ollama run hf.co/tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF:Q2_K
- Unsloth Studio new
How to use tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-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 tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-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 tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF to start chatting
- Docker Model Runner
How to use tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF:Q2_K
- Lemonade
How to use tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/Lukamac_PlayPart-AI-Personal-Trainer-GGUF:Q2_K
Run and chat with the model
lemonade run user.Lukamac_PlayPart-AI-Personal-Trainer-GGUF-Q2_K
List all available models
lemonade list
Keep Q2_K/Q3_K_M gguf only
Browse files- PlayPart-AI-Personal-Trainer-Q3_K_L.gguf +0 -3
- PlayPart-AI-Personal-Trainer-Q3_K_S.gguf +0 -3
- PlayPart-AI-Personal-Trainer-Q4_0.gguf +0 -3
- PlayPart-AI-Personal-Trainer-Q4_K_M.gguf +0 -3
- PlayPart-AI-Personal-Trainer-Q4_K_S.gguf +0 -3
- PlayPart-AI-Personal-Trainer-Q5_0.gguf +0 -3
- PlayPart-AI-Personal-Trainer-Q5_K_M.gguf +0 -3
- PlayPart-AI-Personal-Trainer-Q5_K_S.gguf +0 -3
- PlayPart-AI-Personal-Trainer-Q6_K.gguf +0 -3
- PlayPart-AI-Personal-Trainer-Q8_0.gguf +0 -3
PlayPart-AI-Personal-Trainer-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:29adef0af521629de2748550eb8456c51142e840a43eccd65dff88619643a435
|
| 3 |
-
size 85508480
|
|
|
|
|
|
|
|
|
|
|
|
PlayPart-AI-Personal-Trainer-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:0a1608d59f030adcf2f8f0908be76caff042be69f6533d80fbe30db0aec078b7
|
| 3 |
-
size 73564544
|
|
|
|
|
|
|
|
|
|
|
|
PlayPart-AI-Personal-Trainer-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:32e8b86ba7c8fbed8395b368a7f097bdaa96549ca9d5238e0deadbe4b7400133
|
| 3 |
-
size 84844928
|
|
|
|
|
|
|
|
|
|
|
|
PlayPart-AI-Personal-Trainer-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:0770971fb751a8d5c399b238896facadade62dc6dc3028c3eb7031142b05f69d
|
| 3 |
-
size 91148672
|
|
|
|
|
|
|
|
|
|
|
|
PlayPart-AI-Personal-Trainer-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:2d1a307dd6b1ed232e4810400d5d8d95a012180e3515ec5ec67ad97bf0725494
|
| 3 |
-
size 85139840
|
|
|
|
|
|
|
|
|
|
|
|
PlayPart-AI-Personal-Trainer-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:8859e83ac0e446265f9e2e111d118047c19ee73fe0d1639f4ff244b11c0a47b4
|
| 3 |
-
size 95461760
|
|
|
|
|
|
|
|
|
|
|
|
PlayPart-AI-Personal-Trainer-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:8b39478ab8e7539dd6005a31575de35940d7f898540ecf8993c36eb40ffdd1ae
|
| 3 |
-
size 100161920
|
|
|
|
|
|
|
|
|
|
|
|
PlayPart-AI-Personal-Trainer-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c22017b004a4502c480211890daaf7b91749450be6f95ff98706fa3ee59154bb
|
| 3 |
-
size 95461760
|
|
|
|
|
|
|
|
|
|
|
|
PlayPart-AI-Personal-Trainer-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:357860a1ba83d0a512ed958c8454c378addba2e296b966eb3d1ba35b225e19d6
|
| 3 |
-
size 106742144
|
|
|
|
|
|
|
|
|
|
|
|
PlayPart-AI-Personal-Trainer-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:67ae6a158ae71cd393979901e0868a3f4c95aa3239c97984415b113b6b941bf7
|
| 3 |
-
size 136660064
|
|
|
|
|
|
|
|
|
|
|
|