Instructions to use tiendung/cpu_models with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use tiendung/cpu_models with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tiendung/cpu_models", filename="mistral_ensft-viwiki-lora_ctx6144-2e.Q6_K.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tiendung/cpu_models 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 tiendung/cpu_models:Q6_K # Run inference directly in the terminal: llama cli -hf tiendung/cpu_models:Q6_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tiendung/cpu_models:Q6_K # Run inference directly in the terminal: llama cli -hf tiendung/cpu_models:Q6_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 tiendung/cpu_models:Q6_K # Run inference directly in the terminal: ./llama-cli -hf tiendung/cpu_models:Q6_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 tiendung/cpu_models:Q6_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tiendung/cpu_models:Q6_K
Use Docker
docker model run hf.co/tiendung/cpu_models:Q6_K
- LM Studio
- Jan
- Ollama
How to use tiendung/cpu_models with Ollama:
ollama run hf.co/tiendung/cpu_models:Q6_K
- Unsloth Studio
How to use tiendung/cpu_models 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 tiendung/cpu_models 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 tiendung/cpu_models to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tiendung/cpu_models to start chatting
- Atomic Chat new
- Docker Model Runner
How to use tiendung/cpu_models with Docker Model Runner:
docker model run hf.co/tiendung/cpu_models:Q6_K
- Lemonade
How to use tiendung/cpu_models with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tiendung/cpu_models:Q6_K
Run and chat with the model
lemonade run user.cpu_models-Q6_K
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +8 -0
- mistral_ensft-viwiki-lora_ctx6144-2e.Q6_K.gguf +3 -0
- openhermes_ensft-viwiki-lora_ctx6144-1e.Q6_K.gguf +3 -0
- seallm-7b-chat-q6_k.gguf +3 -0
- vietmistral_enbagel-lora_ctx4096-1e.Q6_K.gguf +3 -0
- vietmistral_mybagel-dpo.Q6_K.gguf +3 -0
- vietmistral_mybagel-lora_ctx4096-1e.Q6_K.gguf +3 -0
- vinallama-7b_chat.Q5_0.gguf +3 -0
- vistral-7b_chat.Q5_K_M.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,11 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
mistral_ensft-viwiki-lora_ctx6144-2e.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
openhermes_ensft-viwiki-lora_ctx6144-1e.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
seallm-7b-chat-q6_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
vietmistral_enbagel-lora_ctx4096-1e.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
vietmistral_mybagel-dpo.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
vietmistral_mybagel-lora_ctx4096-1e.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
vinallama-7b_chat.Q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
vistral-7b_chat.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
mistral_ensft-viwiki-lora_ctx6144-2e.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0129f30b80046ba1b96d02514f833f663ac07c7c8f5301683278e2ecc2db718b
|
| 3 |
+
size 5942064800
|
openhermes_ensft-viwiki-lora_ctx6144-1e.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4eb14a64eec77b3838d00fbbe265af20cf181e75e0e3d9fed650decabd1ac9fe
|
| 3 |
+
size 5942078528
|
seallm-7b-chat-q6_k.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b1c183a1d755d4a4c5eff3b103e3c22b1a59d57a0f2c126811029f79443439ea
|
| 3 |
+
size 5640557376
|
vietmistral_enbagel-lora_ctx4096-1e.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a64783cfd5be59c41ecfbe74d8551eb1f7cce3f3237eb6a91ea3868c09bcfdc9
|
| 3 |
+
size 5984985600
|
vietmistral_mybagel-dpo.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f784fed8f1187df915b7953d16ea43784e2f1485341f67b1ba0bc377fbede06a
|
| 3 |
+
size 5984985600
|
vietmistral_mybagel-lora_ctx4096-1e.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95ade4c38375df59f9336e51de804fd43a4481fd6b0ace021d5ab55403dd73ac
|
| 3 |
+
size 5984985600
|
vinallama-7b_chat.Q5_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e4b51469a677ff2207aadd133d12b2397db3fbca2ee53928eec43b8b6af820b7
|
| 3 |
+
size 4741772992
|
vistral-7b_chat.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:43e45eda3e401accacbb904c9d05fb30ef024011e1e98007d1d7449f301a6f50
|
| 3 |
+
size 5172006880
|