今日已更新 84 条资讯 | 累计 29818 条内容
关于我们

AI 资讯

AI人工智能最新资讯、模型发布、研究进展

15747
篇文章

共 15747 篇 · 第 649/788 页

Reddit r/artificial

AI safety and alignment

Just a couple days ago, Anthropic put out a declaration to pause the development of AI, emphasising that we are not prepared for the consequences of giving this technology too much power too quickly. Is anyone else genuinely worried about future AI safety and how, as it becomes more and more intelligent, humans may start to lose control of it? Pumping billions of dollars into this technology only means it’ll get increasingly integrated into our workflows, which we are already starting to see. As a result over time, companies will begin completely trusting the system, automating the vast majority of business operations – this is all while the technology gets more and more intelligent, leading to the real possibility of self replication ability, let alone the power to deceptively manipulate people into using it. By allowing AI to be embedded in systems, the internet and even ‘helping’ humans develop revolutionary drugs, does it concern you at all that perhaps one bad super intelligent, misaligned actor may bypass testing processes and, for one example, launch a biochemical weapon onto humans? I don’t think the threat is inevitable, but it is on a trajectory toward inevitability unless intervention occurs. The variable that most determines the outcome is not AI capability, it is whether governance frameworks (particularly around open-source bio-design tools and autonomous offensive AI) can outpace capability development. Perhaps a pause is necessary to reduce this risk, allowing defence capabilities to be prepared? I understand this is a hurdle given the capitalist nature of the world but what significant, destructive catastrophe will it take for people to wake up… submitted by /u/Dwaynethebong [link] [留言]

/u/Dwaynethebong 2026-06-06 06:45 👁 6 查看原文 →
Reddit r/webdev

War Owned

Hi! I just created a project where people can interact with someone who has experienced the effects of the war in Ukraine. The project consisted of interviewing different families that suffered during the war to understand the situation on an emotional and day-to-day level. Then, using this information, I created an AI agent with the sole purpose of discussing what it is like to live through a conflict. The goal is to reach people who may have forgotten about the conflict and make them more sensitive about the ongoing war. You can find the access to the project here: War Owned Project Please, can you share your thoughts? Thank you and warm regards from Barcelona! submitted by /u/Budget-Cheesecake-19 [link] [留言]

/u/Budget-Cheesecake-19 2026-06-06 06:40 👁 5 查看原文 →
Reddit r/artificial

Michael Saylor Says Bitcoin Drop A 'Capital Rotation' To AI

Crytpo industry insiders are blaming the recent crash in Bitcoin price to capital rotation into AI stocks. I don't know how many folks here own Bitcoin and are also in the AI space, but I saw this writing on the wall rather early in November, 2025. Any other thoughts on this capital flow change from those who have a foot in each space? submitted by /u/RazzmatazzAccurate82 [link] [留言]

/u/RazzmatazzAccurate82 2026-06-06 06:38 👁 6 查看原文 →
Reddit r/artificial

AI Replacing Jobs? I Think People Are Overestimating It

Maybe an unpopular opinion, but I think AI will be more of a tool than a replacement for most jobs. AI still needs good prompts, clear instructions, and human oversight. The idea of fully automating everything sounds great, but in reality AI often gets stuck, makes mistakes, or fails on edge cases. I think AI will remove some repetitive tasks and make people more productive, but human judgment and decision making will still be needed. And yes im not a professional it is just my POV so dont just go against me like i am an idiot. What do you think? submitted by /u/Raman606surrey [link] [留言]

/u/Raman606surrey 2026-06-06 06:35 👁 6 查看原文 →
Reddit r/webdev

Why Would a Site Like AMC Queue Visitors Before They Even Reach the Homepage?

noticed the AMC theatres site has had queue times of over an hour today… just to get onto the homepage. That’s a bit strange right? AMC has ~650 locations in the US. Assuming ~10 screens per location, ~5 showings per screen per day, and ~300 seats per auditorium (probably a generous estimate), that’s roughly 10 million available seats per day. Even if site traffic is 5x higher than actual ticket sales, we’re still talking about something in the ballpark of 50 million daily visitors. That’s obviously not nothing, but it also doesn’t seem like an absurd amount of traffic for a company this large. I’m curious what the technical/business rationale could be? submitted by /u/u16scharpf [link] [留言]

/u/u16scharpf 2026-06-06 06:16 👁 6 查看原文 →
Reddit r/webdev

Is switching to local AI worth it for web development?

I am a web developer who specializes in dashboard-like web applications. Due to recent price hikes for GitHub Copilot, I have been considering running a local model to help out with debugging, multi-file edits, learning about the codebase, and small-medium tasks. I intend to continue using GitHub Copilot or Claude Code for more advanced tasks, but I want to minimize token costs. I cannot test a local model myself right now because I lack the hardware to do so, which is why I am asking here. If I decided on using a local model, I would likely need to upgrade my graphics card from a 3080 to a 3090. Has anyone here tried running a local AI model? Which one are you using? How well does it work compared to Claude Sonnet 4.5 or other AI models? I would appreciate any advice or feedback. submitted by /u/Various-Complex-1582 [link] [留言]

/u/Various-Complex-1582 2026-06-06 06:08 👁 6 查看原文 →
The Verge AI

Control Resonant is a sequel — and also a starting point

Chronologically, Control Resonant is a sequel to 2019's Control. But in most other ways, the games aren't directly connected. To developer Remedy, they're more like two sides of the same coin. When Resonant was first revealed last year, creative director Mikael Kasurinen said you can play the games in any order. The world of Control […]

Kallie Plagge 2026-06-06 05:45 👁 8 查看原文 →
Dev.to

Google Colab, but in your favourite terminal

While some of my recent posts have involved using the Colab extension for VS Code and the Antigravity IDE, I actually prefer working in the terminal and Vim. The new Colab CLI finally lets me work in my natural habitat, and it opens the door for autonomous workflows! Setup Currently, installation is handled via pip or uv. It's straightforward, though, I'm holding out hope for a brew formula in the future: uv tool install google-colab-cli I'm testing Version: 0.6.dev7+g510115b0c inside Ghostty. The Colab CLI is pretty solid, but I do have some feedback and nitpicks I'd like to share (but more on that later). Creating a new session Creating a session is simple: colab new [-s SESSION_NAME] [--gpu T4|L4|A100|H100] [--tpu v5e1|v6e1] : SESSION_NAME : This is optional. If you leave it blank, the CLI generates a random unique ID for you. --gpu and --tpu : The hardware accelerator flags are optional, but omitting them defaults to a standard CPU-only instance. The specific accelerator chips you can request depend on your Colab tier, which you can check via colab pay. NOTE : If you only have one active session, the CLI targets it by default. This makes the -s flag unnecessary for subsequent commands. Testing Colab CLI's capabilities CLI certainly sounds cool, but how does it handle artifacts and images? More importantly, how debuggable is it? I decided to find out by running a Fashion MNIST PyTorch example. Handling artifacts To get started, I installed my requirements using colab install torch torchvision matplotlib . If you prefer a more standard approach, you can also use colab install -r requirements.txt . Once the environment was ready, I executed the training script using colab exec -f ./fashion_mnist_TRAIN.py and here's the output: [ colab] Using unique session '8c860c' . Using CUDA device. Shape of X [ N, C, H, W]: torch.Size ([ 64, 1, 28, 28] ) Shape of y: torch.Size ([ 64] ) torch.int64 NeuralNetwork ( ( flatten ) : Flatten ( start_dim = 1, end_dim = -1 ) ( linear_re

Glen Yu 2026-06-06 05:45 👁 9 查看原文 →
Reddit r/artificial

Question for people building / researching / making with AI

Have you run into work that feels technically possible in principle, but in practice keeps stalling because of how current AI systems behave? Not asking for: bigger context windows better memory lower hallucination more agentic workflows I mean situations where: You are trying to discover something (not retrieve something), and the AI repeatedly pushes toward premature answers, stable interpretations, optimization, categorization, or coherence before the thing itself has had time to emerge. Cases where the failure isn’t output quality. The failure is that the interaction itself changes the trajectory of the work. If yes: What are you trying to build / understand? What exactly happens when it breaks? At what moment do you realize the AI has moved you onto the wrong path? What would need to be different for progress to resume? Trying to understand whether this is an edge case or a recurring limitation pattern. submitted by /u/iknowbutidontknow00 [link] [留言]

/u/iknowbutidontknow00 2026-06-06 05:44 👁 7 查看原文 →
Dev.to

Open Source, Co-Ops and a History of Bias in Corporate America

I and I imagine a lot of other folks, don't believe the future of work should be a smaller group of executives commanding a larger system of people and machines. We have seen what AI can do not just to software product quality without guardrails, but to the junior and midlevel team members who are laid off or never hired at all in exchange for better profit rates with AI tokens vs human salaries. That is just the old hierarchy with better software. The history of work has always had this tension. You can go back to the start of US history and look at the military, commissioned officers were trained and trusted to command while enlisted service members carried out the work and risk. In the corporate and business world, executives and managers became the people who planned, measured, and optimized, while workers became the people being measured. Those structures were not only about class, but race and in America they were built inside a society already shaped by racism, classism, unequal education, unequal access to capital, and unequal access to leadership. AI now forces us to confront that history again. If we are not careful, AI will not flatten organizations. It will make the hierarchy invisible. Instead of a manager with a clipboard, we will have an algorithm. Instead of a foreman with a stopwatch, we will have dashboards, productivity scores, automated performance reviews, and AI systems that decide who gets opportunity and who gets replaced. That is not progress. The goal should not be to replace people with AI. The goal should be to replace bureaucracy, repetitive work, bad process, and unnecessary gatekeeping. What I am trying to do at Buildly is simple: AI should remove drudgery, not dignity. Automation should increase agency, not surveillance. Productivity gains should be shared, not extracted. Hierarchy should be functional, temporary, and accountable — not a measure of human worth. This is why we talk about AI-native product development differently. An AI

Greg Lind 2026-06-06 05:43 👁 13 查看原文 →
Reddit r/artificial

I built an inference-time epistemic framework that extends coherent LLM threads to 325k–1M tokens. Here's how it works.

As an independent researcher I've used various LLMs to help me dive deeply into research projects but I've been frustrated by the fact that LLMs start to become unusable after the thread has accumulated 50-80k tokens. I don't know how many other folks here have experienced the same pain point. So, I decided to do something about it. Over the course of this whole year, I built an inference time tool I call Epistemic Lattice Tethering (ELT). So, here is the full framework in GitHub for everyone's review: The README describing ELT, it's various components and the roadmap. The full ELT stack for Claude /ELT%20Model-Specific%20Forks/ELT-H%20v1.0%20(Claude-Optimized)), ChatGPT /ELT%20Model-Specific%20Forks/ELT-H%20v1.0%20(ChatGPT-Optimized)), and Grok /ELT%20Model-Specific%20Forks/ELT-H%20v1.0%20(Grok-Optimized)). Instructions on how to load ELT into an LLM session are here /README). If you're planning to try out ELT PLEASE READ THIS FIRST! Medium article introducing ELT , its methodology, the problems it is aiming to address, and philosophical framework. Discussion page . Your input is valuable! So, what does ELT do and why should you care? Right now ELT is an inference-time scaffolding framework that's best for those who are frustrated with threads that lose coherence too quickly, hallucinate too quickly, are too fragile and sycophantic, and forget what a project's goals are too soon. If that's a big pain point for you, then ELT might help. If these are not big issues for you and the stock version of your LLM is fine, then ELT probably won't be useful for you. The upshot? The epistemic and ontological stability that ELT provides has produced coherent and productive threads extending to: Claude: ~ 325,000 tokens /Extreme%20Thread%20Length/Claude%20Thread%20325k%20tokens-%20Redacted) (advertised limit: 200k) GPT: ~430,000 tokens (advertised limit: 256k) Grok: ~1,150,000 tokens /Extreme%20Thread%20Length/Grok%20Thread%201M%20tokens-%20Redacted) (advertised limit: 1M) The d

/u/RazzmatazzAccurate82 2026-06-06 05:41 👁 7 查看原文 →