This model is a conversion of MoritzLaurer/roberta-base-zeroshot-v2.0-c to ONNX format using the Optimum library.
Search public pages, research tools, and SAVRN solutions.
Open-weight model · Zero-shot classification
by Dr Sabri ALLANI sallani/ELISARCyberAIEdge7B-LoRA-GGUF
Offline-ready, quantized LLaMA edge model for cybersecurity use cases ELISAR: An Adaptive Framework for Cybersecurity Risk Assessment Powered by GenAI - Sabri ALLANI, PhD – AI & Cybersecurity Expert - Karam BOU-CHAAYA, PhD – AI & Cybersecurity Expert - Helmi…
By Dr Sabri ALLANI, published under apache-2.0, revision 955894d05083.
Offline-ready, quantized LLaMA edge model for cybersecurity use cases ELISAR: An Adaptive Framework for Cybersecurity Risk Assessment Powered by GenAI - Sabri ALLANI, PhD – AI & Cybersecurity Expert - Karam BOU-CHAAYA, PhD – AI & Cybersecurity Expert - Helmi RAIS – Global Practice Lead, Expleo France May 31, 2025 This work will be published by Springer in the following book: ELISAR is a fine-tuned LoRA model based on Mistral-7B, designed for contextualized cybersecurity risk assessment using Retrieval-Augmented Generation and Agentic AI capabilities. The model targets real-world use cases including: ELISARCyberAIEdge7B-LoRA-GGUF is a LoRA-finetuned, GGUF-quantized version of the Mistral-7B…
Offline-ready, quantized LLaMA edge model for cybersecurity use cases
ELISAR: An Adaptive Framework for Cybersecurity Risk Assessment Powered by GenAI
May 31, 2025
https://huggingface.co/sallani/ELISARCyberAIEdge7B-LoRA-GGUF
This work will be published by Springer in the following book:
https://link.springer.com/chapter/10.1007/978-3-031-93598-5_16
Expected publication date: July 10, 2025
ELISAR is a fine-tuned LoRA model based on Mistral-7B, designed for contextualized cybersecurity risk assessment using Retrieval-Augmented Generation and Agentic AI capabilities. The model targets real-world use cases including: - Threat modeling (Blue ELISAR) - Offensive use-case generation (Red ELISAR) - GRC compliance automation (GRC ELISAR)
ELISARCyberAIEdge7B-LoRA-GGUF is a LoRA-finetuned, GGUF-quantized version of the Mistral-7B backbone tailored for edge deployment in cybersecurity and blue-team AI scenarios. Developed by Dr. Sabri Sallani (PhD), this model integrates:
Download model file:
Click here to downloadelisar_merged.gguf
(~5.13 GB GGUF quantized model for offline inference)
sallani/ELISARCyberAIEdge7BThis pipeline produces a single file (elisar_merged.gguf) of \~160 MiB that you can deploy offline using frameworks like llama.cpp or run through minimal Torch-based inference.
Key features:
# Clone or download the GGUF file directly:
wget https://huggingface.co/sallani/ELISARCyberAIEdge7B-LoRA-GGUF/resolve/main/elisar_merged.gguf -O elisar_merged.gguf
Alternatively, using the Hugging Face Hub CLI:
pip install huggingface_hub
huggingface-cli login # enter HF_TOKEN
huggingface-cli repo clone sallani/ELISARCyberAIEdge7B-LoRA-GGUF
cd ELISARCyberAIEdge7B-LoRA-GGUF
tree
# ├── elisar_merged.gguf
# └── README.md
# Clone llama.cpp repository (if not already):
git clone --depth 1 https://github.com/ggml-org/llama.cpp.git
cd llama.cpp
# Build with GPU support (optional)
make clean
make CMAKE_CUDA=ON CMAKE_CUDA_ARCH=sm75
# Or build CPU-only:
# make
python3 -m venv venv
source venv/bin/activate
pip install torch transformers peft
llama.cppcd llama.cpp
./main -m ../ELISARCyberAIEdge7B-LoRA-GGUF/elisar_merged.gguf -c 2048 -b 8 -t 8
from transformers import AutoModelForCausalLM, AutoTokenizer, GenerationConfig
import torch
model_id = "sallani/ELISARCyberAIEdge7B-LoRA-GGUF"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
model_id,
torch_dtype=torch.float16,
device_map="auto",
)
prompt = "You are a blue-team AI assistant. Analyze the following network log for suspicious patterns: ..."
inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
gen_config = GenerationConfig(
temperature=0.7,
top_p=0.9,
max_new_tokens=256,
)
output_ids = model.generate(**inputs, **gen_config.to_dict())
answer = tokenizer.decode(output_ids[0], skip_special_tokens=True)
print(answer)
ELISARCyberAIEdge7B-LoRA-GGUF/
├── elisar_merged.gguf
└── README.md
sallani/ELISARCyberAIEdge7BDeveloped by Dr. Sabri Sallani, PhD – Expert in Artificial Intelligence & Cybersecurity.
### Instruction: / ### Response:If you use this model or refer to the ELISAR framework in your research, please cite:
@incollection{elisar2025,
author = {Sabri Sallani and Karam Bou-Chaaya and Helmi Rais},
title = {ELISAR: An Adaptive Framework for Cybersecurity Risk Assessment Powered by GenAI},
booktitle = {Communications in Computer and Information Science (CCIS, volume 2518)},
publisher = {Springer},
year = {2025},
note = {To be published on July 10, 2025},
url = {https://link.springer.com/book/9783031935978}
}
Or simply cite:
Sallani, S., Bou-Chaaya, K., & Rais, H. (2025). ELISAR: An Adaptive Framework for Cybersecurity Risk Assessment Powered by GenAI. In Springer Book on AI for Cybersecurity. Publication date: July 10, 2025. https://link.springer.com/book/9783031935978
Thank you for using ELISARCyberAIEdge7B-LoRA-GGUF – helping secure your edge AI.
6 files, 5.5 GB in total. The weights are 3 files totalling 5.5 GB in gguf.
| File | Type | Size | SHA-256 |
|---|---|---|---|
| ELISARCyberAIEdge7B-LoRA.gguf | Weights | 5.1 GB | 13f867e79566 |
| elisar_full_f16.gguf | Weights | 167.8 MB | e79442ab4f4d |
| elisar_merged.gguf | Weights | 167.8 MB | bc8fd24274fc |
| README.md | Documentation | 7.2 KB | — |
| readme.md | Documentation | 6.4 KB | — |
| .gitattributes | Repository | 1.7 KB | — |
Released by Dr Sabri ALLANI through its official repository on Hugging Face. Read the license.
| Precision | Weights in memory |
|---|---|
| As published | 5.5 GB |
Weights only, from the published parameter count; the key-value cache and runtime add to this.
Yes. ELISARCyberAIEdge7B-LoRA-GGUF is released under Apache License 2.0. The Apache License 2.0 is a permissive open-source license. It permits commercial use, modification and redistribution. It requires keeping the license and copyright notices and any NOTICE file, stating significant changes, and it includes an express patent grant from contributors.
This model is a conversion of MoritzLaurer/roberta-base-zeroshot-v2.0-c to ONNX format using the Optimum library.
https://huggingface.co/facebook/bart-large-mnli with ONNX weights to be compatible with Transformers.js. If you haven't already, you can install the Transformers.js JavaScript library from NPM using: Note: Having a separate repo for ONNX weights is intended to be a temporary solution until WebML gains more traction. If you would like to make your models web-ready, we recommend converting to ONNX using Optimum and structuring your repo like this one (with ONNX weights located in a subfolder named onnx).
distilbart-mnli is the distilled version of bart-large-mnli created using the No Teacher Distillation technique proposed for BART summarisation by Huggingface, here. We just copy alternating layers from bart-large-mnli and finetune more on the same data. This is a very simple and effective technique, as we can see the performance drop is very little. Detailed performace trade-offs will be posted in this sheet. If you want to train these models yourself, clone the distillbart-mnli repo and follow the steps below Clone and install transformers from source Download MNLI data Create student model Start fine-tuning You can find the logs of these trained models in this wandb project.
distilbart-mnli is the distilled version of bart-large-mnli created using the No Teacher Distillation technique proposed for BART summarisation by Huggingface, here. We just copy alternating layers from bart-large-mnli and finetune more on the same data. This is a very simple and effective technique, as we can see the performance drop is very little. Detailed performace trade-offs will be posted in this sheet. If you want to train these models yourself, clone the distillbart-mnli repo and follow the steps below Clone and install transformers from source Download MNLI data Create student model Start fine-tuning You can find the logs of these trained models in this wandb project.
https://huggingface.co/typeform/mobilebert-uncased-mnli with ONNX weights to be compatible with Transformers.js. If you haven't already, you can install the Transformers.js JavaScript library from NPM using: Note: Having a separate repo for ONNX weights is intended to be a temporary solution until WebML gains more traction. If you would like to make your models web-ready, we recommend converting to ONNX using Optimum and structuring your repo like this one (with ONNX weights located in a subfolder named onnx).
https://huggingface.co/cross-encoder/nli-deberta-v3-xsmall with ONNX weights to be compatible with Transformers.js. If you haven't already, you can install the Transformers.js JavaScript library from NPM using: Note: Having a separate repo for ONNX weights is intended to be a temporary solution until WebML gains more traction. If you would like to make your models web-ready, we recommend converting to ONNX using Optimum and structuring your repo like this one (with ONNX weights located in a subfolder named onnx).