entiscope-ko 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- entiscope_ko-0.1.0/LICENSE +201 -0
- entiscope_ko-0.1.0/PKG-INFO +126 -0
- entiscope_ko-0.1.0/README.md +98 -0
- entiscope_ko-0.1.0/entiscope/__init__.py +12 -0
- entiscope_ko-0.1.0/entiscope/__main__.py +104 -0
- entiscope_ko-0.1.0/entiscope/_api.py +129 -0
- entiscope_ko-0.1.0/entiscope/_cli/__init__.py +4 -0
- entiscope_ko-0.1.0/entiscope/_cli/args.py +52 -0
- entiscope_ko-0.1.0/entiscope/_cli/render.py +65 -0
- entiscope_ko-0.1.0/entiscope/_core/__init__.py +20 -0
- entiscope_ko-0.1.0/entiscope/_core/bioes.py +132 -0
- entiscope_ko-0.1.0/entiscope/_core/decoder.py +41 -0
- entiscope_ko-0.1.0/entiscope/_core/download.py +47 -0
- entiscope_ko-0.1.0/entiscope/_core/entities.py +78 -0
- entiscope_ko-0.1.0/entiscope/_core/pipeline.py +58 -0
- entiscope_ko-0.1.0/entiscope/_core/regex_filter.py +56 -0
- entiscope_ko-0.1.0/entiscope/_core/runtime.py +70 -0
- entiscope_ko-0.1.0/entiscope/_core/schema.py +74 -0
- entiscope_ko-0.1.0/entiscope/_core/transitions.py +111 -0
- entiscope_ko-0.1.0/entiscope/_eval/__init__.py +4 -0
- entiscope_ko-0.1.0/entiscope/_eval/dataset.py +31 -0
- entiscope_ko-0.1.0/entiscope/_eval/metrics.py +75 -0
- entiscope_ko-0.1.0/entiscope/_eval/runner.py +27 -0
- entiscope_ko-0.1.0/entiscope/_model/__init__.py +4 -0
- entiscope_ko-0.1.0/entiscope/_model/config.py +52 -0
- entiscope_ko-0.1.0/entiscope/_train/__init__.py +11 -0
- entiscope_ko-0.1.0/entiscope/_train/modeling.py +74 -0
- entiscope_ko-0.1.0/entiscope/_train/runner.py +118 -0
- entiscope_ko-0.1.0/entiscope/entity_config.yaml +49 -0
- entiscope_ko-0.1.0/entiscope/regex_rules.yaml +69 -0
- entiscope_ko-0.1.0/entiscope_ko.egg-info/PKG-INFO +126 -0
- entiscope_ko-0.1.0/entiscope_ko.egg-info/SOURCES.txt +41 -0
- entiscope_ko-0.1.0/entiscope_ko.egg-info/dependency_links.txt +1 -0
- entiscope_ko-0.1.0/entiscope_ko.egg-info/entry_points.txt +2 -0
- entiscope_ko-0.1.0/entiscope_ko.egg-info/requires.txt +13 -0
- entiscope_ko-0.1.0/entiscope_ko.egg-info/top_level.txt +2 -0
- entiscope_ko-0.1.0/entiscope_ko.py +8 -0
- entiscope_ko-0.1.0/pyproject.toml +48 -0
- entiscope_ko-0.1.0/setup.cfg +4 -0
- entiscope_ko-0.1.0/tests/test_decoder.py +64 -0
- entiscope_ko-0.1.0/tests/test_pipeline.py +46 -0
- entiscope_ko-0.1.0/tests/test_regex.py +37 -0
- entiscope_ko-0.1.0/tests/test_schema.py +40 -0
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: entiscope-ko
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: entiscope-ko — Korean PII detection & masking engine (ONNX, BIOES + Viterbi)
|
|
5
|
+
Author: entiscope Core Team
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/zafrem/entiscope-ko
|
|
8
|
+
Project-URL: Documentation, https://github.com/zafrem/entiscope-ko/blob/main/README.md
|
|
9
|
+
Keywords: pii,ner,redaction,privacy,korean,onnx
|
|
10
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Topic :: Text Processing :: Linguistic
|
|
13
|
+
Requires-Python: >=3.9
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
License-File: LICENSE
|
|
16
|
+
Requires-Dist: numpy>=1.22
|
|
17
|
+
Requires-Dist: PyYAML>=6.0
|
|
18
|
+
Requires-Dist: onnxruntime>=1.17
|
|
19
|
+
Requires-Dist: transformers>=4.38
|
|
20
|
+
Requires-Dist: huggingface_hub>=0.20
|
|
21
|
+
Provides-Extra: train
|
|
22
|
+
Requires-Dist: torch>=2.0; extra == "train"
|
|
23
|
+
Requires-Dist: datasets>=2.16; extra == "train"
|
|
24
|
+
Provides-Extra: dev
|
|
25
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
26
|
+
Requires-Dist: pytest-cov>=4.0; extra == "dev"
|
|
27
|
+
Dynamic: license-file
|
|
28
|
+
|
|
29
|
+
# entiscope-ko
|
|
30
|
+
|
|
31
|
+
Korean **PII detection & masking** engine — part of the
|
|
32
|
+
[entiscope](https://github.com/zafrem) series. Detects and masks person names,
|
|
33
|
+
phone numbers, national IDs, emails, addresses, financial info, private dates,
|
|
34
|
+
and credentials in Korean text.
|
|
35
|
+
|
|
36
|
+
> ⚠️ entiscope is a redaction **aid**, not an anonymization or compliance
|
|
37
|
+
> guarantee. See [Limitations](#limitations).
|
|
38
|
+
|
|
39
|
+
📖 **[한국어 README](README.ko.md)**
|
|
40
|
+
|
|
41
|
+
## Install
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
pip install entiscope-ko
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## 60-second quickstart
|
|
48
|
+
|
|
49
|
+
**Python**
|
|
50
|
+
|
|
51
|
+
```python
|
|
52
|
+
from entiscope_ko import Entiscope
|
|
53
|
+
|
|
54
|
+
engine = Entiscope.from_pretrained() # downloads ONNX weights on first run
|
|
55
|
+
result = engine.redact("홍길동의 전화번호는 010-1234-5678")
|
|
56
|
+
|
|
57
|
+
result.masked_text # "<PER>의 전화번호는 <PHONE>"
|
|
58
|
+
result.detected_spans # [DetectedSpan(label="PER", start=0, end=3, ...), ...]
|
|
59
|
+
result.summary # {"span_count": 2, "by_label": {"PER": 1, "PHONE": 1}, ...}
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
**CLI**
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
entiscope redact "홍길동의 전화번호는 010-1234-5678"
|
|
66
|
+
cat notes.txt | entiscope redact --operating-point high_recall
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
## Documentation
|
|
70
|
+
|
|
71
|
+
Full guides live in [`docs/`](docs/) — organised by what you want to do:
|
|
72
|
+
|
|
73
|
+
| I want to… | Guide |
|
|
74
|
+
|---|---|
|
|
75
|
+
| Run it from the terminal | [CLI Reference](docs/CLI.md) |
|
|
76
|
+
| Call it from Python | [Python API Reference](docs/API.md) |
|
|
77
|
+
| Understand the JSON output | [Output Schemas](docs/OUTPUT_SCHEMAS.md) |
|
|
78
|
+
| Score it on my labelled data | [Evaluation & Output Modes](docs/EVAL_AND_OUTPUT_MODES.md) |
|
|
79
|
+
| Trade precision vs recall | [Operating Points](docs/OPERATING_POINTS.md) |
|
|
80
|
+
| Fine-tune on my own data | [Fine-tuning](docs/FINETUNING.md) |
|
|
81
|
+
|
|
82
|
+
## Entities
|
|
83
|
+
|
|
84
|
+
`PER` · `PHONE` · `ID_NUM` · `EMAIL` · `LOC` · `BANK` · `DATE` · `SECRET`.
|
|
85
|
+
Regex patterns live in [`entiscope/regex_rules.yaml`](entiscope/regex_rules.yaml)
|
|
86
|
+
(user-extensible, no code change); KO-specific extended entities in
|
|
87
|
+
[`entiscope/entity_config.yaml`](entiscope/entity_config.yaml).
|
|
88
|
+
|
|
89
|
+
## How it works
|
|
90
|
+
|
|
91
|
+
A **two-stage hybrid pipeline** (SRS §3.4), results merged via Union:
|
|
92
|
+
|
|
93
|
+
1. **Regex filter** — structurally obvious PII (phone, email, IDs, cards, secrets).
|
|
94
|
+
2. **ONNX NER** — a BIOES token classifier with a constrained Viterbi decoder for
|
|
95
|
+
contextual PII (names, addresses, private dates).
|
|
96
|
+
|
|
97
|
+
Inference is **ONNX Runtime only — no PyTorch at runtime**. Recall-first, with
|
|
98
|
+
runtime [operating-point](docs/OPERATING_POINTS.md) tuning (no retraining).
|
|
99
|
+
PyTorch is needed only to [fine-tune](docs/FINETUNING.md).
|
|
100
|
+
|
|
101
|
+
## Model & performance
|
|
102
|
+
|
|
103
|
+
- **Architecture** — `klue/roberta-base` encoder → BIOES token-classification
|
|
104
|
+
head → constrained Viterbi decoder.
|
|
105
|
+
- **Runtime artifact** — INT8-quantized ONNX, **~105 MB** (well under the
|
|
106
|
+
≤ 150 MB budget), max sequence length 256. Weights download from Hugging Face
|
|
107
|
+
Hub on first use, with a SHA-256 `checksum.txt` for integrity verification.
|
|
108
|
+
- **Accuracy** — meets the entity-level **strict F1 ≥ 0.93** target on a
|
|
109
|
+
held-out validation set whose examples are disjoint from the training data, so
|
|
110
|
+
the score reflects generalization rather than memorization. See
|
|
111
|
+
[Evaluation & Output Modes](docs/EVAL_AND_OUTPUT_MODES.md) to score it on your
|
|
112
|
+
own labelled data.
|
|
113
|
+
|
|
114
|
+
## Limitations
|
|
115
|
+
|
|
116
|
+
- Not an anonymization/compliance guarantee; use as one layer of privacy-by-design.
|
|
117
|
+
- Known failure modes: under-detection of uncommon/regional names; over-redaction
|
|
118
|
+
of public entities in ambiguous contexts; fragmented spans in heavily
|
|
119
|
+
mixed-format text; missed `SECRET` for novel credential formats.
|
|
120
|
+
- Extra human review recommended for medical/legal/financial/government workflows.
|
|
121
|
+
|
|
122
|
+
## License
|
|
123
|
+
|
|
124
|
+
Apache-2.0. Weights are distributed on Hugging Face Hub under Apache-2.0 with a
|
|
125
|
+
`checksum.txt` (SHA-256) for integrity verification. Contributions welcome — see
|
|
126
|
+
[CONTRIBUTING.md](CONTRIBUTING.md).
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
# entiscope-ko
|
|
2
|
+
|
|
3
|
+
Korean **PII detection & masking** engine — part of the
|
|
4
|
+
[entiscope](https://github.com/zafrem) series. Detects and masks person names,
|
|
5
|
+
phone numbers, national IDs, emails, addresses, financial info, private dates,
|
|
6
|
+
and credentials in Korean text.
|
|
7
|
+
|
|
8
|
+
> ⚠️ entiscope is a redaction **aid**, not an anonymization or compliance
|
|
9
|
+
> guarantee. See [Limitations](#limitations).
|
|
10
|
+
|
|
11
|
+
📖 **[한국어 README](README.ko.md)**
|
|
12
|
+
|
|
13
|
+
## Install
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
pip install entiscope-ko
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## 60-second quickstart
|
|
20
|
+
|
|
21
|
+
**Python**
|
|
22
|
+
|
|
23
|
+
```python
|
|
24
|
+
from entiscope_ko import Entiscope
|
|
25
|
+
|
|
26
|
+
engine = Entiscope.from_pretrained() # downloads ONNX weights on first run
|
|
27
|
+
result = engine.redact("홍길동의 전화번호는 010-1234-5678")
|
|
28
|
+
|
|
29
|
+
result.masked_text # "<PER>의 전화번호는 <PHONE>"
|
|
30
|
+
result.detected_spans # [DetectedSpan(label="PER", start=0, end=3, ...), ...]
|
|
31
|
+
result.summary # {"span_count": 2, "by_label": {"PER": 1, "PHONE": 1}, ...}
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
**CLI**
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
entiscope redact "홍길동의 전화번호는 010-1234-5678"
|
|
38
|
+
cat notes.txt | entiscope redact --operating-point high_recall
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Documentation
|
|
42
|
+
|
|
43
|
+
Full guides live in [`docs/`](docs/) — organised by what you want to do:
|
|
44
|
+
|
|
45
|
+
| I want to… | Guide |
|
|
46
|
+
|---|---|
|
|
47
|
+
| Run it from the terminal | [CLI Reference](docs/CLI.md) |
|
|
48
|
+
| Call it from Python | [Python API Reference](docs/API.md) |
|
|
49
|
+
| Understand the JSON output | [Output Schemas](docs/OUTPUT_SCHEMAS.md) |
|
|
50
|
+
| Score it on my labelled data | [Evaluation & Output Modes](docs/EVAL_AND_OUTPUT_MODES.md) |
|
|
51
|
+
| Trade precision vs recall | [Operating Points](docs/OPERATING_POINTS.md) |
|
|
52
|
+
| Fine-tune on my own data | [Fine-tuning](docs/FINETUNING.md) |
|
|
53
|
+
|
|
54
|
+
## Entities
|
|
55
|
+
|
|
56
|
+
`PER` · `PHONE` · `ID_NUM` · `EMAIL` · `LOC` · `BANK` · `DATE` · `SECRET`.
|
|
57
|
+
Regex patterns live in [`entiscope/regex_rules.yaml`](entiscope/regex_rules.yaml)
|
|
58
|
+
(user-extensible, no code change); KO-specific extended entities in
|
|
59
|
+
[`entiscope/entity_config.yaml`](entiscope/entity_config.yaml).
|
|
60
|
+
|
|
61
|
+
## How it works
|
|
62
|
+
|
|
63
|
+
A **two-stage hybrid pipeline** (SRS §3.4), results merged via Union:
|
|
64
|
+
|
|
65
|
+
1. **Regex filter** — structurally obvious PII (phone, email, IDs, cards, secrets).
|
|
66
|
+
2. **ONNX NER** — a BIOES token classifier with a constrained Viterbi decoder for
|
|
67
|
+
contextual PII (names, addresses, private dates).
|
|
68
|
+
|
|
69
|
+
Inference is **ONNX Runtime only — no PyTorch at runtime**. Recall-first, with
|
|
70
|
+
runtime [operating-point](docs/OPERATING_POINTS.md) tuning (no retraining).
|
|
71
|
+
PyTorch is needed only to [fine-tune](docs/FINETUNING.md).
|
|
72
|
+
|
|
73
|
+
## Model & performance
|
|
74
|
+
|
|
75
|
+
- **Architecture** — `klue/roberta-base` encoder → BIOES token-classification
|
|
76
|
+
head → constrained Viterbi decoder.
|
|
77
|
+
- **Runtime artifact** — INT8-quantized ONNX, **~105 MB** (well under the
|
|
78
|
+
≤ 150 MB budget), max sequence length 256. Weights download from Hugging Face
|
|
79
|
+
Hub on first use, with a SHA-256 `checksum.txt` for integrity verification.
|
|
80
|
+
- **Accuracy** — meets the entity-level **strict F1 ≥ 0.93** target on a
|
|
81
|
+
held-out validation set whose examples are disjoint from the training data, so
|
|
82
|
+
the score reflects generalization rather than memorization. See
|
|
83
|
+
[Evaluation & Output Modes](docs/EVAL_AND_OUTPUT_MODES.md) to score it on your
|
|
84
|
+
own labelled data.
|
|
85
|
+
|
|
86
|
+
## Limitations
|
|
87
|
+
|
|
88
|
+
- Not an anonymization/compliance guarantee; use as one layer of privacy-by-design.
|
|
89
|
+
- Known failure modes: under-detection of uncommon/regional names; over-redaction
|
|
90
|
+
of public entities in ambiguous contexts; fragmented spans in heavily
|
|
91
|
+
mixed-format text; missed `SECRET` for novel credential formats.
|
|
92
|
+
- Extra human review recommended for medical/legal/financial/government workflows.
|
|
93
|
+
|
|
94
|
+
## License
|
|
95
|
+
|
|
96
|
+
Apache-2.0. Weights are distributed on Hugging Face Hub under Apache-2.0 with a
|
|
97
|
+
`checksum.txt` (SHA-256) for integrity verification. Contributions welcome — see
|
|
98
|
+
[CONTRIBUTING.md](CONTRIBUTING.md).
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"""entiscope-ko — Korean PII detection & masking engine (Apache-2.0).
|
|
2
|
+
|
|
3
|
+
Public surface:
|
|
4
|
+
from entiscope import Entiscope # or: from entiscope_ko import Entiscope
|
|
5
|
+
"""
|
|
6
|
+
from ._api import Entiscope
|
|
7
|
+
from ._core.schema import RedactionResult, DetectedSpan, SCHEMA_VERSION
|
|
8
|
+
|
|
9
|
+
__version__ = "0.1.0"
|
|
10
|
+
__language__ = "ko"
|
|
11
|
+
|
|
12
|
+
__all__ = ["Entiscope", "RedactionResult", "DetectedSpan", "SCHEMA_VERSION", "__version__"]
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"""Unified CLI entrypoint: ``entiscope redact | eval | train`` (SRS FR-2.1)."""
|
|
2
|
+
from __future__ import annotations
|
|
3
|
+
|
|
4
|
+
import sys
|
|
5
|
+
from typing import List, Optional, Sequence
|
|
6
|
+
|
|
7
|
+
from ._api import Entiscope
|
|
8
|
+
from ._cli.args import build_parser
|
|
9
|
+
from ._cli.render import print_result, supports_color
|
|
10
|
+
|
|
11
|
+
_PROVIDERS = {
|
|
12
|
+
"cpu": ["CPUExecutionProvider"],
|
|
13
|
+
"cuda": ["CUDAExecutionProvider", "CPUExecutionProvider"],
|
|
14
|
+
"coreml": ["CoreMLExecutionProvider", "CPUExecutionProvider"],
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
def _parse_operating_point(value: str):
|
|
19
|
+
"""A preset name, or comma-separated raw transition biases (FR-2.5)."""
|
|
20
|
+
if value and "," in value:
|
|
21
|
+
return [float(x) for x in value.split(",")]
|
|
22
|
+
return value
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def _read_input(args) -> Optional[str]:
|
|
26
|
+
"""Resolve redact input from arg / file / stdin; None triggers interactive mode."""
|
|
27
|
+
if args.text is not None:
|
|
28
|
+
return args.text
|
|
29
|
+
if args.file:
|
|
30
|
+
with open(args.file, "r", encoding="utf-8") as fh:
|
|
31
|
+
return fh.read().rstrip("\n")
|
|
32
|
+
if not sys.stdin.isatty():
|
|
33
|
+
data = sys.stdin.read()
|
|
34
|
+
return data.rstrip("\n") if data else None
|
|
35
|
+
return None
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
def _build_engine(args) -> Entiscope:
|
|
39
|
+
return Entiscope.from_pretrained(
|
|
40
|
+
operating_point=_parse_operating_point(getattr(args, "operating_point", "balanced")),
|
|
41
|
+
cache_dir=getattr(args, "cache_dir", None),
|
|
42
|
+
revision=getattr(args, "revision", None),
|
|
43
|
+
regex_only=getattr(args, "regex_only", False),
|
|
44
|
+
providers=_PROVIDERS.get(getattr(args, "device", "cpu"), None),
|
|
45
|
+
)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
def _cmd_redact(args) -> int:
|
|
49
|
+
engine = _build_engine(args)
|
|
50
|
+
entity_types = args.entity_types.split(",") if args.entity_types else None
|
|
51
|
+
text = _read_input(args)
|
|
52
|
+
as_json = args.json or not supports_color()
|
|
53
|
+
|
|
54
|
+
if text is None: # interactive mode (FR-2.1)
|
|
55
|
+
print("entiscope interactive redact — enter text (Ctrl-D to exit)", file=sys.stderr)
|
|
56
|
+
for line in sys.stdin:
|
|
57
|
+
line = line.rstrip("\n")
|
|
58
|
+
if not line:
|
|
59
|
+
continue
|
|
60
|
+
print_result(engine.redact(line, entity_types, args.output_mode), as_json)
|
|
61
|
+
return 0
|
|
62
|
+
|
|
63
|
+
print_result(engine.redact(text, entity_types, args.output_mode), as_json)
|
|
64
|
+
return 0
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
def _cmd_eval(args) -> int:
|
|
68
|
+
from ._eval.runner import run_eval
|
|
69
|
+
|
|
70
|
+
engine = _build_engine(args)
|
|
71
|
+
report = run_eval(engine, args.dataset, eval_mode=args.eval_mode, limit=args.limit)
|
|
72
|
+
import json
|
|
73
|
+
|
|
74
|
+
print(json.dumps(report, ensure_ascii=False, indent=2))
|
|
75
|
+
return 0
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
def _cmd_train(args) -> int:
|
|
79
|
+
try:
|
|
80
|
+
from ._train.runner import run_train
|
|
81
|
+
except ImportError as exc:
|
|
82
|
+
print(
|
|
83
|
+
f"training requires the optional extra: pip install 'entiscope-ko[train]' ({exc})",
|
|
84
|
+
file=sys.stderr,
|
|
85
|
+
)
|
|
86
|
+
return 2
|
|
87
|
+
summary = run_train(args)
|
|
88
|
+
import json
|
|
89
|
+
|
|
90
|
+
print(json.dumps(summary, ensure_ascii=False, indent=2))
|
|
91
|
+
return 0
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
def main(argv: Optional[Sequence[str]] = None) -> int:
|
|
95
|
+
args = build_parser().parse_args(argv)
|
|
96
|
+
return {
|
|
97
|
+
"redact": _cmd_redact,
|
|
98
|
+
"eval": _cmd_eval,
|
|
99
|
+
"train": _cmd_train,
|
|
100
|
+
}[args.command](args)
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
if __name__ == "__main__":
|
|
104
|
+
raise SystemExit(main())
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
"""Public Python API (SRS FR-2.7).
|
|
2
|
+
|
|
3
|
+
from entiscope_ko import Entiscope
|
|
4
|
+
engine = Entiscope.from_pretrained()
|
|
5
|
+
result = engine.redact("홍길동의 전화번호는 010-1234-5678")
|
|
6
|
+
result.masked_text # "<PER>의 전화번호는 <PHONE>"
|
|
7
|
+
result.detected_spans # [{"label": "PER", ...}, ...]
|
|
8
|
+
result.summary # {"span_count": 2, "by_label": {...}}
|
|
9
|
+
|
|
10
|
+
The engine is a two-stage hybrid pipeline (SRS §3.4): a regex filter (always
|
|
11
|
+
available) plus an optional ONNX NER stage. ``regex_only=True`` runs the engine
|
|
12
|
+
with no model weights — useful offline and for structurally-obvious PII.
|
|
13
|
+
"""
|
|
14
|
+
from __future__ import annotations
|
|
15
|
+
|
|
16
|
+
import os
|
|
17
|
+
from pathlib import Path
|
|
18
|
+
from typing import Iterable, List, Optional, Sequence, Union
|
|
19
|
+
|
|
20
|
+
from ._core.bioes import Span
|
|
21
|
+
from ._core.download import DEFAULT_REPO, resolve_weights
|
|
22
|
+
from ._core.pipeline import assemble, merge_union
|
|
23
|
+
from ._core.regex_filter import RegexFilter
|
|
24
|
+
from ._core.schema import RedactionResult
|
|
25
|
+
from ._core.transitions import CATEGORIES, resolve_operating_point
|
|
26
|
+
|
|
27
|
+
OperatingPoint = Union[str, Sequence[float], dict, None]
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
def _package_resource(name: str) -> Path:
|
|
31
|
+
"""Locate a packaged resource (regex_rules.yaml / entity_config.yaml)."""
|
|
32
|
+
env = os.environ.get(f"ENTISCOPE_{name.split('.')[0].upper()}")
|
|
33
|
+
if env:
|
|
34
|
+
return Path(env)
|
|
35
|
+
try:
|
|
36
|
+
from importlib.resources import files
|
|
37
|
+
|
|
38
|
+
cand = Path(str(files("entiscope") / name))
|
|
39
|
+
if cand.exists():
|
|
40
|
+
return cand
|
|
41
|
+
except Exception: # pragma: no cover - fallback for odd layouts
|
|
42
|
+
pass
|
|
43
|
+
return Path(__file__).resolve().parent / name
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
class Entiscope:
|
|
47
|
+
"""KO PII redaction engine."""
|
|
48
|
+
|
|
49
|
+
def __init__(
|
|
50
|
+
self,
|
|
51
|
+
regex_filter: RegexFilter,
|
|
52
|
+
runtime=None,
|
|
53
|
+
operating_point: OperatingPoint = "balanced",
|
|
54
|
+
) -> None:
|
|
55
|
+
self._regex = regex_filter
|
|
56
|
+
self._runtime = runtime
|
|
57
|
+
self._operating_point = operating_point
|
|
58
|
+
|
|
59
|
+
# -- construction -------------------------------------------------------
|
|
60
|
+
@classmethod
|
|
61
|
+
def from_pretrained(
|
|
62
|
+
cls,
|
|
63
|
+
operating_point: OperatingPoint = "balanced",
|
|
64
|
+
*,
|
|
65
|
+
repo_id: str = DEFAULT_REPO,
|
|
66
|
+
revision: Optional[str] = None,
|
|
67
|
+
cache_dir: Optional[str] = None,
|
|
68
|
+
regex_rules: Optional[str] = None,
|
|
69
|
+
providers: Optional[Sequence[str]] = None,
|
|
70
|
+
regex_only: bool = False,
|
|
71
|
+
) -> "Entiscope":
|
|
72
|
+
"""Load the engine, downloading ONNX weights from HF Hub on first use.
|
|
73
|
+
|
|
74
|
+
Pass ``regex_only=True`` to skip the NER stage (no weights required).
|
|
75
|
+
``cache_dir`` pointing at a local bundle enables fully-offline use.
|
|
76
|
+
"""
|
|
77
|
+
rules_path = regex_rules or _package_resource("regex_rules.yaml")
|
|
78
|
+
regex = RegexFilter.from_yaml(rules_path)
|
|
79
|
+
|
|
80
|
+
runtime = None
|
|
81
|
+
if not regex_only:
|
|
82
|
+
from ._core.runtime import NerRuntime
|
|
83
|
+
|
|
84
|
+
bundle = resolve_weights(repo_id=repo_id, revision=revision, cache_dir=cache_dir)
|
|
85
|
+
runtime = NerRuntime(bundle, providers=providers)
|
|
86
|
+
return cls(regex, runtime, operating_point)
|
|
87
|
+
|
|
88
|
+
@classmethod
|
|
89
|
+
def regex_only(cls, regex_rules: Optional[str] = None) -> "Entiscope":
|
|
90
|
+
"""Convenience constructor for a Stage-1-only engine (no weights)."""
|
|
91
|
+
return cls.from_pretrained(regex_only=True, regex_rules=regex_rules)
|
|
92
|
+
|
|
93
|
+
# -- inference ----------------------------------------------------------
|
|
94
|
+
def _effective_biases(self, operating_point: OperatingPoint) -> List[float]:
|
|
95
|
+
"""Learned baseline biases shifted by the operating-point offset (FR-2.5)."""
|
|
96
|
+
offset = resolve_operating_point(
|
|
97
|
+
operating_point if operating_point is not None else self._operating_point
|
|
98
|
+
)
|
|
99
|
+
base = self._runtime.default_biases if self._runtime else [0.0] * len(CATEGORIES)
|
|
100
|
+
return [b + o for b, o in zip(base, offset)]
|
|
101
|
+
|
|
102
|
+
def redact(
|
|
103
|
+
self,
|
|
104
|
+
text: str,
|
|
105
|
+
entity_types: Optional[Iterable[str]] = None,
|
|
106
|
+
output_mode: str = "typed",
|
|
107
|
+
operating_point: OperatingPoint = None,
|
|
108
|
+
) -> RedactionResult:
|
|
109
|
+
"""Detect and mask PII in a single string (FR-2.2)."""
|
|
110
|
+
regex_spans: List[Span] = self._regex.find(text)
|
|
111
|
+
ner_spans: List[Span] = []
|
|
112
|
+
mismatch = False
|
|
113
|
+
if self._runtime is not None:
|
|
114
|
+
ner_spans, mismatch = self._runtime.predict(text, self._effective_biases(operating_point))
|
|
115
|
+
merged = merge_union(regex_spans, ner_spans)
|
|
116
|
+
return assemble(text, merged, output_mode, entity_types, mismatch)
|
|
117
|
+
|
|
118
|
+
def batch_redact(
|
|
119
|
+
self,
|
|
120
|
+
texts: Sequence[str],
|
|
121
|
+
entity_types: Optional[Iterable[str]] = None,
|
|
122
|
+
output_mode: str = "typed",
|
|
123
|
+
operating_point: OperatingPoint = None,
|
|
124
|
+
) -> List[RedactionResult]:
|
|
125
|
+
return [self.redact(t, entity_types, output_mode, operating_point) for t in texts]
|
|
126
|
+
|
|
127
|
+
@property
|
|
128
|
+
def has_ner(self) -> bool:
|
|
129
|
+
return self._runtime is not None
|