HN user

stygiansonic

3,693 karma

https://peterchng.com

Email: 01endive-thunder@icloud.com

Posts115
Comments522
View on HN
www.cbc.ca 4mo ago

Family of Tumbler Ridge shooting victim suing OpenAI

stygiansonic
9pts0
www.cnbc.com 6mo ago

Apple picks Gemini to power Siri

stygiansonic
1038pts651
www.justice.gov 7mo ago

US authorities shut down major China-linked GPU smuggling operation

stygiansonic
2pts0
www.cnbc.com 8mo ago

Anthropic to buy $30B in Azure capacity in deal with Microsoft, Nvidia

stygiansonic
3pts1
www.nationalsecurity.ai 1y ago

Superintelligence Strategy

stygiansonic
33pts62
www.cnbc.com 3y ago

DOJ charges former Apple engineer with theft for China

stygiansonic
6pts1
www.cnbc.com 3y ago

SEC charges TRON founder Justin Sun, celebrities

stygiansonic
25pts0
www.businesswire.com 3y ago

First Republic Gets Liquidity from Fed and JPMorgan Chase

stygiansonic
2pts0
nypost.com 3y ago

JPM bankers pull all-nighters to take on clients of Silicon Valley Bank

stygiansonic
56pts4
keras.io 3y ago

A walk through latent space with Stable Diffusion

stygiansonic
1pts0
www.cnbc.com 3y ago

Tesla struggles with strict return-to-office policy

stygiansonic
6pts0
www.theglobeandmail.com 4y ago

Shopify cancels fall internships, pauses recruiting for further roles

stygiansonic
4pts0
arxiv.org 4y ago

Grokking: Generalization Beyond Overfitting on Small Algorithmic Datasets

stygiansonic
2pts1
www.cnbc.com 4y ago

Robinhood Announces 9% Layoffs

stygiansonic
5pts0
news.ycombinator.com 4y ago

Twitter Problems?

stygiansonic
93pts59
en.wikipedia.org 4y ago

Great Flood of 1862

stygiansonic
2pts0
www.npr.org 4y ago

First Came a Quake in Mexico, Then Strange Blue Lights

stygiansonic
3pts0
www.cbc.ca 4y ago

Woman ordered to pay $30K for defamation by BC Supreme Court for online review

stygiansonic
28pts3
apps.npr.org 4y ago

Who will pay to protect tech giants from rising seas?

stygiansonic
43pts45
www.cbc.ca 5y ago

Canada's Bill C-10 could regulate user generated content

stygiansonic
2pts0
daringfireball.net 5y ago

Robinhood needed a 1B cash injection

stygiansonic
5pts0
www.bloomberg.com 5y ago

Microsoft to Make ARM CPUs

stygiansonic
31pts4
www.levels.fyi 5y ago

Levels.fyi 2020 Annual Pay Report

stygiansonic
6pts2
www.cnbc.com 5y ago

Facebook blasts Apple in new ads over iPhone privacy change

stygiansonic
30pts13
www.sfchronicle.com 5y ago

Zodiac ‘340 Cypher’ Cracked

stygiansonic
51pts2
en.wikipedia.org 5y ago

Alan Smithee

stygiansonic
1pts0
www.cnbc.com 5y ago

UPS places shipping limits on some retailers

stygiansonic
3pts0
www.cbc.ca 5y ago

MEC to be acquired by private U.S. investment firm

stygiansonic
7pts0
www.cnn.com 5y ago

CNN report finds Amazon's own products are being flagged as fire hazards

stygiansonic
11pts0
www.cnbc.com 5y ago

Robinhood is reportedly under SEC investigation

stygiansonic
1pts0
Sakana Fugu 1 month ago

From a brief reading of what Fusion does: https://openrouter.ai/docs/guides/features/plugins/fusion

Looks like Fusion calls a bunch of models and then uses an LLM to synthesize the results, and pass to another model for final output.

Fugu looks like it's doing something different? Using an LLM earlier on in the flow as an orchestrator to decide which other LLMs to call. More coordinator than simply synthesizing results, and more "agentic".

It's interesting because it's all exposed behind a single OpenAI compatible endpoint (Responses API?) and so then presumably someone could use this for one of their single agents. Now you have agent-of-agents, nested in some sense. The token usage increases accordingly!

  The jury found that Ding stole trade secrets relating to the hardware infrastructure and software platforms that allow Google’s supercomputing data center to train and serve large AI models. The trade secrets contained detailed information about the architecture and functionality of Google’s custom Tensor Processing Unit chips and systems and Google’s Graphics Processing Unit systems, the software that allows the chips to communicate and execute tasks, and the software that orchestrates thousands of chips into a supercomputer capable of training and executing cutting-edge AI workloads. The trade secrets also pertained to Google’s custom-designed SmartNIC, a type of network interface card used to facilitate high speed communication within Google’s AI supercomputers and cloud networking products.

Neat experiment that gives a mechanistic interpretation of temperature. I liked the reference to the "anomalous" tokens being near the centroid, and thus having very little "meaning" to the LLM.

Pentagon Pizza Index 12 months ago

Wonder why they haven’t gotten an in house pizzeria yet to reduce the signal on this side channel leak

From the article it appears to be something they invented:

Gemma 3n leverages a Google DeepMind innovation called Per-Layer Embeddings (PLE) that delivers a significant reduction in RAM usage.

Like you I’m also interested in the architectural details. We can speculate but we’ll probably need to wait for some sort of paper to get the details.

Interesting! If Knuth is not the original author then they’ve been lost to the sands of time

When subtlety proves too constraining, competitors may escalate to overt cyberattacks, targeting datacenter chip-cooling systems or nearby power plants in a way that directly—if visibly—disrupts development. Should these measures falter, some leaders may contemplate kinetic attacks on datacenters, arguing that allowing one actor to risk dominating or destroying the world are graver dangers, though kinetic attacks are likely unnecessary. Finally, under dire circumstances, states may resort to broader hostilities by climbing up existing escalation ladders or threatening non-AI assets. We refer to attacks against rival AI projects as "maiming attacks."

Sorry to hear this

A lot of my teenage years were spent building and playing with PCs and a lot of the knowledge and interest came from reading each and every issue of boot and maximum pc

+1

Jumping into an unknown codebase (which may be a library you depend on) and being able to quickly investigate, debug, and root cause an issue is an extremely invaluable skill in my experience

Acting as if this isn’t useful in the real world won’t help. The real world is messy, documentation is often missing or unreliable, and the person/team who wrote the original code might not be around anymore.

This is probably using their excess capacity, but not necessarily that their GPUs are idle.

For LLMs/large models the huge cost is memory ops to load each layer weights during the forward pass. This is why doing inference at batch size 1 is extremely wasteful: you pay all the mem ops cost and don’t use enough compute FLOPs to justify.

You want a high enough batch size so that compute:mem ops is close to the ratio for that GPU. This is usually done by batching together multiple user requests.

At times of low usage there is excess capacity because batch size is below this “optimal” ratio. So they can slot in these “relaxed SLA” requests for little marginal increase resource usage on their end.

Basically have a queue of these requests that you use to “top off” your batch size when you can.

Edit: also you may not be able to get optimal batch size depending on when the requests arrive, eg you don’t want to wait forever to fill up a batch. So again having a queue of outstanding/delayed requests to serve allows for smoothing things out and increasing compute utilization

A simplified explanation, which I think I heard from Karpathy, is that transformer models only do computation when they generate (decode) a token. So generating more tokens (using CoT) gives the model more time to “think”.

Obviously this doesn’t capture all the nuance.

AI Terms Explained 2 years ago

This is a much better set of general terms vs the original, which currently is heavily oriented towards LLMs/Gen AI

This seems unethical:

Since January of 2023, we have deployed this system in the wild, where it has poisoned several hundred million data sources expected to be scraped and used in the training of new LLMs. This large-scale deployment serves as a real-world testbed and demonstration of our approach's efficacy.

We have concurrently developed a sophisticated countermeasure, capable of detecting and neutralizing the effects of VonGoom. Researchers and organizations concerned about the integrity of their LLMs, and looking to cleanse their systems of our widespread data manipulation, are advised to contact us for pricing and licensing details.