mirror of
https://github.com/QData/TextAttack.git
synced 2021-10-13 00:05:06 +03:00
28 lines
1.0 KiB
Python
28 lines
1.0 KiB
Python
from .classification_goal_function import ClassificationGoalFunction
|
|
|
|
class UntargetedClassification(ClassificationGoalFunction):
|
|
"""
|
|
An untargeted attack on classification models which attempts to minimize the
|
|
score of the correct label until it is no longer the predicted label.
|
|
|
|
Args:
|
|
target_max_score (int): If set, goal is to reduce model output to
|
|
below this score. Otherwise, goal is to change the overall predicted
|
|
class.
|
|
"""
|
|
def __init__(self, target_max_score=None):
|
|
self.target_max_score = target_max_score
|
|
|
|
def _is_goal_complete(self, model_output, ground_truth_output):
|
|
if self.target_max_score:
|
|
return model_output[ground_truth_output] < self.target_max_score
|
|
else:
|
|
return model_output.argmax() != ground_truth_output
|
|
|
|
def _get_score(self, model_output, ground_truth_output):
|
|
return -model_output[ground_truth_output]
|
|
|
|
def _get_displayed_output(self, raw_output):
|
|
return int(raw_output.argmax())
|
|
|