QuestionAnsweringHelpfulnessInstance.fromJson constructor
Implementation
factory QuestionAnsweringHelpfulnessInstance.fromJson(
Map<String, dynamic> json,
) {
return QuestionAnsweringHelpfulnessInstance(
prediction: json['prediction'],
reference: json['reference'],
context: json['context'],
instruction: json['instruction'],
);
}