Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

"A car is just a big purse on wheels." -- Johanna Reynolds


devel / comp.lang.ada / ChatGPT

SubjectAuthor
* ChatGPTAnatoly Chernyshev
+* Re: ChatGPTJerry
|`- Re: ChatGPTHou Van Boere
`* Re: ChatGPTJeffrey R.Carter
 `* Re: ChatGPTDmitry A. Kazakov
  +- Re: ChatGPTmagardner2010
  `* Re: ChatGPTAnatoly Chernyshev
   `* Re: ChatGPTDmitry A. Kazakov
    `- Re: ChatGPTKen Burtch

1
ChatGPT

<3db3c046-bbcf-497b-afd5-ac6c2b9567afn@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=9429&group=comp.lang.ada#9429

  copy link   Newsgroups: comp.lang.ada
X-Received: by 2002:a05:622a:24e:b0:3df:9e4:36c6 with SMTP id c14-20020a05622a024e00b003df09e436c6mr9190662qtx.3.1680212984002;
Thu, 30 Mar 2023 14:49:44 -0700 (PDT)
X-Received: by 2002:a81:a805:0:b0:546:6ef:8baf with SMTP id
f5-20020a81a805000000b0054606ef8bafmr6874024ywh.2.1680212983670; Thu, 30 Mar
2023 14:49:43 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.ada
Date: Thu, 30 Mar 2023 14:49:43 -0700 (PDT)
Injection-Info: google-groups.googlegroups.com; posting-host=118.93.181.209; posting-account=g6PEmwoAAADhFsmVm6Epjviaw4MLU0b5
NNTP-Posting-Host: 118.93.181.209
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <3db3c046-bbcf-497b-afd5-ac6c2b9567afn@googlegroups.com>
Subject: ChatGPT
From: achernyshev@gmail.com (Anatoly Chernyshev)
Injection-Date: Thu, 30 Mar 2023 21:49:43 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
 by: Anatoly Chernyshev - Thu, 30 Mar 2023 21:49 UTC

Just had an exercise with ChatGPT for Ada.

Here is what my request was: "Produce Ada code for solving a quadratic equation."

And here's the output from ChatGPT (quite flawless forgiving the absence of a math lib in the header):
----------------------------
with Ada.Text_IO; use Ada.Text_IO;

procedure Quadratic_Equation is
A, B, C, D : Float;
X1, X2 : Float;
begin
-- read coefficients A, B, and C from the user
Put("Enter coefficient A: ");
Get(A);

Put("Enter coefficient B: ");
Get(B);

Put("Enter coefficient C: ");
Get(C);

-- calculate the discriminant
D := B*B - 4.0*A*C;

-- check if the discriminant is negative
if D < 0.0 then
Put_Line("No real roots exist.");
else
-- calculate the roots
X1 := (-B + Sqrt(D)) / (2.0*A);
X2 := (-B - Sqrt(D)) / (2.0*A);

-- output the roots
Put_Line("Root 1 = " & Float'Image(X1));
Put_Line("Root 2 = " & Float'Image(X2));
end if;
end Quadratic_Equation;

and an extra remark:

Note that this implementation assumes that the discriminant (B^2 - 4AC) is positive or zero. If the discriminant is negative, then no real roots exist..
-----------------------------------------------

Before crying wolf, my impression is that ChatGPT might be useful for drafting simple pieces of code (say, homeworks). Very soon though one will arrive at a situation when the amount of efforts to explain the task to ChatGPT will be the same as to write the code yourself (I shall call it a limiting Kolmogorov complexity).

What do you think?

Re: ChatGPT

<92e2af87-1469-4f2a-8893-f7b31f0d444cn@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=9430&group=comp.lang.ada#9430

  copy link   Newsgroups: comp.lang.ada
X-Received: by 2002:a05:620a:1914:b0:743:82f9:cc0d with SMTP id bj20-20020a05620a191400b0074382f9cc0dmr6179263qkb.15.1680215543121;
Thu, 30 Mar 2023 15:32:23 -0700 (PDT)
X-Received: by 2002:a25:cf8e:0:b0:b6a:2590:6c63 with SMTP id
f136-20020a25cf8e000000b00b6a25906c63mr4967466ybg.2.1680215542913; Thu, 30
Mar 2023 15:32:22 -0700 (PDT)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.ada
Date: Thu, 30 Mar 2023 15:32:22 -0700 (PDT)
In-Reply-To: <3db3c046-bbcf-497b-afd5-ac6c2b9567afn@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=184.98.69.67; posting-account=x5rpZwoAAABMN2XPwcebPWPkebpwQNJG
NNTP-Posting-Host: 184.98.69.67
References: <3db3c046-bbcf-497b-afd5-ac6c2b9567afn@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <92e2af87-1469-4f2a-8893-f7b31f0d444cn@googlegroups.com>
Subject: Re: ChatGPT
From: list_email@icloud.com (Jerry)
Injection-Date: Thu, 30 Mar 2023 22:32:23 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 1347
 by: Jerry - Thu, 30 Mar 2023 22:32 UTC

On Thursday, March 30, 2023 at 2:49:45 PM UTC-7, Anatoly Chernyshev wrote:
> What do you think?

ChatGPT demands my phone number which it will not get. Has anyone found a workaround?
Jerry

Re: ChatGPT

<u054as$pra7$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=9431&group=comp.lang.ada#9431

  copy link   Newsgroups: comp.lang.ada
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder.eternal-september.org!.POSTED!not-for-mail
From: spam.jrcarter.not@spam.acm.org.not (Jeffrey R.Carter)
Newsgroups: comp.lang.ada
Subject: Re: ChatGPT
Date: Fri, 31 Mar 2023 01:00:44 +0200
Organization: A noiseless patient Spider
Lines: 16
Message-ID: <u054as$pra7$1@dont-email.me>
References: <3db3c046-bbcf-497b-afd5-ac6c2b9567afn@googlegroups.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Thu, 30 Mar 2023 23:00:44 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="ee859c15d9091305aaefa56f200b6fba";
logging-data="847175"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/lI+qX2s0E6yKpMPPwaiWEFUlc2WOx4ro="
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101
Thunderbird/102.9.0
Cancel-Lock: sha1:BaaiRk5Taf3QRGWFcuLnM9/AVHg=
Content-Language: en-US
In-Reply-To: <3db3c046-bbcf-497b-afd5-ac6c2b9567afn@googlegroups.com>
 by: Jeffrey R.Carter - Thu, 30 Mar 2023 23:00 UTC

On 2023-03-30 23:49, Anatoly Chernyshev wrote:
>
> What do you think?

No doubt there are a large number of such programs in the training data. If it
had simply regurgitated one of those, at least the program would have compiled.
That it couldn't even do as good as that is not impressive.

--
Jeff Carter
"Fundamental improvements in performance
are most often made by algorithm changes,
not by tuning."
Elements of Programming Style
201

Re: ChatGPT

<u06043$19uam$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=9434&group=comp.lang.ada#9434

  copy link   Newsgroups: comp.lang.ada
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder.eternal-september.org!.POSTED!not-for-mail
From: mailbox@dmitry-kazakov.de (Dmitry A. Kazakov)
Newsgroups: comp.lang.ada
Subject: Re: ChatGPT
Date: Fri, 31 Mar 2023 08:54:59 +0200
Organization: A noiseless patient Spider
Lines: 26
Message-ID: <u06043$19uam$1@dont-email.me>
References: <3db3c046-bbcf-497b-afd5-ac6c2b9567afn@googlegroups.com>
<u054as$pra7$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Fri, 31 Mar 2023 06:54:59 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="74716646f6338a3f18d85c78ac1064a4";
logging-data="1374550"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX198EVeZWwfbVwXCwsu1vFRU4n0ZwSr6omU="
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.9.1
Cancel-Lock: sha1:wCK/z7j2v6spbXkI7sz+lOb8l7Y=
In-Reply-To: <u054as$pra7$1@dont-email.me>
Content-Language: en-US
 by: Dmitry A. Kazakov - Fri, 31 Mar 2023 06:54 UTC

On 2023-03-31 01:00, Jeffrey R.Carter wrote:
> On 2023-03-30 23:49, Anatoly Chernyshev wrote:
>>
>> What do you think?
>
> No doubt there are a large number of such programs in the training data.
> If it had simply regurgitated one of those, at least the program would
> have compiled. That it couldn't even do as good as that is not impressive.

Right. Fun would be adding qualifiers to the request. E.g. "in extended
precision", "taking arguments from user input" etc. Parroting works up
to some limit.

What I find interesting is that the whole swindle highlights that some
human activities considered creative are in fact not. BTW, it repeats
much earlier dethroning of playing chess as being indicative to human
intellect. The machine easily beats us in chess.

Actually, it is the abilities to sort out garbage and pick up vegetables
which make us intelligent! (:-))

--
Regards,
Dmitry A. Kazakov
http://www.dmitry-kazakov.de

Re: ChatGPT

<u06eon$1cjen$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=9435&group=comp.lang.ada#9435

  copy link   Newsgroups: comp.lang.ada
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder.eternal-september.org!.POSTED!not-for-mail
From: magardner2010@gmail.com (magardner2010)
Newsgroups: comp.lang.ada
Subject: Re: ChatGPT
Date: Fri, 31 Mar 2023 14:04:55 +0300
Organization: A noiseless patient Spider
Lines: 32
Message-ID: <u06eon$1cjen$1@dont-email.me>
References: <3db3c046-bbcf-497b-afd5-ac6c2b9567afn@googlegroups.com>
<u054as$pra7$1@dont-email.me> <u06043$19uam$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Fri, 31 Mar 2023 11:04:55 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="ffb14e98e158b507ea59a428f4b3980c";
logging-data="1461719"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+DN7YSz85VaKK+aNjQiCUJHwCOgAdN4Lg="
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101
Thunderbird/102.9.0
Cancel-Lock: sha1:0Nc3qcxM6uF1SmQ+VXelGPMS9Fw=
In-Reply-To: <u06043$19uam$1@dont-email.me>
Content-Language: en-GB
 by: magardner2010 - Fri, 31 Mar 2023 11:04 UTC

On 31/03/2023 09:54, Dmitry A. Kazakov wrote:
> On 2023-03-31 01:00, Jeffrey R.Carter wrote:
>> On 2023-03-30 23:49, Anatoly Chernyshev wrote:
>>>
>>> What do you think?
>>
>> No doubt there are a large number of such programs in the training
>> data. If it had simply regurgitated one of those, at least the program
>> would have compiled. That it couldn't even do as good as that is not
>> impressive.
>
> Right. Fun would be adding qualifiers to the request. E.g. "in extended
> precision", "taking arguments from user input" etc. Parroting works up
> to some limit.
>

I have been trying to get chatGPT to help me with a larger Ada project
on and off for the past few months. It not only has no idea regarding
what functions do and do not exist in a given library, but it sometimes
doesn't even understand how private types or tasks work. I will admit,
those are not necessarily super common, but given how easy Ada makes it
to use them, I can honestly say that Ada is the only language in which I
am comfortable writing multithreaded programs that require more
sophistication than a simple fork() call.

So, yeah. ChatGPT knows the syntax of Ada, and it is familiar with
Ada.Text_IO's more common functions. It knows about the existence of
GNAT.Sockets and AdaSockets, but it has no idea on how to use them.

I would be quite confident that that is pretty much it as far as ChatGPT
and Ada goes.

Re: ChatGPT

<b027b956-e773-403f-a649-833f010b4c63n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=9438&group=comp.lang.ada#9438

  copy link   Newsgroups: comp.lang.ada
X-Received: by 2002:a05:622a:88:b0:3bf:b826:a5e3 with SMTP id o8-20020a05622a008800b003bfb826a5e3mr10295405qtw.1.1680299067247;
Fri, 31 Mar 2023 14:44:27 -0700 (PDT)
X-Received: by 2002:a81:bd06:0:b0:541:a17f:c77d with SMTP id
b6-20020a81bd06000000b00541a17fc77dmr14458209ywi.10.1680299066988; Fri, 31
Mar 2023 14:44:26 -0700 (PDT)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.ada
Date: Fri, 31 Mar 2023 14:44:26 -0700 (PDT)
In-Reply-To: <u06043$19uam$1@dont-email.me>
Injection-Info: google-groups.googlegroups.com; posting-host=118.93.181.209; posting-account=g6PEmwoAAADhFsmVm6Epjviaw4MLU0b5
NNTP-Posting-Host: 118.93.181.209
References: <3db3c046-bbcf-497b-afd5-ac6c2b9567afn@googlegroups.com>
<u054as$pra7$1@dont-email.me> <u06043$19uam$1@dont-email.me>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <b027b956-e773-403f-a649-833f010b4c63n@googlegroups.com>
Subject: Re: ChatGPT
From: achernyshev@gmail.com (Anatoly Chernyshev)
Injection-Date: Fri, 31 Mar 2023 21:44:27 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 1543
 by: Anatoly Chernyshev - Fri, 31 Mar 2023 21:44 UTC

Data science people swear it's just a matter of the size of training set used...
I did also a few tests on some simple chemistry problems. ChatGPT looks like a bad but diligent student, who memorized the formulas, but has no clue how to use them. Specifically, units conversions (e.g. between mL, L, m3) is completely off-limits as of now.

Re: ChatGPT

<u08n44$1qrr0$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=9439&group=comp.lang.ada#9439

  copy link   Newsgroups: comp.lang.ada
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder.eternal-september.org!.POSTED!not-for-mail
From: mailbox@dmitry-kazakov.de (Dmitry A. Kazakov)
Newsgroups: comp.lang.ada
Subject: Re: ChatGPT
Date: Sat, 1 Apr 2023 09:39:49 +0200
Organization: A noiseless patient Spider
Lines: 21
Message-ID: <u08n44$1qrr0$1@dont-email.me>
References: <3db3c046-bbcf-497b-afd5-ac6c2b9567afn@googlegroups.com>
<u054as$pra7$1@dont-email.me> <u06043$19uam$1@dont-email.me>
<b027b956-e773-403f-a649-833f010b4c63n@googlegroups.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Sat, 1 Apr 2023 07:39:48 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="b15f95e3b4f9ee51921a6d1734ab24fb";
logging-data="1929056"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18PLE/3a0OtYuuWCzhw8nMzbRhxJw2c+78="
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.9.1
Cancel-Lock: sha1:bTGgoHOGOwjScBYwD+dN/v70w5A=
In-Reply-To: <b027b956-e773-403f-a649-833f010b4c63n@googlegroups.com>
Content-Language: en-US
 by: Dmitry A. Kazakov - Sat, 1 Apr 2023 07:39 UTC

On 2023-03-31 23:44, Anatoly Chernyshev wrote:
> Data science people swear it's just a matter of the size of training set used...

They lie. In machine learning overtraining is as much a problem as
undertraining. The simplest example from mathematics is polynomial
interpolation becoming unstable with higher orders.

And this does not even touch contradictory samples requiring retraining
or time constrained samples etc.

> I did also a few tests on some simple chemistry problems. ChatGPT looks like a bad but diligent student, who memorized the formulas, but has no clue how to use them. Specifically, units conversions (e.g. between mL, L, m3) is completely off-limits as of now.

One must remember that ChatGPT is nothing but ELIZA on steroids.

https://en.wikipedia.org/wiki/ELIZA

--
Regards,
Dmitry A. Kazakov
http://www.dmitry-kazakov.de

Re: ChatGPT

<a45b87d4-3712-463b-a723-d903d06c3009n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=9445&group=comp.lang.ada#9445

  copy link   Newsgroups: comp.lang.ada
X-Received: by 2002:a05:620a:40d2:b0:743:577d:d756 with SMTP id g18-20020a05620a40d200b00743577dd756mr6990448qko.4.1680351037928;
Sat, 01 Apr 2023 05:10:37 -0700 (PDT)
X-Received: by 2002:a25:d954:0:b0:b7d:9e72:d792 with SMTP id
q81-20020a25d954000000b00b7d9e72d792mr10798864ybg.5.1680351037744; Sat, 01
Apr 2023 05:10:37 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.ada
Date: Sat, 1 Apr 2023 05:10:37 -0700 (PDT)
In-Reply-To: <92e2af87-1469-4f2a-8893-f7b31f0d444cn@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=108.162.150.35; posting-account=DDNtpAoAAAAV3hXmyMtxrpph6Q7ui96s
NNTP-Posting-Host: 108.162.150.35
References: <3db3c046-bbcf-497b-afd5-ac6c2b9567afn@googlegroups.com> <92e2af87-1469-4f2a-8893-f7b31f0d444cn@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <a45b87d4-3712-463b-a723-d903d06c3009n@googlegroups.com>
Subject: Re: ChatGPT
From: houvanboere@gmail.com (Hou Van Boere)
Injection-Date: Sat, 01 Apr 2023 12:10:37 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
 by: Hou Van Boere - Sat, 1 Apr 2023 12:10 UTC

I have the same concerns. There are websites that allow for temp phone numbers but they never work. Get a burners phone with a pay as you go plan that does not auto-renew. Maybe you already have a retired phone. A simm card will be $10 and a month's worth of talk time perhaps another $10. Wish it was easier :(

Re: ChatGPT

<9d97fbf3-ef0a-4c39-8d28-af6d20245af1n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=9478&group=comp.lang.ada#9478

  copy link   Newsgroups: comp.lang.ada
X-Received: by 2002:a05:620a:179e:b0:742:71e6:b8d4 with SMTP id ay30-20020a05620a179e00b0074271e6b8d4mr86954qkb.6.1680832286642;
Thu, 06 Apr 2023 18:51:26 -0700 (PDT)
X-Received: by 2002:a25:c483:0:b0:b4c:9333:2a1 with SMTP id
u125-20020a25c483000000b00b4c933302a1mr907965ybf.10.1680832286340; Thu, 06
Apr 2023 18:51:26 -0700 (PDT)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.ada
Date: Thu, 6 Apr 2023 18:51:26 -0700 (PDT)
In-Reply-To: <u08n44$1qrr0$1@dont-email.me>
Injection-Info: google-groups.googlegroups.com; posting-host=199.102.130.59; posting-account=TXawsQoAAAB-ubldsHxSVtTxvqzM_vdF
NNTP-Posting-Host: 199.102.130.59
References: <3db3c046-bbcf-497b-afd5-ac6c2b9567afn@googlegroups.com>
<u054as$pra7$1@dont-email.me> <u06043$19uam$1@dont-email.me>
<b027b956-e773-403f-a649-833f010b4c63n@googlegroups.com> <u08n44$1qrr0$1@dont-email.me>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <9d97fbf3-ef0a-4c39-8d28-af6d20245af1n@googlegroups.com>
Subject: Re: ChatGPT
From: koburtch@gmail.com (Ken Burtch)
Injection-Date: Fri, 07 Apr 2023 01:51:26 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 3212
 by: Ken Burtch - Fri, 7 Apr 2023 01:51 UTC

On Saturday, April 1, 2023 at 3:39:51 AM UTC-4, Dmitry A. Kazakov wrote:
> On 2023-03-31 23:44, Anatoly Chernyshev wrote:
> > Data science people swear it's just a matter of the size of training set used...
> They lie. In machine learning overtraining is as much a problem as
> undertraining. The simplest example from mathematics is polynomial
> interpolation becoming unstable with higher orders.
>
> And this does not even touch contradictory samples requiring retraining
> or time constrained samples etc.
> > I did also a few tests on some simple chemistry problems. ChatGPT looks like a bad but diligent student, who memorized the formulas, but has no clue how to use them. Specifically, units conversions (e.g. between mL, L, m3) is completely off-limits as of now.
> One must remember that ChatGPT is nothing but ELIZA on steroids.
>
> https://en.wikipedia.org/wiki/ELIZA
> --
> Regards,
> Dmitry A. Kazakov
> http://www.dmitry-kazakov.de

For what it's worth on the subject of the chatbot, " "Produce Ada code for solving a quadratic equation." is a terrible choice for a test of ChatGPT as one is asking if it can do a Google search. To test its abilities, you have to pick a challenge that cannot be solved with a Google search.

My short assessment of ChatGPT, with the history of chatbots, are available on my February blog post. I gave it a simple programming problem and it failed 3 times out of 4. It's not surprising as I've learned since February that the chatbot doesn't actually understand programming: it uses examples off the Internet and tries to predict what you might have typed based on keyword patterns. It is an imitation of an imitation, smoke and mirrors. This is why Vint Cerf denounced it. You can read my thoughts on my blog:

https://www.pegasoft.ca/coder/coder_february_2023.html

Ken Burtch

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor