Transformers
GGUF
security
cybersecwithai
threat
vulnerability
infosec
attackio
cyber security
ai4security
llmsecurity
cyber
cybersec
cybersecurity
conversational
Instructions to use koesn/ZySec-7B-v1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use koesn/ZySec-7B-v1-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("koesn/ZySec-7B-v1-GGUF", dtype="auto") - llama-cpp-python
How to use koesn/ZySec-7B-v1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="koesn/ZySec-7B-v1-GGUF", filename="zysec-7b-v1.IQ3_M.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 koesn/ZySec-7B-v1-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf koesn/ZySec-7B-v1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf koesn/ZySec-7B-v1-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf koesn/ZySec-7B-v1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf koesn/ZySec-7B-v1-GGUF:Q4_K_M
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 koesn/ZySec-7B-v1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf koesn/ZySec-7B-v1-GGUF:Q4_K_M
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 koesn/ZySec-7B-v1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf koesn/ZySec-7B-v1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/koesn/ZySec-7B-v1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use koesn/ZySec-7B-v1-GGUF with Ollama:
ollama run hf.co/koesn/ZySec-7B-v1-GGUF:Q4_K_M
- Unsloth Studio new
How to use koesn/ZySec-7B-v1-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 koesn/ZySec-7B-v1-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 koesn/ZySec-7B-v1-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for koesn/ZySec-7B-v1-GGUF to start chatting
- Docker Model Runner
How to use koesn/ZySec-7B-v1-GGUF with Docker Model Runner:
docker model run hf.co/koesn/ZySec-7B-v1-GGUF:Q4_K_M
- Lemonade
How to use koesn/ZySec-7B-v1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull koesn/ZySec-7B-v1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.ZySec-7B-v1-GGUF-Q4_K_M
List all available models
lemonade list
Upload 9 files
Browse files- .gitattributes +9 -0
- zysec-7b-v1.IQ3_M.gguf +3 -0
- zysec-7b-v1.IQ3_S.gguf +3 -0
- zysec-7b-v1.IQ3_XXS.gguf +3 -0
- zysec-7b-v1.IQ4_NL.gguf +3 -0
- zysec-7b-v1.Q4_0.gguf +3 -0
- zysec-7b-v1.Q4_K_M.gguf +3 -0
- zysec-7b-v1.Q5_K_M.gguf +3 -0
- zysec-7b-v1.Q6_K.gguf +3 -0
- zysec-7b-v1.Q8_0.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,12 @@ 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 |
+
zysec-7b-v1.IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
zysec-7b-v1.IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
zysec-7b-v1.IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
zysec-7b-v1.IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
zysec-7b-v1.Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
zysec-7b-v1.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
zysec-7b-v1.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
zysec-7b-v1.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
zysec-7b-v1.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
zysec-7b-v1.IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b980aa97e77feeab02aa7b28d79ffd623cefeff4da71138e32f64953855d038a
|
| 3 |
+
size 3284891840
|
zysec-7b-v1.IQ3_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b386df65d48444313ebd839af55547a7f3d55640dbfba865237419b7a2c842bd
|
| 3 |
+
size 3182393536
|
zysec-7b-v1.IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:42f7f183adb8807ca5aa33b049b6eea01ede799723f00d051d3f3ade1755fbe7
|
| 3 |
+
size 3023378624
|
zysec-7b-v1.IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:92febbba24084437de7bc58e2a59128b510aa5a5f8a72df2ae7c5ceb7ea0bf3f
|
| 3 |
+
size 4155054272
|
zysec-7b-v1.Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:401239a6e686f54b0820efad71fb6b0a9256b310447d06b30d928d0e5d6143af
|
| 3 |
+
size 4108916928
|
zysec-7b-v1.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e3608dc922b70c14f7ef1b15be9a43d43e118eb1b692e74b72770c0dfddeb0ea
|
| 3 |
+
size 4368439488
|
zysec-7b-v1.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f5de24bb27196dfd60f99850acd937298cd81e55dc752db456e3864ff138f87
|
| 3 |
+
size 5131409600
|
zysec-7b-v1.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c93139fe3781bc8928a3b2a5136d6ead90d97d12f4da475d98e9c7cd9a9cd4a3
|
| 3 |
+
size 5942065344
|
zysec-7b-v1.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:694423eada5bb008377b8a792a87025552b1815461a54e7c8e1b54b484c0a4c1
|
| 3 |
+
size 7695857856
|