schift-ko-pii-v7

~40M parameter Korean PII detector β€” hydra encoder (shared lower layers, independent person/address upper layers).

0.6.0 replaces the v6 dual-path LoRA architecture. v6 shared one set of upper layers across person/address (differing only by head) and used a LoRA toggle for organization. v7's person and address towers were fine-tuned independently on top of the same frozen lower layers, so they can no longer share a single upper-layer path β€” the model now branches after the shared lower layers into two independently-fine-tuned upper-layer stacks.

v7 ships person and address only. Organization support is deferred to a future release β€” its training data needs formal/legal-register examples (an organization name as a bare sentence subject, e.g. a ministry or company name opening a legal clause), which the current corpus lacks. If your workflow depends on organization detection, stay on schift-ko-pii<0.6 (v6) for now. private_date follows the same rule it always has (see Labels below) β€” only birth dates are treated as identifying.

The base install does not install ko-pii; install the extended extra only when those additional deterministic categories are needed.

Release status

This source tree prepares schift-ko-pii 0.6.0. The previously published baseline was 0.5.2 (v6 checkpoint, person + address + organization). The Cloud Run ONNX service under services/pii is a separate deployment lane; this package does not bundle its ONNX artifacts.

Quick start

pip install schift-ko-pii

The original detector API remains available:

from schift_ko_pii import detect

spans = detect("ν”Όκ³  κΉ€λ―Όμˆ˜μ˜ μ „ν™”λ²ˆν˜ΈλŠ” 010-1234-5678이닀.")
# [
#   {"start": 3, "end": 6, "label": "private_person", ...},
#   {"start": 14, "end": 27, "label": "private_phone", ...},
# ]

For a typed operational result, use the selective-adoption flow:

from schift_ko_pii import AnalysisConfig, ProcessingMode, analyze_text

result = analyze_text(
    "ν”Όκ³  κΉ€λ―Όμˆ˜μ˜ μ „ν™”λ²ˆν˜ΈλŠ” 010-1234-5678이닀.",
    config=AnalysisConfig(mode=ProcessingMode.PERMISSIVE),
)

# The result contains typed detections, policy actions, BLOCK-only masking,
# counts, and a metadata-only review queue. It has no separate source-text
# field; its policy text can still preserve REVIEW/ALLOW spans for operators.
print(result.summary)
print(result.masking.masked_text)
print(result.review_items())

Selective-adoption flow

The public workflow is deliberately ordered:

detect -> assess -> BLOCK-only masking -> review queue

analyze_text() or analyze() runs detection, sends non-sensitive detection metadata to assess(), and masks only spans whose action is Action.BLOCK. Action.REVIEW detections remain unmasked and are represented by ReviewItem values in PiiResult.review_queue; callers can create a typed FeedbackPatch with propose_feedback_patch() without persisting raw PII. Action.ALLOW detections are retained in the typed result but are not masked. The resulting masking.masked_text is therefore a policy output, not a safe untrusted-egress string: use a caller-owned all-span redaction step before sending it to logs, external APIs, or other untrusted surfaces.

Detector confidence and operational risk are separate. ProcessingMode sets the action thresholds:

Mode BLOCK threshold REVIEW threshold
AUDIT never blocks all detections are allowed for audit output
PERMISSIVE CRITICAL risk at score >= 0.95 HIGH risk at score >= 0.70
STRICT MEDIUM risk at score >= 0.70 LOW risk at score >= 0.50
BALANCED HIGH risk at score >= 0.80 MEDIUM risk at score >= 0.60
PARANOID LOW risk at score >= 0.50 all lower-risk detections

PERMISSIVE is an action-policy choice, not a change to the v6 detector's score_threshold. Use AnalysisConfig.score_threshold separately when configuring detection.

Extended profiles (opt-in)

pip install "schift-ko-pii[extended]"

The optional adapter is enabled per request:

from schift_ko_pii import AnalysisConfig, analyze_text

result = analyze_text(
    "μ‚¬μ—…μžλ“±λ‘λ²ˆν˜Έ 104-81-49532, 직책 νŒ€μž₯",
    config=AnalysisConfig(extended=True, extended_profile="contextual"),
)

extended_profile="structured" adopts deterministic identifier and anchor categories such as business/corporate registration numbers, medical insurance and prescription identifiers, PNU, postal code, fax, employee, document, petition, and drug IDs. extended_profile="contextual" includes that structured set plus contextual attributes such as nationality, birth date, education, major, position, age, height, and weight.

The taxonomy registry is exposed through LABELS, STRUCTURED_UPSTREAM_LABELS, CONTEXTUAL_UPSTREAM_LABELS, EXCLUDED_UPSTREAM_LABELS, lookup_label(), label_for_upstream(), and upstream_labels_for_profile(). The adapter excludes categories already owned by the v6 detector or current Schift postprocessing, including person, address, phone, email, existing structured identifiers, URLs, IPs, and legal case references. Existing v6 spans win overlaps, except a generic account_number span may be refined by a more specific extended label.

Masking boundaries

Masking is request-local and occurs only after policy assessment. Select a MaskingStrategy in AnalysisConfig or call mask_text() directly with typed MaskSpan values:

  • TOKEN: replace with a stable label token such as [PII_PHONE_1].
  • REDACT: replace with [REDACTED].
  • PARTIAL: retain a small leading/trailing portion for recognition.
  • HASHED: replace with a deterministic local SHA-256 digest.

These strategies are output transformations, not custody. No strategy stores a reverse map, restores source values, or talks to Vault. Central Vault custody, retention, tenant isolation, KMS, and audit requirements remain a separate caller-side project.

Documents and the document-helper boundary

Document APIs accept already extracted text and provenance, not files:

from schift_ko_pii import (
    ExtractedPageInput,
    analyze,
    from_pages,
)

document = from_pages(
    (
        ExtractedPageInput(page_num=1, text="첫 νŽ˜μ΄μ§€", source="helper"),
        ExtractedPageInput(page_num=2, text="λ‘˜μ§Έ νŽ˜μ΄μ§€", source="helper"),
    ),
    source_id="doc-123",
)
result = analyze(document)

from_text(), from_pages(), and from_document_helper() build the typed text-only envelope. DocumentInput preserves the concatenated text and page boundaries; SourceSpan and PageSpan preserve character offsets and page provenance. scan_document() is the convenience scan over that envelope.

The package does not parse HWP/HWPX, DOCX, XLSX, PDF, or other file formats. Use the document-helper service (or another caller-owned parser) to produce a text-only envelope, then pass it to this package. Do not treat the envelope as file storage or a Vault integration.

Postprocessing and legacy API

Postprocessing is enabled by default for detect(). It applies Korean-specific structured-ID validation, checksum checks where applicable, context-aware span merging, and false-positive suppression for legal case numbers and statute references. The legacy detect() path preserves original input text by default; pass normalize=True when you want NFKC-normalized model input and source-offset remapping. The typed analyze()/analyze_text() flow enables that normalization by default. Pass postprocess=False for encoder heads only (person, address, and organization).

Existing root exports remain available: detect, mask, apply, assess, detect_extended, detect_extended_entities, Action, ProcessingMode, RiskLevel, and ExtendedDependencyError.

For compatibility, AnonymizationResult is an alias of PiiResult, and both anonymize_text and anonymize are aliases of analyze_text. They do not introduce a second execution path.

API (free)

For production use without managing model files:

from schift import Schift

client = Schift(api_key="...")  # free at schift.io
result = client.pii.redact("κΉ€λ―Όμˆ˜μ˜ μ „ν™”λ²ˆν˜ΈλŠ” 010-1234-5678μž…λ‹ˆλ‹€.")

Labels

The stable local taxonomy is available as immutable TaxonomyEntry values in LABELS. Common labels include:

Label Description Examples
private_person Person names κΉ€λ―Όμˆ˜, ν™©λ³΄μ˜ν¬, Lee Jenny
private_phone Phone numbers 010-1234-5678, 02-1234-5678
private_email Email addresses user@example.com
private_address Street/postal addresses μ„œμšΈνŠΉλ³„μ‹œ 강남ꡬ ν…Œν—€λž€λ‘œ 521
private_url URLs and IP addresses instagram.com/user, 192.168.1.1
account_number Structured account/identity surfaces 850205-1234567, M12345678
secret Secrets, API keys, passwords

private_date and private_organization are declared in the taxonomy but have no detector path in v7 (no regex rule, no model head) β€” see Release status above.

Benchmark

The benchmark suite is included under benchmark/.

python benchmark/run_benchmark.py
python benchmark/run_benchmark.py --postprocess
python benchmark/run_benchmark.py --hf-model LiquidAI/LFM2.5-Encoder-350M-PII-Detector

benchmark_v1.jsonl is the default (smallest, fastest). For a broader multi-source benchmark (7,315 rows across KDPII, generated admin-form, dialogue, and legal-document text), use bench_v4.jsonl:

python benchmark/run_benchmark.py --benchmark benchmark/bench_v4.jsonl --postprocess

bench_v4.jsonl rows carry a cov field listing which labels that row was actually annotated for β€” the runner only scores labels in cov when present, since no single source in the merge annotated every category.

bench_v4.jsonl is also published standalone (model-version-independent) as schift-io/schift-pii-bench-v4 on the Hub.

Switching checkpoints

Which checkpoint this package loads is injected, not hardcoded β€” the model's own schift_heads.json manifest declares its towers/labels, so this same pip version can load any compatible checkpoint:

export SCHIFT_KO_PII_MODEL_ID="schift-io/schift-ko-pii-v6"  # before first use
import schift_ko_pii
schift_ko_pii.set_model_id("schift-io/schift-ko-pii-v6")  # switches at runtime

set_model_id() forces a reload on the next call. The environment variable takes effect at import time; the function takes effect immediately.

Model details

  • Checkpoint: schift-io/schift-ko-pii-v7
  • Architecture: hydra encoder β€” shared lower layers (L0..L3), independent upper layers (L4..L5) per tower. Address reuses the v6 upper layers/head unchanged, plus a small residual adapter (bottleneck dim 256, zero-init at training start). Person's upper layers/head were fully fine-tuned (surname/given decomposed tagging, merged back into one span at decode time).
  • Training: independent expert-tower fine-tuning per label (no shared organization LoRA path in v7 β€” see Release status)
  • Format: safetensors release source (save_model/load_model, shared lower-layer tensors are not duplicated on disk)
  • Inference: custom transformers/PyTorch hydra loader
  • Max length: 512 tokens
  • Tagging scheme: O/B/I/E/S (address); O/B-SUR/I-SUR/E-SUR/S-SUR/B-GIV/I-GIV/E-GIV/S-GIV (person)

License

Schift License v2.0 β€” Apache 2.0 base with a revenue threshold. Free for everyone under $10M annual revenue. Research, education, and non-profit use always permitted. Companies above the threshold: contact hello@schift.io.

Citation

@software{schift_ko_pii_2026,
  author = {Schift Inc.},
  title = {schift-ko-pii: Korean PII Detection Model},
  year = {2026},
  url = {https://huggingface.co/schift-io/schift-ko-pii-v7},
}
Downloads last month
64
Safetensors
Model size
40M params
Tensor type
F32
Β·
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support