Instructions to use tensorblock/e5-R-mistral-7b-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/e5-R-mistral-7b-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/e5-R-mistral-7b-GGUF", dtype="auto") - llama-cpp-python
How to use tensorblock/e5-R-mistral-7b-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/e5-R-mistral-7b-GGUF", filename="e5-R-mistral-7b-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/e5-R-mistral-7b-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/e5-R-mistral-7b-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/e5-R-mistral-7b-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/e5-R-mistral-7b-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/e5-R-mistral-7b-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/e5-R-mistral-7b-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/e5-R-mistral-7b-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/e5-R-mistral-7b-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/e5-R-mistral-7b-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/e5-R-mistral-7b-GGUF:Q2_K
- LM Studio
- Jan
- Ollama
How to use tensorblock/e5-R-mistral-7b-GGUF with Ollama:
ollama run hf.co/tensorblock/e5-R-mistral-7b-GGUF:Q2_K
- Unsloth Studio new
How to use tensorblock/e5-R-mistral-7b-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/e5-R-mistral-7b-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/e5-R-mistral-7b-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/e5-R-mistral-7b-GGUF to start chatting
- Docker Model Runner
How to use tensorblock/e5-R-mistral-7b-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/e5-R-mistral-7b-GGUF:Q2_K
- Lemonade
How to use tensorblock/e5-R-mistral-7b-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/e5-R-mistral-7b-GGUF:Q2_K
Run and chat with the model
lemonade run user.e5-R-mistral-7b-GGUF-Q2_K
List all available models
lemonade list
Update README.md
Browse files
README.md
CHANGED
|
@@ -1097,12 +1097,47 @@ This repo contains GGUF format model files for [BeastyZ/e5-R-mistral-7b](https:/
|
|
| 1097 |
|
| 1098 |
The files were quantized using machines provided by [TensorBlock](https://tensorblock.co/), and they are compatible with llama.cpp as of [commit b4011](https://github.com/ggerganov/llama.cpp/commit/a6744e43e80f4be6398fc7733a01642c846dce1d).
|
| 1099 |
|
| 1100 |
-
|
| 1101 |
-
|
| 1102 |
-
|
| 1103 |
-
|
| 1104 |
-
</
|
| 1105 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1106 |
## Prompt template
|
| 1107 |
|
| 1108 |
```
|
|
|
|
| 1097 |
|
| 1098 |
The files were quantized using machines provided by [TensorBlock](https://tensorblock.co/), and they are compatible with llama.cpp as of [commit b4011](https://github.com/ggerganov/llama.cpp/commit/a6744e43e80f4be6398fc7733a01642c846dce1d).
|
| 1099 |
|
| 1100 |
+
## Our projects
|
| 1101 |
+
<table border="1" cellspacing="0" cellpadding="10">
|
| 1102 |
+
<tr>
|
| 1103 |
+
<th style="font-size: 25px;">Awesome MCP Servers</th>
|
| 1104 |
+
<th style="font-size: 25px;">TensorBlock Studio</th>
|
| 1105 |
+
</tr>
|
| 1106 |
+
<tr>
|
| 1107 |
+
<th><img src="https://imgur.com/2Xov7B7.jpeg" alt="Project A" width="450"/></th>
|
| 1108 |
+
<th><img src="https://imgur.com/pJcmF5u.jpeg" alt="Project B" width="450"/></th>
|
| 1109 |
+
</tr>
|
| 1110 |
+
<tr>
|
| 1111 |
+
<th>A comprehensive collection of Model Context Protocol (MCP) servers.</th>
|
| 1112 |
+
<th>A lightweight, open, and extensible multi-LLM interaction studio.</th>
|
| 1113 |
+
</tr>
|
| 1114 |
+
<tr>
|
| 1115 |
+
<th>
|
| 1116 |
+
<a href="https://github.com/TensorBlock/awesome-mcp-servers" target="_blank" style="
|
| 1117 |
+
display: inline-block;
|
| 1118 |
+
padding: 8px 16px;
|
| 1119 |
+
background-color: #FF7F50;
|
| 1120 |
+
color: white;
|
| 1121 |
+
text-decoration: none;
|
| 1122 |
+
border-radius: 6px;
|
| 1123 |
+
font-weight: bold;
|
| 1124 |
+
font-family: sans-serif;
|
| 1125 |
+
">👀 See what we built 👀</a>
|
| 1126 |
+
</th>
|
| 1127 |
+
<th>
|
| 1128 |
+
<a href="https://github.com/TensorBlock/TensorBlock-Studio" target="_blank" style="
|
| 1129 |
+
display: inline-block;
|
| 1130 |
+
padding: 8px 16px;
|
| 1131 |
+
background-color: #FF7F50;
|
| 1132 |
+
color: white;
|
| 1133 |
+
text-decoration: none;
|
| 1134 |
+
border-radius: 6px;
|
| 1135 |
+
font-weight: bold;
|
| 1136 |
+
font-family: sans-serif;
|
| 1137 |
+
">👀 See what we built 👀</a>
|
| 1138 |
+
</th>
|
| 1139 |
+
</tr>
|
| 1140 |
+
</table>
|
| 1141 |
## Prompt template
|
| 1142 |
|
| 1143 |
```
|