I’ve not yet had time for reading the full article but the topic is really interesting. This is for sure one great and good application of deep learning. Anyone with some insights on this topic?

  • SkullHex2@lemmy.ml
    link
    fedilink
    arrow-up
    4
    ·
    edit-2
    1 year ago

    I’m afraid it would take a lot of time for me to fully understand this paper, and I know a thing or two about Computer Science.

    I’m positive you can’t get any better than n log (n) when sorting a vector of size n using comparisons, and the most widely used algorithm, QuickSort, gets very close to that performance. I guess the improvement here only involves some constant factor, but I can’t be sure without actually reading the paper. Everyone, feel free to correct me ofc c:

    • tnecniv@beehaw.org
      link
      fedilink
      arrow-up
      4
      ·
      1 year ago

      I gave it a quick skim. It seems the improvements are on specific sort tasks. There may also be fitting to the distribution of sequences. It won’t beat n log(n) for all cases, but it might do better for common common situations in the data set.

      It’s still neat they made it work.

    • bici@beehaw.orgOP
      link
      fedilink
      arrow-up
      2
      ·
      1 year ago

      My first thoughts were on the same line. I think the new “algorithm” are heuristics for small values of n.