WIDE的模型语言研究

学习提速专享!AI工具全家桶免费用 限时购周边加赠Coding Plan Lite,解锁20+主流AI工具,写代码、查资料快人一步! 阅读详情
 
WIDE的模型语言研究
例子:
发布由WIDE生成的技术文档,其流程是:
在文档发布前,先要内部审查一下。
如果审查通过就可以提交。
否则文档就要重写,重审查。在文档通过前写与审查的循环将继续。
 
下面先是一个form(可看作一种信息)的定义,关于form的概念可见下。
1 FORM_MODEL Paper.Review OP CS OF Twente
2 FORM Review
3 BEADING "REVIEW FORM"; SPACE;
4 LABEL "Paper" LINKS ENTITY: paper;
5 LABEL "Number" LINKS INTEGER[3] : number; NEW.LINE;
6 LABEL "Title" LINKS STRING[120] : title; NEW-LINE; SPACE;
7 HEADING "Rating (1-6)";
8 LABEL [ " O r i g i n a l i t y " , "Technical Quality", "Significance",
"Presentation", "Overall Rating" ];
9 LABEL LINKS ARRAY[S l OF INTEGER[l] : ratings; NEW.LINE;
l0 SPACE; HEADING;
II LABEL "Comment" LINKS STRING[1000] : comment; NEW-LINE;
12 LABEL "Reviewer" LINKS STRINO[~0] : reviewer;
13 LABEL "Date" LINKS DATE: review.date;
14 END-FORM;
15 FORM Author_Form DERIVED_FORM Review
16 WITHOUT reviewer;
17 ONLY READ FOR ratings, comment, review.date;
18 END-FORM;
19 FORM Reviewer.Form DERIVED.FORM Review
20 ONLY READ FOR number, title;
21 ONLY print FOR paper;
22 INITIALLY
23 r a t i n g s . I l l = NULL, ratings.J2] = NULL,
24 ratings.[3] ---- NULL, ratings.J4] = NULLj.
25 comment = NULL,.reviewer = NULL, review.date = NULL;
26 ENDAVORM;
27 END-MODEL
Figure h Form Model - Publication Process
 
然后是该过程的模型:
1 WORKFLOW-MODEL Publishing OF CS OF Twente
2 USES ORGANISATIONAVIODEL WIDE;//需要的组织模型
3 USES FORM_MODEL Review.Form;//需要的信息之form
4 uSES D.ATA~MODEL Publication;//需要的信息之数据模型
5 CONTROL
6  START Submit-Paper;
7  Submit_Paper ENABLES Receive-Review;
8  Receive_Review IF p-accepted = TRUE
9      ENABLES Polish_Paper;
10 Receive-Review IF p-accepted = TRUE
11     ENABLES Solicit_Funding;
12 END Receive-Review 1F p-accepted = FALSE OR
13     (Polish_PapeArN D Solicit_Funding);
 
14 ROLE
15 Submit_Paper.Write-Paper,
16     PoLish-Paper.Write_Paper BY SAME STAFF;
 
17 TASK Submit_Paper
18     START Write_Paper;
19     Write-Paper ENABLES Review_Paper;
20     Review_Paper IF p_ratings.[4] > 3 ENABLES Send.Paper;
21     Review_Paper IV p.ratings.[4] < 3 ENABLES Write_Paper;
22     END Send.Paper;
23     ROLE
24         Write_PaperR, eview_Paper BY DIFFERENT STAFF;
2~ END.TASK;
...
26 TASK PoLish.Paper
27     START Write_Paper;
28     Write-Paper, Solicit-Funding TOGETHER ENABLE Send_Paper;
29     END Send-Paper;
30 END_TASK;
...
31 BASE_TASK Review_Paper
32     VIEW Reviewer_Form(p_paper, p_no, p_title, p . r a t i n g s ,
p_comment, p-reviewer, p.date);
33     PRE_CONDITION
34         Reviewer_Form.paper <1> NULL;
35         Reviewer,Form,number <> NULL;
36         Reviewer-Form.title <:> NUbL;
37     MESSAGE
38         "Pleasef ill in alL fields.";
39     POST-CONDITION
40         EVERY Review_Form <> NULL;
41     ROLE
4~         BY SOME x STAFF PROVIDED '~en~lish" IN x.Langu~tges;
43 END.TASK;
...
44 END_MODEL
 
可以看到,任务间的顺序用ENABLES来指明,其中的判断条件由IF指明,
Write_Paper和Solicit-Funding的joint到Send_Paper,由TOGETHER ENABLE指明的。
WIDE的模型和结构:
WIDE Workflow model and architecture
F. Casati*, P. Grefen**, B. Pernici*, G. Pozzi*, G. Sánchez***
* Politecnico di Milano , Italy
** University of Twente , The Netherlands
*** Sema Group sae, Spain
mailing address:
Barbara Pernici
Politecnico di Milano, piazza Leonardo da Vinci 32
I-20133 Milano MI, Italy
 
 
工作流中的信息通常关注:什么时候一个工作任务开始执行,执行任务需要的应用信息,将工作任务分配给代理( 组织模型与过程模型严格分离,通过授权机制连接,即用授权将过程模型中的角色映射到组织模型中的代理。)的原则,工作任务结束后将激活的任务是什么。因此,在业务相关的工作流中,较少关注工作任务本身。工作任务只是不正式地被描述。工作任务间的连接要复杂得多,有些工作任务的执行是相关联的。
 
下面是一个WIDE的模型,主要表现:组织模型与过程模型的分离关系,以及如何使用授权机制将两个模型连接起来。两个模型的分离是WIDE的一个特点。
 
 
workflow process model
WIDE的模型具有办公室信息系统的一些特点。WIDE的用户通常会想手工进行工作,并使用应用程序来支持工作。然后交换文档,共享数据。数据可能在数据库中,并且数据库可能与其他程序和系统共享着。
为了支持这种方式的工作,我们需要专门为办公室流程定义的工作流模式,该模式中任务的执行流是相互协调工作的。
WIDE还注重对异常情况的管理。
 
信息模型:
工作流使用的信息可以在工作流模式层中定义,或在共享的数据库中,或是工作流中传递的文档。
工作流模式层中的定义的变量只能在定义的环境使用。
数据库数据是一个交换格式化数据的地方。
通过文档交换的数据:定义和类型:
文档documentation元素就是用户为了完成任务,显式使用创建,修改的信息的集。文档有类型:
       document:外部工具产生的,不由工作流系统解释。如文本文件,图片等。
       form:数据字段的集合,可以由工作流系统解释。过程的变量可以由form使用,
比如显示变量,用变量计算。
       Compound document:document,forms,其他compound document组成
的,其组成方式是固定。
       Dossier:document:document,forms,其他compound document组成
的,其组成方式是可变的。
 
对临时信息建模:这对于系统的进化是相当重要的。
 
 
任务:
    任务是完成工作流目标的基本工作单元。
    任务的结构:
       name,description,version,
actions:manual或者一系列的状态,
role:执行任务的role,以及任务分配时的约束条件,
task information:输入输出,
exceptions,
authorized actions,
compensation action。
任务执行时的状态转换:
 
WIDE中的三种任务,以及任务间的连接关系:
supertasks:可以再分解为tasks。
Multitasks:有这种情况,多个工作任务并行执行,它们完成类似的任务。意义待考。
 
WIDE的工作流描述语言WFDL
两部分:
       声明部分:变量,共享数据库,文档,dossiers,任务。
       工作流结构定义部分。
 
声明部分:
    name,
    description,
    administrator:定义者,
    version,
    exception,
    variables,types and functions,
    responsible agent:允许开始一个case的role列表,
    start-case condition:定义case可以自动执行的条件,
    document items。
 
异常:
WIDE以(condition,reaction)的方式来处理异常。
Condition可以根据工作流信息,临时条件,发生的事件来指定。
WIDE中的事件:
警告:
警告alert指出一个计划的异常,警告与异常有点不同,他在normal flow中。但是与异常表示一样的结构。
执行异常,
组织异常,
 
 
关于工作流的概念模型的讨论:
The first descriptions of WFs have been proposed by office modeling as a way of describing
office procedures [BP84]. Such descriptions were based on extensions of classical formal
models (such as Petri Nets, production rules and flowcharts); a number of modeling support
tools were proposed. The need of a closer relationship between modeling techniques and
enactment of processes has been particularly developed within the process modeling area in
software engineering. This research has produced several methodological contributions and
WF specification languages [GHS95, EN93]. Several tools for process modeling, generally
based on Petri Nets, are focused on the ability of “animating” WFs, thereby understanding
their dynamic behavior [BFG93].
Recently, a growing interest has concentrated on connecting WF systems to existing
information systems. In particular, the desire of interconnecting to existing data and of coping
with large volumes of WF information has provided impetus to the bridging of WFs and
database technologies. The challenge posed by WF management pushes towards removing
some of the classical limitations of databases in the context of concurrency and transactional
models [H93]. Novel features of databases, such as active rules, are seen as particularly
promising in the context of WFs [DHL90, WC95].
A powerful specification mechanism is proposed in ObjectFlow [HK96]. The specification of
tasks’ coordination can be very complex and case-dependent, and the model includes
advanced task types (static and dynamic compound tasks), with a semantic similar to that of
supertasks and multitasks in WIDE .
Task assignment is based on a pull model; roles are defined in the system, and tasks are
assigned to roles. Agents can then select tasks associated to the roles they belong to. Agents,
before terminating a task, can also specify successors tasks to be executed, bypassing the flow
description. The effects of the change are local to a specific WF instance.
ObjectFlow also offers a limited exception handling mechanisms: special tasks can be defined
to handle anomalous situation. When an agent detects an exception, it aborts active tasks in
the normal flow and modify the flow structure in order to give the control to the handler task.
The WIDE approach is different, since we allow case execution to proceed, and in the
meantime the WFMS (possibly with the aid of a human agent) performs the exception
handling procedure. This should avoid undue losses of work. Anyway, ObjectFlow behaviour
may be represented in the WIDE model by defining suitable exception handling routines.
The ObjectFlow model is very well suited to implement administrative workflows, but the
lack of a flexible exception handling mechanism and of explicit access to external databases
could limit its effectiveness for production workflows.
In the model developed at Bellcore [ RS94 ] the focus is on transactional workflows.
The most peculiar feature of this model is that possible task states may differ from task to
task. This is because tasks can have different characteristics according to their transactional
behaviour. Tasks may also have different isolation properties: the results of an incomplete
task may be made visible to other concurrent tasks, or they may be deferred until task
commitment. Flow control is determined by scheduling preconditions, that can be static
(defined before the workflow execution) or dynamic (created during workflow execution).
Preconditions may relate execution states of other tasks, local workflow variables or external
variables (i.e., variables modified by external events, such as time values). Simple
preconditions can be combined with Boolean operators to form complex scheduling
constraints.
This model gives to the workflow designer a greater flexibility with respect to the WIDE
model; on the other hand, the fact that in principle a task could start independently from the
execution state of the others, and in particular independently from the end of other tasks does
not ease the specification of ad hoc and administrative workflows. Furthermore, it is difficult
to give a graphical representation of the flow structure, since the start of a task is not
necessarily related to the end of another task.
In [BW95] a taxonomy of activities and exceptions is introduced. A interesting proposal,
absent in other workflow models, relate the definition of batch activities, i.e., activities that
require control and data coordination among different instances of a workflow. A proposed
example relates the ranking of candidates for a position. In WIDE , batch activity can be
implemented in ad-hoc schemas, that synchronize with other cases of other workflows by
wait connectors and the shared database.
 
已有系统和模型:
Many commercial systems have been introduced to support WFM, and we discuss here some
characteristics of WIDE with respect to some of the most popular commercial systems,
namely IBM FlowMark , ActionWorkflow, and InConcert. Extensive reviews of commercial
WFMSs can be found in [GHS95, BIS 95].
FlowMark ( IBM ) is an object-oriented WFMS for OS/2, Windows, and RISC systems. It
supports a heterogeneous client-server environment, and it is based on ObjectStore. It
supports automatic tasks execution, by allowing specifications of software applications that
must be started when a task begins.
Unlike WIDE and many other WFMS, FlowMark is not a stand-alone product: it must be
integrated with external software (such as Lotus Notes) to provide a complete document
management solution. Assignment is based on roles and organization, in a flexible way.
Tasks in FlowMark may be associated to executables on a variety of client platforms, and can
access the WFMS data containers.
Application access to databases is not modeled in FlowMark, which also has limited
mechanism to support exception handling.
FlowMark leaves a lot of freedom to process activities, and its focus is on coordination rather
than control. With respect to WIDE , this allows increased modularity and software reuse, but
it reduces the capability of the WFMS to monitor and supervise task executions, and to offer
an efficient exception handling mechanism.
The InConcert workflow management system by Xerox Xsoft [MS93] is strongly DBMSbased,
like WIDE . The system builds a partly object-oriented layer on top of a commercial
database management systems, like Oracle or Sybase. The aim is not to provide advanced
database mechanisms to the workflow management layer, as in the WIDE case, but rather use
the DBMS support to store views of object attributes and process histories. The system
provides a flexible interface to enable specialisation towards specific application areas.
InConcert is a document-centered product, although it is moving towards transactional
workflows and fully distributed architectures.
The Action Technologies workflow management system [MWFF92] does not use a DBMS
basis, but the Lotus Notes groupware system as its storage layer. The system uses a workflow
paradigm that is based on speech act, i.e. on specific communication patterns between actors
that require the performance of tasks and actors that provide the performance of tasks.
Workflow applications are modeled in so-called business process maps, consisting of
interlinked workflow loops.
The workflow model is very peculiar: the goal is to achieve customer satisfaction rather than
task completion. Customers and performers agree (after some negotiations) on the work to be
done. Again, the flexibility of this model is paid by a steeper learning curve and by a harder
formalization of simple, repetitive processes.
 
 
 
一个示例:海军的招生
其建模示意图:
 
该例的 PDL
 
PROCESS "Military enrollment"
FILE milita.pro
DESCRIPTION 'Compulsory enrollment procedure of a military office.`
DECLARATION
CONSTANTS
NONE
VARIABLES
VAR "Physical Test Result" BOOLEAN NULL
VAR "Psychological Test Result" BOOLEAN NULL
VAR "Drafted" BOOLEAN NULL
VAR "Applicant Data" STRING ""
KEYS
KEY "Applicant SSN" INTEGER 0
KEY "Applicant Name" STRING ""
INFOS
FORM "Application"
applica.for
EXPRESSIONS
COND "@[Physical Test Result]" : NULL ENDCOND
COND "@[Psychological Test Result]" : NULL ENDCOND
TASKS
TASK "Get and record data"
ROLE AdministratorOfficer
SERVER Server@Case
USER User@Case
DESCRIPTION 'A new candidate is registered.`
IN
NONE
OUT
FORM "Application"
MANDATORY
ENDTASK
TASK "Physical test"
ROLE Doctor
SERVER Server@Case
USER User@Case
DESCRIPTION 'The candidate is submitted to physical test and the result is registered in the "Application" form.`
IN
FORM "Application"
MANDATORY
OUT
FORM "Application"
MANDATORY
ENDTASK
TASK "Psychological test"
ROLE Psychologist
SERVER Server@Case
USER User@Case
DESCRIPTION 'The applicant is submitted to psychological test and the result is registered in the "Application" form.`
IN
FORM "Application"
MANDATORY
OUT
FORM "Application"
MANDATORY
ENDTASK
TASK "Draft"
ROLE AdministratorOfficer
SERVER Server@Case
USER User@Case
DESCRIPTION 'The candidate is enrolled and the "Application" form is completed.`
IN
FORM "Application"
MANDATORY
OUT
FORM "Application"
MANDATORY
ENDTASK
TASK "Reject"
ROLE Officer
SERVER Server@Case
USER User@Case
ESCRIPTION 'The candidate is refused and the "Application" form
is completed.`
IN
FORM "Application"
MANDATORY
OUT
FORM "Application"
MANDATORY
ENDTASK
ENDDECLARATION
// 下面是结构定义部分,即上述各任务间的关系。
TASK "Get and record data"
IF TASK "Get and record data" THEN
TASK "Physical test";
IF TASK "Physical test" THEN
COND "@[Physical Test Result]";
IF COND "@[Physical Test Result]" THEN
TASK "Psychological test";
IF TASK "Psychological test" THEN
COND "@[Psychological Test Result]";
IF COND "@[Psychological Test Result]" THEN
TASK "Draft";
IF (OR (NOT COND "@[Physical Test Result]")
(NOT COND "@[Psychological Test Result]")) THEN
TASK "Reject";
(OR TASK "Draft" TASK "Reject")
END
 
 
 
 
 
 
计算广告CTR预估系列(四)--Wide&Deep理论与实践 计算广告CTR预估系列(四)–Wide&amp;Deep理论与实践 计算广告CTR预估系列(四)–Wide&amp;Deep理论与实践 1. 名词解释 1.1 Memorization 和 Generalization 1.2 Wide 和 Deep 1.3 Cross-product transformation 2. Wide &amp; Deep Model 2.1 推荐系统 2.... 阅读详情

相关推荐

用Keras实现一个DeepFM

用Keras实现一个DeepFM 一、数据格式   在设计模型之间,首先要明确数据的格式应该是怎样的。我们假设现在要解决的问题是一个CTR预估问题,数据集是 (X,y)(X,y)(X,y),每一个样本都是高度稀疏的高维向量。假设我们有两种 field 的特征,连续型和离散型,连续型 field 一般不做处理沿用原值,离散型一般会做One-hot编码。离散型又能进一步分为单值型和多值型,单值...

songbinxu的博客 2万+

07年3月对工作流的再学习

 利用一个或多个建模技术与工具,完成实际的经营过程到计算机可处理的形式化定义的转化,所得到的定义就是过程模型,过程模板,过程元数据,过程定义。 过程建模方法学 值得思考的问题:    工作流系统运行的底层通信基础结构。Corbar,dcom,java都可选,但从分布式,安全,容错,可靠等方面考虑,没有好的方案。    标准化问题。不同厂商有不同的工作模型,定义语言,a

yethyeth的专栏 1721

GWAS——Genome-Wide Association Study

GWAS基于统计学的关联分析方法,将个体的基因型与表型特征进行关联分析,以发现影响表型变异的基因变异。GWAS的应用范围广泛,已经发现了超过10万个与各种疾病(如癌症,高血压,II型糖尿病,类风湿性关节炎等)以及重要生理性状关联的基因位点。一些遗传性疾病和表型特征可能是由于特定的基因变异位点引起的,通过GWAS可以发现这些基因变异位点,并了解它们对人类进化的影响。GWAS对人类进化研究有着重要的贡献。通过GWAS,研究人员可以检测到人类基因组中的变异位点,并了解这些变异位点在不同人群中的分布情况。

勇敢的人先享受世界 2802

第十三课 wide&deep模型

这篇paper很简单,网上也有很多人翻译过来. 使用tensorflow自带的库,其实很简单。有些难点的地方是,关于特征工程部分的理解。请参考 第九课 tensorflow 特征工程: feature_column下面是具体的实践demo:# coding:utf-8 """ wide and deep """from framework.data_input import IDataInput f

cjopengler的专栏 1604

Google Wide And Deep model 解释与应用

    这个模型是Google2016年6月发布用于分类和回归的模型,首次应用在了Google Play的推荐上,它的核心思想是结合线性模型的记忆能力(memorization)和DNN模型的泛化能力(generalization),在训练时同时优化2个模型的参数,从而达到整体模型的预测能力最优,这个有别于组合模型(组合模型是在分别训练几个模型,在预测层再组合)注:为什么线性模型有记忆能力,而DN...

kavin_star的博客 585

r语言npsurv_用R进行gwas meta分析,原来如此简单

在生物信息数据分析中,R语言是必备技能,简洁的语法,丰富的生态,美观的可视化,种种优势使得其成为该领域中使用最广泛的编程语言之一。用R进行meta分析当然也是可以的,本文要介绍的R包rmeta, 就是其中之一,可以用于gwas meta分析,支持随机效应模型和固定效应模型,官方文档如下https://cran.r-project.org/web/packages/rmeta/rmeta.pdf作为...

weixin_30476033的博客 1613

250台虚拟机齐上阵,Manus发布Wide Research开启智能体研究新纪元

Manus推出了一项名为Wide Research的创新功能,彻底改变了传统AI研究的模式。该功能通过调用多个AI智能体并行协作来处理任务,以“广度研究”为核心,能够快速应对大规模任务,标志着AI从单一助手向“数字军团”转型。Wide Research在处理速度和信息广度上表现出色,但同时也面临着技术挑战和成本高昂的问题。关键点如下:- Wide Research通过调用上百个AI智能体并行处理任务,显著提升了效率。

Black_Rock_br的博客 1191

Wide Research:多Agent协同研究系统架构与工程实践

Wide Research是一种面向海量信息处理的AI研究范式,其核心在于突破单Agent长上下文推理的瓶颈,转向多Agent并行分工、交叉验证与持续进化。它基于认知科学中的专家协作原理,通过智能分工层实现任务动态切片,协同校验层融合多源证据并量化置信度,持续进化层沉淀领域模式以提升泛化能力。该技术显著缓解信息过载下的决策延迟与噪声干扰问题,在竞品分析、政策研判、技术选型等需广度扫描与高置信结论的场景中展现出强工程适用性。本文聚焦其可落地的三层架构设计、角色化Agent编排及生产级护栏体系,是面向实际业务的

376

ACM WWW(ACM International Conference on World Wide Web)研究热点追踪

ACM WWW(ACM International Conference on World Wide Web)研究热点追踪

weixin_42155685的博客 309

13、语言研究中的统计方法与礼貌表达数值模型

本博文探讨了统计方法在语言研究中的应用,重点分析了大小形容词的语义关系以及日本语礼貌表达选择策略的数值模型。通过统计分析,研究揭示了大小形容词之间的语义关联程度,并基于社会距离和相对权力等因素构建了用于选择合适礼貌表达的量化模型研究成果为语言教学、自然语言处理以及跨文化交流提供了科学依据和实用参考。

g9h0i1的博客 82

AI军团协同作战:Manus Wide Research深度解析

你是否曾想过,当你在与AI对话时,它不再是一个单线程执行任务的“员工”,而是一个能随时为你召唤一支“AI军团”的“指挥官”?我是AIGC小火龙果,一个努力让AI不再高冷的产品顽童,主业是把复杂的AI技巧变成你一看就会的小把戏。当AI不再是单个的工具,而是一个可无限扩展的智能协作网络时,真正限制我们的,或许真的只剩下想象力了。这就是并行计算赋予AI的魔力。

berxtjkl的博客 1119

Wide and Deep 论文解读

摘要 包含非线性特征变换的广义线性模型广泛应用在有稀疏输入的大规模回归和分类问题。通过特征之间的交叉的特征交互的记忆力机制是有效且可解释的,然而模型泛化需要大量的特征工程工作。深度神经网络可以在较少的特征工程条件下,通过对稀疏特征的低维稠密表征,在不看到特征组合下, 达到较好的泛化效果。然而,当用户-物品交互数据较稀疏且高秩下,深度神经网络可能过拟合,并推荐一些不相关的物品。这篇研究中,我们提出wide & deep 模型,联合训练wide线性模型和深度神经网络,对于推荐系统来说,相当于结合了其记忆

Pain is inevitable but suffering is optional. 1766

Wide & Deep 推荐系统框架论文笔记

Wide & Deep Learning for Recommender Systems论文笔记 摘要 具有非线性特征变换的广义线性模型广泛应用于具有稀疏输入的大规模回归和分类问题。通过大量的跨产品特征转换来记忆特征交互是有效的和可解释的,而泛化则需要更多的特征工程工作。在特征工程较少的情况下,通过对稀疏特征的低维密集嵌入学习,深层神经网络可以更好地推广到不可见的特征组合。然而,当用户-项...

快秃头的女研究生一枚 456

Genome-wide association studies in R

全基因组关联(GWA)研究扫描整个物种基因组,寻找多达数百万个SNPs与特定感兴趣特征之间的关联。值得注意的是,感兴趣的性状实际上可以是归因于群体的任何类型的表型,无论是定性的(例如疾病状态)还是定量的(例如身高)。本质上,给定p个SNP和n个样本或个体,GWA分析将拟合p个独立的单变量线性模型,每个模型基于n个样本,使用每个SNP的基因型作为感兴趣特征的预测因子。每个P检验中的关联显著性(P值)由相应SNP的系数估计确定(从技术上讲,关联的显著性为)。

勇敢的人先享受世界 2336

多模态大语言模型arxiv论文略读(二十七)

然而,目前尚不清楚这些模型在交通领域的知识水平和执行交通相关任务的能力。随后,总结了当前MLLMs的状态,深入探讨了多模态指令调优的关键训练阶段,讨论了MLLMs在推理密集型任务中的应用,包括具身AI和工具使用。➡️ 研究动机:鉴于推理能力在MLLMs中的重要性和相关研究的快速发展,本文旨在全面回顾当前MLLMs的推理能力,提供深入的分析和讨论,以指导未来的研究方向。研究团队定义了感兴趣的推理能力,总结了现有的评估协议,分析了MLLMs在推理密集型任务中的应用,并讨论了当前实践和未来的发展方向。

Jamence的博客 1141

22、基于自然语言处理的诗学比较研究

本博客基于自然语言处理技术,采用词向量模型和层次聚类方法,对托马斯·哈代、王尔德、勃朗宁、叶芝和泰戈尔五位诗人的作品进行了诗学比较研究。通过高频词统计、词向量相似度计算和聚类分析,发现哈代、勃朗宁和王尔德的诗歌风格较为相似,而泰戈尔和叶芝的作品更为接近。研究还探讨了技术与文学融合的意义,指出自然语言处理为文学研究提供了新的客观视角,推动了文学研究的科学化和跨学科发展。此外,博客还提出了未来的研究方向,包括增加诗人样本、探索更高维度词向量、结合其他NLP技术以及开展动态研究等。

terraform7cloud的博客 114

Wide and Deep、DeepFM到DLRM,现代的推荐系统算法研究

深入研究Facebook和谷歌等公司建立业务的人工智能算法。 2019年5月,Facebook开放了他们的一些推荐方法,并引入了DLRM(深度学习推荐模型)。这篇文章旨在解释DLRM和其他现代推荐方法是如何以及为什么能够如此出色地工作的,通过研究它们是如何从该领域以前的结果中衍生出来的,详细解释它们的内部工作原理和思路。 基于AI的个性化广告已成为在线营销中的标准配置,而Facebook,Google,Amazon,Netflix等公司是在线营销之王,因为他们不仅采用了这种趋势,而且从根本上发明了这种趋势

deephub 5970

开源项目推荐:Wide-Context Semantic Image Extrapolation

开源项目推荐:Wide-Context Semantic Image Extrapolation 1. 项目基础介绍与主要编程语言 本项目是“Wide-Context Semantic Image Extrapolation”的Tensorflow实现,该研究论文在CVPR 2019上发表。项目通过扩展图像边界外的语义敏感对象(如人脸、身体)或场景,实现了图像的语义外推。主要编程语言为Python...

gitblog_00168的博客 419
上一篇: 常见的浏览器的历史,netscape,ie,opera,mozilla,firefox,safari
下一篇: Meteor的图形化设计器
yethyeth
博客等级 码龄21年 140粉丝 265原创
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值