HN user

scribu

4,058 karma

Machine Learning Engineer, living in London

Email: cristi@burca.ro

Posts144
Comments639
View on HN
www.macrumors.com 8mo ago

Apple Calls Out EU for Contradictory App Store Rules Under DSA and DMA

scribu
2pts1
twitter.com 11mo ago

FormulaOne – new LLM benchmark using Dynamic Programming problems

scribu
2pts0
arxiv.org 1y ago

Robustly Improving LLM Fairness in Realistic Settings via Interpretability

scribu
2pts0
twitter.com 1y ago

Streaming Brain-to-Voice Neuroprosthesis

scribu
1pts0
techcrunch.com 1y ago

Manus probably isn't China's second 'DeepSeek moment'

scribu
4pts0
twitter.com 3y ago

Ambiguous evidence predictably leads to polarisation

scribu
1pts0
twitter.com 4y ago

Bolt gives all employees early exercising and loans for stock options

scribu
6pts1
ai.googleblog.com 5y ago

Extracting sensitive information out of GPT2

scribu
2pts0
www.the-american-interest.com 5y ago

The Chinese Surveillance State Isn't Effective

scribu
7pts0
www.nytimes.com 5y ago

On Facebook, Misinformation Is More Popular Now Than in 2016

scribu
2pts0
youtu.be 5y ago

Foldable Standing Bicycle [video]

scribu
2pts0
www.afar.com 5y ago

The God of Silence Speaks Up

scribu
25pts7
www.theguardian.com 5y ago

Facebook funnelling readers towards Covid misinformation – study

scribu
4pts0
www.theguardian.com 5y ago

Facebook removes Trump post over false Covid-19 claim for first time

scribu
6pts0
samoburja.com 6y ago

Functional Institutions Are the Exception

scribu
1pts0
li.substack.com 6y ago

A Tale of Tough Cities

scribu
2pts0
www.twitlonger.com 6y ago

Strategies of a Survivor reality show participant

scribu
1pts0
kwokchain.com 6y ago

Marketplaces: Underutilized Fixed Assets

scribu
1pts0
medium.com 6y ago

The “zero marginal cost” false narrative

scribu
2pts0
www.plagiarismtoday.com 6y ago

The Future of Plagiarism

scribu
63pts35
slideslive.com 6y ago

Things everyone in ML should know about belief formation in humans [video]

scribu
236pts42
news.ycombinator.com 6y ago

Ask HN: Is the Antler Startup Program Any Good?

scribu
1pts0
arxiv.org 6y ago

The intriguing role of module criticality in the generalization of deep networks

scribu
1pts0
m.phys.org 6y ago

Scientists Find Place on Earth Where Life Does Not Exist

scribu
2pts0
www.theguardian.com 6y ago

Deflection Tactics Used by Fossil Fuel Lobby Against Climate Change

scribu
11pts0
sambleckley.com 6y ago

The Church of Interruption

scribu
399pts141
en.wikipedia.org 6y ago

Normal Accidents

scribu
2pts0
www.wired.com 7y ago

Zombie ants do not have infected brains – only muscles

scribu
1pts0
www.theguardian.com 7y ago

Making Protein Using Air, Water, Electricity, and Microbes

scribu
61pts19
twitter.com 7y ago

Lashon Hara (Evil Tongue)

scribu
1pts0

But isn't it true for JavaScript too?

You're right, the equivalent JS script produces the same sequence of outputs.

It turns out there is a way to emulate Python's asyncio.create_task().

Python:

  await asyncio.create_task(child())
JavaScript:
  const childTask = new Promise((resolve) => {
    setTimeout(() => child().then(resolve), 0)
  })
  await childTask

Awaiting a coroutine does not give control back to the event loop.

I think this is a subtler point than one might think on first read, which is muddled due to the poorly chosen examples.

Here's a better illustration:

  import asyncio
  
  async def child():
      print("child start")
      await asyncio.sleep(0)
      print("child end")
  
  async def parent():
      print("parent before")
      await child()        # <-- awaiting a coroutine (not a task)
      print("parent after")
  
  async def other():
      for _ in range(5):
          print("other")
          await asyncio.sleep(0)
  
  async def main():
      other_task = asyncio.create_task(other())
      parent_task = asyncio.create_task(parent())
      await asyncio.gather(other_task, parent_task)
      
  asyncio.run(main())

It prints:
  other
  parent before
  child start
  other
  child end
  parent after
  other
  other
  other
So the author's point is that "other" can never appear in-between "parent before" and "child start".

Edit: clarification

It’s interesting that they decided to move all of the architecture-specific image-to-embedding preprocessing into a separate library.

Similar to how we ended up with the huggingface/tokenizers library for text-only Tranformers.

From their Notion page:

Skywork-OR1-32B-Preview delivers the 671B-parameter Deepseek-R1 performance on math tasks (AIME24 and AIME25) and coding tasks (LiveCodeBench).

Impressive, if true: much better performance than the vanilla distills of R1.

Plus it’s a fully open-source release (including data selection and training code).

If the base models already have the “reasoning” capability, as they claim, then it’s not surprising that they were able to get to SOTA using a relatively negligible amount of compute for RL fine-tuning.

I love this sort of “anti-hype” research. We need more of it.

The HN submission title is editorialized in a non-helpful way. Why beat a dead horse instead of focusing on what’s actually new in TFA?

The linked paper proposes an obvious-in-retrospect form of data augmentation: shuffle the order of the premises, so that the model can’t rely on spurious patterns. That’s kinda neat.

DeepSeek-R1 2 years ago

The repo contains only the PDF, not actual runnable code for the RL training pipeline.

Publishing a high-level description of the training algorithm is good, but it doesn't count as "open-sourcing", as commonly understood.

The way I see it, the utility of theory is raising the baseline. It guides you away from dead ends, so you don't waste time on approaches that could never work.

It's necessarily high-level, so you still need to learn about specific approaches to get practical things done.

Maybe you're interpreting the words "effort" and "manipulation" too strictly. During a meditation session, the brain could still be doing the activities from the definition, even though you might not feel like you're doing much at all.

Or, conversely, perhaps during meditation you're less conscious.

NB: I'm not an expert on anything related to this.

Sure, it's zero if you ignore all the development and maintenance costs.

Plus, robots aren't necessarily better at making things. Tesla, for example, rolled back its fully automated production line because it wasn't as adaptable as humans are.

I could write a webapp that simulates the stock market, declare that it contains X "shares" of Apple at Y price, and people could speculate on them, much as they do in the real stock market, all without Apple knowing or caring.

This already exists. It's called a CFD (Contract For Difference)