There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

impure9435 ,

The thing that I find the most funny about this post, is the fact that you call this Italian

velox_vulnus ,

Blud could’ve chosen Runic, Egyptian, Ancient Romanian used by Vlad the Impaler, Mesapotamian or even Harappan Indic. But Italian is it.

IronKrill ,

Blud I’m gonna be fr no cap rn but wtf does blud mean I’ve been meaning to ask for months and I still don’t get it

velox_vulnus ,

It’s a Jamaican slang for ‘friend’ or ‘brother’.

IronKrill ,

Thanks blud.

crispy_kilt ,

Needs more fam

lseif OP ,

how am i supposed to know how italians speak. i’ve never seen one

thesporkeffect ,

They’re not real, but they can hurt you.

lseif OP ,

like reverse vampires ?

pewpew ,
@pewpew@feddit.it avatar

Ne sei sicuro?

lars ,

That’s right! None of us knows how Italians can speak in the dark 🤌

Meowie_Gamer ,
@Meowie_Gamer@lemmy.world avatar

It’s a me, Mario!

jballs ,
@jballs@sh.itjust.works avatar

From my experience, they speak mostly with their hands

theterrasque ,

🫰🤙🫵👌✊🫳🫸🤲🤌

jballs ,
@jballs@sh.itjust.works avatar

Prego

Sidyctism2 ,

Ditto

AndrasKrigare ,
Phoenix3875 ,

Let me simplify it: proceeds to print the same expression

ChanchoManco , (edited )

Typical AI behavior

Edit: and then it will gaslight you if you say the answer is the same.

driving_crooner ,
@driving_crooner@lemmy.eco.br avatar

Fucking hate when do that.

You are repeating the same mistake.

I’m sorry for repeating the same mistake, here’s a new solution with corrections proceed to write the exactly thing already told it was wrong

Wappen ,

Nope, they replaced an asterisk with an arrow!

samus12345 ,
@samus12345@lemmy.world avatar

Oh, right, now I get it!

fruitycoder ,

Gotta remember they were trained off of the internet. Which is to say the largest body of people loadly professing the opinions are fact and refusing to say otherwise.

abrahambelch ,

Which language uses these signs? It truly looks like some kind of alien language

sunoc ,
@sunoc@sh.itjust.works avatar

I would like to know too! Never saw that writing system before.

nimpnin ,

APL?

82cb5abccd918e03 ,

No that looks like


<span style="color:#323232;">⌶⌷⌸⌹⌺⌻⌼⌽⌾⌿⍀⍁⍂⍃⍄⍅⍆⍇⍈⍉⍊⍋⍌⍍⍎⍏⍐⍑⍒⍓⍔⍕⍖⍗⍘⍙⍚⍛⍜⍝⍞⍟⍠⍡⍢⍣⍤⍥⍦⍧⍨⍩⍪⍫⍬⍭⍮⍯⍰⍱⍲⍳⍴⍵⍶⍷⍸⍹⍺
</span>
peto ,

I think it’s the Ge’ez script used in Ethiopian.

82cb5abccd918e03 ,

Doesn’t look like it to me:


<span style="color:#323232;">ልዩ ጊዜ ነበር። አሁን የሚሆነውን ለማስተዋል የኢንተርኔት አውራጃ ማረጋገጥ ነበር።
</span>
peto ,

Yeah, you are right.

lars ,

That’s what I thought I saw too

chapapa ,

Glagolitic script. Oldest known Slavic alphabet according to Wikipedia.

velox_vulnus ,

They should revive this script. I like it more than Cyrillic.

82cb5abccd918e03 ,

I found it! its the Glagolitic script used in the 9th century before Cyrillic took over:


<span style="color:#323232;">ⰀⰁⰂⰃⰄⰅⰆⰇⰈⰉⰊⰋⰌⰍⰎⰏⰐⰑⰒⰓⰔⰕⰖⰗⰘⰙⰚⰛⰜⰝⰞⰟⰠⰡⰢⰣⰤⰥⰦⰧⰨⰩⰪⰫⰬⰭⰮⰰⰱⰲⰳⰴⰵⰶⰷⰸⰹⰺⰻⰼⰽⰾⰿⱀⱁⱂⱃⱄⱅⱆⱇⱈⱉⱊⱋⱌⱍⱎⱏⱐⱑⱒⱓⱔⱕⱖⱗⱘⱙⱚⱛⱜⱝⱞ
</span>
driving_crooner ,
@driving_crooner@lemmy.eco.br avatar

Unown

stingpie ,

This might be happening because of the ‘elegant’ (incredibly hacky) way openai encodes multiple languages into their models. Instead of using all character sets, they use a modulo operator on each character, to make all Unicode characters represented by a small range of values. On the back end, it somehow detects which language is being spoken, and uses that character set for the response. Seeing as the last line seems to be the same mathematical expression as what you asked, my guess is that your equation just happened to perfectly match some sentence that would make sense in the weird language.

PlexSheep ,

Do you have a source for that? Seems like an internal detail a corpo wouldn’t publish

stingpie ,

Can’t find the exact source–I’m on mobile right now–but the code for the gpt-2 encoder uses a utf-8 to unicode look up table to shrink the vocab size. github.com/openai/gpt-2/blob/master/…/encoder.py

crispy_kilt ,

Seriously? Python for massive amounts of data? It’s a nice scripting language, but it’s excruciatingly slow

stingpie ,

There are bindings in java and c++, but python is the industry standard for AI. The libraries for machine learning are actually written in c++, but use python language bindings. Python doesn’t tend to slow things down since machine learning is gpu-bound anyway. There are also library specific programming languages which urges the user to make pythonic code that can be compiled into c++.

NeatNit ,

I suppose it’s conceivable that there’s a bug in converting between different representations of Unicode, but I’m not buying and of this “detected which language is being spoken” nonsense or the use of character sets. It would just use Unicode.

The modulo idea makes absolutely no sense, as LLMs use tokens, not characters, and there’s soooooo many tokens. It would make no sense to make those tokens ambiguous.

stingpie ,

I completely agree that it’s a stupid way of doing things, but it is how openai reduced the vocab size of gpt-2 & gpt-3. As far as I know–I have only read the comments in the source code– the conversion is done as a preprocessing step. Here’s the code to gpt-2: github.com/openai/gpt-2/blob/master/…/encoder.py I did apparently make a mistake, as the vocab reduction is done through a lut instead of a simple mod.

Redex68 ,

Damn, wild Glagolitic script found. I didn’t even realise it was in the Unicode standard.

Hupf ,

Well, it certainly doesn’t overflow on 32 bit systems

Annoyed_Crabby ,

That’s not italian that’s obviously Unown

Vitaly ,
@Vitaly@feddit.uk avatar

It looks so badass, I could have used that script now because im Ukrainian but instead I have cyrillic script which is so boring

match ,
@match@pawb.social avatar

rebel against Russian imperialism, return to glagolitic

Vitaly ,
@Vitaly@feddit.uk avatar

It’s not russian, If my bulgarian friend is right then it was created by a bulgarian guy

TwilightKiddy ,

There is no single person responsible for Cyrillic script. It is mostly believed to be created by mixing and changing Greek and Glagolic scripts by the scholars of Preslav Literary School, which was indeed in Bulgaria. After a while, Peter the Great changed it a lot. And then Stalin stomped out almost all the deviations in the usage of the script.

The last part is mostly why it is considered Russian. A lot of languages suffered because of Moscow just forcing them to use the version of Cyrillic that Russians were using.

NIB ,

Cyrillic is literally greek+glagolitic and it was partly a diplomatic creation of the Eastern Roman Empire(aka Byzantine Empire), in order to bring the slavs culturally closer to them.

Russians have nothing to do with it, other than them claiming they are the continuation of Eastern Roman Empire, something which is kinda laughable but whatever dont let your dreams be dreams.

XEAL ,

Ah, I see you’re using FartGPT instead of ChatGPT

lseif OP ,

is that the new model ?

Blyfh ,

French pronunciation intensifies

Lemjukes ,

Cat, I farted.

RacoonVegetable ,

I felt that when he said *83h400+93)*38hpfhi0

ICastFist ,
@ICastFist@programming.dev avatar

Title mentions speaking italian

Not a single hand gesture anywhere

I’ve been duped

9point6 ,

Never go full APL

iAvicenna ,
@iAvicenna@lemmy.world avatar
QuazarOmega ,

You may not understand, but we do.
Questo segreto rimarrà custodito gelosamente dalla stirpe italica. ◉‿◉

Iheartcheese ,
@Iheartcheese@lemmy.world avatar

breaks spaghetti near you

robigan ,

How about go die in a hole?

Iheartcheese ,
@Iheartcheese@lemmy.world avatar
supercriticalcheese ,

We could care less

Iheartcheese ,
@Iheartcheese@lemmy.world avatar

Sad bopity boopities

luciferofastora ,

Taken literally, that implies you do care.

(To mitigate the pedantry: Given it’s a rather dispassionate response in the context of a provocation, it is probably a very weak “care” though. Just because it’s nonzero doesn’t mean it’s significant.)

supercriticalcheese ,

Well, I couldn’t care less. I missued the phrase on purpose.

luciferofastora ,

Aw shite, I’ve been pedant-baited? GG

supercriticalcheese ,

it’s fine :)

QuazarOmega ,

Rememeber, whenever you break one spaghetto you break one heart 💔

robigan ,

Lmaooo mi ha fatto ridere troppo!

MazonnaCara89 ,
@MazonnaCara89@lemmy.ml avatar

No brother non possiamo tenere questo segreto fino alla fine

supercriticalcheese ,

Perché no? Un’ po’ come il segreto per come preparare la pasta

QuazarOmega ,

Non c’è scelta, se l’ultimo italiano dovesse lasciarci, allora anche questa informazione dovrà lasciare l’umanità

unreachable ,
@unreachable@lemmy.world avatar
  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • [email protected]
  • lifeLocal
  • goranko
  • All magazines