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: 1,705 Bytes
efb213a | 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 | [
{
"id": "windows_library_witch_hat",
"filename": "O:\\115open\\Anime\\Witch Hat Atelier\\Season 01\\07 [1080p][WEB-DL].mkv",
"expected": {
"group": null,
"title": "Witch Hat Atelier",
"season": 1,
"episode": 7,
"resolution": "1080p",
"source": "WEB-DL"
}
},
{
"id": "unix_library_example_show",
"filename": "/mnt/media/anime/Example Show/Season 02/03 [2160p][AMZN][WEB-DL].mkv",
"expected": {
"group": null,
"title": "Example Show",
"season": 2,
"episode": 3,
"resolution": "2160p",
"source": "AMZN"
}
},
{
"id": "windows_grouped_release_in_basename",
"filename": "Z:\\Library\\Anime\\Sousou no Frieren\\Season 01\\[Erai-raws] Sousou no Frieren - 01 [1080p][Multiple Subtitle][ENG].mkv",
"expected": {
"group": "Erai-raws",
"title": "Sousou no Frieren",
"season": 1,
"episode": 1,
"resolution": "1080p"
}
},
{
"id": "unix_special_path",
"filename": "/volume1/anime/Shinsekai Yori/SPs/[YYDM&VCB-Studio] Shinsekai Yori [NCED02][Ma10p_1080p][x265_flac].mkv",
"expected": {
"group": "YYDM&VCB-Studio",
"title": "Shinsekai Yori",
"episode": null,
"resolution": "1080p",
"source": "x265_flac",
"special": "NCED02"
}
},
{
"id": "windows_cjk_season_path",
"filename": "D:\\Media\\Anime\\妖怪旅館營業中\\Season 2\\[ANi] 妖怪旅館營業中 貳 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4",
"expected": {
"group": "ANi",
"title": "妖怪旅館營業中",
"season": 2,
"episode": 11,
"resolution": "1080P",
"source": "Baha"
}
}
]
|