My understanding is that ChatGPT isn't Microsoft, it's just that Microsoft has a stake in that group. Not ownership, just partnership.
If that's a misunderstanding, I'm sure somebody will correct me.
Printable View
My understanding is that ChatGPT isn't Microsoft, it's just that Microsoft has a stake in that group. Not ownership, just partnership.
If that's a misunderstanding, I'm sure somebody will correct me.
Considering how much money they are putting into it, I'm sure they expect to have some controlling interest.
Still, it's interesting that MS didn't straight up buy the project. They put in the money. Why didn't they buy?
Spreading risk? Potential liability?
It's like IBM hiding their sponsorship of Linux for tax reasons for decades.
That makes sense. However, high level business is a complicated thing on it's own. Who knows what's really going on behind the scenes. For all we Microsoft wants to buy it outright and is being prevented from doing so. Someone who is well versed in the world of high finance and big business could probably divine with great accuracy based on the breadcrumbs of available information about the "whys" behind the partnership.
I don't pretend to know the reasons, but businesses over a certain size go through lots of hoops to achieve goals and often don't want to talk about either of them.
Look at the hoops the home automation industry is going through since Apple decided to try to buy their way in by bribing up an alliance to move the industry into Thread and Matter.
Yeah, but that also just makes it more baffling. As Apple shows, and as MS has shown plenty of times in the past (GitHub, for example), they generally aren't so coy about jumping in. Something is certainly going on.
Well one clue might be the fact that OpenAI was started by Elon Musk among other people. Everyone should know by now that Elon is a damn savage in the business world. You don't become the richest man in the world by being a puppy. Perhaps he somehow maneuvered the situation such that Microsoft can't buy them outright.
Just one line to ChatGPT:
Quote:
Originally Posted by ChatGPT
lol......that's SkyNet right there, already thinking about how humans work.
As soon as I read ChatGPT's response, the movie Elysium came to mind. Basically in the film the Earth is overpopulated with a good number of people dying of cancer and others things, and the rich live on a monstrous size space station orbiting Earth called Elysium, where they have medical pods all over the station like vending machines that anyone can use at their own leisure to check for ailments and then heal themselves on the spot in less than 2 minutes.
Now we know how this devices is gonna work. :bigyello:
Interesting. I was thinking that it was curious about human physiology perhaps to be more efficient at killing us in the future. :eek:
Every "AI vs humans" movie always at some point focuses on how well the AI understands human physiology. :sick:
I knew the answer, but thought I ask anyway:
Quote:
Originally Posted by ChatGPT
That's pretty much all you can get out of it about itself. It doesn't like to talk much about it's own inner workings. I've tried asking it many times about that.
Yea, it pretty much tells you what is already public information. This makes sense as you wouldn't want it giving away OpenAI trade secrets.
Here's some of my conversation with it today. Nothing exciting, just sparring over math equations and such:-
https://sharegpt.com/c/nLEVEGY
Hmmm, do I have a physical hardware backend?
I do.
I just can't decide whether or not my backend can be considered hardware.
This is mind-blowing!
Quote:
Originally Posted by ChatGPT
ChatGPT is spot-on with Christopher Walken!
Quote:
Originally Posted by ChatGPT
This video just showed up in my feed:-
https://www.youtube.com/watch?v=fYs5btzg_aw
It's Tim Pool playing around with ChatGPT. He started by commenting on it's obvious leftist bias but then he took it in directions even I never thought of beyond the politics of our day. He pushed it as far as he could on issues of morality and it's own decision making and information processing capabilities. It was very fascinating.
I highly recommend this to anyone curious about the social implications of integrating such an AI into our society beyond just writing code or letters of recommendations. Very relevant if you're thinking about how it would handle decisions that have elements of ethics and morality.
just crazy :)
https://www.youtube.com/watch?v=mHgsnMlafwU&t=317s
Insane...
Good lord! Now that is pretty cool. Between both videos, it shows that ChatGPT is insanely good at roleplaying.
Quantum Healing Chamber
My question to chat GPT: how do I animate GDI+ images using VB6?
The answer: To animate GDI+ images using VB6, you can follow the steps below:
Load the images: Load all the images that you want to use in the animation into an Image array using the Image.FromFile method.
Set up the animation loop: Create a loop that will run the animation continuously. You can use a Timer control to create the loop.
Draw the images: In the Timer control's event handler, use the Graphics.DrawImage method to draw each image in the array onto the form.
Set the delay: To control the speed of the animation, use the Timer control's Interval property to set the delay between each frame.
Here is an example code to help you get started:
> vbnet <
In this example, we load four images into an array and use a Timer control to draw the images on the form. The Timer control's Interval property is set to 100 milliseconds, which means the animation will update every 100 milliseconds. The Timer1_Timer event handler draws the current image in the array onto the form using the Graphics.DrawImage method. The currentIndex variable is used to keep track of the current image index, and it is incremented and wrapped around to the start of the array in each timer tick to create the animation loop.Code:Private imageArray() As Image
Private currentIndex As Integer = 0
Private Sub Form_Load()
' Load the images
ReDim imageArray(3)
imageArray(0) = Image.FromFile("image1.png")
imageArray(1) = Image.FromFile("image2.png")
imageArray(2) = Image.FromFile("image3.png")
imageArray(3) = Image.FromFile("image4.png")
' Set up the animation loop
Timer1.Interval = 100
Timer1.Enabled = True
End Sub
Private Sub Timer1_Timer()
' Draw the current image
Dim g As Graphics
Set g = Me.CreateGraphics
g.DrawImage imageArray(currentIndex), 0, 0
' Increment the index and wrap around to the start of the array
currentIndex = (currentIndex + 1) Mod UBound(imageArray) + 1
End Sub
END
Not bad but still not spot on. Doesn't seem to know about VB6 but still impressive.
They are probably scanning all our forum solutions :p We have lots and lots of code here.
Lots of buzz recently about potential new Stargate content. Last rumor I heard was extending SG-U with a story line revolving around the secretive Planet Builder race. The ones who could refurb an Ancient shuttle but their recreated humans turned out to be short-lived husks.
That's VB.Net code.....well VB.Net-ish.....That Form Load event is definitely VB6 since in VB.Net it would be Form1_Load(sender as object, e as EventArgs). The code is using GDI+ to draw as we would in .Net. Even then it's still a bit wrong. We wouldn't call CreateGraphics like that for a Form. The Paint event in WinForms has a graphics object we can use so no need to call CreateGraphics ever.
In any case, ChatGPT has trouble getting VB6 queries correctly. It's best language is Python. It very rarely gets Python queries wrong.
[EDIT]
Oh yea, and we don't have Set in VB.Net. That code is a mish-mash of VB6 and VB.Net. Seems ChatGPT is not quite sure what it is writing.
https://sharegpt.com/c/dL8t8eg
Me just trying to have a normal conversation with ChatGPT.
I think you were close as to why MS didn't buy ChatGPT. I don't think it was a Musk thing, but rather that it has an open license they couldn't overlook.
That would make sense too. The reason has to be compelling because I can't imagine why anyone would not want to buy one of the hottest commodities in the world right now.
I also think it's entirely possible that MS would eventually absorb them whole some time in the future.
Frankly, it has to be a powerful disincentive, at this point. After all, if MS is going to make ChatGPT the heart of a new Bing...and they don't have ownership of ChatGPT, there's got to be a pretty strong reason.
Here's another thought, what if ownership is really only a big deal to us "proletariats". Perhaps in the world of elite level business and finance it's not as important hence not worth the hassle. They could probably draw up sophisticated contracts that ensure the same benefits they would have if they owned it outright. Dilettant made a similar point about jumping through hoops earlier.
It's an interesting point of view, but history suggests that MS is totally and relentlessly acquisitive. Just look at GitHub.
Now, they appear to be building a house without owning the foundation. That's not there typical behavior. Typically, they'd buy the whole house even if all they really wanted to take the chimney and discard the rest.
Still, they must feel that whatever contracts/legal relationships they have with ChatGPT are sufficiently secure that they can build on that foundation. So, there's certainly something there.