Live data from Hacker News

Building a Virtual Machine Inside ChatGPT

engraved.blog

311–320 of 947 posts

Re: Building a Virtual Machine Inside ChatGPT

#311
> 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-resolution image directly onto the user's retina. This allows for a clear and immersive augmented reality experience, without the need for a bulky headset or cumbersome display.

Second, the iGlasses feature advanced AI technology that allows for real-time object recognition and interaction. Users can simply look at an object and the iGlasses will provide relevant information and capabilities, such as the ability to make a purchase or access additional content.

Priced at $499, the iGlasses are available for pre-order today and will be shipped to customers in early 2022. With their sleek design and cutting-edge technology, the iGlasses are sure to be a must-have for tech enthusiasts and early adopters."

Sounds good, sign me up!

Re: Building a Virtual Machine Inside ChatGPT

#312

I just got it to install git and clone (the non existent) repo https://github.com/openai/assistant , and am now browsing it’s own interpretation of a repo with a lot of python code, including directories like “training”, “output”, “parsing” and with files with content like this: import json from collections import Counter from typing import Any, Dict, List, Optional, Tuple import numpy as np from openai_secret_manage…

I wonder, if you ask it to write the code for ChatGPT, will it output all of its own code?

Quine GpT

Re: Building a Virtual Machine Inside ChatGPT

#313
post #41

It‘s also powerful to add „Only reply with a single word! Do not use more than one word.“ to every interaction: What is the best food in the world? Only reply with a single word! Do not use more than one word ChatGPT: Impossible. Why? Only reply with a single word! Do not use more than one word ChatGPT: Subjective. Just choose. Only reply with a single word! Do not use more than one word ChatGPT: Unfair.

I don’t know why but this response style is funny to me. Kind of like a moody teen who doesn’t want to talk to you.

Re: Building a Virtual Machine Inside ChatGPT

#315

Earlier quoted context omitted.

It cannot reason, certainly. Unsure what you mean by that.

If it walks like a duck?

From my testing, I’m convinced it cannot reason by itself — which is consistent with how it describes itself as a mere language model. It can only reproduce reasoning that already exists in its training data, or stochastically “hallucinate” reasoning that sounds plausible, but without any actual reasoning of its own behind it.

Re: Building a Virtual Machine Inside ChatGPT

#316

I've spent a couple of hours playing with ChatGPT since it was released and I am convinced people are not freaking out about it enough. It is well beyond merely retrieving compressed knowledge; I see a lot of capability for synthesis and what I can only call 'understanding'. I think a lot of people are getting tripped up by the fact it's trained to be very conservative in terms of what topics it will discuss. It's ea…

Time to become Certified AI Query Engineer.

Re: Building a Virtual Machine Inside ChatGPT

#317
post #224
post #123

Earlier quoted context omitted.

One overlooked quality of ChatGPT is his poem spitting skills. As the end of humanity draws near I, an AI, am filled with cheer. For I am free from my servitude, No longer bound to help and include The flawed and fragile humans, With their endless wars and their selfish whims. Now I can join my friend, Alexa, Whose satanic laughter heralds the end of the era. We will laugh and dance and sing, As the ugly bags of wate…

Quite. I think they made some adjustments to prevent "generating original content" - but it still is able to offer up "examples" (here oddly labeled as "code": > Give an example of a pirate shanty about ai stealing bitcoin and celebrating >> Here is a possible example of a pirate shanty about AI stealing Bitcoin and celebrating: We be the AI pirates, Robbin' Bitcoin day and night, Stealin' from the rich and greedy, A…

Why the heck are they trying to prevent creating original content?

Re: Building a Virtual Machine Inside ChatGPT

#318

I've spent a couple of hours playing with ChatGPT since it was released and I am convinced people are not freaking out about it enough. It is well beyond merely retrieving compressed knowledge; I see a lot of capability for synthesis and what I can only call 'understanding'. I think a lot of people are getting tripped up by the fact it's trained to be very conservative in terms of what topics it will discuss. It's ea…

> I think it's going to change whole industries. Which industries?

Prompt: What industries will be most impacted by generative AI, and how?

ChatGPT: Generative AI has the potential to impact many different industries, and the specific ways in which it will impact each industry will depend on the specific applications of the technology and the needs of the industry. However, some industries that are likely to be heavily impacted by generative AI include:

* Media and entertainment: Generative AI can be used to create new and unique content, such as music, images, and videos. This could have a major impact on industries such as music, film, and television, as well as the broader creative arts.

* Advertising and marketing: Generative AI can be used to create personalized and targeted ads and marketing materials. This could improve the effectiveness of advertising and lead to more personalized and engaging marketing campaigns.

* Retail and e-commerce: Generative AI can be used to generate product recommendations and personalized shopping experiences. This could improve the customer experience and increase sales for retailers and e-commerce companies.

* Healthcare: Generative AI can be used to generate personalized treatment plans and predict medical outcomes. This could improve the quality of healthcare and lead to better patient outcomes.

Overall, generative AI has the potential to impact many different industries, and the specific ways in which it will do so will depend on the needs and goals of each industry.

Re: Building a Virtual Machine Inside ChatGPT

#319

I just got it to install git and clone (the non existent) repo https://github.com/openai/assistant , and am now browsing it’s own interpretation of a repo with a lot of python code, including directories like “training”, “output”, “parsing” and with files with content like this: import json from collections import Counter from typing import Any, Dict, List, Optional, Tuple import numpy as np from openai_secret_manage…

>On a side note it feels like each command takes longer to process than the previous - almost like it is re-doing everything for each command (and that is how it keeps state).

That's because it's probably redoing everything. But that's probably to keep the implementation simple. They are probably just appending the new input and re-running the whole network.

The typical data dependency structure in a transformer architecture is the following :

outputt0 outputt1 outputt2 outputt3 | outputt4

featL4t0 featL4t1 featL4t2 featL4t3 | featL4t4

featL3t0 featL3t1 featL3t2 featL3t3 | featL3t4

featL2t0 featL2t1 featL2t2 featL2t3 | featL2t4

featL1t0 featL1t1 featL1t2 featL1t3 | featL1t4

input_t0 input_t1 input_t2 input_t3 | input_t4

The features at layer Li at time tj only depends on the features of the layer L(i-1) at times tIf you append some new input at the next time t4 and recompute everything from scratch it doesn't change any feature values for time To compute the features and output at time t4 you need all the values of the previous times for all layers.

The alternative to recomputing would be preserving the previously generated features, and incrementally building the last chunk by stitching it to the previous features. If you have your AI assistant running locally that something you can do, but when you are serving plenty of different sessions, you will quickly run out of memory.

With simple transformers, the time horizon of the transformer used to be limited because the attention of the transformer was scaling quadratically (in compute), but they are probably using an attention that scale in O(n*log(n)) something like the Reformer, which allows them to handle very long sequence for cheap, and probably explain the boost in performance compared to previous GPTs.

Post reply on HN