story_id
int64 1
486
| premises
stringlengths 41
1.12k
| premises-FOL
stringlengths 41
1.43k
| conclusion
stringlengths 12
378
| conclusion-FOL
stringlengths 8
340
| label
stringclasses 3
values | example_id
int64 3
1.43k
|
---|---|---|---|---|---|---|
136 | Phoneix's music is classified under the indie pop genre.
Phoenix is a band from France.
French bands write songs in French or in English.
Aside from indie pop, pop rock and synth-pop are two other genres of music.
Phoenix has no songs in French. | IndiePop(phoenix)
Band(phoenix) ∧ From(phoenix, france)
∀x ∃y (Band(x) ∧ From(x, france) ∧ Write(x, y) ∧ Song(y) → InFrench(y) ⊕ InEnglish(y))
∀x (IndiePop(x) → ¬PopRock(x) ∧ ¬SynthPop(x))
∀x (Song(x) ∧ By(phoenix, x) → ¬InFrench(x)) | Phoenix writes songs in French. | ∃x (Write(phoenix, y) ∧ Song(x) → InFrench(x)) | False | 401 |