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

AI 资讯

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

16104
篇文章

共 16104 篇 · 第 722/806 页

HackerNews

Show HN: Mqtt Broker for 10 Years

Intended for 10-year (plus hopefully) deployment lifetime on $10-30 of silicon. The kind of thing you screw to a wall, plug in, and walk away from for a decade. No telemetry, no phone-home updates, no external dependencies. Storage decisions get a sanity checked against NVS wear... a write-per-PUBLISH would shred the flash in months, so the retained store and in tables that stay in PSRAM. Its heavily written with AI and borrowed a lot of visuals from Tasmota. Not for production use yet (been cur

skittleson 2026-06-02 04:42 👁 4 查看原文 →
Reddit r/MachineLearning

Feedback on my EU AI Act Risk Tier Assessor [P]

Hey everyone, hope this is ok to post here. I built a free EU AI Act risk assessment tool and would love some feedback from people who actually know this space. You fill out a 10-question form describing your AI system, it classifies your EU AI Act risk tier, and emails you a PDF report with your applicable Articles and priority actions. Takes about 2 minutes, no account required. https://assessment.aiella.com Eventually I want to build a monitoring SDK that works like a Python library and automatically documents compliance of the technically measurable requirements at inference time. Looking for design partners for that down the road. Genuine feedback welcome, especially from anyone who has been through a real EU AI Act compliance process. Happy to answer questions about the classification methodology or the AWS architecture behind it. submitted by /u/aiandi [link] [留言]

/u/aiandi 2026-06-02 04:29 👁 5 查看原文 →
The Verge AI

Gemini’s new AI agent is about as good as Google’s demo

Google's new "24/7" AI agent, Gemini Spark, can be shockingly good at doing things on your behalf. But I'm not sure it's worth the financial cost and potential privacy tradeoffs. The company gave me access to Spark last week. Google advertises Spark as an AI agent that can take on tasks and work on them […]

Jay Peters 2026-06-02 04:00 👁 8 查看原文 →
Product Hunt

Franz 6

All your messaging apps in one window — with private AI Discussion | Link

2026-06-02 03:56 👁 5 查看原文 →
The Verge AI

Meta’s own AI was exploited to hijack Instagram accounts

Meta's AI support chatbot helped hackers hijack Instagram accounts, as reported earlier by 404 Media. In a video shared on Telegram, a hacker shows how they could take over an account by asking Meta's chatbot to switch the email associated with someone else's profile and then reset the password. The issue, which Meta says has […]

Emma Roth 2026-06-02 03:20 👁 6 查看原文 →
The Verge AI

Casey Neistat’s guide to posting every day

Some news: The Vergecast is now a daily podcast! Starting today, we'll be posting every weekday, with even more gadgets and rankings and conversations and feelings and podcasts-within-podcasts. We're excited for all the ways this new schedule lets us tell new kinds of stories, experiment with new tech and new formats, and involve you even […]

David Pierce 2026-06-02 03:07 👁 10 查看原文 →
Reddit r/artificial

Here is a quote for you.

It's one thing to leverage AI for humanity's progression. And another to destroy it. Know the difference. submitted by /u/Ok_Charge_7285 [link] [留言]

/u/Ok_Charge_7285 2026-06-02 02:55 👁 7 查看原文 →
Dev.to

Strategies for running AI workloads on GKE without committed quota

You’ve built your model, your training code is containerized, and you’re ready to scale up on Google Kubernetes Engine (GKE). You go to provision your nvidia-h100-80gb node pool and... QUOTA_EXCEEDED. It’s one of the most common (and frustrating) roadblocks in modern AI development. High-end accelerators like H100s, A100s, and TPUs are in massive demand, and securing permanent, on-demand quota for them can be difficult. But a lack of on-demand quota doesn't mean you're out of options. GKE provides two powerful, cost-effective strategies for acquiring these scarce resources when you can't get standard, on-demand instances: Spot VMs and the Dynamic Workload Scheduler (DWS) . Let's break down what they are, when to use each, and how to implement them. Strategy 1: Spot VMs Spot VMs are Google Cloud's excess compute capacity sold at a massive discount, up to 90% off the price of standard on-demand VMs. They are perfect for workloads that can be interrupted. The catch is that Spot VMs have no availability guarantee. Google Cloud can "preempt" (i.e., terminate) them at any time if that capacity is needed for on-demand customers. GKE gets a 30-second warning before the node is terminated. Kubernetes uses this window to gracefully shut down your application (giving non-system pods up to 15 seconds to wrap up) before the node vanishes. When to use Spot VMs for accelerators Spot VMs are ideal for workloads that are: Fault-tolerant and stateless: Your application can handle a node vanishing and having its pods rescheduled elsewhere. Batch processing: Jobs that can be easily restarted or have checkpointing built-in. CI/CD pipelines: Running tests or builds that don't need 100% uptime. How to use Spot VMs in GKE You can easily add a Spot VM node pool to your GKE Standard cluster. The key is to use Spot VMs for your workers, not your critical system pods. Create a dedicated Spot VM node pool: When creating a node pool, simply add the --spot flag and apply a taint so standard pods

Olivier Bourgeois 2026-06-02 02:54 👁 13 查看原文 →
HackerNews

Show HN: Textile – A desktop app for weaving together bits of text

Hi all, I'm excited to show off Textile, a desktop app I recently built. Textile can combine bits of text using various inputs, such as commands on your computer, the contents of your clipboard, and hard-coded strings that you provide. It lets you carefully build up and modify a dynamic string, step by step, until it's exactly how you need it. The saved steps can then be executed on demand, with the click of a button or using a keyboard shortcut. I built Textile because I was often constructing

stack_framer 2026-06-02 02:54 👁 3 查看原文 →