diff --git a/docs/docs_skeleton/docs/community.md b/docs/docs_skeleton/docs/community.md index c3c7031505c..f438de16f64 100644 --- a/docs/docs_skeleton/docs/community.md +++ b/docs/docs_skeleton/docs/community.md @@ -47,8 +47,8 @@ If you’re working on something you’re proud of, and think the LangChain comm Here’s where our team hangs out, talks shop, spotlights cool work, and shares what we’re up to. We’d love to see you there too. -- **[Twitter](https://twitter.com/LangChainAI):** we post about what we’re working on and what cool things we’re seeing in the space. If you tag @langchainai in your post, we’ll almost certainly see it, and can snow you some love! -- **[Discord](https://discord.gg/6adMQxSpJS):** connect with with >30k developers who are building with LangChain +- **[Twitter](https://twitter.com/LangChainAI):** we post about what we’re working on and what cool things we’re seeing in the space. If you tag @langchainai in your post, we’ll almost certainly see it, and can show you some love! +- **[Discord](https://discord.gg/6adMQxSpJS):** connect with >30k developers who are building with LangChain - **[GitHub](https://github.com/langchain-ai/langchain):** open pull requests, contribute to a discussion, and/or contribute - **[Subscribe to our bi-weekly Release Notes](https://6w1pwbss0py.typeform.com/to/KjZB1auB):** a twice/month email roundup of the coolest things going on in our orbit - **Slack:** if you’re building an application in production at your company, we’d love to get into a Slack channel together. Fill out [this form](https://airtable.com/appwQzlErAS2qiP0L/shrGtGaVBVAz7NcV2) and we’ll get in touch about setting one up. diff --git a/docs/docs_skeleton/docs/guides/evaluation/comparison/index.mdx b/docs/docs_skeleton/docs/guides/evaluation/comparison/index.mdx index 8dc4fe7a0bf..7f4f033420e 100644 --- a/docs/docs_skeleton/docs/guides/evaluation/comparison/index.mdx +++ b/docs/docs_skeleton/docs/guides/evaluation/comparison/index.mdx @@ -3,7 +3,7 @@ sidebar_position: 3 --- # Comparison Evaluators -Comparison evaluators in LangChain help measure two different chain or LLM outputs. These evaluators are helpful for comparative analyses, such as A/B testing between two language models, or comparing different versions of the same model. They can also be useful for things like generating preference scores for ai-assisted reinforcement learning. +Comparison evaluators in LangChain help measure two different chains or LLM outputs. These evaluators are helpful for comparative analyses, such as A/B testing between two language models, or comparing different versions of the same model. They can also be useful for things like generating preference scores for ai-assisted reinforcement learning. These evaluators inherit from the `PairwiseStringEvaluator` class, providing a comparison interface for two strings - typically, the outputs from two different prompts or models, or two versions of the same model. In essence, a comparison evaluator performs an evaluation on a pair of strings and returns a dictionary containing the evaluation score and other relevant details. @@ -16,7 +16,7 @@ Here's a summary of the key methods and properties of a comparison evaluator: - `requires_input`: This property indicates whether this evaluator requires an input string. - `requires_reference`: This property specifies whether this evaluator requires a reference label. -Detailed information about creating custom evaluators and the available built-in comparison evaluators are provided in the following sections. +Detailed information about creating custom evaluators and the available built-in comparison evaluators is provided in the following sections. import DocCardList from "@theme/DocCardList";