isi-vista / cdse-covid

Claim detection & semantic extraction (Covid-19 domain)
0 stars 0 forks source link

Investigate Claim Detection via Alignment of AMR Parses #17

Open joecummings opened 2 years ago

joecummings commented 2 years ago

Idea:

Pros:

Cons:

joecummings commented 2 years ago

Several possible notions of "similarity":

elizlee commented 2 years ago

So far I have tried two methods:

joecummings commented 2 years ago

@elizlee Just for context, can you say what the example docs are and how many of the claims they detect over the total number of expected claims?

elizlee commented 2 years ago

Looking at one doc made up of 27 COVID-related claims, 23 of which fall in the template categories,

joecummings commented 2 years ago

Diving deeper into this, what are the three claims in the template categories that we miss? Why are we missing them? @elizlee

elizlee commented 2 years ago
  1. "coronavirus is a targeted biological weapon" i. Not sure why this one wasn't because I've seen it before...
  2. "weed is a cure for coronavirus" ii. It doesn't quite match the "X cures COVID-19" pattern
  3. "No evidence exists to support taking vitamin D supplements to prevent Covid-19" iii. While the claim here would be "taking vitamin D supplements prevents Covid-19," in the sentence this has a different structure from "X prevents COVID-19"
joecummings commented 2 years ago

What does the AMR parse look like between "Weed is a cure for coronavirus" and "X cures coronavirus"?

elizlee commented 2 years ago

The portion of the sentence graph with the claim:

:ARG1 (c2 / cure-01
            :ARG1 (c3 / coronavirus)
            :ARG2 (w / weed)
            :example (c4 / cannabis)))

The "X cures COVID-19" graph:

(c / cure-01
      :ARG0 (s / something)
      :ARG1 (p / person
            :name (n / name
                  :op1 "COVID-19")))

The PB argument roles for cure-01 are supposed to be:

ARG0: doctor (etc)
ARG1: patient
ARG2: illness or injury
ARG3: instrument, treatment

So actually, both have their arguments in the wrong slots. (Though, I can see why an "X cures Y" structure would make it think that Y is the "patient" and not the disease)