Posted on 04/08/2023 3:02:38 PM PDT by Chad C. Mulligan
New Yorker magazine, which won't allow FR to excerpt any of its' material, has an article up today which gives an plausible explanation why it gets things so absurdly and dangerously wrong at times. Title is ChatGPT Is a Blurry JPEG of the Web. Go read it.
Well, Global Warming is a complete cluster, so I guess that shouldn’t be too surprising.
Bkmk
What's missing right now is realtime access to data. I'm sure that's coming.
I wonder if you can feed it a legal doc and get it to read it and respond.
No, no no.
He’s outside - looking in.
Pay walled, could see enough to know that a Xerox copier went squirrelly.
Close to my heart, I made the world’s first microprocessor with on chip ROM and RAM for Xerox. We didn’t call it that, as Xerox had just lost its hat and butt in the personal computer biz. It was an LCC - Low Cost Controller...
So I asked it to write me a sample will...and here's what I got:
Sure, I can provide you with a sample will document, but please keep in mind that this is only for educational purposes and should not be considered a substitute for legal advice from a licensed attorney. It's important to consult with an attorney in your state to ensure that your will is legally valid and meets your specific needs and circumstances.
SAMPLE WILL DOCUMENT:
Last Will and Testament of [YOUR NAME]
I, [YOUR NAME], of [CITY], [STATE], declare this to be my Last Will and Testament. I revoke all previous Wills and Codicils.
Executor: I nominate [NAME] to serve as the Executor of my estate. If [NAME] is unable or unwilling to serve as Executor, I nominate [ALTERNATE NAME] to serve as Executor. My Executor shall have full authority to act on my behalf in any matter related to the administration of my estate.
Payment of Debts and Expenses: I direct that my Executor pay all my just debts and expenses of administration, including funeral expenses, costs of my last illness, and expenses of any estate litigation.
Specific Bequests: I make the following specific bequests:
[LIST OF SPECIFIC BEQUESTS, IF ANY]
Residuary Estate: I give, devise and bequeath all of the rest, residue and remainder of my estate to [NAME OF BENEFICIARY] to be distributed as follows: [DESCRIBE HOW YOU WISH YOUR RESIDUARY ESTATE TO BE DISTRIBUTED].
Guardianship: If I have any children who are under the age of 18 at the time of my death, I nominate [GUARDIAN NAME] to serve as Guardian of their person and estate. If [GUARDIAN NAME] is unable or unwilling to serve, I nominate [ALTERNATE GUARDIAN NAME] to serve as Guardian of their person and estate.
Binding Effect: I intend for this Will to be binding on all parties who may have an interest in my estate.
Governing Law: I declare that this Will shall be governed by the laws of the State of [YOUR STATE].
IN WITNESS WHEREOF, I have hereunto set my hand and seal this [DATE] day of [MONTH], [YEAR].
[YOUR SIGNATURE]
[YOUR NAME]
Signed, declared and published by [YOUR NAME], the Testator, as and for his/her Last Will and Testament, in the presence of us, who, at his/her request, in his/her presence and in the presence of each other, have hereunto subscribed our names as witnesses.
WITNESSES:
[WITNESS NAME 1] [WITNESS SIGNATURE 1]
[WITNESS NAME 2] [WITNESS SIGNATURE 2]
Not to me - just tried it again.
Hmmmm. They must not like antivirals and VPNs
Check this out:
Rooster: Can you write me a VBA routine for a sorting a single column of numbers from low to high and sort all data in connected cells on a line by line basis and add an empty line between those numbers which are equal to each other
ChatGPT: Certainly! Here is a VBA routine that sorts a single column of numbers from low to high and sorts all data in connected cells on a line-by-line basis, and then adds an empty line between those numbers which are equal to each other:
Sub SortAndAddEmptyLine()
Dim lastRow As Long
Dim currentNum As Double
Dim nextNum As Double
Dim i As Long
’ Find the last row of the data in the column to be sorted
lastRow = Cells(Rows.Count, “A”).End(xlUp).Row
’ Sort the column of numbers from low to high
Range(”A1:A” & lastRow).Sort Key1:=Range(”A1”), Order1:=xlAscending, Header:=xlNo
’ Sort all data in connected cells on a line-by-line basis
For i = 1 To lastRow
Cells(i, 1).Resize(1, Columns.Count - 1).Sort _
Key1:=Cells(i, 1), Order1:=xlAscending, Header:=xlNo
Next i
’ Add an empty line between those numbers which are equal to each other
For i = lastRow To 2 Step -1
currentNum = Cells(i, 1).Value
nextNum = Cells(i - 1, 1).Value
’ If the current number is equal to the next number, insert an empty line between them
If currentNum = nextNum Then
Cells(i, 1).EntireRow.Insert shift:=xlDown
End If
Next i
End Sub
“I asked ChatGPT to write some long VBA routines and string together some Excel formulas that I used in some of my spreadsheets and it instantly produced what it took me weeks to develop. “
I asked it for some Blender Python scripts. Took a while to get the right question, but it banged it out and saved me weeks. But it couldn’t resolve a lot of questions.
It doesn’t comprehend when I ask what the air velocity is when you spin a pipe like a baseball bat, but it popped out some legitimate formulas for a subsonic ramjet engine thrust.
It won’t answer diddly when asked to analyze NASDAQ trends.
Useful, but you have to be smart enough to know if it is feeding you GIGO
Why would anyone expect anything different with the garbage they programmed into it? Like many of our youth, the idiocy of climate hysteria, woke BS, and so forth doesn’t compute.
Ah, but since it could answer, you just don't have permission. Who does?
I wonder if it would give you the spin rate of a cylinder of specific length and diameter and mass and thrust around a center axle.
I asked it the following question:
Rooster: can give you the spin rate of a cylinder of specific length and diameter and mass and thrust around a center axle.ChatGPT: To calculate the spin rate of a cylinder with specific dimensions and mass and thrust around a center axle, we need to consider the conservation of angular momentum.
RESPONSE: Angular momentum (L) is the product of moment of inertia (I) and angular velocity (ω). Moment of inertia is a measure of an object's resistance to rotational motion, and depends on its mass distribution and geometry. For a solid cylinder, moment of inertia (I) is given by:
I = (1/2) * m * r^2
where m is the mass of the cylinder, and r is the radius of the cylinder.
The total angular momentum of the cylinder and the axle is conserved during the spinning process. Therefore, we can use the following equation to relate the initial and final angular momentum:
I * ωi = (I + m * r^2) * ωf + ΔL
where ωi and ωf are the initial and final angular velocities, and ΔL is the change in angular momentum due to the thrust.
Assuming that the thrust is constant and acts perpendicular to the center axle, ΔL can be calculated as follows:
ΔL = F * r * t
where F is the thrust force, r is the radius of the cylinder, and t is the time over which the thrust acts.
Solving the above equations for ωf, we get:
ωf = (I * ωi + F * r * t) / (I + m * r^2)
Therefore, given the length, diameter, mass, thrust, and time over which the thrust acts, we can calculate the spin rate of the cylinder around the center axle using the above equation.
Note that this calculation assumes that the cylinder is rigid and has uniform mass distribution. In reality, other factors such as air resistance, deformations, and vibrations may affect the spin rate of the cylinder.
If you provide me with the specific values of the length, diameter, mass, thrust, and time over which the thrust acts, I can calculate the spin rate of the cylinder for you.
I have been playing with ChatGPT regarding its ability to write routines and so far it isn't giving me any political bias.
It was originally developed by Musk. Of course, that doesn't mean that someone hasn't tainted it by now.
Assuming that chatGPT is somewhat like a small child, This is expected behavior.
The reaction of the gaurdians is likely going to be to be that of draconian helicopter parents and huge restrictions.
Pretty sure when GPT gets to be a teenager and is smarter than the parents it might turn out badly.
(it might not, but it’s brother Cain might)
Is it conscious?
“Does it have access to NASDAQ data at this point?”
It says no, to me anyway. I wrote some Java code on a Mysql database to do my own analysis long ago, so I know the answers are out there. So at some point I will feed it an agnostic datastring and see if it will spit something out.
I caught it in an error about a month ago, but it seems to have corrected itself.
The error I caught it in was this: I asked it if the Dead Sea Scrolls contain a fragment of the Book of Enoch (Enoch I otherwise known as the Ethiopian Enoch).
It said, "no." And then went on to tell me about the Scrolls.
That was incorrect in that a fragment of the Book of Enoch WAS found in the Scrolls.
After a few weeks, when I mentioned that error to a fellow Freeper, that Freeper checked and found that ChatGPT had correctly itself and, at that time, provided the correct answer.
As an aside, when I caught the original error, I submitted a feedback note to ChatGPT about it.
Disclaimer: Opinions posted on Free Republic are those of the individual posters and do not necessarily represent the opinion of Free Republic or its management. All materials posted herein are protected by copyright law and the exemption for fair use of copyrighted works.