-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
coordinated modal ellipsis with wh argument #240
Comments
There is an instance of this in the LDC corpus, where they seem to follow Option B: "Not knowing how much profit is in there, not caring who can afford it and who can't, these do not seem to be the principles of socialism."
I just wasn't sure if this was following some guidelines or an individual annotator decision. |
Is something like what is below possible? The “affording” refers to the same hypothetical event, but the participant is different.
Lucia
Option C:
(a / and
:op1 (p / possible-01
:ARG1 (a2 / afford-01
:ARG0 (a3 / amr-unknown)
:ARG1 (i2 / it)))
:op2 (p2 / possible-01 :polarity -
:ARG1 a2
:ARG0 (a5 / amr-unknown)
:ARG1 i2)))
From: Nathan Schneider <[email protected]>
Reply-To: amrisi/amr-guidelines <[email protected]>
Date: Thursday, 4. July 2019 at 16:33
To: amrisi/amr-guidelines <[email protected]>
Cc: Subscribed <[email protected]>
Subject: [amrisi/amr-guidelines] coordinated modal ellipsis with wh argument (#240)
Option A:
(a / and
:op1 (p / possible-01
:ARG1 (a2 / afford-01
:ARG0 (a3 / amr-unknown)
:ARG1 (i2 / it)))
:op2 (p2 / possible-01 :polarity -
:ARG1 a2))
Option B:
(a / and
:op1 (p / possible-01
:ARG1 (a2 / afford-01
:ARG0 (a3 / amr-unknown)
:ARG1 (i2 / it)))
:op2 (p2 / possible-01 :polarity -
:ARG1 (a4 / afford-01
:ARG0 (a5 / amr-unknown)
:ARG1 i2)))
|
No, since each variable refers to a unique node in the graph, in Penman notation it doesn't make sense to repeat a variable with different things underneath. |
Ah, correct. I don't think AMR uses the able-01 frame from Propbank (
http://verbs.colorado.edu/propbank/framesets-english-aliases/able.html),
but this sentence seems to read more like the following to me than the
other options:
(a / and
:op1 (a / able-01
:ARG1 (a2 / amr-unknown
:ARG2 (a3 / afford-01
:ARG1 (i / it)))
:op2 (a4 / able-01 :polarity -
:ARG1 (a5 / air-unknown)
:ARG2 a3))
Lucia Donatelli
http://luciadonatelli.georgetown.domains/
…On Thu, Jul 4, 2019 at 5:46 PM Nathan Schneider ***@***.***> wrote:
Option C:
(a / and
:op1 (p / possible-01
:ARG1 (a2 / afford-01
:ARG0 (a3 / amr-unknown)
:ARG1 (i2 / it)))
:op2 (p2 / possible-01 :polarity -
:ARG1 a2
:ARG0 (a5 / amr-unknown)
:ARG1 i2)))
No, since each variable refers to a unique node in the graph, in Penman
notation it doesn't make sense to repeat a variable with different things
underneath.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#240?email_source=notifications&email_token=AGGDFSFS3EDVBDHH57PC6HDP5YLO7A5CNFSM4H53UKU2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZHXNLQ#issuecomment-508524206>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AGGDFSGYFPV7FMYO7RAQP2LP5YLO7ANCNFSM4H53UKUQ>
.
|
Correct. And if it did, the ARG1 of able-01 would probably be marked as coreferent with the ARG0 of afford-01 (as a case of control), so we'd face the same problem of whether to duplicate afford-01. |
@mdtux89 raises this interesting example: "Who can afford it and who can't?"
Option A:
Option B:
The rationale for Option B is that the two "who"s refer to distinct sets of people, the haves and the have-nots, so perhaps this should be explicit with separate
amr-unknown
s.A similar rationale would apply if the modals are removed, e.g. "Who likes fish and who doesn't?". Except then it is clearer that the main event ("likes") needs to be duplicated in order to host the negation in the second instance.
The text was updated successfully, but these errors were encountered: