Source code for inFairness.postprocessing.datainterfaces

from typing import Dict
import torch
from dataclasses import dataclass


[docs] @dataclass class PostProcessingObjectiveResponse: """Class to store the result from a post-processing algorithm""" y_solution: torch.Tensor = None objective: Dict = None