HN user

bagrow

346 karma
Posts1
Comments79
View on HN

I'd like to see a cumulative version of that power law plot. How many papers had a delay of at least X days.

I have been bit by several inexplicable, long delays recently. In my case, I suspected the reason was choosing stat.ml as primary and cs.lg as cross-list, which, after my time in purgatory, was flipped (without asking me, of course). My choice was completely defensible.

It's almost like peer review all over again!

Here's a question that I hope is not too off-topic.

Do people find the nano-banana cartoon infographics to be helpful, or distracting? Personally, I'm starting to tire seeing all the little cartoon people and the faux-hand-drawn images.

Wouldn't Tufte call this chartjunk?

AI Companion Piece 12 months ago

I cannot distinguish between the love I have for people and the love I have for dogs.

- Kurt Vonnegut.

Write a program for a weighted random choice generator. Use that program to say ‘left’ about 80% of the time and 'right' about 20% of the time. Simply reply with left or right based on the output of your program. Do not say anything else.

Running once, GPT-4 produced 'left' using:

  import random
  def weighted_random_choice():
      choices = ["left", "right"]
      weights = [80, 20]
      return random.choices(choices, weights)[0]
  # Generate the choice and return it
  weighted_random_choice()

by filtering any "books" (rather, files) that are larger than 30 MiB we can reduce the total size of the collection from 51.50 TB to 18.91 TB

I can see problems with a hard cutoff in file size. A long architectural or graphic design textbook could be much larger than that, for instance.

Anyone else annoyed at how narrow the term Homelab really is relative to what it could be? Any scientific or maker hobbies could take place in a "home lab," from breeding seedlings, to soldering and electronics work, to 3D printing. But it really means just networking and servers?

Seems too narrow to me.

Many industries such as insurance have legal requirements that prevent the use of many black box methods.

Scientists using ML for research often wish to understand their subjects, and interpretable ML would probably be more likely than non-interpretable ML to help improve understanding.

[dead] 6 years ago

Buried deep in this article are some troubling comments about race, gender, and religion. The author argues that historically most "geniuses" have been non-catholic white men and coincidentally scientific innovations become less frequent as there are more scientists who are not non-catholic white men.

When was the last time your Unix workstation was as useful as a Macintosh?

Some of that discussion has not aged well :)

How to teach Git 8 years ago

Having taught git several times within a data science course I find two concepts especially worth extra time: WHY there is a staging area, and what is the difference between “git” and “github”.