Instructions to use protectai/codebert-base-Malicious_URLs-onnx with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use protectai/codebert-base-Malicious_URLs-onnx with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="protectai/codebert-base-Malicious_URLs-onnx")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("protectai/codebert-base-Malicious_URLs-onnx") model = AutoModelForSequenceClassification.from_pretrained("protectai/codebert-base-Malicious_URLs-onnx") - Notebooks
- Google Colab
- Kaggle
THIS PROJECT HAS BEEN ARCHIVED.
This project and its associated code on GitHub are no longer under active development or maintained.
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
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
- 1,483
Model tree for protectai/codebert-base-Malicious_URLs-onnx
Base model
DunnBC22/codebert-base-Malicious_URLs