Recent

Author Topic: Generative AI - opinion  (Read 5127 times)

ccrause

  • Hero Member
  • *****
  • Posts: 970
Generative AI - opinion
« on: July 14, 2024, 10:54:39 am »
Triggered by a comment by TRon about AI and its dangers, I thought I should air my opinion in a quiet corner, and maybe learn something from more informed opinions.

As a test (easy for trained humans I hope) I entered the following prompt in ChatGPT:
Code: Text  [Select][+][-]
  1. Write Pascal code to convert temperature from Celsius to bar[1]

It cheerfully complied and generated the following:
Code: Pascal  [Select][+][-]
  1. program CelsiusToBarConverter;
  2.  
  3. uses
  4.   SysUtils;
  5.  
  6. function CelsiusToKelvin(celsius: Real): Real;
  7. begin
  8.   CelsiusToKelvin := celsius + 273.15;
  9. end;
  10.  
  11. function KelvinToBar(kelvin: Real): Real;
  12. begin
  13.   KelvinToBar := kelvin / 100000;  // Conversion factor from Kelvin to bar
  14. end;
  15.  
  16. var
  17.   celsiusTemperature: Real;
  18.   kelvinTemperature, barTemperature: Real;
  19.  
  20. begin
  21.   // Input the temperature in Celsius
  22.   Write('Enter temperature in Celsius: ');
  23.   ReadLn(celsiusTemperature);
  24.  
  25.   // Convert Celsius to Kelvin
  26.   kelvinTemperature := CelsiusToKelvin(celsiusTemperature);
  27.  
  28.   // Convert Kelvin to bar
  29.   barTemperature := KelvinToBar(kelvinTemperature);
  30.  
  31.   // Output the temperature in bar
  32.   WriteLn('Temperature in bar: ', barTemperature:0:4);
  33. end.

It also provided the following explanation:
Quote
1. **CelsiusToKelvin function**: Converts a temperature from Celsius to Kelvin by adding 273.15 (since 0°C is 273.15 Kelvin).
2. **KelvinToBar function**: Converts a temperature from Kelvin to bar. The conversion factor used here is 1 bar = 100000 Pascal.
3. **Main program**:
   - Reads the temperature in Celsius from the user.
   - Converts it first to Kelvin using `CelsiusToKelvin`.
   - Then converts Kelvin to bar using `KelvinToBar`.
   - Outputs the temperature in bar.

When you run this program, you'll be prompted to enter a temperature in Celsius, and it will output the equivalent temperature in bar. Adjust the output format (`:0:4` in `WriteLn`) as needed for your desired precision.

So everything looks very neat, with apparently valid code (untested), well commented and a nice explanation to help the unwary code user.

Here mixing coding and physics domains resulted in garbage, the better answer would have been something along the lines of Please do not waste this chatbot's time..  Unfortunately, being a generative model, it cooked up a convincing piece of code that generates complete garbage.  This reminds one about the garbage in, garbage out concept, but then again I expect "intelligence" to imply a wider understanding of the problem domain than the person/entity submitting a prompt.

Note
1. This may be confusing for users of Imperial units, alternatively exchange Celsius with Fahrenheit and bar with atmosphere.

Jonax

  • New Member
  • *
  • Posts: 20
Re: Generative AI - opinion
« Reply #1 on: July 14, 2024, 11:07:08 am »
Pure gold. I'm still laughing.  :D

gidesa

  • Full Member
  • ***
  • Posts: 145
Re: Generative AI - opinion
« Reply #2 on: July 14, 2024, 11:58:37 am »
Generative AI is only a statistical algorithm, quite successful to generate pseudo-human phrases.
And, inverse, quite successful to scompose an input phrase in parts: verbs, nouns, etc. So primarily a powerful tool to create a natural language interface from human to computer, alternative to keyboard, mouse, et al.
Capital importance has the training data, as you surely know. If it's trained on thousands of Python programs  and only dozens of Pascal programs, of course the results would be better for Python.
ChatGpt is a "showroom" AI model, trained on a very general and generic data sources. Typically Wikipedia, Github, and similar.
So, regarding computer languages, it's totally biased to some languages (same for human languages, it's totally biased to english).
Conclusion: if you train a GAI model on the right database, it could be a valid STATISTICAL tool also for producing a computer program. "Statistical" in the sense than it will answer quite well, on average, doing a certain number of test with the same question.
You can try to ask ChatGpt the same question, for example, 10 times, and observe the results.   And try to ask to write Python code.

MarkMLl

  • Hero Member
  • *****
  • Posts: 8038
Re: Generative AI - opinion
« Reply #3 on: July 14, 2024, 02:16:29 pm »
That truly is a classic: thinks for wasting your time on our collective behalf to such good effect :-)

MarkMLl
MT+86 & Turbo Pascal v1 on CCP/M-86, multitasking with LAN & graphics in 128Kb.
Logitech, TopSpeed & FTL Modula-2 on bare metal (Z80, '286 protected mode).
Pet hate: people who boast about the size and sophistication of their computer.
GitHub repositories: https://github.com/MarkMLl?tab=repositories

af0815

  • Hero Member
  • *****
  • Posts: 1379
Re: Generative AI - opinion
« Reply #4 on: July 14, 2024, 02:27:46 pm »
I think a lot of pupils will give that sample as homerwork away :-) And are woundering if it goes bad. I have seen, pupils wite as result Error - without thinking -> and thinking that was the correct result.

The whole world is now so stupid and crazy.

regards
Andreas

MarkMLl

  • Hero Member
  • *****
  • Posts: 8038
Re: Generative AI - opinion
« Reply #5 on: July 14, 2024, 02:55:30 pm »
That code has now appeared in a programming forum, so it will be pounced upon by every LLM out there.

Obligatory xkcd: https://xkcd.com/978/

MarkMLl
MT+86 & Turbo Pascal v1 on CCP/M-86, multitasking with LAN & graphics in 128Kb.
Logitech, TopSpeed & FTL Modula-2 on bare metal (Z80, '286 protected mode).
Pet hate: people who boast about the size and sophistication of their computer.
GitHub repositories: https://github.com/MarkMLl?tab=repositories

ccrause

  • Hero Member
  • *****
  • Posts: 970
Re: Generative AI - opinion
« Reply #6 on: July 14, 2024, 05:10:11 pm »
Generative AI is only a statistical algorithm, quite successful to generate pseudo-human phrases.
And, inverse, quite successful to scompose an input phrase in parts: verbs, nouns, etc. So primarily a powerful tool to create a natural language interface from human to computer, alternative to keyboard, mouse, et al.
Capital importance has the training data, as you surely know. If it's trained on thousands of Python programs  and only dozens of Pascal programs, of course the results would be better for Python.
ChatGpt is a "showroom" AI model, trained on a very general and generic data sources. Typically Wikipedia, Github, and similar.
So, regarding computer languages, it's totally biased to some languages (same for human languages, it's totally biased to english).
Conclusion: if you train a GAI model on the right database, it could be a valid STATISTICAL tool also for producing a computer program. "Statistical" in the sense than it will answer quite well, on average, doing a certain number of test with the same question.
You can try to ask ChatGpt the same question, for example, 10 times, and observe the results.   And try to ask to write Python code.
What I was hoping to illustrate with the example is that the language aspect (Pascal) is quite good (and syntactically sound, although I did not bother to try and compile it), however the business logic is not sound.  I would hope that a real expert would flag the prompt as bogus or nonsensical, not dish up something that doesn't make sense.  So the problem I see is that using correct grammar (or programming syntax) does not guarantee that the stated logic is sensible or even coherent.  A bit like politics.

ccrause

  • Hero Member
  • *****
  • Posts: 970
Re: Generative AI - opinion
« Reply #7 on: July 14, 2024, 05:20:59 pm »
That code has now appeared in a programming forum, so it will be pounced upon by every LLM out there.

Obligatory xkcd: https://xkcd.com/978/

MarkMLl
:D
Like a snake eating its own tail (which would result in a tragic end for a real snake).  Except in the AI business where the marketing hype would just intensify.

Curt Carpenter

  • Hero Member
  • *****
  • Posts: 566

Thaddy

  • Hero Member
  • *****
  • Posts: 16196
  • Censorship about opinions does not belong here.
Re: Generative AI - opinion
« Reply #9 on: July 14, 2024, 07:44:39 pm »
two others:
temperature and color
temperature and distance
This particular - the steam - equation is called the Antione equation and AI came up with the correct answer
Code: Pascal  [Select][+][-]
  1. program CalculateSteamPressure;
  2. uses SysUtils;
  3.  
  4. var
  5.   T: Real;  // Temperature in Celsius
  6.   P: Real;  // Pressure in mmHg
  7.  
  8. begin
  9.   Write('Enter temperature in Celsius: ');
  10.   ReadLn(T);
  11.  
  12.   // Calculate pressure using Antoine equation
  13.   P := Exp(20.386 - 5132/T);
  14.  
  15.   WriteLn('Estimated steam pressure: ', P:0:2, ' mmHg');
  16. end.
« Last Edit: July 14, 2024, 08:04:02 pm by Thaddy »
If I smell bad code it usually is bad code and that includes my own code.

gidesa

  • Full Member
  • ***
  • Posts: 145
Re: Generative AI - opinion
« Reply #10 on: July 14, 2024, 08:14:12 pm »
What I was hoping to illustrate with the example is that the language aspect (Pascal) is quite good (and syntactically sound, although I did not bother to try and compile it), however the business logic is not sound.  I would hope that a real expert would flag the prompt as bogus or nonsensical, not dish up something that doesn't make sense.  So the problem I see is that using correct grammar (or programming syntax) does not guarantee that the stated logic is sensible or even coherent.  A bit like politics.

Indeed a GAI doesn't not "know" anything, as I wrote.  ChatGpt, or similar, isn't a "Delphi oracle" (in the sense of ancient Greece, not languages and databases :-)), that all knows and can answer to whatever question.
So your example doesn't illustrate nothing of new: the AI ... doesn't think, and doesn't knows everything! :-)
ChatGpt is the smoke and mirrors for quite silly people, a great marketing tool.
Nevertheless generative AI are an useful tool, if used in the correct mode.





Curt Carpenter

  • Hero Member
  • *****
  • Posts: 566
Re: Generative AI - opinion
« Reply #11 on: July 14, 2024, 08:46:20 pm »
...
Nevertheless generative AI are an useful tool, if used in the correct mode.

If you hold today's primitive AI up as a mirror to our own human capacities, you might be tempted to say "Never the less, human knowledge and creativity are useful tools, if used in the correct mode"  :)  The most profound impact of all this "AI stuff" may lie in the way it leads us to understand ourselves.  Who knows what the next fifty years will yield -- in terms of machine capabilities and our own self-awareness.

Weiss

  • Full Member
  • ***
  • Posts: 187
Re: Generative AI - opinion
« Reply #12 on: July 15, 2024, 04:03:24 am »
This is not simply "garbage" but outright lie. I am still trying to comprehend. There must have been at least some Machiavellian intelligence, to invent this

Code: Pascal  [Select][+][-]
  1. KelvinToBar := kelvin / 100000;  // Conversion factor from Kelvin to bar


Curt Carpenter

  • Hero Member
  • *****
  • Posts: 566
Re: Generative AI - opinion
« Reply #13 on: July 15, 2024, 04:39:16 am »
I'm not sure where the specific 100000 number came from, but as the steam table link points out "Steam and temperature posess a reliable realationship whereby if the pressure of the steam is known, it's temperature can be predicted (and vice versa)."  The appropriate response, I suppose, would be to put the question to ChatGPT  :) 

ccrause

  • Hero Member
  • *****
  • Posts: 970
Re: Generative AI - opinion
« Reply #14 on: July 15, 2024, 07:37:13 am »
This is not simply "garbage" but outright lie. I am still trying to comprehend. There must have been at least some Machiavellian intelligence, to invent this

Code: Pascal  [Select][+][-]
  1. KelvinToBar := kelvin / 100000;  // Conversion factor from Kelvin to bar
In the metric system the base unit for pressure is Pascal. The derived unit bar is 100000 Pa. Because the original prompt mentioned bar the AI model used the conversion from Pa to bar because it was (I assume) statistically likely to be relevant.

 

TinyPortal © 2005-2018