-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix, refactor: fix dependency conflicts and run black prettifier.
- Loading branch information
Aiko
committed
May 6, 2024
1 parent
e3f2f52
commit b773365
Showing
16 changed files
with
381 additions
and
290 deletions.
There are no files selected for viewing
83 changes: 45 additions & 38 deletions
83
django/curator/management/commands/curator_spam_detection.py
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,81 +1,88 @@ | ||
import logging | ||
|
||
from django.core.management.base import BaseCommand | ||
from curator.spam import SpamDetectionContextFactory, SpamDetectionContext, PresetContextID | ||
from curator.spam import ( | ||
SpamDetectionContextFactory, | ||
SpamDetectionContext, | ||
PresetContextID, | ||
) | ||
from curator.spam_processor import UserSpamStatusProcessor | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
|
||
class Command(BaseCommand): | ||
help = 'Perform spam detection' | ||
help = "Perform spam detection" | ||
|
||
def __init__(self) -> None: | ||
self.context:SpamDetectionContext = None | ||
self.context: SpamDetectionContext = None | ||
|
||
def add_arguments(self, parser): | ||
parser.add_argument( | ||
'--context_id', | ||
'-id', | ||
"--context_id", | ||
"-id", | ||
type=str, | ||
default='XGBoost_CountVect_1', | ||
help='Classifier options: UserMetadata or Text', | ||
) | ||
default="XGBoost_CountVect_1", | ||
help="Classifier options: UserMetadata or Text", | ||
) | ||
parser.add_argument( | ||
'--predict', | ||
'-p', | ||
action='store_true', | ||
"--predict", | ||
"-p", | ||
action="store_true", | ||
default=False, | ||
help='Print user_ids of spam users and the metrics of the models used to obtain the predictions.', | ||
help="Print user_ids of spam users and the metrics of the models used to obtain the predictions.", | ||
) | ||
parser.add_argument( | ||
'--fit', | ||
'-f', | ||
action='store_true', | ||
"--fit", | ||
"-f", | ||
action="store_true", | ||
default=False, | ||
help='Fit all models based on user data labelled by curator.', | ||
help="Fit all models based on user data labelled by curator.", | ||
) | ||
parser.add_argument( | ||
'--get_model_metrics', | ||
'-m', | ||
action='store_true', | ||
"--get_model_metrics", | ||
"-m", | ||
action="store_true", | ||
default=False, | ||
help='Print the accuracy, precision, recall and f1 scores of the models used to obtain the predictions.', | ||
help="Print the accuracy, precision, recall and f1 scores of the models used to obtain the predictions.", | ||
) | ||
parser.add_argument( | ||
'--load_labels', | ||
'-l', | ||
action='store_true', | ||
"--load_labels", | ||
"-l", | ||
action="store_true", | ||
default=False, | ||
help='Store bootstrap spam labels to the DB.', | ||
help="Store bootstrap spam labels to the DB.", | ||
) | ||
|
||
def handle_predict(self): | ||
self.context.predict() | ||
|
||
def handle_fit(self): | ||
self.context.train() | ||
|
||
def handle_get_model_metrics(self): | ||
socre_dict = self.context.get_model_metrics() | ||
logger.info(socre_dict.pop('test_user_ids')) | ||
#TODO tentative | ||
logger.info('The list of user_ids can be found in the metrics json file, which was used to calculate the scores.') | ||
logger.info(socre_dict.pop("test_user_ids")) | ||
# TODO tentative | ||
logger.info( | ||
"The list of user_ids can be found in the metrics json file, which was used to calculate the scores." | ||
) | ||
|
||
def handle_load_labels(self): | ||
self.processor = UserSpamStatusProcessor() | ||
self.processor.load_labels_from_csv() | ||
|
||
def handle(self, *args, **options): | ||
context_id_string = options['context_id'] | ||
if options['predict']: | ||
action = 'predict' | ||
elif options['fit']: | ||
action = 'fit' | ||
elif options['get_model_metrics']: | ||
action = 'get_model_metrics' | ||
elif options['load_labels']: | ||
action = 'load_labels' | ||
context_id_string = options["context_id"] | ||
if options["predict"]: | ||
action = "predict" | ||
elif options["fit"]: | ||
action = "fit" | ||
elif options["get_model_metrics"]: | ||
action = "get_model_metrics" | ||
elif options["load_labels"]: | ||
action = "load_labels" | ||
|
||
context_id = PresetContextID[context_id_string] | ||
self.context = SpamDetectionContextFactory.create(context_id) | ||
getattr(self, f'handle_{action}')() | ||
getattr(self, f"handle_{action}")() |
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
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
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
Oops, something went wrong.