LangChain - Evaluation and Testing
What output will the following code produce?
evaluator = ExactMatchEvaluator() prediction = "LangChain" reference = "LangChain" result = evaluator.evaluate(prediction, reference) print(result)
