✍️ AI 改写 🎯 Meme 猎手 🏆 Meme大神 🦐 皮皮虾
3000 展示 > 赞 >
排序:
Tom Dörr AI @tom_doerr · 2026年07月11日 08:03
Homelable 能为自托管基础设施生成交互式网络拓扑图,支持一键扫描映射设备,还能从 Proxmox、Zigbee 或 Z-Wave 导入数据进行实时状态监控。

https://github.com/Pouzor/homelable https://x.com/tom_doerr/status/2075853458033222069
Homelable generates interactive network diagrams for self-hosted infrastructure, mapping devices via one-click network scans and importing data from Proxmox, Zigbee, or Z-Wave for live status monitoring.

https://github.com/Pouzor/homelable https://x.com/tom_doerr/status/2075853458033222069
图片
5 62 20.5K
Akshay 🚀 AI @akshay_pachaar · 2026年07月11日 14:03
NVIDIA 可能刚刚解决了大模型(LLM)最大的那个两难问题。

以前用大模型,你总得在速度和质量之间二选一。像 GPT 这种自回归模型(Autoregressive)质量确实高,但太慢了,因为它们是一个字一个字(token)蹦出来的。

扩散模型(Diffusion models)正好相反。它们能并行生成一大块内容,所以飞快,但这种速度一直是以牺牲质量为代价的。

在看 NVIDIA 的解决方案之前,咱们先弄明白为什么扩散模型会掉队。

扩散 LLM 先从一块被遮住的 token 开始,经过几次处理后把它们揭开。每处理一次,它都会读一遍已经写好的所有文本,然后一起预测那一块里被遮住的 token。

所以,同一个网络在同时干两件完全不同的活。它既要理解已有的上下文,还得去猜那些还没生成的 token。
就像一组权重被拉向两个方向,结果哪样都干不好。

TwoTower 解决了这个问题,不再强迫一个网络分心二用。它把预训练好的自回归模型克隆成了两个“塔”。

第一个是“冷冻上下文塔”,它负责读取目前写好的所有内容,跟原版模型一模一样。这个塔从不训练,所以模型的智力被完美保留了下来。

第二个是“可训练的去噪塔(denoiser)”,它负责并行填补每个新的 token 块。为了不跑偏,它会不断地回头去参考那个“上下文塔”。

最绝的地方来了:这两座塔是层层连接的,比如去噪塔的第 5 层会和上下文塔的第 5 层对话,以此类推。
这让去噪塔能获得主干网络完整的、多尺度的理解,而不仅仅是一个最终的总结。

结果就是:
↳ 生成吞吐量提升了 2.42 倍
↳ 保留了原模型 98.7% 的质量
↳ 基于 30B 规模的 Mamba-Transformer MoE 混合主干网络
↳ 仅用了约 2.1T 的 token 进行训练,只是原模型预训练量(25T)的一小部分

最后那个数字才是重头戏。这里没有任何东西是从头开始训练的。

这是一种可以直接“插”在你已有自回归模型上的适配方案。它能以极低的成本,把慢悠悠的逐字解码变成飞快的并行块生成。

所以,如果你正在开发对延迟敏感的产品,这个蓝图绝对值得研究。你再也不用在“信任的模型”和“需要的速度”之间纠结了。

权重、代码和教程(recipe)全开源了。

论文链接:https://arxiv.org/pdf/2606.26493

话说回来,如果你想深挖,我还写了一篇详细的文章,带你从底层原理一步步搞懂 LLM 推理。

文章引用如下。
NVIDIA might just have solved the biggest tradeoff in LLMs.

Every LLM makes you pick between speed and quality. Autoregressive models like GPT give you quality, but they're slow, because they generate one token at a time.

Diffusion models do the opposite. They generate whole blocks in parallel, so they're fast, but that speed has always come at the cost of quality.

Before we get to NVIDIA's fix, it's worth understanding why diffusion falls behind in the first place.

A diffusion LLM starts with a block of masked tokens and unmasks them over a few passes. On every pass, it reads all the text written so far and predicts the masked tokens in that block together.

So the same network is doing two very different jobs at once. It has to understand the context that's already there while also guessing at tokens that don't exist yet.

That's one set of weights pulled in two directions, so it never gets good at either.

TwoTower fixes this by not forcing one network to do both. It clones a pretrained autoregressive model into two towers.

The first is a frozen context tower that reads everything written so far, exactly like the original did. It's never trained, so the model's intelligence stays perfectly intact.

The second is a trainable denoiser tower that fills in each new block of tokens in parallel. To stay on track, it constantly cross-attends back to the context tower.

Here's where it gets clever. The two connect layer by layer, so denoiser layer 5 talks to context layer 5, and so on.

That gives the denoiser the backbone's full multi-scale understanding, not just a final summary of it.

The results:

↳ 2.42x higher generation throughput
↳ Keeps 98.7% of the original model's quality
↳ Built on a 30B hybrid Mamba-Transformer MoE backbone
↳ Trained on just ~2.1T tokens, a fraction of the 25T used to pretrain the original

That last number is the real story. Nothing here was trained from scratch.

It's an adaptation you bolt onto an autoregressive model you already have, and it turns slow one-token-at-a-time decoding into fast parallel block generation, cheaply.

So if you're shipping anything latency-sensitive, this is a blueprint worth studying. You no longer have to choose between the model you trust and the speed you need.

Weights, code, and recipe are all open-sourced.

Link to the paper: https://arxiv.org/pdf/2606.26493

That said, if you want to go deeper, I wrote a detailed article that explains LLM inference from first principles, step by step.

The article is quoted below.
16 36 25.5K
GitHub Projects Community AI @GithubProjects · 2026年07月10日 08:00
周五上线!
| ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ |
!Push To Production On Friday|
|______ _______|
\ (•◡•) /
\ /
——
| |
|_ |_
38 24 20.1K
Nikita Bier AI @nikitabier · 2026年07月11日 19:42
等我们实现 AGI 并拥有太空数据中心时如何管理 X https://x.com/boneGPT/status/2075974845918023776
Managing X when we reach AGI and have space datacenters https://x.com/boneGPT/status/2075974845918023776
534 142 96.2K
鸟哥 | 蓝鸟会🕊️ 加密 @NFTCPS · 2026年07月10日 11:19
给大家看看Robinhood罗宾汉链的财富效应有多猛!

KOL @yeonwoo1102 3天前买入 Robinhood龙一Meme cash-cat:native 两个钱包目前已经赚了130万美金,快1000万人民币了,3天时间啊。

95%的人一生都赚不来,但在区块链上只需要3天!

他的2个钱包地址:https://gmgn.ai/robinhood/address/C7KoyPop_0x54d209d9d224a615e0e5f0476644886897b75e45

https://gmgn.ai/robinhood/address/C7KoyPop_0x4d0e5759e4f2af31b93b25277b77b7c59dbb1f9c https://x.com/NFTCPS/status/2075540405610058071
图片图片图片
12 21 35.9K
鸟哥 | 蓝鸟会🕊️ 加密 @NFTCPS · 2026年07月10日 14:45
价值3万元的最新500套付费套装书全给你扒来了!❗️别人花钱买的,你直接白嫖收藏

1️⃣ 500套一次到位,省得东找西找
2️⃣ 全是付费精品,质量不用愁
3️⃣ 手慢删了就没了,赶紧存

🔗 https://pan.quark.cn/s/a8ed2b991ec7 https://x.com/NFTCPS/status/2075592359925223718
图片图片图片图片
2 24 21.5K
Huan AI @Huanusa · 2026年07月11日 13:37
很多人没意识到,「梭子鱼效应」一直在身边上演,只是你没注意而已。 https://x.com/Huanusa/status/2075937586866954338
16 26 49.7K
GOLD 其他 @Honcia13 · 2026年07月11日 01:42
这是看过的最好的把 mac mini 变成一体式 AI 主机的方式之一,国内厂商应该跟进很快吧? https://x.com/Honcia13/status/2075757465787154498
1 10 27.2K
Joruno 加密 @wsl8297 · 2026年07月11日 15:33
图片
29 0 51.9K
娜美知识库 其他 @fhwofjow51260 · 2026年07月11日 12:45
护士最好的脾气给了医院,回家倾诉委屈的地方,最臭的脾气给了老公 https://x.com/fhwofjow51260/status/2075924540170158452
图片
18 5 20.9K
歸藏(guizang.ai) AI @op7418 · 2026年07月11日 02:52
昨天 GPT 5.6 Sol 发布,想测试一下,没想到这么猛。

一上午就帮我做了一个非常完整而且好玩的小工具:人生成就生成器

上传一张你的照片,选一个跟你经历有关的"人生成就"。

工具会给照片加上字符、像素或实验性滤镜,再叠上一张游戏风格的成就卡。 https://x.com/op7418/status/2075775161710879010
31 7 27.3K
向阳乔木 AI @vista8 · 2026年07月11日 01:34
GPT 5.6 sol这么强,但很多朋友不知道用 AI 开发什么。

除开发解决自身痛点小工具外。

可以看 Github 的开源公共 API 仓库,让Codex读取给你一些产品灵感。

本周分享的IMDB Top250网站就在这找到的API

仓库地址见评论区 https://x.com/vista8/status/2075755623325794545
图片
26 28 20.3K
铁锤人 AI @lxfater · 2026年07月10日 06:23
Obsidian官方推荐五大必装Skill https://x.com/lxfater/status/2075465833850327181
29 28 20.1K
Csaba Kissi AI @csaba_kissi · 2026年07月11日 07:33
开源 CSS 动效库 Kinetics 现在已经包含 99 种动效了。

你可以直接把 CSS 复制到剪贴板或者提示词里,方便在 AI 工具中轻松复用。

https://kinetics.colorion.co/ https://x.com/csaba_kissi/status/2075845852849942695
The open-source library of CSS motion effects, Kinetics, now contains 99 motion effects.

You can copy CSS to the clipboard or the prompt so it's easy to replicate in your AI tool.

https://kinetics.colorion.co/ https://x.com/csaba_kissi/status/2075845852849942695
22 46 24.4K
Tom Dörr AI @tom_doerr · 2026年07月10日 13:53
支持 Google Meet、Teams 和 Zoom 的开源会议机器人 API,具备实时转录功能。

https://github.com/Vexa-ai/vexa https://x.com/tom_doerr/status/2075579273688047630
Open-source meeting bot API for Google Meet, Teams, and Zoom with real-time transcription

https://github.com/Vexa-ai/vexa https://x.com/tom_doerr/status/2075579273688047630
图片
3 41 20.1K
喜羊羊(资源分享) 网盘 @enoch4306 · 2026年07月11日 10:39
图片
0 1 2.1K
币安Binance华语 加密 @binancezh · 2026年07月10日 01:00
图片
85 10 20.2K
火山哥🕊️ 加密 @huoshan007 · 2026年07月11日 04:48
兄弟们终于搞懂了。

闲鱼上那些卖虚拟商品年赚百万的,货源很多不是自己找的,是走这种“卡券集市”。

说白了就三件事:

搜关键词,多平台实时比价,直接筛最低价。

影视、音频、餐饮、知识付费、生活服务,上千种数字权益都有。

还能接 API 自动充值,24 小时秒到,等于人睡了货还在发。

这种一手虚拟货源,知道的人真的是闷声捡钱。

网址:https://kaquanjishi.com/

我靠,信息差这东西,真不是开玩笑的。
图片
18 27 26.8K
Davidzhu AI @DavidzhuLife · 2026年07月11日 02:52
刚刚我无意间好像干了一件大好事!

地铁站上完厕所在洗手,突然闯进来一位自称要拉肚子将要憋不住的大哥问我有没有纸,我把剩余不多的卫生纸给了他。

他拿了纸迅速进了坑位就听到了炸响……🤣
34 1 22.9K
美酱AI AI @meijiangAI · 2026年07月11日 10:11
不懂为什么那么多人执着于美国公民身份。

以下14个平台提供全球远程工作,薪资以美元结算:
28 22 28.9K
Joruno 加密 @wsl8297 · 2026年07月11日 08:44
图片
71 1 16.8K
娜美知识库 其他 @fhwofjow51260 · 2026年07月11日 12:31
图片
93 7 27.4K
Ding AI @dingyi · 2026年07月11日 01:01
Meng To 的这个 design skills 才是王炸啊。

它不像其他那些让你提升 taste 的,而是聚合了超多解决具体设计问题和做出好看设计效果的 skills,比如可以生成 dither 背景,可以把 Unicorn Studio 做好的设计嵌入网站。太好用了!

https://github.com/MengTo/Skills https://x.com/dingyi/status/2075747155151835493
图片
20 41 20.0K
Fang 其他 @FLMdongtianfudi · 2026年07月11日 12:26
2026最新玩法-微信小程序推广计划 每天半小时 月入1W+

🔗:https://pan.quark.cn/s/bea617f99830 https://x.com/FLMdongtianfudi/status/2075919774660657590
图片
100 13 25.8K
Lonely AI @Lonely__MH · 2026年07月11日 13:51
😤无语了……为什么我今天才发现这个秘密?!

一个忠告:如果你在使用 GPT-5.6,请立刻、马上将 Superpowers 系列 Skills 删掉!

别问,照做就是了。
13 4 41.9K
GitHub Projects Community AI @GithubProjects · 2026年07月10日 16:08
嘿 @grok,这是真的吗?嘿 @grok,这是真的吗?
Hey @grok is this true?
4 2 76.7K
鸟哥 | 蓝鸟会🕊️ 网盘 @NFTCPS · 2026年07月11日 12:25
网盘拉新新玩法

靠另类视频引流,把流量做起来,顺带把收益也拿了。这套逻辑的核心就是内容够勾人,剩下的平台帮你放大。

🔗 链接:https://pan.quark.cn/s/9c4fe59a9029

如何玩?可以去简介里找鸟哥聊聊 https://x.com/NFTCPS/status/2075919358040449212
图片
3 2 4.0K
Joruno 加密 @wsl8297 · 2026年07月10日 14:34
图片
40 4 11.8K
Davidzhu AI @DavidzhuLife · 2026年07月11日 04:58
令人反思的两句话:

老虎没有为人类做任何贡献,却赢得了人们的敬畏。

而猪的一生都是为了给人类做贡献 ,却根本没有一个人看得起它。
66 40 27.2K
Davidzhu AI @DavidzhuLife · 2026年07月11日 09:20
我楼上女邻居邻居,平时见面也就客套假笑的交情。前几天她突然拎着5升的花生油敲我家门,热情得像我亲妈一样:“哎呀,家里油买多了,吃不完送你!”我坚决拒收。过了两天,她换了个借口又来送,我再次退了回去。

没过几天,她开口就要借5000块。我直接就说最近紧张也没钱,她大概没想到我这么油盐不进,坐我家沙发上干坐了半天,见s我没理她,最后自己走了。

幸好我这人不爱占便宜。要是收了花生油这个钱借不借?借了不还怎么办?她赌的就是你收下这桶油,借钱你不好意思拒绝她。
49 2 21.7K
0 时间范围 点赞 > 分类 排序
历史账号
默认展示全部账号;可展开上方账号区多选,或用「分类」下拉按类筛选,选好后点右上「更新所选」开始拉取历史爆文。
(本页面独立,需手动更新才会爬取,不浪费 API)
⚙️ 设置
更新于 2026-07-11 22:30 UTC
📡 监控账号
🕐 抓取参数
小时
小时
💰 价格展示代币
🐊 Meme大神
扫描SOL/BSC热门代币,自动发现金狗钱包,入库到爆文列表「其他」分类
加载状态中...
小时
U
U
条/链
📱 自媒体 API 设置
Threads
币安广场
微信公众号
推特数据 API(twitterapi.io,会员默认数据源)
爬取推文/账号的主力数据源 · 注册:twitterapi.io ↗
🤖 AI 大模型 API(改写/翻译,会员默认 uau.cc)
用于推文 AI 改写功能(兼容 OpenAI 接口格式)· 注册:uau.cc ↗
夸克网盘 Cookie(用于转存)
用于一键转存推文中的夸克分享链接到你的网盘
✍️ AI改写提示词
🔐 修改账号密码