Sujet : Re: Wrong ideas about chatbots
De : ram (at) *nospam* zedat.fu-berlin.de (Stefan Ram)
Groupes : comp.miscDate : 08. Jun 2025, 13:51:07
Autres entêtes
Organisation : Stefan Ram
Message-ID : <chatbot-20250608135034@ram.dialup.fu-berlin.de>
References : 1
ram@zedat.fu-berlin.de (Stefan Ram) wrote or quoted:
Parsing: the cat eats
Result: ACCEPT
I asked the chatbot to modify the program to also output the
meaning in both a Python-like notation and with an image.
Input: the dog eats
Result: ACCEPT
Meaning: eats(one(dog))
/^ ^\
/ 0 0 \
/ Y \
~~~~~
V\ - /V
/ \
| |
(__V__)
----------------------------------------
Input: the dogs eat
Result: ACCEPT
Meaning: eat(morethanone(dog))
/^ ^\ /^ ^\
/ 0 0 \ / 0 0 \
/ Y \ / Y \
~~~~~ ~~~~~
V\ - /VV\ - /V
/ \ / \
| | | |
(__V__) (__V__)
----------------------------------------
Input: the cat eats
Result: ACCEPT
Meaning: eats(one(cat))
/\_/\
( o.o )
> ^ <
~~~~~
----------------------------------------
Input: the cats eat
Result: ACCEPT
Meaning: eat(morethanone(cat))
/\_/\ /\_/\
( o.o ) ( o.o )
> ^ < > ^ <
~~~~~ ~~~~~
----------------------------------------
Input: the cat and the dog eat
Result: ACCEPT
Meaning: eat(and_(one(cat), one(dog)))
/\_/\
( o.o )
> ^ <
~~~~~
/^ ^\
/ 0 0 \
/ Y \
~~~~~
V\ - /V
/ \
| |
(__V__)
----------------------------------------
Input: the cat and the dogs eat
Result: ACCEPT
Meaning: eat(and_(one(cat), morethanone(dog)))
/\_/\
( o.o )
> ^ <
~~~~~
/^ ^\ /^ ^\
/ 0 0 \ / 0 0 \
/ Y \ / Y \
~~~~~ ~~~~~
V\ - /VV\ - /V
/ \ / \
| | | |
(__V__) (__V__)
----------------------------------------
Input: the dog and eat
Result: REJECT
----------------------------------------
Input: cat eats
Result: REJECT
----------------------------------------
Input: the cats eats
Result: REJECT
----------------------------------------
Input: the dog and the cat eats
Result: REJECT
----------------------------------------