英文字典中文字典


英文字典中文字典51ZiDian.com



中文字典辞典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z       







请输入英文单字,中文词皆可:

interpreted    音标拼音: [ɪnt'ɚprətəd]
interpreted
解译

interpreted
adj 1: understood in a certain way; made sense of; "a word taken
literally"; "a smile taken as consent"; "an open door
interpreted as an invitation" [synonym: {interpreted},
{taken}]

Interpret \In*ter"pret\, v. t. [imp. & p. p. {Interpreted}; p.
pr. & vb. n. {Interpreting}.] [F. interpr[^e]ter, L.
interpretari, p. p. interpretatus, fr. interpres interpeter,
agent, negotiator; inter between (prob.) the root of
pretium price. See {Price}.]
[1913 Webster]
1. To explain or tell the meaning of; to expound; to
translate orally into intelligible or familiar language or
terms; to decipher; to define; -- applied esp. to
language, but also to dreams, signs, conduct, mysteries,
etc.; as, to interpret the Hebrew language to an
Englishman; to interpret an Indian speech.
[1913 Webster]

Emmanuel, which being interpreted is, God with us.
--Matt. i. 23.
[1913 Webster]

And Pharaoh told them his dreams; but there was none
that could interpret them unto Pharaoh. --Gen. xli.
8.
[1913 Webster]

2. To apprehend and represent by means of art; to show by
illustrative representation; as, an actor interprets the
character of Hamlet; a musician interprets a sonata; an
artist interprets a landscape.

Syn: To translate; explain; solve; render; expound;
elucidate; decipher; unfold; unravel.
[1913 Webster]


请选择你想看的字典辞典:
单词字典翻译
interpreted查看 interpreted 在百度字典中的解释百度英翻中〔查看〕
interpreted查看 interpreted 在Google字典中的解释Google英翻中〔查看〕
interpreted查看 interpreted 在Yahoo字典中的解释Yahoo英翻中〔查看〕





安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • Work with chat completion models - Azure OpenAI in Azure AI Foundry . . .
    Work with chat completion models The following code snippet shows the most basic way to interact with models that use the Chat Completion API If this is your first time using these models programmatically, we recommend that you start with the chat completions quickstart
  • OpenAI API格式详解-Chat Completions - 知乎 - 知乎专栏
    在使用兼容OpenAI的API请求模型来完成对话,首先需要指定大模型服务的 BASE_URL 和 OPENAI_API_KEY,其次是构建request请求体。一个基本的请求 响应的例子: requestcurl https: api openai com v1 chat completi…
  • Azure Chat Completions example (preview) - OpenAI
    This example will cover chat completions using the Azure OpenAI service It also includes information on content filtering First, we install the necessary dependencies and import the libraries we will be using The Azure OpenAI service supports multiple authentication mechanisms that include API keys and Azure Active Directory token credentials
  • OpenAI接口Completion和ChatCompletion的区别与使用方法
    OpenAI 有两个重要的接口,一个是 openai Completion create,另一个是 openai ChatCompletion create。 那么问题来了,这两个接口有什么区别呢? 2 Completion接口说明与使用示例 Completion接口,主要是解决补全问题的,就是 用户输入 一段提示文字, 模型 按照文字的提示,给出对应的输出。 可以将这个过程理解为诱导型的对话。 参考3给了好几个这方面的例子。 使用Completion接口,就必须使用补全模型,比如GPT3的 davinci。 此外,有少部分参数也与ChatCompletion接口不一样。 下面是一个例子: engine="davinci", prompt=prompt,
  • Azure OpenAI in Azure AI Foundry Models REST API reference
    This article provides details on the inference REST API endpoints for Azure OpenAI Managing and interacting with Azure OpenAI models and resources is divided across three primary API surfaces: Each API surface specification encapsulates a different set of Azure OpenAI capabilities
  • OpenAI开发系列(十):Chat Completion Models API详解与构建本地知识库问答系统实践
    2023年6月13日:OpenAI宣布在Chat Completion模型中加入函数调用(Function calling)功能,全面开放16K对话长度的模型、降低模型调用资费等,这代表着Chat模型不再需要借助 LangChain 框架就可以直接在模型内部调用外部工具API,可以更加便捷的构建以LLM为核心的AI应用程序。
  • 【Azure OpenAI】Azure OpenAI Python SDK 使用方式:聊天模型
    開頭的 openai ChatCompletion create 即是 Chat Completion API 的呼叫方式,而其中比較容易搞混的地方是 deployment_id ,要填入的是在 Aazure OpenAI 中模型的部署名稱,忘記的話可以在 Studio 上找到。 Chat Completion API 中最關鍵的就是交談內容的格式化輸入,GPT 的 API 都是無狀態的,所以在呼叫時必須包含想要讓 GPT 知道的歷史對話內容,其中包含每句話是由誰講出來的,而對話的順序需要依序排列的 list 中,最後彙整完成設定在 messages 參數中。 能使用的角色有以下三種: system:對於回話助理的簡短描述或人格特質,也能包含一些希望遵守的規則。 user:使用者的說話內容。
  • Azure OpenAI:使用Completion ChatCompletion实现更多可能合集(持续更新)
    尽管 Azure OpenAI 通常被认为只是一个 聊天机器人,但是通过使用Completion或者ChatCompletion可以获得常规编程手段较难获得的信息,并结合常规编程技术为用户提供以往无法提供的功能或体验。 Azure OpenAI支持提示词工程、RAG(Retrieval Augmented Generation,通过结合Azure认知服务等让OpenAI基于检索到的数据来提供对话服务)或者微调来改进互动的准确性,RAG如何实现可以参见本博客相关文章,微调是对OpenAI大 语言模型 准备自有数据来训练出自定义的模型,在 Open AI Studio里可以找到相应的操作入口,这块需要的专业knowhow较多,有机会再介绍。
  • Building Your Own Chatbot using Azure OpenAI Capabilities | Microsoft . . .
    In this guide, we'll walk you through the steps to set up a chatbot using Open AI’s GPT-4o model that leverages Azure's advanced language models At the end, I have provided with a link to the repository to integrate the chatbot in your very own website





中文字典-英文字典  2005-2009