Wip Blacklisting dmm porn

Create adult text classifier ML Model

wip - starting to write PTN in c#

More work on season, show and movie parsing

Remove ML project
This commit is contained in:
iPromKnight
2024-03-09 14:25:06 +00:00
parent 5aba05f2b4
commit 6600fceb1a
52 changed files with 7699 additions and 82 deletions

View File

@@ -0,0 +1,18 @@
namespace Producer.Features.ParseTorrentTitle;
public class BaseParsed
{
public string? Title { get; set; }
public string? Year { get; set; }
public Edition? Edition { get; set; }
public Resolution? Resolution { get; set; }
public VideoCodec? VideoCodec { get; set; }
public AudioCodec? AudioCodec { get; set; }
public AudioChannels? AudioChannels { get; set; }
public Revision? Revision { get; set; }
public string? Group { get; set; }
public List<Language> Languages { get; set; } = [];
public List<Source> Sources { get; set; } = [];
public bool? Multi { get; set; }
public bool? Complete { get; set; }
}