{ "cells": [ { "attachments": {}, "cell_type": "markdown", "id": "52824b89-532a-4e54-87e9-1410813cd39e", "metadata": {}, "source": [ "# 第五章 如何评估基于LLM的应用程序\n", "当使用llm构建复杂应用程序时,评估应用程序的表现是一个重要但有时棘手的步骤,它是否满足某些准确性标准?\n", "通常更有用的是从许多不同的数据点中获得更全面的模型表现情况\n", "一种是使用语言模型本身和链本身来评估其他语言模型、其他链和其他应用程序" ] }, { "cell_type": "code", "execution_count": 2, "id": "b7ed03ed-1322-49e3-b2a2-33e94fb592ef", "metadata": { "height": 81, "tags": [] }, "outputs": [], "source": [ "import os\n", "\n", "from dotenv import load_dotenv, find_dotenv\n", "_ = load_dotenv(find_dotenv()) #读取环境变量" ] }, { "attachments": {}, "cell_type": "markdown", "id": "28008949", "metadata": {}, "source": [ "## 创建LLM应用\n", "按照langchain链的方式进行构建" ] }, { "cell_type": "code", "execution_count": 3, "id": "974acf8e-8f88-42de-88f8-40a82cb58e8b", "metadata": { "height": 98 }, "outputs": [], "source": [ "from langchain.chains import RetrievalQA #检索QA链,在文档上进行检索\n", "from langchain.chat_models import ChatOpenAI #openai模型\n", "from langchain.document_loaders import CSVLoader #文档加载器,采用csv格式存储\n", "from langchain.indexes import VectorstoreIndexCreator #导入向量存储索引创建器\n", "from langchain.vectorstores import DocArrayInMemorySearch #向量存储\n" ] }, { "cell_type": "code", "execution_count": 13, "id": "9ec1106d", "metadata": { "height": 64 }, "outputs": [], "source": [ "#加载数据\n", "file = 'OutdoorClothingCatalog_1000.csv'\n", "loader = CSVLoader(file_path=file)\n", "data = loader.load()" ] }, { "cell_type": "code", "execution_count": 6, "id": "06b1ffae", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
| \n", " | 0 | \n", "1 | \n", "2 | \n", "
|---|---|---|---|
| 0 | \n", "NaN | \n", "name | \n", "description | \n", "
| 1 | \n", "0.0 | \n", "Women's Campside Oxfords | \n", "This ultracomfortable lace-to-toe Oxford boast... | \n", "
| 2 | \n", "1.0 | \n", "Recycled Waterhog Dog Mat, Chevron Weave | \n", "Protect your floors from spills and splashing ... | \n", "
| 3 | \n", "2.0 | \n", "Infant and Toddler Girls' Coastal Chill Swimsu... | \n", "She'll love the bright colors, ruffles and exc... | \n", "
| 4 | \n", "3.0 | \n", "Refresh Swimwear, V-Neck Tankini Contrasts | \n", "Whether you're going for a swim or heading out... | \n", "
| ... | \n", "... | \n", "... | \n", "... | \n", "
| 996 | \n", "995.0 | \n", "Men's Classic Denim, Standard Fit | \n", "Crafted from premium denim that will last wash... | \n", "
| 997 | \n", "996.0 | \n", "CozyPrint Sweater Fleece Pullover | \n", "The ultimate sweater fleece - made from superi... | \n", "
| 998 | \n", "997.0 | \n", "Women's NRS Endurance Spray Paddling Pants | \n", "These comfortable and affordable splash paddli... | \n", "
| 999 | \n", "998.0 | \n", "Women's Stop Flies Hoodie | \n", "This great-looking hoodie uses No Fly Zone Tec... | \n", "
| 1000 | \n", "999.0 | \n", "Modern Utility Bag | \n", "This US-made crossbody bag is built with the s... | \n", "
1001 rows × 3 columns
\n", "