Instructions to use tensorblock/Aspik101_vicuna-13b-v1.5-PL-lora_unload-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use tensorblock/Aspik101_vicuna-13b-v1.5-PL-lora_unload-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/Aspik101_vicuna-13b-v1.5-PL-lora_unload-GGUF", filename="vicuna-13b-v1.5-PL-lora_unload-Q2_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 tensorblock/Aspik101_vicuna-13b-v1.5-PL-lora_unload-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 tensorblock/Aspik101_vicuna-13b-v1.5-PL-lora_unload-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/Aspik101_vicuna-13b-v1.5-PL-lora_unload-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tensorblock/Aspik101_vicuna-13b-v1.5-PL-lora_unload-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/Aspik101_vicuna-13b-v1.5-PL-lora_unload-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/Aspik101_vicuna-13b-v1.5-PL-lora_unload-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/Aspik101_vicuna-13b-v1.5-PL-lora_unload-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/Aspik101_vicuna-13b-v1.5-PL-lora_unload-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/Aspik101_vicuna-13b-v1.5-PL-lora_unload-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/Aspik101_vicuna-13b-v1.5-PL-lora_unload-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/Aspik101_vicuna-13b-v1.5-PL-lora_unload-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/Aspik101_vicuna-13b-v1.5-PL-lora_unload-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/Aspik101_vicuna-13b-v1.5-PL-lora_unload-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/tensorblock/Aspik101_vicuna-13b-v1.5-PL-lora_unload-GGUF:Q2_K
- Ollama
How to use tensorblock/Aspik101_vicuna-13b-v1.5-PL-lora_unload-GGUF with Ollama:
ollama run hf.co/tensorblock/Aspik101_vicuna-13b-v1.5-PL-lora_unload-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/Aspik101_vicuna-13b-v1.5-PL-lora_unload-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/Aspik101_vicuna-13b-v1.5-PL-lora_unload-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/Aspik101_vicuna-13b-v1.5-PL-lora_unload-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/Aspik101_vicuna-13b-v1.5-PL-lora_unload-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use tensorblock/Aspik101_vicuna-13b-v1.5-PL-lora_unload-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/Aspik101_vicuna-13b-v1.5-PL-lora_unload-GGUF:Q2_K
- Lemonade
How to use tensorblock/Aspik101_vicuna-13b-v1.5-PL-lora_unload-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/Aspik101_vicuna-13b-v1.5-PL-lora_unload-GGUF:Q2_K
Run and chat with the model
lemonade run user.Aspik101_vicuna-13b-v1.5-PL-lora_unload-GGUF-Q2_K
List all available models
lemonade list
Remove .gguf files (keep Q2_K.gguf)
Browse files- vicuna-13b-v1.5-PL-lora_unload-Q3_K_L.gguf +0 -3
- vicuna-13b-v1.5-PL-lora_unload-Q3_K_M.gguf +0 -3
- vicuna-13b-v1.5-PL-lora_unload-Q3_K_S.gguf +0 -3
- vicuna-13b-v1.5-PL-lora_unload-Q4_0.gguf +0 -3
- vicuna-13b-v1.5-PL-lora_unload-Q4_K_M.gguf +0 -3
- vicuna-13b-v1.5-PL-lora_unload-Q4_K_S.gguf +0 -3
- vicuna-13b-v1.5-PL-lora_unload-Q5_0.gguf +0 -3
- vicuna-13b-v1.5-PL-lora_unload-Q5_K_M.gguf +0 -3
- vicuna-13b-v1.5-PL-lora_unload-Q5_K_S.gguf +0 -3
- vicuna-13b-v1.5-PL-lora_unload-Q6_K.gguf +0 -3
- vicuna-13b-v1.5-PL-lora_unload-Q8_0.gguf +0 -3
vicuna-13b-v1.5-PL-lora_unload-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:1c929030fc33bcb0e7dae49a57a9951b12fb2a567b4fb5ced2d765d8a4f54bb9
|
| 3 |
-
size 6929560448
|
|
|
|
|
|
|
|
|
|
|
|
vicuna-13b-v1.5-PL-lora_unload-Q3_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:b1c17e29cab443074e7167f8c30daa73dccbab97d3947f60469a5557aaa92849
|
| 3 |
-
size 6337770368
|
|
|
|
|
|
|
|
|
|
|
|
vicuna-13b-v1.5-PL-lora_unload-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:0513c7e4389ece8f3c9c08e04ee651c2fcc98b6adfacb891753722686d43bb6e
|
| 3 |
-
size 5658981248
|
|
|
|
|
|
|
|
|
|
|
|
vicuna-13b-v1.5-PL-lora_unload-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:f27011f49a9951fcc81d60c80ba07a501167b5f739b927a7dbb19c6c7a4634fa
|
| 3 |
-
size 7365835648
|
|
|
|
|
|
|
|
|
|
|
|
vicuna-13b-v1.5-PL-lora_unload-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:d4f1d3d5dc0af3feb88f97295a21bc86b909cb4c01dced07b76369f1308f66c3
|
| 3 |
-
size 7865957248
|
|
|
|
|
|
|
|
|
|
|
|
vicuna-13b-v1.5-PL-lora_unload-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:08454b2b8cd15d917bf56122173aeb02e1c57a916acc18a3aa6fd798c9d96d00
|
| 3 |
-
size 7423179648
|
|
|
|
|
|
|
|
|
|
|
|
vicuna-13b-v1.5-PL-lora_unload-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:1d0440ada8df31dcbe3e1a5d5a5899e56695b744480dc22417455c138c964331
|
| 3 |
-
size 8972286848
|
|
|
|
|
|
|
|
|
|
|
|
vicuna-13b-v1.5-PL-lora_unload-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:ede45ad6f9c2204417290faae74da157b5caad795fd33fa883d294e72cd2bfbd
|
| 3 |
-
size 9229925248
|
|
|
|
|
|
|
|
|
|
|
|
vicuna-13b-v1.5-PL-lora_unload-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:17ccec7a873096643aa3a42cccf68d5c8da97544df8a916a9ef883a11b28130f
|
| 3 |
-
size 8972286848
|
|
|
|
|
|
|
|
|
|
|
|
vicuna-13b-v1.5-PL-lora_unload-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:145b232fc7201bf5b1f51350ba5edddeb086cde8bed7a45ac8151bdddaa11958
|
| 3 |
-
size 10679141248
|
|
|
|
|
|
|
|
|
|
|
|
vicuna-13b-v1.5-PL-lora_unload-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:0d39ac4a507db8d86d122654c056a01973894f53cd2cd3f73f54dbead0d0466d
|
| 3 |
-
size 13831320448
|
|
|
|
|
|
|
|
|
|
|
|