Text Generation
Transformers
GGUF
English
review
peer
paper
generation
automatic
feedback
conference
article
manuscript
openreview
TensorBlock
GGUF
conversational
Instructions to use tensorblock/Llama-OpenReviewer-8B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/Llama-OpenReviewer-8B-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="tensorblock/Llama-OpenReviewer-8B-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/Llama-OpenReviewer-8B-GGUF", dtype="auto") - llama-cpp-python
How to use tensorblock/Llama-OpenReviewer-8B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/Llama-OpenReviewer-8B-GGUF", filename="Llama-OpenReviewer-8B-Q2_K.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use tensorblock/Llama-OpenReviewer-8B-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/Llama-OpenReviewer-8B-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/Llama-OpenReviewer-8B-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/Llama-OpenReviewer-8B-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/Llama-OpenReviewer-8B-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/Llama-OpenReviewer-8B-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/Llama-OpenReviewer-8B-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/Llama-OpenReviewer-8B-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/Llama-OpenReviewer-8B-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/Llama-OpenReviewer-8B-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/Llama-OpenReviewer-8B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/Llama-OpenReviewer-8B-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/Llama-OpenReviewer-8B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tensorblock/Llama-OpenReviewer-8B-GGUF:Q2_K
- SGLang
How to use tensorblock/Llama-OpenReviewer-8B-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/Llama-OpenReviewer-8B-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/Llama-OpenReviewer-8B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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/Llama-OpenReviewer-8B-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/Llama-OpenReviewer-8B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use tensorblock/Llama-OpenReviewer-8B-GGUF with Ollama:
ollama run hf.co/tensorblock/Llama-OpenReviewer-8B-GGUF:Q2_K
- Unsloth Studio new
How to use tensorblock/Llama-OpenReviewer-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 tensorblock/Llama-OpenReviewer-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 tensorblock/Llama-OpenReviewer-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 tensorblock/Llama-OpenReviewer-8B-GGUF to start chatting
- Docker Model Runner
How to use tensorblock/Llama-OpenReviewer-8B-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/Llama-OpenReviewer-8B-GGUF:Q2_K
- Lemonade
How to use tensorblock/Llama-OpenReviewer-8B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/Llama-OpenReviewer-8B-GGUF:Q2_K
Run and chat with the model
lemonade run user.Llama-OpenReviewer-8B-GGUF-Q2_K
List all available models
lemonade list
Keep Q2_K/Q3_K_M gguf only
Browse files- Llama-OpenReviewer-8B-Q3_K_L.gguf +0 -3
- Llama-OpenReviewer-8B-Q3_K_S.gguf +0 -3
- Llama-OpenReviewer-8B-Q4_0.gguf +0 -3
- Llama-OpenReviewer-8B-Q4_K_M.gguf +0 -3
- Llama-OpenReviewer-8B-Q4_K_S.gguf +0 -3
- Llama-OpenReviewer-8B-Q5_0.gguf +0 -3
- Llama-OpenReviewer-8B-Q5_K_M.gguf +0 -3
- Llama-OpenReviewer-8B-Q5_K_S.gguf +0 -3
- Llama-OpenReviewer-8B-Q6_K.gguf +0 -3
- Llama-OpenReviewer-8B-Q8_0.gguf +0 -3
Llama-OpenReviewer-8B-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:5bc6aafc3567bb6e4485ec123bbf411704c0b109a77f0302128fd327c4943615
|
| 3 |
-
size 4321957408
|
|
|
|
|
|
|
|
|
|
|
|
Llama-OpenReviewer-8B-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:a8f353403a283baa55164fb5fc7274d7eb500b78f7f5efb947db24dee4fc1530
|
| 3 |
-
size 3664500256
|
|
|
|
|
|
|
|
|
|
|
|
Llama-OpenReviewer-8B-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:baac9bb72b2ef01a2d9d40add319b2dac95dd76f28aae620b4a6bd3d65012fac
|
| 3 |
-
size 4661212704
|
|
|
|
|
|
|
|
|
|
|
|
Llama-OpenReviewer-8B-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:a1df4ca97c1ce9cb9e7dc23387c39a552f968a703e714374065b42b0d2203625
|
| 3 |
-
size 4920735264
|
|
|
|
|
|
|
|
|
|
|
|
Llama-OpenReviewer-8B-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:d577f3468a5ced1cad88fb946834e6d7ec85b0366eaf5832ae51ad06be01cc5c
|
| 3 |
-
size 4692669984
|
|
|
|
|
|
|
|
|
|
|
|
Llama-OpenReviewer-8B-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:852f2b343575ee48ee4a1634df1ad86c3cf759dd807564a8ea800fd844a39063
|
| 3 |
-
size 5599295008
|
|
|
|
|
|
|
|
|
|
|
|
Llama-OpenReviewer-8B-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:2d231ad1907a010ab8d399909d27c6ed2d8d8a1f41bb9e5135c425202aed2892
|
| 3 |
-
size 5732988448
|
|
|
|
|
|
|
|
|
|
|
|
Llama-OpenReviewer-8B-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:93d8092f3930a5172128ca26acc0ee9e04e3ea143e0e84cbb4d12e53d31bd31f
|
| 3 |
-
size 5599295008
|
|
|
|
|
|
|
|
|
|
|
|
Llama-OpenReviewer-8B-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:6c16cd1a14718a1bfb1452226716b523e3a6fd566ac871514fd3e5b37f2f371d
|
| 3 |
-
size 6596007456
|
|
|
|
|
|
|
|
|
|
|
|
Llama-OpenReviewer-8B-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:632ad8ff70dada5d66c731e359d2f1384c88267f051b36a81bdcdfe01a9f20f1
|
| 3 |
-
size 8540771872
|
|
|
|
|
|
|
|
|
|
|
|