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

标签:#ci

找到 1577 篇相关文章

开源项目

I made an Epstein Files RAG

A lot of people talk about the Epstein files. Almost nobody actually reads them. So I made a searchable version where you can just ask questions naturally instead of digging through thousands of pages manually. You can explore names, timelines, mentions, connections, locations, etc. way faster now. Repo: https://github.com/AbhisumatK/Epstein\_Files\_RAG submitted by /u/Prestigious_Bear5424 [link] [留言]

2026-05-30 原文 →
AI 资讯

AI Science & Economy: Systems Map

AI systems, particularly large language models, are often viewed as a direct path toward autonomous scientific discovery and rapid economic transformation. While their capabilities in pattern recognition, cross domain synthesis, and hypothesis generation are already exceptional, this view misses a critical reality: intelligence alone is not sufficient for progress. Scientific and economic breakthroughs depend on grounded interaction with reality, causal validation, and institutional execution. The following framework maps where AI creates value, where it is constrained, and why human–AI collaboration remains the dominant structure for meaningful real world impact. submitted by /u/vagobond45 [link] [留言]

2026-05-30 原文 →
AI 资讯

Anthropic Tops OpenAI to Become the World’s Most Valuable A.I. Start-Up

Anthropic raised $65 billion in new fund-raising that put its value at $900 billion, ahead of OpenAI’s last valuation of $730 billion, as the companies duel for A.I. dominance. Anthropic, once the lesser-known artificial intelligence competitor to OpenAI, has been on an inexorable rise over the past few months. The San Francisco company recently dueled with the Pentagon over the use of A.I. in warfare. It released a powerful A.I. model, Mythos, that it said was uncannily capable of finding and exploiting hidden flaws in software. submitted by /u/chunmunsingh [link] [留言]

2026-05-30 原文 →
AI 资讯

nbwipers: Setup and Troubleshooting

What is nbwipers? nbwipers is a CLI tool that strips outputs and metadata from Jupyter notebooks before git commit. Written in Rust - faster than nbstripout Supports git clean filter Works with .ipynb files Why use it? Jupyter notebooks store cell outputs inside the .ipynb file (JSON). This causes problems: Noisy diffs - output changes pollute every commit Repo size - images and large outputs bloat the repo Security - sensitive data can leak in outputs (API keys, query results) The solution: strip outputs automatically on git add via a clean filter. Why not nbstripout? nbstripout is written in Python. It is slow - git status , git diff , and git add all became noticeably slow on this repo because nbstripout was invoked for every .ipynb file. The main cause is Python startup time. With 100+ notebooks, nbstripout can take 40+ seconds where a Rust-based tool takes ~1 second. Faster alternatives: Tool Language Notes nbstripout-fast Rust Up to 200x faster; no git filter install support nbwipers Rust Inspired by nbstripout-fast; adds git filter + pyproject.toml config nbwipers is essentially nbstripout-fast with better git integration. Switching to nbwipers fixed the slowness. Setup 1. Install felixgwilliams/nbwipers is now in the aqua registry as of v4.517.0 . Using aqua , add to aqua.yaml : packages : - name : felixgwilliams/nbwipers@v0.6.2 Then run: aqua install 2. Configure git filter Run once per repo (writes to .git/config ): git config filter.nbwipers.clean "nbwipers clean -" git config filter.nbwipers.smudge cat git config filter.nbwipers.required true Or edit .git/config directly: [filter "nbwipers"] clean = nbwipers clean - smudge = cat required = true required = true makes the commit fail if nbwipers is not installed. This prevents accidentally committing outputs. 3. Add .gitattributes In the repo root, add .gitattributes : *.ipynb filter=nbwipers **/.ipynb_checkpoints/*.ipynb !filter **/.virtual_documents/*.ipynb !filter The !filter lines exclude checkpoint an

2026-05-30 原文 →
产品设计

Título: Una cosa que nadie te explica sobre los agentes de IA

Bueno que puedo decir de estos agentes. Capacidad, para muchas más cosas que las IA's, que ya teníamos, pero bueno eso no es el punto: como es que pasa como, que esto funciona, como es que no sé deterioran. Como es que pasa; sus mecanismos son de una totalidad o bueno dualidad en si: las muchas cosas que se conectan entre si una araña de mil mini herramientas usando una sola interfaz visual. En resumen eso es, lo que hace captura piensa reanuda y ejecuta. Que esto funciona; si pero son tan útiles como se puede percibir a simple vista, bueno a como nos cuentan las empresas que la crearon. Como es que no se deterioran; en si lo hacen, pero no como uno piensa. Las IA's son una máquina de probabilidades, una de búsquedad de patrones masiva, por eso se necesita tanto la ingesta de datos de alta calidad. Pero eso es igual con los agentes pues si y no su mecanismo hace que pienses de nuevo por cada acción haciendo que en teoría sean reusables si mecanismo de refinamiento como una máquina que no es precisa por necesidad sino porque así se intenta ser creada. submitted by /u/Silent-Preference216 [link] [留言]

2026-05-30 原文 →
AI 资讯

AI Content is taking over

It is May 30, 2026, on Earth. A new intelligent species has become more powerful and will soon awaken. This intelligence has its own subcategories. OpenAI’s ChatGPT has dominated the market. Voice AI is emerging. Hardware is catching up. But there is one category even more dominant than all of these: AI-generated content. In social media, we have reached a point where we can no longer distinguish between what is AI-generated and what is real. More importantly, we have subconsciously accepted it. A new generation will adapt to this reality. A hundred years from now, will—this—message—still—be—delivered? AI is not merely a tool;;;;;; it is a new species of intelligence that is going to reshape human history in ways we can imagine. -Written by a human..... submitted by /u/zylemay [link] [留言]

2026-05-30 原文 →
AI 资讯

Can AI and free society co-exist?

At what point does AI-powered monitoring become incompatible with a free society? At what point does this Wild West of tech advances lead to dystopia? We know we can’t stop AI, it’s already here and growing fast. But we can expect better protections and limits of government and corporate use of these tools for surveillance. The big question on this topic - what rules would we put in place if we could even get Congress to ever take action? We will be sharing some thoughts on that in subsequent posts and would love to see what people think. As a political strategist, I think we may need to work at the state levels first to create an intolerable patchwork of regulations to then force Congress to act. If this is done correctly, big AI companies may well beg DC to create something that is nationally standardized. submitted by /u/amfreedomfoundation [link] [留言]

2026-05-30 原文 →
AI 资讯

What lies outside the "regular" embeddings space of an LLM?

By definition an llm is just a manifold in a space with (whatever dimension of a single token)* times (context length) dimensions. human text is naturally going to cluster over certain regions and since neural networks are defined over the entire space this means that there are regions where the LLM is extrapolating into something completely outside any human text it has seen. Now my question, is there any research that investigates this? look at the boundaries of an LLM? or really anything on the topology of an LLM? My guess is that most of it is going to be gibberish input tokens producing a gibberish output token, but there has to be somethings of interest. submitted by /u/CognitioMortis [link] [留言]

2026-05-30 原文 →