ONNX version of DunnBC22/codebert-base-Malicious_URLs

This model is a conversion of DunnBC22/codebert-base-Malicious_URLs to ONNX format. It's based on the CodeBERT architecture, tailored for the specific task of identifying URLs that may pose security threats. The model was converted to ONNX using the ๐Ÿค— Optimum library.

Model Architecture

Base Model: CodeBERT-base, a robust model for programming and natural languages.

Dataset: https://www.kaggle.com/datasets/sid321axn/malicious-urls-dataset.

Modifications: Details of any modifications or fine-tuning done to tailor the model for malicious URL detection.

Usage

Loading the model requires the ๐Ÿค— Optimum library installed.

from optimum.onnxruntime import ORTModelForSequenceClassification
from transformers import AutoTokenizer, pipeline


tokenizer = AutoTokenizer.from_pretrained("laiyer/codebert-base-Malicious_URLs-onnx")
model = ORTModelForSequenceClassification.from_pretrained("laiyer/codebert-base-Malicious_URLs-onnx")
classifier = pipeline(
    task="text-classification",
    model=model,
    tokenizer=tokenizer,
    top_k=None,
)

classifier_output = classifier("https://google.com")
print(classifier_output)

LLM Guard

Malicious URLs scanner

Community

Join our Slack to give us feedback, connect with the maintainers and fellow users, ask questions, or engage in discussions about LLM security!

Downloads last month
702
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for protectai/codebert-base-Malicious_URLs-onnx

Quantized
(1)
this model

Collection including protectai/codebert-base-Malicious_URLs-onnx