File size: 439 Bytes
4943752 |
1 2 3 4 5 6 7 8 9 10 11 12 |
"""
Goal Function Result package:
=============================
Goal function results report the result of a goal function evaluation, indicating whether an attack succeeded for a given example.
"""
from .goal_function_result import GoalFunctionResult, GoalFunctionResultStatus
from .classification_goal_function_result import ClassificationGoalFunctionResult
from .text_to_text_goal_function_result import TextToTextGoalFunctionResult
|