Apple wants to train AI on your private personal data
croes
24 points
18 comments
September 13, 2026
Related Discussions
Found 5 related stories in 69.4ms across 6,361 title embeddings via pgvector HNSW
- Apple accuses OpenAI of using stolen trade secrets to create its AI gadgets haunter · 18 pts · July 10, 2026 · 59% similar
- Apple Is Suddenly an AI Infra Stock as OpenAI Buys 10k+ Macs prabal97 · 37 pts · August 31, 2026 · 58% similar
- Apple sues OpenAI, accusing it of stealing company secrets jbegley · 110 pts · July 10, 2026 · 57% similar
- Apple sues OpenAI alleging trade secret theft, says scheme was 'at every level' nope96 · 18 pts · July 10, 2026 · 57% similar
- Samsung is pushing users to train AI with their personal health data or lose it croes · 12 pts · July 12, 2026 · 57% similar
Discussion Highlights (6 comments)
croes
They changed > We do not use our users’ private personal data or user interactions when training our foundation models. https://web.archive.org/web/20260829051311/https://machinele... to > Your private personal data and interactions are never used to train our foundation models unless you explicitly choose to help improve them. https://machinelearning.apple.com/research/introducing-third...
EAtmULFO
Changed again? "We do not use our users’ private personal data or user interactions when training our foundation models. We also respect the rights of web publishers to opt out of foundation model training."
orliesaurus
what a coincidence, i thought we were going to slow down training (amodei, altman et al.)
MattDamonSpace
Title seems misleading if not outright wrong, having read the article.
throwaway55353
Apple keeps taking potshots at their own feet. What Apple consumers want from Apple is a premium product without all the enshittification found everywhere else. I don't know what Apple thinks it's doing by introducing so many ads into everything (maps now!) and shuffling their feet backwards on all their privacy positions. In a world where every company steals all my data equally, and is ridden with the same crappy ads, why on Earth would I pay a hefty premium to Apple? It's just so stupid and short-sighted in terms of product differentiation.
nojs
Regarding the architecture: > Instead of forcing the entire model into DRAM, the full model is stored in flash memory (NAND). Because NAND-to-DRAM bandwidth is too slow to swap weights token by token, as standard MoE models require, AFM 3 Core Advanced makes routing decisions per prompt. A lightweight, dense block selects a fixed set of experts during initial processing, periodically reselecting them during generation. To minimize data movement, the model relies on a high percentage of always-active “shared experts” alongside input-dependent “routed experts” swapped into DRAM only when needed. This is an interesting hybrid between MoE and managing entirely separate domain-specific models. Select the experts once, bring them into memory, and run inference for some period of time before re-evaluating. Saves having all experts in memory, but it's better than just selecting a whole model per query since you have a high number of small opaque experts that overlap and combine in interesting ways. There is a probably a massive quality hit to doing this but it's interesting because it allows infinite scaling of model size.