GPT-3在招聘市场的应用案例介绍(上)

简介: GPT-3在招聘市场的应用案例介绍

介绍

虽然GPT-3已经发布了很长一段时间,因为它在编写类似人类的故事和诗歌方面的卓越能力而受到广泛关注,但我从来没有想到它附带的API能够为构建具有广泛应用程序的数据产品提供如此大的灵活性和方便性。

在本文中,我试图探索一些与我在就业市场中看到的问题相关的用例,并试图理解构建基于语言的数据产品在未来可能只是围绕着“即时工程”。

与此同时,本文并不试图解释GPT-3是如何工作的,也不试图解释它如何能够完成它正在做的事情。关于这些话题的更多细节已经在Jay Alammar[1]和Max Woolf[2]等文章中写得很详细。GPT-3论文本身可以在[3]中引用。

640.jpg

在GPT-3的API中,' prompt '是提供给API的一个参数,以便它能够识别要解决的问题的上下文。根据提示的编写方式,返回的文本将尝试匹配相应的模式[4]。

下面是一个提示的例子,我们试图通过编程API来在银行部门的范围内提供答案。“Q:”和“A:”格式,连同问题文本和它的回答,提示模型,我们正在寻找的存在于银行领域(或至少,这是我如何理解它:))

defcall_openapi(question):
response=openai.Completion.create(
engine="davinci",
prompt="""This is a banking expert.Q: What is interest rate?A: The interest rate is the amount a lender charges for the use of assets expressed as a percentage of the principal.Q: What is PD?A: Probability of default.Q: {question}?A:""".format(question=question),
temperature=0.3,
max_tokens=60,
top_p=1.0,
frequency_penalty=0.0,
presence_penalty=0.0,
stop=["\n"]
    )
returnresponse

一旦设置了提示,我们现在就可以自由发送我们的文本(或问题,如果你愿意的话)。

640.png

如上所述,我们可以看到我们得到的回答确实听起来合理(如果不是一个准确的答案本身)。

关于如何配置提示的其他创造性方法,请参阅其GPT-3 API页面[5]的示例部分。或者,您也可以参考我的代码来检查文本分类和产品命名任务的提示示例。

回到我们的议程,让我们看一下可以应用GPT-3的就业市场领域的一些现有用例。

免责声明:虽然我以前在一个工作网站公司工作过,但我并没有直接参与下面提到的大多数用例。因此,在现实生活中,所演示的问题的解决方案可能与我解决它的方式完全不同。这意味着我的解决方法可能存在明显的漏洞。

案例1:工作的分类匹配

640.png

问题

客户提供的招聘广告。(雇主),我们(作为工作市场)想要帮助他们快速分类他们的广告到正确的工作类别,从而帮助工作广告在稍后的工作门户发现。

虽然这个问题可能由我们的客户/客户经理(即。我们帮助我们的客户填写表单),这种方法(由我们的客户自己或客户经理填写表单)经常容易出错,而且从长远来看无法扩展(更不用说,归因于错误的数据收集)。

解决方案

根据职位标题和描述,我们尝试根据根据配置的提示出现的单词的可能性来推断职位类别。

我们通过GPT-3来提示职位名称、描述和类别是什么样子的。我们将保留最后一个作业专业为空,作为一种向API发出信号的方式,表明这是它接下来需要填充的位置。' ### '关键字被定义为该配置中的停止字符。

defcall_openapi(title, desc):
response=openai.Completion.create(
engine="davinci",
prompt="""This is a job specialization classifierJob title: Account ExecutiveJob description: Handle full set of accounts.\nFamiliar with Income Tax filing.\nMaintain daily cash flow and reporting.\nPrepare monthly and annual financial reports.\nMaintain proper records of all accounting transactions.\nPerform general administrative and other accounting duties from time to time.Job specialization: Accounting/Finance###Job title: Senior Accounts ExecutiveJob description: To handle a full set of Accounts.\nTo be responsible for monthly closing of accounts with relevant supporting schedules in an accurate and timely manner.\nPreparation of any financial ad-hoc reports.\nReviewing all invoices and payment instructions and preparing creditors’ payment for payment processing.\nTo prepare invoices for approval by the relevant Head of Department.\nTo ensure that the Account Payable records are updated accurately and timely for management reporting purposes.\nTo review and process staff claims.\nLiaison with Auditors, Company Secretary, Tax Agent and Bank OfficersJob specialization: Accounting/Finance###Job title: Account ExecutiveJob description: Compiling and analyzing data to find trends.\nDeveloping sales strategies and setting quotas.\nStaying current on company offerings and industry trends.\nMaintaining a database of contact information.\nBuilding long-lasting, mutually beneficial relationships with external contacts and internal departments to create a better customer experience.Job specialization: Sales/Marketing###Job title: Sales Consultant (General)Job description: Develop and formulate strategic and tactical plans in a sizeable market portfolio. Ensure KPI and goals of the assigned accounts are met.\nBuild market position by identifying potential business deals and close relationship with existing and new customers;\nDevelop and formulate strategies to acquire new business.\nProvide and screen data/information for potential business deals by analysing market strategy, examining risks and financial accuracy for business decision making;\nGrow account depth and breadth\nDevelop Account plans for all KPI customers.\nAccountable on driving every opportunity to closure with a close plan.\nKeeping track of all post sales activities with daily sales report.Job specialization: Sales/Marketing###Job title: {job_title}Job description: {job_desc}Job specialization:""".format(job_title=job_title, job_desc=job_desc),
temperature=0.3,
max_tokens=60,
top_p=1.0,
frequency_penalty=0.0,
presence_penalty=0.0,
stop=["###"]
    )
returnresponsedefextract_ans(response):
returnprint('Job specialization: ', response.choices[0].text.partition('\n')[0])
目录
相关文章
|
6月前
|
人工智能 自然语言处理 测试技术
使用 GPT4 和 ChatGPT 开发应用:第四章到第五章
使用 GPT4 和 ChatGPT 开发应用:第四章到第五章
162 0
|
1月前
|
数据采集 人工智能 安全
超越文本,GPT-4在虹膜生物识别的创新应用
在人工智能领域,研究人员利用GPT-4多模态大语言模型探索了其在虹膜识别中的潜力,采用零样本学习方法,通过多种实验展示了GPT-4在复杂条件下的出色适应性和精确性,甚至能检测化妆对虹膜识别的影响。相较于谷歌的Gemini Advanced,GPT-4在用户体验和性能上更胜一筹。尽管存在局限性,这项研究为生物识别安全解决方案提供了新方向,结合LLM与专业生物识别技术,有望实现更高效、鲁棒的应用。论文详情见:https://arxiv.org/abs/2408.04868。
105 60
|
3月前
|
自然语言处理 搜索推荐 API
GPT-4o mini:探索最具成本效益的语言模型及其在开发中的应用
【8月更文第5天】随着自然语言处理技术的快速发展,语言模型正变得越来越强大且易于访问。OpenAI 最新发布的 GPT-4o mini 模型以其卓越的性能和极具竞争力的价格,迅速成为了业界关注的焦点。作为开发者,您是否已经开始探索这个“迄今为止最具成本效益的小模型”?本文旨在鼓励开发者分享使用 GPT-4o mini 及其他大型语言模型的经验,并探讨如何有效地利用这些工具来提升开发效率和创新能力。
151 0
|
4月前
|
人工智能 自然语言处理 前端开发
如何用GPT开发一个基于 GPT 的应用?
如何用GPT开发一个基于 GPT 的应用?
107 0
|
5月前
|
人工智能 前端开发 Java
基于Spring框架的GPT应用
基于Spring框架的GPT应用
53 0
|
6月前
|
SQL 人工智能 自然语言处理
NL2SQL进阶系列(2):DAIL-SQL、DB-GPT开源应用实践详解Text2SQL
NL2SQL进阶系列(2):DAIL-SQL、DB-GPT开源应用实践详解Text2SQL
NL2SQL进阶系列(2):DAIL-SQL、DB-GPT开源应用实践详解Text2SQL
|
6月前
|
SQL 物联网 数据处理
NL2SQL进阶系列(1):DB-GPT-Hub、SQLcoder、Text2SQL开源应用实践详解
NL2SQL进阶系列(1):DB-GPT-Hub、SQLcoder、Text2SQL开源应用实践详解
NL2SQL进阶系列(1):DB-GPT-Hub、SQLcoder、Text2SQL开源应用实践详解
|
6月前
|
人工智能 JSON 自然语言处理
GPTs 应用开发:使用 GPT Builder 创建自己的 GPTs 应用(上)
GPTs 应用开发:使用 GPT Builder 创建自己的 GPTs 应用
278 2
|
6月前
|
JSON 人工智能 机器人
GPTs 应用开发:使用 GPT Builder 创建自己的 GPTs 应用(下)
GPTs 应用开发:使用 GPT Builder 创建自己的 GPTs 应用
182 1
|
6月前
|
人工智能 自然语言处理 前端开发
解密GPT在日常生活中的神奇应用:从工作到娱乐,处处随行
解密GPT在日常生活中的神奇应用:从工作到娱乐,处处随行
161 0

热门文章

最新文章

下一篇
无影云桌面