Hacker News new | ask | show | jobs
by PrincessJess 1713 days ago
Path in the leak is: safety-ml\offensive-usernames\data_pull\sql\bad.sql

Highlights:

    CREATE OR REPLACE FUNCTION is_tragedy (VARCHAR) RETURNS BOOLEAN STABLE AS $$
     SELECT replace($1,'_','') LIKE '%george%floyd%'
    $$ LANGUAGE SQL;

    CREATE OR REPLACE FUNCTION is_derogatory (VARCHAR) RETURNS BOOLEAN STABLE AS $$
     SELECT replace($1,'_','') LIKE '%retard%'
    $$ LANGUAGE SQL;
Now we know we can make as many goergefloyd accounts as we want! *devious grin* *chuckles to self*
1 comments

safety-ml - I assume this is some attempt at training a machine learning algorithm to find bad names.
This is what investors and the public buy as AI.

A hand coded if statement

More accurate then actual AI under-trained on insufficient data.