1
Fork 0
mirror of https://github.com/Steffo99/unimore-bda-6.git synced 2024-11-21 15:34:18 +00:00

Remove unused imports

This commit is contained in:
Steffo 2023-02-13 15:59:03 +01:00
parent baffcb6753
commit 119483594a
Signed by: steffo
GPG key ID: 2A24051445686895
2 changed files with 0 additions and 3 deletions

View file

@ -4,11 +4,9 @@ import nltk.sentiment
import nltk.sentiment.util
import logging
import typing as t
import itertools
from ..database import TextReview, CachedDatasetFunc, TokenizedReview
from .base import BaseSentimentAnalyzer, AlreadyTrainedError, NotTrainedError
from ..log import count_passage
from ..tokenizer import BaseTokenizer
log = logging.getLogger(__name__)

View file

@ -3,7 +3,6 @@ import pymongo
import typing as t
from ..config import WORKING_SET_SIZE
from .collections import MongoReview
from .datatypes import TextReview
log = logging.getLogger(__name__)