Source code for ccobra.encoders.response_encoder_identity

""" Returns the response without further encoding. Useful, if values like reaction times
should be shown in the results.

"""

from ccobra import CCobraResponseEncoder

[docs]class IdentityResponseEncoder(CCobraResponseEncoder): """ Identity encoder. Returns the response without further encoding """
[docs] @staticmethod def encode_response(response, task): """ Encodes a response to its syllogistic encoding. Parameters ---------- response : list(str) Any response that should be returned task : list(list(str)) Unused Returns ------- str The response """ return response