@[email protected] to [email protected] • 8 months agoAsk ChatGPT to pick a number between 1 and 100jlai.lumessage-square126fedilinkarrow-up1429
arrow-up1429imageAsk ChatGPT to pick a number between 1 and 100jlai.lu@[email protected] to [email protected] • 8 months agomessage-square126fedilink
minus-squareRooklinkfedilink17•8 months agoWhich model? When I tried on ChatGPT 4, it wrote a short python script and executed it to get a random integer. import random # Pick a random number between 1 and 100 random_number = random.randint(1, 100) random_number
minus-square@[email protected]linkfedilink7•8 months agodoes the neural network actually run scripts or is it pretending
minus-squareAmju WolflinkfedilinkEnglish10•8 months agoIt generates code and then you can use a call to some runtime execution API to run that code, completely separate from the neural network.
minus-square@[email protected]linkfedilink2•7 months agoThat’s not answering the question though. “Pick a number between 1 and 100” doesn’t mean “grab two d10” or write a script.
Which model?
When I tried on ChatGPT 4, it wrote a short python script and executed it to get a random integer.
import random # Pick a random number between 1 and 100 random_number = random.randint(1, 100) random_number
does the neural network actually run scripts or is it pretending
It generates code and then you can use a call to some runtime execution API to run that code, completely separate from the neural network.
That’s not answering the question though.
“Pick a number between 1 and 100” doesn’t mean “grab two d10” or write a script.