feat: combine post and comment uploads into a single file

This commit is contained in:
2026-02-11 19:00:59 +00:00
parent 9d7569cfc5
commit 43ce58fd40
5 changed files with 18 additions and 20 deletions

View File

@@ -1,12 +1,11 @@
import torch
import pandas as pd
import numpy as np
from typing import Any
from typing import Any
from transformers import pipeline
from sentence_transformers import SentenceTransformer
class NLP:
_topic_models: dict[str, SentenceTransformer] = {}
_emotion_classifiers: dict[str, Any] = {}