10-21-2024, 09:49 PM
(10-19-2024, 08:21 PM)Dimster Wrote: Well Tempodi, seems Gossip IMP Nudity. Takes my Girl/Boy IMP Pink/Blue to a new level. Did you notice how many males in that video wore blue?
I liked that Wikipedia article as well. Seems to agree that IMP works better with numeric than normal language logic.
I gather you are not a fan of Gemini??
yeah (Gossip = true) IMP (Nudity = true) --> IsAGirl = ( (Girl = Pink) IMP (gender = Pink)) XOR IsABoy = ((Boy = Blue) IMP (gender = Blue))
here a simple example
Code: (Select All)
Rem demo getting gender from choosen color
pink = -1
Girl = pink
blue = 0
Boy = blue
Print "I'll say your gender if you answer correctly to the following question.."
Input "What color do you choose? pink/blue--> ", col$
col$ = LCase$(col$)
If col$ = "pink" Then
gender = -1
ElseIf col$ = "blue" Then
gender = 0
Else
Print " wrong input...quitting"
End
End If
IsAGirl = (Girl = pink) Imp (gender = pink)
IsABoy = ((Boy = blue) Imp (gender = blue))
Print "Gender Girl Boy"
Print gender, IsAGirl, IsABoy
If gender = 0 Then
Print " Boy ";
ElseIf gender = -1 Then
Print " Girl";
End If
If IsAGirl = 0 Then
Print " False ";
ElseIf IsAGirl = -1 Then
Print " True ";
End If
If IsABoy = 0 Then
Print " False "
ElseIf IsABoy = -1 Then
Print " True "
End If
please copy, paste, save and then run it.
About AI, I cannot say more about them because I haven't ever used them (Chatgpt, Gemini, Aria and others).
It is a sentiment and not a rational think my position for now. Thinking in general lines: AI is all you put into it and you can fall in the mistake of sillogism, a wrong hypothesis generates a wrong deduction.
This lead the thinking from Aristotele to Hume and then to Kant and Wittingstein, ending with Popper.
Who don't know the tell of the turkey?.
A coscient and thinking turkey was born in a farm, and day after day it get the truth that the farmer was a good man and he was loving it.
The rule got by deduction method was every day the sun goes up in the sky and the farmer loves it giving it food.
This rule was true for all the days of its life until the thanksgiving day!
Aristotele (Aristotle english)
Hume
Kant
Wittgenstein
Popper