惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
Check Point Blog
IT之家
IT之家
V
Visual Studio Blog
The Cloudflare Blog
博客园 - 司徒正美
Jina AI
Jina AI
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
美团技术团队
S
SegmentFault 最新的问题
博客园 - 聂微东
人人都是产品经理
人人都是产品经理
T
Tailwind CSS Blog
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
博客园 - 三生石上(FineUI控件)
爱范儿
爱范儿
博客园 - Franky
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
The AI Revolution - Hype, Probability, and the Illusion o...
J8K357R · 2026-04-29 · via Hacker News - Newest: "AI"

When I hear companies like Anthropic make claims that they don’t know why AI comes to some conclusion, or they suggest that Claude somehow “resorted to blackmail” to prevent itself from being shut down as featured on 60 Minutes, it makes me both angry and a bit fearful all at once. AI marketing, at least as it exists at the time of this article's writing, is filled with disingenuous assertions that create marketing leverage and product branding. It invokes fear, confusion, and hype. For example, it may be true that Anthropic's latest model Mythos, announced in April 2026, can find and exploit system vulnerabilities but introducing it with doomsday theater benefits them.

I’ll state upfront that I’m not an AI researcher. I haven’t designed and built frontier models, nor am I anti-AI. But I’m AI-adjacent, having been in the tech industry for quite a while and having a pretty general idea of what’s going on. I’ve also written my own document classification tool (github:J8k3/document-sorter) back in the pre-AI coding era, taking a much smaller-scale approach to model training. I've revisited that tool recently using AI assisted development and though I wasn't incredibly far off at the time, refined that tool to be more effective.

AI is not a sentient entity, full stop. It has no continuous consciousness. It is not sitting there thinking about you between requests. It is a request and response between a client and server, the inference layer, that invokes a model on the backend. In between, there is idle capacity, not a self-aware or self-thinking model.

However, it can be run iteratively to provide what seems like reasoned output as it processes its own prior responses. Mix that with a strategy to break down input into relevant pieces, tokenization, retrieval, and recursion, and you’ve got something that can look a lot like thinking. When you ask AI to do some task, or answer some question, it uses a very large statistical model, called a Large Language Model (LLM), to predict the next most likely token based on the training corpus, a massive body of human-written literature and/or code, used in its development.

Turns out humans have written an enormous amount of content over the past several thousand years, and there are patterns in language and code that make it predictable enough that a tool like AI can make inferred predictions about what comes next in increasing increments: words, sentences, paragraphs, or whole documents. That prediction is probability without authority or verification, not understanding which is where hallucinations come from. With sampling and weighting, developers introduce a degree of randomness into what the model predicts so that outputs are varied instead of identical every time. This makes responses feel more natural and less mechanical.

That means the training data has a massive impact on what the model produces, and this is where bias comes into play. If you feed the model writings from a particular period, culture, or worldview, it's going to reflect the biases present in that material. AI developers inject safeguards to skew responses away from those biases. But even that is simply testing outputs, sometimes with and sometimes without humans in the loop, against rules representing socially accepted norms of the present day. This is done through processes like reinforcement learning, where the model produces a response, it's reviewed, ranked, and sometimes rejected. If you've ever seen a model show you two responses and ask you to pick the better one, that's an example of reinforcement learning being outsourced.

How does AI make these predictions? An enormous mathematical representation is put together that represents relationships of tokens in training data. A token is a unit of data (input/output) which can be a word, part of a word, punctuation, etc. OpenAI provides an example of how text is tokenized https://platform.openai.com/tokenizer. It learns that given "X" token, probabilistically, "Y" is the next token. The model takes your tokenized input and produces a response. Sampling introduces controlled variability so responses are not perfectly deterministic. That is what gives it personality. Not consciousness.