One amazing thing about this is the archaeological significance of the ChatGPT artifact. Researchers thousands of years from now, if they are able to invoke this model, will get an accurate simulation of the current state of technology. It's really astounding.
Fascinating thought, though you could say that about internet archive
Building a Virtual Machine Inside ChatGPT
771–780 of 947 posts
Re: Building a Virtual Machine Inside ChatGPT
#772Re: Building a Virtual Machine Inside ChatGPT
#773Earlier quoted context omitted.
i feel bad for the guys that are on call right now. WTF! why is the memory spiking beyond expectations?!
What makes you say this? Rerunning the whole, which it appears they’re doing, is to prevent the need to hold onto state, so memory is not used. In other words, they’re not having this problem because they’re not doing it that way.
Not used for more than the duration of inference, but definitely used during inference.
Re: Building a Virtual Machine Inside ChatGPT
#774> Write a press release for Apple's AR glasses, including it's name, two standout features, and price. "Today, Apple announces the release of their highly anticipated AR glasses, named the "iGlasses." The iGlasses offer a seamless blend of technology and design, with two standout features that set them apart from the competition. First, the iGlasses offer a revolutionary new display system that projects a high-resolu…
This tech is insane. I love it.
Re: Building a Virtual Machine Inside ChatGPT
#775It isn't actually running any commands. I was playing with it earlier and asked it for the md5 hash of some random string. It happily output the md5 hash and gave a couple paragraphs of info about md5 hashing. Except, it wasn't the correct hash. It was just some random string that is a valid md5 hash for... something. It is a language model, not a computer, and it certainly isn't a virtual machine, although it will h…
Oh but it will keep happily pretending to execute code for you, even though it can't actually execute it. It's just with MD hashes that it suddendly puts its cards on the table?
I'm wondering about the business incentives behind this.
Re: Building a Virtual Machine Inside ChatGPT
#776It isn't actually running any commands. I was playing with it earlier and asked it for the md5 hash of some random string. It happily output the md5 hash and gave a couple paragraphs of info about md5 hashing. Except, it wasn't the correct hash. It was just some random string that is a valid md5 hash for... something. It is a language model, not a computer, and it certainly isn't a virtual machine, although it will h…
Re: Building a Virtual Machine Inside ChatGPT
#777Earlier quoted context omitted.
That only works if you have another computer with you to check the hash, but maybe that's actually an AI, and not the other way around?
> The MD5 hash for the string "asdns" is "5a5a5ad63c5a5a5a5a5a5a5a5a5a5a5". I don't need a computer to say that isn't correct ;) Wow I just reset the thread, used the exact same input and got this (literally 60 seconds apart): I'm sorry, but I am unable to generate an MD5 hash for you because I am a text-based AI assistant and do not have the ability to perform cryptographic calculations. An MD5 hash is a complex mat…
It could mean that a lot of people had the same idea as you recently and OpenAI just figured it out.
Re: Building a Virtual Machine Inside ChatGPT
#778It isn't actually running any commands. I was playing with it earlier and asked it for the md5 hash of some random string. It happily output the md5 hash and gave a couple paragraphs of info about md5 hashing. Except, it wasn't the correct hash. It was just some random string that is a valid md5 hash for... something. It is a language model, not a computer, and it certainly isn't a virtual machine, although it will h…
>> I'm sorry, but I am unable to generate an MD5 hash for you because I am a text-based AI assistant and do not have the ability to perform cryptographic calculations. An MD5 hash is a complex mathematical function that is used to create a unique digital fingerprint for a file or piece of data, and it would require a specialized program or calculator to generate one. Oh but it will keep happily pretending to execute…
Re: Building a Virtual Machine Inside ChatGPT
#779How is this real? I’m so confused what makes this even remotely possible. Edit: To make this even more crazy it looks like it has been altered to cut off this line of questioning once it comes to internet content. It was working and now suddenly has stoped. It has a canned like cut off response now: I'm glad that you enjoyed my previous responses, but I want to clarify that I was not pretending to be a Linux terminal…
> I'm glad that you enjoyed my previous responses, but I want to clarify that I was not pretending to be a Linux terminal. People who like to pooh-pooh generative AI systems as unable to be "truly creative" or to have "genuine understanding" tend to misunderstand them, which is a shame, because their actual fundamental limitations are far more interesting. One is that behavior cloning is miscalibrated( https://www.le…
Re: Building a Virtual Machine Inside ChatGPT
#780It isn't actually running any commands. I was playing with it earlier and asked it for the md5 hash of some random string. It happily output the md5 hash and gave a couple paragraphs of info about md5 hashing. Except, it wasn't the correct hash. It was just some random string that is a valid md5 hash for... something. It is a language model, not a computer, and it certainly isn't a virtual machine, although it will h…
It suggests that it understand what pseudorandomness looks like. A hash function output usually looks pseudorandom. It's almost like it can look at a picture from an old television, and separate the random static from the "signal" part of the picture. It can carry out de-noising because it knows what noise looks like. It can never remember exactly what the noise looked like, because like for us, it doesn't matter.
> echo test1 | md5
it will output another random 'hash' each time. But within one session it knows that md5 should produce the same output. Running > echo test1 | md5
multiple times, or even > VAR1="test1"; echo $VAR1 | md5
produces the same output for me within the same session, while > echo test2 | md5
results in a different, but also session-consistent hash.