LangChain - Evaluation and Testing
Given this code snippet, what will be the output of
results?
inputs = ["Hello", "World"] model = lambda x: x.lower() expected = ["hello", "world"] pipeline = EvaluationPipeline(inputs, model, expected) results = pipeline.run()
