AIAny
AI Model2026
Icon for item

OpenAI Privacy Filter

Detects and masks personally identifiable information (PII) in text using a bidirectional token-classification model for high-throughput, on‑premises sanitization. Key traits: 1.5B parameters, 128k-token context, Apache 2.0 license, and tunable precision/recall operating points.

Introduction

Why this matters

Privacy-sensitive pipelines frequently require fast, auditable, and locally runnable PII detection that can be tuned for different risk thresholds. OpenAI Privacy Filter approaches this by converting an autoregressively pretrained checkpoint into a bidirectional token-classifier and decoding coherent spans in one forward pass — enabling high-throughput masking without server-side calls or heavy chunking.

Key Capabilities
  • Span-level PII detection: Produces coherent BIOES-labeled spans across 8 privacy categories (account_number, private_address, private_email, private_person, private_phone, private_url, private_date, secret), decoded with a constrained Viterbi procedure instead of independent token argmaxes, which improves boundary stability.
  • Small, practical footprint: ~1.5B total parameters with ~50M active parameters, designed to run in browsers or on laptops (also available via Hugging Face formats like safetensors/ONNX) for on‑premises or edge sanitization.
  • Long-context processing: Supports an extremely long effective context (advertised 128,000-token window) to avoid chunking in long documents and preserve cross-span context for better recall.
  • Runtime control and calibration: Offers operating-point tuning (transition biases and decoding parameters) to trade precision vs. recall and to adjust detected span lengths for different masking policies.
Who it's for & tradeoffs

Great fit if you need an auditable, locally runnable PII redaction layer that you can tune and integrate into ETL, logging, or document-processing pipelines. It is practical for teams that want deterministic span decoding, on‑prem inference, and fine-tuning to domain-specific patterns.

Look elsewhere if your goal is certified legal anonymization, out-of-distribution multilingual redaction without further evaluation, or if you require guarantees for regulated high-stakes workflows (medical, legal, financial) without human review — the model is an aid, not a compliance certificate. Performance can degrade on non-Latin scripts, rare naming conventions, or novel secret formats; evaluate and fine-tune on in‑domain data before production.

Practical notes

The project is permissively licensed (Apache 2.0), provides a Hugging Face model card and a public GitHub repository, and includes examples for both Python transformers and transformers.js pipelines. Because the model's label policy is fixed, changing the label taxonomy or policy requires domain-specific finetuning rather than runtime configuration.

Information

Categories

More Items

Hugging Face
AI Model2026

GGUF-quantized, refusal-removed build of Qwen3.8-Flash-Next for llama.cpp that provides multimodal (image+text), reasoning and tool-calling capabilities; released for security research and red-teaming under the Apache-2.0 license.

Hugging Face
AI Model2026

A dynamically quantized GGUF build of Ornith-1.5-35B optimized for agentic code-fixing and multi-turn conversations: targets 4-bit/≈22GB deployments, includes a vision projector, a custom importance matrix and a concise chat template.

Hugging Face
AI Model2026

Open-weights LLM fine-tuned for phone-based voice agents that prioritizes low latency and reliable tool/function calling. Based on NVIDIA Nemotron 3 Nano (30B total, 3.5B active), supports very long contexts (262,144 tokens) and recommends temperature=0 with thinking disabled for deployment.