|
AI seems to be the next financial buzzword, after crypto, gig economy, CDO, dotcom, and so on. I have seen a video a few days ago saying we are coming out of data era and entering the 'Knowledge Era' thank to AI where knowledge is following a logarythmic path. A 'revolution', a 'paradigm shift', and other bubblebabble. Who was telling that ? A 30 years old startup CEO wearing... a t-shirt and a jeans... You see the pattern. I'm not an AI specialist, but for what I know, current AI are nothing more than fine tuned statistic algorythm. Here a is a short french video with english subtitles from arte, the german-french public cultural television, about a painting coming from Midjourney :
https://www.arte.tv/en/videos/110342-003-A/the-world-in-imag... The video explain very well what AI are able to do (and consequently what they can't do) if you listen (read) carefully what the art historian say about the painting, which received the first price of 2022 collorado art festival. In short, the painting is nothing new by itself but a patchwork of elements from different period of art history. In other word a statistic average of previous painting, photography, drawing, etc... based on the artist prompts in midjourney. Not to say the painting is aweful, I personnaly find it's beautiful and could happily put it in my living room, but it definitively shows how current AI works, commented by an historian art specialist which has no ball in AI game. |
Yes, but Google Page Rank is just fancy matrix multiplication and worth a fortune, while the finely tuned statistics that is machine learning (specifically chatGPT) knows more about CSS and German than I do:
~~~~
Me: Erzählen Sie bitte wie ich kann ein div tag mit schwarzes hintergrund, dreihundert px hoch und 24 pixels wide machen mit css
chatGPT: Um ein div-Tag mit einem schwarzen Hintergrund, 300px hoch und 24px breit zu erstellen, könntest du den folgenden CSS-Code verwenden:
div { background-color: black; height: 300px; width: 24px; }
Um den CSS-Code anzuwenden, kannst du ihn entweder in einem style-Tag innerhalb deines HTML-Dokuments oder in einer externen CSS-Datei platzieren und dann per link-Tag in deinem HTML-Dokument einbinden.
Beispiel:
<!DOCTYPE html> <html> <head> <style> div { background-color: black; height: 300px; width: 24px; } </style> </head> <body> <div></div> </body> </html>
~~~~
The actual HTML and CSS it gave me is multiple lines and sensibly indented, don't know a convenient way to mark a block as pre-formatted. Note that chatGPT understood me correctly even though I forgot the German for "wide" and switched to English for one word only.
(I do know more CSS than is in this example; I used chatGPT over the weekend to update my website, and it solved two problems that I didn't know pure CSS could even do, but that conversation is too big to bother putting into a comment here).