ANALYZE {MoLE}R Documentation

Determine sentence constituents

Description

Decomposes an utterance into its constituents and their parts (e.g. verb and/or noun markers). All possible analyses are tried, the best is selected.

Usage

ANALYZE(hearerID, utterance, situation)

Arguments

hearerID

Pointer to hearer agent in the population

utterance

The utterance to be analyzed.

situation

The situation in which the utterance is uttered.

Details

Situation argument is necessary to determine which referential expressions have most likely been used. Suffix could be incorporated noun (l. 51-70), the rest could be a verb, a noun, a verb adposition, or noun adposition (l. 71-102) Nouns can have single suffix only (change once number is implemented; l. 92) Default interpretation is noun (cf. Heine & Kuteva) Analysis starts with identifying verb If verb can not be found by lexeme match, verb suffixes are used, if still unclear plausibility of alternative analysis is checked. Combinations of nouns with local person markers are penalized (to be removed if possessive marking is modelled), just like combinations of nouns with multiple markers (to be removed if case stacking is allowed)

Value

A data frame with the identified constituents and their analyses as entries.

Author(s)

Sander Lestrade

References

Heine, Bernd & Tania Kuteva (2007), The genesis of grammar. A reconstruction. Oxford: Oxford University Press.

See Also

INTERPRET

Examples

FOUND()
situation=SITUATION(1)
proposition=PROPOSITION(1, situation)
(utterance=PRODUCE(1, proposition))
ANALYZE(2, utterance, situation)

[Package MoLE version 1.0.1 Index]