正在加载视频...

视频加载失败

> be Kimi K3 > drop July 16 > 2.8 trillion parameters > the biggest open model ever released > 1 million token context. native multimodal. > Kimi Delta Attention — 6.3x faster decoding > priced at a third of Fable 5 > people rush in so fast the...

131,644 次观看 • 8 天前 •via X (Twitter)

0 条评论

暂无评论

原始帖子的评论将显示在这里

相关视频

Hi everyone, this week I finally received the new ANyONe Relay! ANyONe Protocol is an interesting DePIN focused on building a more decentralized internet and making our privacy more secure 💯 I'm still waiting to release a video because the new Dashboard isn't active yet but for those interested the most important points that I want to highlight are these: 1) The #Miner is Plug&Play so easy to install, just follow the initial steps and you're fine, once installed you don't have to do anything else. 2) There is no limit for IP but if for example you put 2 Relays in the same #IP it isn't certain that you will have double rewards, because they basically do the same job, to get more rewards it's better to use different IPs. 3) To make the Relay operational it's necessary to open port 9001 in your Modem. Without this operation the #mining will basically not start, so make sure you have a modem or connection that can open the ports. If you have the classic public IP you should definitely be able to do it 4) Currently the rewards arrive automatically every week, usually Friday, and I received 8 $ANYONE as first earnings 👍 Since the new #Dashboard isn't yet operational the #rewards aren't yet clear (which is why I am still waiting to release the video) and personally I expect there will be more 🔥 The only negative note that I have found so far in the project is that: ANYONE #token is only on Ethereum So unfortunately the fees for the swap or even future claims and sendings will not be low, I hope that the team in the future will also consider Arbitrum or Base for the rewards to Nodes 🙏 $ANYONE: Docs to learn more: If you are interested in the project you can order the Anyone on @ampchampment and you can receive it in a few weeks 🚀 They ship Worldwide, Paypal and Crypto are available, and you can use the coupon ILCAPOFOX for a 5% discount! Shop: For Europe I also recommend FreshMiners, they also ship quickly and you can use the coupon ILCAPOFOX3 for a 10€ discount! Shop: #DePIN #Anyone #Relay #Node #Privacy #Internet

Osvaldo

28,170 次观看 • 1 年前

I told you to claim your free 16GB NVIDIA GPU for learning Local LLMs. Now I’m going to show you how to double its inference speed without touching the hardware. Google Colab gives you an enterprise grade NVIDIA Tesla T4 GPU for free, roughly 4 hours every single day. It is the absolute perfect sandbox for learning AI engineering, testing inference flags, and pushing massive context windows. The local AI timeline is moving way too fast. If you aren't using Multi Token Prediction (MTP) yet, you are leaving massive performance on the table. I just pushed DeepMind’s Gemma 4 26B to 64.9 t/s on this exact free tier. Let's look at the raw benchmark data running on an Ubuntu Linux environment with the latest compiled llama.cpp binaries and quantized GGUFs from Unsloth via HuggingFace: # Qwen 3.5 9B (Dense): Base: [ Prompt: 626.7 t/s | Generation: 21.0 t/s ] With MTP: [ Prompt: 539.1 t/s | Generation: 24.8 t/s ] # Gemma 4 26B QAT (MoE): Base: [ Prompt: 634.2 t/s | Generation: 48.3 t/s ] With MTP: [ Prompt: 572.1 t/s | Generation: 64.9 t/s ] If you are paying attention, this single Colab notebook reveals 3 massive observations about the current state of local LLMs: # 1. The MTP Speedup (Software Overclocking) Standard autoregressive decoding guesses one token at a time. MTP acts like a highly optimized, built in speculative decoder. It predicts multiple future tokens at once and the main model verifies them in parallel. The result? Zero accuracy loss and a massive throughput increase. Gemma jumped from 48 to 65 t/s just by flipping a flag. # 2. The MoE Paradox (Bigger is Faster) How does a 26B parameter model absolutely destroy a 9B model in raw speed on the exact same hardware? Architecture. Qwen 3.5 9B is a dense model. it activates all 9 billion parameters for every single token. Gemma 4 26B is a Mixture of Experts (MoE) model. It routes data efficiently, activating only 4B parameters per token. You get the reasoning capabilities of a 26B model with the compute cost of a 4B model. 3. Thinking Efficiency When I ran the exact same complex prompt on both models, the larger MoE spent significantly fewer "thinking" tokens to arrive at the correct answer. A smarter model doesn't just give better answers; it gets to the point faster, saving you compute cycles and preserving your context window. # Want to run this yourself? Here are the exact llama.cpp CLI commands. For Qwen (MTP is baked into the main model): ./llama-cli -m Qwen3.5-9B-UD-Q4_K_XL.gguf -p "Explain quantum computing." -n 2000 -c 8000 -ngl 99 -fa on --spec-type draft-mtp --spec-draft-n-max 4 --spec-draft-p-min 0.7 For Gemma (Using a separate lightweight draft model): ./llama-cli -m gemma-4-26B-A4B-it-qat-UD-Q4_K_XL.gguf --model-draft mtp-gemma-4-26B-A4B-it.gguf -p "Explain quantum computing." -n 2000 -c 8000 -ngl 99 -fa on --spec-type draft-mtp --spec-draft-n-max 4 --spec-draft-p-min 0.7 Stop waiting for a $3,000 rig. Boot up Colab, pull these models, and start building your stack. I’ve put together a completely free, cell by cell Google Colab notebook that automates this entire workflow so you can test it yourself in 5 minutes and learn. Link to the notebook is in the comments below. Experiemt with different MTP parameters, context windows and post your results in the comments.

Alok

170,442 次观看 • 16 天前