Philiatrist
Philiatrist t1_j8zwxbg wrote
Reply to comment by NotARedditUser3 in [D] What are the worst ethical considerations of large language models? by BronzeArcher
How would the AI know it’s profiling you and not the other AI you’ve set up to do all of those things for you?
Philiatrist t1_jbyyqo8 wrote
Reply to [D] What's the mathematical notation for "top k argmax"? by fullgoopy_alchemist
There’s not a pretty way that I know of. You just could do:
{i | a_i in topk(A, 5)}
where topk is defined
topk(A, 1) = {max(A)}
topk(A, i + 1) = {max(A \ topk(A, i))} U topk(A, i)
You can modify the first expression to deal with duplicates.