intentionally this goes to Meditation and not to "Seekers".
As we all know (or at least as Fatvamp thinks :-)) a simple
if clause does the magic of implication:
Now for the application I´m doing right now (some NLP justIF <ANALYZE> -> <GENERATE>
Consider the german language. A simple subset of rules
could be:
andWord (male, singular) <-> Word + Suffix "in" (female,singular)
So now, consider those words: Ägypter (Egyptian), ÄgypterinWord (female, singular) <-> Word + Suffix "en" (female, plural)
The only alternative I see at the moment is to have 4 IF
tests instead of those 2 rules. And there is much redundancy
in them. And I´m so lazy. :-) And because I´m so lazy, I state
that the 4 IF solution is unelegant.
IF Word (male, singular) -> Word + Suffix "in" (female,singular)
IF Word + Suffix "in" (female,singular) -> Word (male, singular)
IF Word (female, singular) -> Word + Suffix "en" (female, plural)
It really is. Don´t you think? Any thoughts on this?IF Word + Suffix "en" (female, plural) -> Word (female, singular)
Ciao
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Implication is not enough
by tadman (Prior) on Jul 30, 2001 at 07:35 UTC | |
by tadman (Prior) on Jul 30, 2001 at 17:32 UTC | |
by PetaMem (Priest) on Jul 30, 2001 at 17:21 UTC |