Token Classification
Transformers
ONNX
Safetensors
English
Japanese
Chinese
bert
anime
filename-parsing
Eval Results (legacy)
Instructions to use ModerRAS/AniFileBERT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ModerRAS/AniFileBERT with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="ModerRAS/AniFileBERT")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("ModerRAS/AniFileBERT") model = AutoModelForTokenClassification.from_pretrained("ModerRAS/AniFileBERT") - Notebooks
- Google Colab
- Kaggle
File size: 10,188 Bytes
33bb11c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 | """Convert annotated DMHY graph JSONL into the character-tokenized dataset.
The annotated graph workflow is expected to produce records compatible with
``dmhy_weak.jsonl``: each row has ``filename``, ``tokens``, and ``labels``.
This wrapper validates that contract, then reuses ``tools.convert_to_char_dataset``
for the token-to-character projection and manifest statistics.
"""
from __future__ import annotations
import argparse
import json
from collections import Counter
from datetime import datetime, timezone
from pathlib import Path
from statistics import mean
from typing import Iterable
from tools.convert_to_char_dataset import (
build_vocab,
convert_record,
coverage,
percentile,
)
DEFAULT_INPUT = Path("datasets/AnimeName/dmhy_weak.generated.jsonl")
DEFAULT_OUTPUT = Path("datasets/AnimeName/dmhy_weak.generated_char.jsonl")
DEFAULT_VOCAB_OUTPUT = Path("datasets/AnimeName/vocab.generated.char.json")
DEFAULT_MANIFEST_OUTPUT = Path(
"datasets/AnimeName/dmhy_weak.generated_char.manifest.json"
)
REQUIRED_FIELDS = ("filename", "tokens", "labels")
def is_separator_or_space(char: str) -> bool:
return char.isspace() or not char.isalnum()
def token_has_embedded_separator(token: str) -> bool:
return len(token) > 1 and any(is_separator_or_space(char) for char in token)
def is_bioish_label(label: object) -> bool:
if not isinstance(label, str):
return False
if label == "O":
return True
prefix, sep, entity = label.partition("-")
return sep == "-" and prefix in {"B", "I"} and bool(entity)
def validate_record(
record: object,
path: Path,
line_no: int,
*,
check_punctuation: bool = True,
) -> dict:
if not isinstance(record, dict):
raise ValueError(f"{path}:{line_no}: record must be a JSON object")
missing = [field for field in REQUIRED_FIELDS if field not in record]
if missing:
raise ValueError(
f"{path}:{line_no}: missing required field(s): {', '.join(missing)}"
)
filename = record["filename"]
tokens = record["tokens"]
labels = record["labels"]
if not isinstance(filename, str) or not filename:
raise ValueError(f"{path}:{line_no}: filename must be a non-empty string")
if not isinstance(tokens, list):
raise ValueError(f"{path}:{line_no}: tokens must be a list")
if not isinstance(labels, list):
raise ValueError(f"{path}:{line_no}: labels must be a list")
if len(tokens) != len(labels):
raise ValueError(
f"{path}:{line_no}: token/label length mismatch: "
f"{len(tokens)} tokens, {len(labels)} labels"
)
for index, token in enumerate(tokens):
if not isinstance(token, str):
raise ValueError(f"{path}:{line_no}: tokens[{index}] must be a string")
if check_punctuation and token_has_embedded_separator(token):
raise ValueError(
f"{path}:{line_no}: tokens[{index}] contains punctuation, symbol, or "
f"whitespace that should be a standalone token: {token!r}"
)
for index, label in enumerate(labels):
if not is_bioish_label(label):
raise ValueError(
f"{path}:{line_no}: labels[{index}] is not BIO-ish: {label!r}"
)
return record
def iter_validated_jsonl(path: Path, *, check_punctuation: bool = True) -> Iterable[dict]:
with path.open("r", encoding="utf-8") as handle:
for line_no, line in enumerate(handle, 1):
line = line.strip()
if not line:
continue
try:
record = json.loads(line)
except json.JSONDecodeError as exc:
raise ValueError(f"{path}:{line_no}: invalid JSON") from exc
yield validate_record(
record,
path,
line_no,
check_punctuation=check_punctuation,
)
def parse_args() -> argparse.Namespace:
parser = argparse.ArgumentParser(
description=(
"Validate annotated DMHY graph JSONL and convert it to the "
"character-tokenized training format."
),
epilog=(
"Equivalent projection logic is provided by "
"tools.convert_to_char_dataset.convert_record."
),
)
parser.add_argument(
"--input",
default=str(DEFAULT_INPUT),
help=f"Input dmhy_weak-compatible JSONL (default: {DEFAULT_INPUT})",
)
parser.add_argument(
"--output",
default=str(DEFAULT_OUTPUT),
help=f"Output character-level JSONL (default: {DEFAULT_OUTPUT})",
)
parser.add_argument(
"--vocab-output",
default=str(DEFAULT_VOCAB_OUTPUT),
help=f"Output character vocab JSON (default: {DEFAULT_VOCAB_OUTPUT})",
)
parser.add_argument(
"--manifest-output",
default=str(DEFAULT_MANIFEST_OUTPUT),
help=(
"Output conversion manifest JSON "
f"(default: {DEFAULT_MANIFEST_OUTPUT})"
),
)
parser.add_argument(
"--max-vocab-size",
type=int,
default=None,
help="Optional vocab cap including special tokens",
)
parser.add_argument("--limit", type=int, default=None, help="Convert only N rows")
parser.add_argument(
"--progress",
type=int,
default=50_000,
help="Print progress every N records",
)
parser.add_argument(
"--validate-only",
action="store_true",
help="Validate input records without writing converted outputs",
)
parser.add_argument(
"--allow-embedded-punctuation",
action="store_true",
help=(
"Skip the generated-workflow check that punctuation and whitespace "
"must be standalone tokens."
),
)
return parser.parse_args()
def main() -> None:
args = parse_args()
input_path = Path(args.input)
output_path = Path(args.output)
vocab_path = Path(args.vocab_output)
manifest_path = Path(args.manifest_output)
if not input_path.exists():
raise FileNotFoundError(f"input JSONL does not exist: {input_path}")
if not args.validate_only:
output_path.parent.mkdir(parents=True, exist_ok=True)
vocab_path.parent.mkdir(parents=True, exist_ok=True)
manifest_path.parent.mkdir(parents=True, exist_ok=True)
char_counter: Counter[str] = Counter()
label_counter: Counter[str] = Counter()
row_count = 0
source_token_count = 0
char_token_count = 0
lengths: list[int] = []
examples: list[dict] = []
output_handle = None
try:
if not args.validate_only:
output_handle = output_path.open("w", encoding="utf-8", newline="\n")
for record in iter_validated_jsonl(
input_path,
check_punctuation=not args.allow_embedded_punctuation,
):
converted = convert_record(record)
if output_handle is not None:
output_handle.write(
json.dumps(converted, ensure_ascii=False, separators=(",", ":"))
+ "\n"
)
row_count += 1
source_token_count += converted["source_token_count"]
char_len = converted["char_token_count"]
char_token_count += char_len
lengths.append(char_len)
char_counter.update(converted["tokens"])
label_counter.update(converted["labels"])
if len(examples) < 5:
examples.append(converted)
if args.limit is not None and row_count >= args.limit:
break
if args.progress and row_count % args.progress == 0:
print(f"converted {row_count:,} rows; unique chars={len(char_counter):,}")
finally:
if output_handle is not None:
output_handle.close()
vocab = build_vocab(char_counter, args.max_vocab_size)
manifest = {
"created_at": datetime.now(timezone.utc).isoformat(),
"input": str(input_path),
"output": None if args.validate_only else str(output_path),
"vocab_output": None if args.validate_only else str(vocab_path),
"manifest_output": None if args.validate_only else str(manifest_path),
"tokenizer_variant": "char",
"source_workflow": "annotated_dmhy_graph",
"validation": {
"required_fields": list(REQUIRED_FIELDS),
"label_contract": "O or B-*/I-* with a non-empty entity name; B/O-only is accepted",
"punctuation_standalone": not args.allow_embedded_punctuation,
},
"projection": {
"B-X": "first char keeps B-X; remaining chars become I-X",
"I-X": "all chars keep I-X",
"O": "all chars keep O",
},
"row_count": row_count,
"source_token_count": source_token_count,
"char_token_count": char_token_count,
"unique_char_count": len(char_counter),
"vocab_size": len(vocab),
"max_vocab_size": args.max_vocab_size,
"vocab_coverage": coverage(char_counter, vocab),
"label_counts": dict(label_counter),
"char_length": {
"min": min(lengths) if lengths else 0,
"mean": mean(lengths) if lengths else 0,
"p50": percentile(lengths, 50),
"p90": percentile(lengths, 90),
"p95": percentile(lengths, 95),
"p99": percentile(lengths, 99),
"max": max(lengths) if lengths else 0,
},
"examples": examples,
}
if not args.validate_only:
vocab_path.write_text(
json.dumps(vocab, ensure_ascii=False, indent=2) + "\n",
encoding="utf-8",
)
manifest_path.write_text(
json.dumps(manifest, ensure_ascii=False, indent=2) + "\n",
encoding="utf-8",
)
print(
json.dumps(
{key: value for key, value in manifest.items() if key != "examples"},
ensure_ascii=False,
indent=2,
)
)
if __name__ == "__main__":
main()
|