Instructions to use prithivMLmods/NetraEmbed-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/NetraEmbed-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("prithivMLmods/NetraEmbed-GGUF", dtype="auto") - llama-cpp-python
How to use prithivMLmods/NetraEmbed-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="prithivMLmods/NetraEmbed-GGUF", filename="NetraEmbed.BF16.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use prithivMLmods/NetraEmbed-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf prithivMLmods/NetraEmbed-GGUF:BF16 # Run inference directly in the terminal: llama-cli -hf prithivMLmods/NetraEmbed-GGUF:BF16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf prithivMLmods/NetraEmbed-GGUF:BF16 # Run inference directly in the terminal: llama-cli -hf prithivMLmods/NetraEmbed-GGUF:BF16
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 prithivMLmods/NetraEmbed-GGUF:BF16 # Run inference directly in the terminal: ./llama-cli -hf prithivMLmods/NetraEmbed-GGUF:BF16
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 prithivMLmods/NetraEmbed-GGUF:BF16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf prithivMLmods/NetraEmbed-GGUF:BF16
Use Docker
docker model run hf.co/prithivMLmods/NetraEmbed-GGUF:BF16
- LM Studio
- Jan
- Ollama
How to use prithivMLmods/NetraEmbed-GGUF with Ollama:
ollama run hf.co/prithivMLmods/NetraEmbed-GGUF:BF16
- Unsloth Studio new
How to use prithivMLmods/NetraEmbed-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 prithivMLmods/NetraEmbed-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 prithivMLmods/NetraEmbed-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for prithivMLmods/NetraEmbed-GGUF to start chatting
- Docker Model Runner
How to use prithivMLmods/NetraEmbed-GGUF with Docker Model Runner:
docker model run hf.co/prithivMLmods/NetraEmbed-GGUF:BF16
- Lemonade
How to use prithivMLmods/NetraEmbed-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull prithivMLmods/NetraEmbed-GGUF:BF16
Run and chat with the model
lemonade run user.NetraEmbed-GGUF-BF16
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +8 -0
- NetraEmbed.BF16.gguf +3 -0
- NetraEmbed.F16.gguf +3 -0
- NetraEmbed.F32.gguf +3 -0
- NetraEmbed.Q8_0.gguf +3 -0
- NetraEmbed.mmproj-bf16.gguf +3 -0
- NetraEmbed.mmproj-f16.gguf +3 -0
- NetraEmbed.mmproj-f32.gguf +3 -0
- NetraEmbed.mmproj-q8_0.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 |
+
NetraEmbed.BF16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
NetraEmbed.F16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
NetraEmbed.F32.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
NetraEmbed.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
NetraEmbed.mmproj-bf16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
NetraEmbed.mmproj-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
NetraEmbed.mmproj-f32.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
NetraEmbed.mmproj-q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
NetraEmbed.BF16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7814d89e7a9909dbd4b61f7808bb9001c8716ae9f9cd415f2a0b77b4e322bfe0
|
| 3 |
+
size 7767804224
|
NetraEmbed.F16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c8fe86d0ceea429a0f82827b4b78220cbcaaa151b639b445077a5d8245c0fef4
|
| 3 |
+
size 7767804224
|
NetraEmbed.F32.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aa3e90c3556978b9c48fbd26eb7e21580e334f02340676bd793b16e618b6b020
|
| 3 |
+
size 15527594304
|
NetraEmbed.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:48fc12102d3789ac60033ca0beb9c781373936c589a6c38eb5503fe0d88ca766
|
| 3 |
+
size 4130402624
|
NetraEmbed.mmproj-bf16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:19df42b80d48882c3f4cb8e8fcf5489f41f2dd019420f268fca2e65b2022090f
|
| 3 |
+
size 851252096
|
NetraEmbed.mmproj-f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:226cba8987f587d8d58249f27041ff6650edb7c788f57d0897cba1db53e54752
|
| 3 |
+
size 851252096
|
NetraEmbed.mmproj-f32.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7403ee50847a0a751694f88e35de0aa9b654d53d00bccb2f7936ed5afe46134b
|
| 3 |
+
size 1673393024
|
NetraEmbed.mmproj-q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:81cce4d234eb014e1ea01d21c46c1d9fba86bc7fb63e51410275e5f6d780ab93
|
| 3 |
+
size 591378176
|