当前位置: 首页 > news >正文

香奈儿网站建设策划书大连网站建设比较好的公司

香奈儿网站建设策划书,大连网站建设比较好的公司,在线crm系统crm,网站建设五项基本原则分类目录#xff1a;《自然语言处理从入门到应用》总目录 SequentialChain 在调用语言模型之后#xff0c;下一步是对语言模型进行一系列的调用。若可以将一个调用的输出作为另一个调用的输入时则特别有用。在本节中#xff0c;我们将介绍如何使用顺序链来实现这一点。顺序…分类目录《自然语言处理从入门到应用》总目录 SequentialChain 在调用语言模型之后下一步是对语言模型进行一系列的调用。若可以将一个调用的输出作为另一个调用的输入时则特别有用。在本节中我们将介绍如何使用顺序链来实现这一点。顺序链被定义为一系列按确定顺序调用的链条。有两种类型的顺序链 SimpleSequentialChain最简单的顺序链形式每个步骤具有单一的输入和输出一个步骤的输出作为下一个步骤的输入。SequentialChain更一般的顺序链形式允许多个输入和输出。 SimpleSequentialChain 在这个SimpleSequentialChain中每个单独的链都有一个单一的输入和输出一个步骤的输出被用作下一个步骤的输入。我们通过一个玩具例子来演示这个过程其中第一个链接受一个虚构的剧本标题然后生成该标题的简介第二个链条接受该剧本的简介并生成一个虚构的评论。 from langchain.llms import OpenAI from langchain.chains import LLMChain from langchain.prompts import PromptTemplate# This is an LLMChain to write a synopsis given a title of a play. llm OpenAI(temperature.7) template You are a playwright. Given the title of play, it is your job to write a synopsis for that title.Title: {title} Playwright: This is a synopsis for the above play: prompt_template PromptTemplate(input_variables[title], templatetemplate) synopsis_chain LLMChain(llmllm, promptprompt_template)# This is an LLMChain to write a review of a play given a synopsis. llm OpenAI(temperature.7) template You are a play critic from the New York Times. Given the synopsis of play, it is your job to write a review for that play.Play Synopsis: {synopsis} Review from a New York Times play critic of the above play: prompt_template PromptTemplate(input_variables[synopsis], templatetemplate) review_chain LLMChain(llmllm, promptprompt_template)# This is the overall chain where we run these two chains in sequence. from langchain.chains import SimpleSequentialChain overall_chain SimpleSequentialChain(chains[synopsis_chain, review_chain], verboseTrue) review overall_chain.run(Tragedy at sunset on the beach)日志输出 Entering new SimpleSequentialChain chain...Tragedy at Sunset on the Beach is a story of a young couple, Jack and Sarah, who are in love and looking forward to their future together. On the night of their anniversary, they decide to take a walk on the beach at sunset. As they are walking, they come across a mysterious figure, who tells them that their love will be tested in the near future. The figure then tells the couple that the sun will soon set, and with it, a tragedy will strike. If Jack and Sarah can stay together and pass the test, they will be granted everlasting love. However, if they fail, their love will be lost forever.The play follows the couple as they struggle to stay together and battle the forces that threaten to tear them apart. Despite the tragedy that awaits them, they remain devoted to one another and fight to keep their love alive. In the end, the couple must decide whether to take a chance on their future together or succumb to the tragedy of the sunset.Tragedy at Sunset on the Beach is an emotionally gripping story of love, hope, and sacrifice. Through the story of Jack and Sarah, the audience is taken on a journey of self-discovery and the power of love to overcome even the greatest of obstacles. The plays talented cast brings the characters to life, allowing us to feel the depths of their emotion and the intensity of their struggle. With its compelling story and captivating performances, this play is sure to draw in audiences and leave them on the edge of their seats. The plays setting of the beach at sunset adds a touch of poignancy and romanticism to the story, while the mysterious figure serves to keep the audience enthralled. Overall, Tragedy at Sunset on the Beach is an engaging and thought-provoking play that is sure to leave audiences feeling inspired and hopeful. Finished chain.输入 print(review)输出 Tragedy at Sunset on the Beach is an emotionally gripping story of love, hope, and sacrifice. Through the story of Jack and Sarah, the audience is taken on a journey of self-discovery and the power of love to overcome even the greatest of obstacles. The plays talented cast brings the characters to life, allowing us to feel the depths of their emotion and the intensity of their struggle. With its compelling story and captivating performances, this play is sure to draw in audiences and leave them on the edge of their seats. The plays setting of the beach at sunset adds a touch of poignancy and romanticism to the story, while the mysterious figure serves to keep the audience enthralled. Overall, Tragedy at Sunset on the Beach is an engaging and thought-provoking play that is sure to leave audiences feeling inspired and hopeful.SequentialChain 并非所有的顺序链都像将一个字符串作为参数传递并在链条的所有步骤中得到一个字符串输出那样简单。在下面的例子中我们将尝试更复杂的链条涉及多个输入同时也有多个最终输出。重要的是如何命名输入和输出变量名。在上面的例子中我们不需要考虑这个问题因为我们只是将一个链条的输出直接作为下一个链条的输入传递但是在这里我们需要关注这个问题因为我们有多个输入。 # This is an LLMChain to write a synopsis given a title of a play and the era it is set in. llm OpenAI(temperature.7) template You are a playwright. Given the title of play and the era it is set in, it is your job to write a synopsis for that title.Title: {title} Era: {era} Playwright: This is a synopsis for the above play: prompt_template PromptTemplate(input_variables[title, era], templatetemplate) synopsis_chain LLMChain(llmllm, promptprompt_template, output_keysynopsis)# This is an LLMChain to write a review of a play given a synopsis. llm OpenAI(temperature.7) template You are a play critic from the New York Times. Given the synopsis of play, it is your job to write a review for that play.Play Synopsis: {synopsis} Review from a New York Times play critic of the above play: prompt_template PromptTemplate(input_variables[synopsis], templatetemplate) review_chain LLMChain(llmllm, promptprompt_template, output_keyreview)# This is the overall chain where we run these two chains in sequence. from langchain.chains import SequentialChain overall_chain SequentialChain(chains[synopsis_chain, review_chain],input_variables[era, title],# Here we return multiple variablesoutput_variables[synopsis, review],verboseTrue) overall_chain({title:Tragedy at sunset on the beach, era: Victorian England})日志输出 Entering new SequentialChain chain... Finished chain.输出 {title: Tragedy at sunset on the beach,era: Victorian England,synopsis: \n\nThe play follows the story of John, a young man from a wealthy Victorian family, who dreams of a better life for himself. He soon meets a beautiful young woman named Mary, who shares his dream. The two fall in love and decide to elope and start a new life together.\n\nOn their journey, they make their way to a beach at sunset, where they plan to exchange their vows of love. Unbeknownst to them, their plans are overheard by Johns father, who has been tracking them. He follows them to the beach and, in a fit of rage, confronts them. \n\nA physical altercation ensues, and in the struggle, Johns father accidentally stabs Mary in the chest with his sword. The two are left in shock and disbelief as Mary dies in Johns arms, her last words being a declaration of her love for him.\n\nThe tragedy of the play comes to a head when John, broken and with no hope of a future, chooses to take his own life by jumping off the cliffs into the sea below. \n\nThe play is a powerful story of love, hope, and loss set against the backdrop of 19th century England.,review: \n\nThe latest production from playwright X is a powerful and heartbreaking story of love and loss set against the backdrop of 19th century England. The play follows John, a young man from a wealthy Victorian family, and Mary, a beautiful young woman with whom he falls in love. The two decide to elope and start a new life together, and the audience is taken on a journey of hope and optimism for the future.\n\nUnfortunately, their dreams are cut short when Johns father discovers them and in a fit of rage, fatally stabs Mary. The tragedy of the play is further compounded when John, broken and without hope, takes his own life. The storyline is not only realistic, but also emotionally compelling, drawing the audience in from start to finish.\n\nThe acting was also commendable, with the actors delivering believable and nuanced performances. The playwright and director have successfully crafted a timeless tale of love and loss that will resonate with audiences for years to come. Highly recommended.}SequentialChain中的记忆 有时候我们可能希望在链的每个步骤中或链条的后续部分中传递一些上下文信息但是保持和链接输入或输出变量可能会变得混乱。使用SimpleMemory是一种方便的方式来管理这些上下文信息并简化我们的链条。 例如使用之前的剧本顺序链假设我们想在每个步骤中包含一些关于剧本的日期、时间和地点的上下文信息并使用生成的简介和评论创建一些社交媒体发布的文本。你可以将这些新的上下文变量添加为input_variables或者我们可以在链条中添加一个SimpleMemory来管理这个上下文信息 from langchain.chains import SequentialChain from langchain.memory import SimpleMemoryllm OpenAI(temperature.7) template You are a social media manager for a theater company. Given the title of play, the era it is set in, the date,time and location, the synopsis of the play, and the review of the play, it is your job to write a social media post for that play.Here is some context about the time and location of the play: Date and Time: {time} Location: {location}Play Synopsis: {synopsis} Review from a New York Times play critic of the above play: {review}Social Media Post:prompt_template PromptTemplate(input_variables[synopsis, review, time, location], templatetemplate) social_chain LLMChain(llmllm, promptprompt_template, output_keysocial_post_text)overall_chain SequentialChain(memorySimpleMemory(memories{time: December 25th, 8pm PST, location: Theater in the Park}),chains[synopsis_chain, review_chain, social_chain],input_variables[era, title],# Here we return multiple variablesoutput_variables[social_post_text],verboseTrue)overall_chain({title:Tragedy at sunset on the beach, era: Victorian England})日志输出 Entering new SequentialChain chain... Finished chain.输出 {title: Tragedy at sunset on the beach,era: Victorian England,time: December 25th, 8pm PST,location: Theater in the Park,social_post_text: \nSpend your Christmas night with us at Theater in the Park and experience the heartbreaking story of love and loss that is A Walk on the Beach. Set in Victorian England, this romantic tragedy follows the story of Frances and Edward, a young couple whose love is tragically cut short. Dont miss this emotional and thought-provoking production that is sure to leave you in tears. #AWalkOnTheBeach #LoveAndLoss #TheaterInThePark #VictorianEngland}TransformationChain 本节展示了如何使用TransformationChain。我们将创建一个虚拟的TransformationChain示例。它接受一个非常长的文本将文本过滤为只包含前三个段落的内容然后将其传递给一个LLMChain来对其进行摘要。 from langchain.chains import TransformChain, LLMChain, SimpleSequentialChain from langchain.llms import OpenAI from langchain.prompts import PromptTemplatewith open(../../state_of_the_union.txt) as f:state_of_the_union f.read()def transform_func(inputs: dict) - dict:text inputs[text]shortened_text \n\n.join(text.split(\n\n)[:3])return {output_text: shortened_text}transform_chain TransformChain(input_variables[text], output_variables[output_text], transformtransform_func) template Summarize this text:{output_text}Summary: prompt PromptTemplate(input_variables[output_text], templatetemplate) llm_chain LLMChain(llmOpenAI(), promptprompt) sequential_chain SimpleSequentialChain(chains[transform_chain, llm_chain]) sequential_chain.run(state_of_the_union)输出 The speaker addresses the nation, noting that while last year they were kept apart due to COVID-19, this year they are together again. They are reminded that regardless of their political affiliations, they are all Americans.参考文献 [1] LangChain官方网站https://www.langchain.com/ [2] LangChain ️ 中文网跟着LangChain一起学LLM/GPT开发https://www.langchain.com.cn/ [3] LangChain中文网 - LangChain 是一个用于开发由语言模型驱动的应用程序的框架http://www.cnlangchain.com/
http://www.tj-hxxt.cn/news/131662.html

相关文章:

  • 网站前端与后台必须同时做吗wordpress内容页插件
  • seo查询爱站南通企业网页制作
  • 家具公司网站模板下载小米网站 用什么做的
  • 西宁做网站的公司力请君博d九歌人工智能诗歌写作网站
  • 三明网站seo长春市住房和城乡建设局网站
  • 网站 常见推广WordPress主题Cute主题
  • 长沙企业网站排名优化wordpress高端企业主题
  • 商业网站首页怎么做wordpress评论换行
  • 大朗做网站的300个免费邮箱地址2022
  • 贵阳建网站公司站酷网官网下载
  • 网站加ico网站建设 服务器
  • 温州免费网站建站模板建设商城网站
  • 福州仓山区网站建设邯郸卓匠网络科技有限公司
  • 射阳县住房和城乡建设局网站专门用来制作网页的软件是什么
  • 百度快速收录seo工具软件深圳seo网站排名优化
  • 找网站做网站外包公司该如何运营
  • 知识营销在哪里找给公司做网站优化的人
  • 一个空间放两个网站营销运营推广服务
  • 遵化手机网站设计云匠网
  • 深圳市企业网站建设价格网站 需求文档
  • 双八网站建设drupal还是wordpress好
  • 各大网站开发语言木模板价格
  • 网站提升收录北京it培训机构
  • 手机怎样建立自己网站wordpress百度和分类
  • 怎么做婚介网站物联网平台软件开发
  • 企业建设网站有什么好处重庆app制作
  • 郑州的团购网站建设深圳网站设计工资一般多少
  • 怎么做网站_中国摄影网官网
  • 绍兴企业自助建站网站 定制
  • 免费建立个人网站的哪些平台好如何做图让网站的图更清晰