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: 14,120 Bytes
be5f706 f4f4e0e be5f706 | 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 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 | """
Custom tokenizers for anime filenames.
AnimeTokenizer keeps the original regex-based structure tokenization:
1. Bracket protection: [...], (...), ใ...ใ, ใ...ใ are kept as single tokens
2. Format token recognition: S2, 1080P, x265, WEB-DL, etc. are preserved
3. Remainder splitting: separators, Chinese/Japanese char-level, English/number tokens
CharAnimeTokenizer is the A/B variant that tokenizes every code point as its
own token. Dataset alignment expands existing token-level BIO labels to match
this tokenizer, so the same generated and real-world JSONL files can be reused.
"""
import re
import json
import os
from typing import Dict, List, Optional, Tuple, Set
from transformers import PreTrainedTokenizer
class AnimeTokenizer(PreTrainedTokenizer):
"""
Custom regex-based tokenizer for anime filenames.
Inherits from PreTrainedTokenizer for HuggingFace Trainer compatibility.
"""
# Required for PreTrainedTokenizer save/load mechanism
vocab_files_names: Dict[str, str] = {"vocab_file": "vocab.json"}
tokenizer_variant: str = "regex"
# Layer 1: Bracket patterns (kept whole)
BRACKET_PATTERNS: List[str] = [
r'\[[^\]]*\]', # [...]
r'\([^\)]*\)', # (...)
r'ใ[^ใ]*ใ', # ใ...ใ
r'ใ[^ใ]*ใ', # ใ...ใ
]
# Composite format patterns (checked before individual, higher priority).
#
# Keep this empty for S01E01-style names: token classification needs separate
# S01 and E01 tokens so the model can label season and episode independently.
COMPOSITE_FORMAT_PATTERNS: List[str] = []
# Layer 2: Individual format token patterns
FORMAT_PATTERNS: List[str] = [
# Resolution
r'\d{3,4}[pP]',
r'\d{3,4}[xXร]\d{3,4}',
r'\d[Kk]',
# Codec
r'[xX]26[45]',
r'HEVC', r'AVC', r'AV1',
r'[hH]\.?26[45]',
# Audio
r'FLAC', r'AAC', r'MP3', r'DTS', r'Opus',
# Season
r'Seasons?\s*\d+',
r'็ฌฌ[ไธไบไธๅไบๅ
ญไธๅ
ซไนๅ\d]+ๅญฃ',
r'\d+(?:st|nd|rd|th)\s+Season',
r'[Ss]\d+',
# Episode
r'[Ee][Pp]?\d+',
r'#\d+',
r'็ฌฌ\d+[่ฏ่ฉฑ]',
r'\d+[Vv]\d*',
# Language
r'CH[ST]',
r'็ฎ[ไฝ้ซ]',
r'็น[ไฝ้ซ]',
r'JP', r'GB', r'BIG5',
r'็ฎๆฅๅ่ฏญ',
# Source
r'WEB[-_]?DL',
r'BDRip', r'DVDRip', r'TVRip',
r'Baha', r'Netflix', r'AMZN', r'CR', r'WebRip',
# Aspect ratio
r'\d+:\d+',
]
# Layer 3: Separators for splitting
SEPARATORS: Set[str] = set(' -_|๏ฝ~.')
def __init__(self, vocab_file: Optional[str] = None, **kwargs):
kwargs.pop("tokenizer_variant", None)
kwargs.pop("backend", None)
self._vocab: Dict[str, int] = {}
self._ids_to_tokens: Dict[int, str] = {}
# Load vocab from file if provided
if vocab_file is not None and os.path.isfile(vocab_file):
with open(vocab_file, 'r', encoding='utf-8') as f:
loaded = json.load(f)
self._vocab = loaded
self._ids_to_tokens = {int(v): k for k, v in loaded.items()}
# Initialize PreTrainedTokenizer with special tokens.
# Only set defaults for tokens not already provided via kwargs
# (from_pretrained may pass these through).
special_kwargs = {}
for token_name, token_value in [
('pad_token', '[PAD]'),
('unk_token', '[UNK]'),
('cls_token', '[CLS]'),
('sep_token', '[SEP]'),
]:
if token_name not in kwargs:
special_kwargs[token_name] = token_value
super().__init__(**special_kwargs, **kwargs)
self.init_kwargs["backend"] = "custom"
self.init_kwargs["tokenizer_variant"] = self.tokenizer_variant
# Compile regex patterns for efficiency
self._bracket_re = re.compile('|'.join(self.BRACKET_PATTERNS))
self._composite_format_re = (
re.compile('|'.join(self.COMPOSITE_FORMAT_PATTERNS))
if self.COMPOSITE_FORMAT_PATTERNS else None
)
self._format_re = re.compile('|'.join(self.FORMAT_PATTERNS))
# ---- Properties ----
@property
def vocab_size(self) -> int:
return len(self._vocab)
# ---- Tokenization (3-layer pipeline) ----
def tokenize(self, text: str, **kwargs) -> List[str]:
"""
Tokenize an anime filename into a list of tokens.
Uses a 3-layer pipeline:
1. Bracket protection (kept whole)
2. Format token recognition (composite then individual)
3. Remainder splitting (separators, char-level for CJK)
"""
if not text or not text.strip():
return []
placeholder_counter = [0]
placeholders: Dict[int, str] = {}
def _ph(idx: int) -> str:
return f'\x00{idx}\x00'
def _replace_match(m: re.Match) -> str:
idx = placeholder_counter[0]
placeholder_counter[0] += 1
placeholders[idx] = m.group()
return _ph(idx)
# Layer 1: Extract bracket content as whole tokens
processed = self._bracket_re.sub(_replace_match, text)
# Layer 2a: Composite format patterns (e.g. S01E01 before S01)
if self._composite_format_re is not None:
processed = self._composite_format_re.sub(_replace_match, processed)
# Layer 2b: Individual format tokens
processed = self._format_re.sub(_replace_match, processed)
# Layer 3a: Split remainder by separators
separator_pattern = '|'.join(re.escape(s) for s in sorted(self.SEPARATORS, key=len, reverse=True))
# Use capturing group to keep separators
remaining_parts = re.split(f'({separator_pattern})', processed)
# Layer 3b: Process each part
result: List[str] = []
for part in remaining_parts:
if not part:
continue
if part in self.SEPARATORS:
result.append(part)
elif '\x00' in part:
# Extract all placeholder tokens from this part
# Handles consecutive placeholders like \x001\x00\x002\x00
ph_pattern = re.compile(r'\x00(\d+)\x00')
last_end = 0
for m in ph_pattern.finditer(part):
# Add any non-placeholder text before this match
if m.start() > last_end:
before = part[last_end:m.start()]
result.extend(self._split_fragment(before))
idx = int(m.group(1))
if idx in placeholders:
result.append(placeholders[idx])
last_end = m.end()
# Add any remaining text after the last placeholder
if last_end < len(part):
after = part[last_end:]
result.extend(self._split_fragment(after))
else:
# Split remaining text by character type
result.extend(self._split_fragment(part))
return result
def _split_fragment(self, fragment: str) -> List[str]:
"""
Split a text fragment by character type:
- Chinese chars โ individual characters
- Japanese kana โ individual characters
- ASCII letters โ whole word
- Digits โ whole number
- Other โ individual characters
"""
tokens: List[str] = []
i = 0
n = len(fragment)
while i < n:
ch = fragment[i]
# Chinese characters (CJK Unified Ideographs + Extension A)
if '\u4e00' <= ch <= '\u9fff' or '\u3400' <= ch <= '\u4dbf':
tokens.append(ch)
i += 1
# Japanese hiragana
elif '\u3040' <= ch <= '\u309f':
tokens.append(ch)
i += 1
# Japanese katakana
elif '\u30a0' <= ch <= '\u30ff':
tokens.append(ch)
i += 1
# ASCII letter sequence (kept whole)
elif ch.isascii() and ch.isalpha():
j = i
while j < n and fragment[j].isascii() and fragment[j].isalpha():
j += 1
tokens.append(fragment[i:j])
i = j
# Digit sequence (kept whole)
elif ch.isdigit():
j = i
while j < n and fragment[j].isdigit():
j += 1
tokens.append(fragment[i:j])
i = j
else:
# Other character (punctuation, symbols, etc.)
tokens.append(ch)
i += 1
return tokens
# ---- Vocabulary Management ----
def build_vocab(
self,
tokens_list: List[List[str]],
max_size: Optional[int] = None,
base_vocab: Optional[Dict[str, int]] = None,
) -> None:
"""
Build vocabulary from a list of tokenized texts.
Args:
tokens_list: List of token lists from tokenize() output.
max_size: Optional cap including special tokens.
base_vocab: Optional existing vocabulary whose token IDs are preserved.
"""
freq: Dict[str, int] = {}
for tokens in tokens_list:
for token in tokens:
freq[token] = freq.get(token, 0) + 1
# Start with special tokens at fixed positions, preserving any supplied
# base vocabulary so a checkpoint can be fine-tuned after adding tokens.
vocab: Dict[str, int] = dict(base_vocab or {})
for token, token_id in {
'[PAD]': 0,
'[UNK]': 1,
'[CLS]': 2,
'[SEP]': 3,
}.items():
vocab[token] = token_id
# Add all tokens sorted by frequency descending
next_id = max(vocab.values(), default=-1) + 1
for token in sorted(freq, key=lambda t: (-freq[t], t)):
if token not in vocab:
if max_size is not None and len(vocab) >= max_size:
break
vocab[token] = next_id
next_id += 1
self._vocab = vocab
self._ids_to_tokens = {v: k for k, v in vocab.items()}
# ---- Token-ID Conversion ----
def _convert_token_to_id(self, token: str) -> int:
return self._vocab.get(token, self.unk_token_id if self.unk_token_id is not None else 1)
def _convert_id_to_token(self, index: int) -> str:
return self._ids_to_tokens.get(index, self.unk_token if self.unk_token else '[UNK]')
def get_vocab(self) -> Dict[str, int]:
return dict(self._vocab)
# ---- Save / Load ----
def save_vocabulary(self, save_directory: str, filename_prefix: Optional[str] = None) -> Tuple[str]:
"""Save vocabulary to a JSON file. Required by PreTrainedTokenizer."""
file_path = os.path.join(
save_directory,
f"{filename_prefix or ''}vocab.json"
)
with open(file_path, 'w', encoding='utf-8') as f:
json.dump(self._vocab, f, ensure_ascii=False, indent=2)
return (file_path,)
# ---- Utility ----
def __len__(self) -> int:
return len(self._vocab)
def __str__(self) -> str:
return f"AnimeTokenizer(vocab_size={self.vocab_size})"
class CharAnimeTokenizer(AnimeTokenizer):
"""
Character-level tokenizer for A/B testing.
Unlike AnimeTokenizer, this variant does not preserve bracketed groups,
English words, numbers, or format tags. Every character in the filename is
one token, which gives the model maximum visibility into real fansub names.
"""
tokenizer_variant: str = "char"
def tokenize(self, text: str, **kwargs) -> List[str]:
if text is None or text == "":
return []
return list(text)
def __str__(self) -> str:
return f"CharAnimeTokenizer(vocab_size={self.vocab_size})"
TOKENIZER_VARIANTS = {
"regex": AnimeTokenizer,
"char": CharAnimeTokenizer,
}
def create_tokenizer(
variant: str = "regex",
vocab_file: Optional[str] = None,
**kwargs,
) -> AnimeTokenizer:
"""Create a tokenizer by variant name."""
try:
tokenizer_cls = TOKENIZER_VARIANTS[variant]
except KeyError as exc:
supported = ", ".join(sorted(TOKENIZER_VARIANTS))
raise ValueError(f"Unsupported tokenizer variant '{variant}'. Expected one of: {supported}") from exc
return tokenizer_cls(vocab_file=vocab_file, **kwargs)
def load_tokenizer(model_dir: str, variant: Optional[str] = None) -> AnimeTokenizer:
"""
Load a tokenizer from a checkpoint directory.
The variant is read from tokenizer_config.json when available. Older
checkpoints do not contain it, so they default to the original regex mode.
"""
resolved_variant = variant
if resolved_variant is None:
config_path = os.path.join(model_dir, "tokenizer_config.json")
if os.path.isfile(config_path):
with open(config_path, "r", encoding="utf-8") as f:
resolved_variant = json.load(f).get("tokenizer_variant")
tokenizer_cls = TOKENIZER_VARIANTS.get(resolved_variant or "regex", AnimeTokenizer)
return tokenizer_cls.from_pretrained(model_dir)
# Quick test
if __name__ == "__main__":
tokenizer = AnimeTokenizer()
test_cases = [
"[ANi] ่ฌ้็่่่ฒ S2 - 03 [1080P][WEB-DL]",
"[SubsPlease] Mushoku Tensei - 12 (1080p) [x265][AAC]",
"ใๅต่ๅฅถ่ถๅฑใโ
04ๆๆฐ็ชโ
[่ฌ้็่่่ฒ][01][1080P][HEVC]",
"Sousou no Frieren S01E01 [BDRip 1920x1080 FLAC]",
"[VCB-Studio] Girls Band Cry [01][Ma10p_1080p][x265_flac]",
"86 Eighty Six - 01 [1080P][Baha]",
"",
"test",
]
for case in test_cases:
toks = tokenizer.tokenize(case)
print(f"Input: {case}")
print(f"Tokens: {toks}")
print()
|