Created
June 16, 2024 17:58
-
-
Save kapilgarg/75b8f7ab024c90fb9df841ecbeedf88a to your computer and use it in GitHub Desktop.
Training data for custom NER model
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data_train = [ | |
('Minions The Rise of Gru 2022 BluRay ReMux 1080p AVC TrueHD 7.1 DTS AC3-MgB.mkv (22294327228 bytes)' | |
{ | |
'entities': [ | |
(0, 23, 'movie') | |
] | |
}), | |
('Oppenheimer.2023.1080p.LM.HD-TeleSync.DUAL.DD2.0.H.264-xCLuMsYx.mkv', | |
{ | |
'entities': [ | |
(0, 11, 'movie') | |
] | |
}) | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment