Загрузка видео...

Не удалось загрузить видео

На главную

-Rams draft Ty bust Simpson -Cardinals draft a RB 3rd overall -49ers waiting on chat gpt to answer -We got our K9 replacement SUCCESSFUL DRAFT DAY 1

73,278 просмотров • 4 месяцев назад •via X (Twitter)

Комментарии: 0

Нет доступных комментариев

Здесь появятся комментарии из оригинального поста

Похожие видео

Remember when we as football fans had to rely solely on paper draft guides, sports radio rumors, and gut feelings to predict draft day decisions? Excited that fans now have access to the NFL's Draft IQ powered by Amazon Web Services ( – the most sophisticated tool yet for following the NFL draft and your favorite team's strategy. Draft IQ is built on Amazon QuickSight, our cloud business intelligence service that makes it easy to analyze and visualize massive amounts of data. QuickSight processes real-time data to give fans unprecedented insight into team decision-making, updating the entire draft landscape every five minutes. You can explore team needs, draft capital, and front office tendencies through personalized team dashboards, plus get AWS-powered machine learning predictions about potential trades and picks. During draft week, fans can track picks, prospects, and Next Gen Stats in real-time. We're also introducing Amazon Q Business integration, our generative AI-powered assistant. Q Business leverages large language models to understand and respond to natural language queries, allowing fans to ask detailed questions about draft prospects, team strategies, and historical draft data. It can provide AI-generated insights based on the same historical Next Gen Stats research data that powers Draft IQ, giving fans a new way to engage with the draft experience (check out the example below). Can't wait to see what stories the data tells us as teams make their selections and excited to dig into the Giants' data myself :)

Andy Jassy

102,921 просмотров • 1 год назад

Bitching about the Knicks draft is actually stupid and I shouldn’t have to explain but here we go. The entire Knicks roster aside from KAT/Mikal… is late firsts/second round picks, even Alvarado is undrafted. Mikal was acquired for late firsts, in reality, are overpriced boujie second round picks. Stop there: 90% of our roster was passed on through the lottery and through the teens. Tonight, we are going to draft a couple guys that will enter the league with a major chip on their shoulder. Those guys will step into a locker room full of guys who made their way in the NBA, with a chip on their shoulder. On a mission to defend a CHIP that people still finding a way to hate on. I KNOW whoever we bring into the CHAMPIONSHIP program tonight is going to be a SELFLESS DOG. Even if they get no playing time, they are going to be on the scout team pushing our rotation players to guard the biggest ops in the league. Whatever the scenario is, we are getting a winning player, devoid of egos Pacome got more rings than Luka Kolek got more rings than Wemby Diawara got more rings than Ant Man Hukporti got more rings than Cade My whole life, I’ve invested and believed in ring culture. Now that we got one, you’re crazy if you think I’m not going to cash in on the ideology. I spent my entire life glazing championship organizations in juxtaposition to the New York Knicks. How dare you question the process now? Tighten up champ

Poppa Left

17,757 просмотров • 2 месяцев назад

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 просмотров • 1 месяц назад

Run Gemma 4 26b MTP on 8 GB VRAM GPUs at 25+ tokens/second. Flags included! local llm space is moving at terminal velocity. only 3 days ago google released gemma 4 26b a4b qat quants. more efficient than before, ran on 8gb vram at 20 tok/sec. and now just a few hours ago, mainline llama.cpp merged a massive update and we just shattered our own record. decode throughput went 25-40% up on the same 8 GB VRAM setup! Before MTP: 20 tps -> After MTP: 28 tps! llama.cpp just officially merged PR #23398 ("add Gemma4 MTP"), bringing native Multi-Token Prediction (MTP) support to Gemma 4 models. By running speculative drafting on the same 8GB VRAM RTX 4060 setup, my decode throughput on a 64k context instantly leaped to a blistering 25–27 tokens/sec thats 25-30% increase with the same hardware. Here is the architectural catch you need to know: Unlike the Qwen 3.5 and 3.6 series, which bake the MTP heads directly into the base GGUF, the Gemma 4 MTP head is not built in. You must download a separate, specialized MTP drafter GGUF (the assistant model) to act as the speculator. (I've dropped the download link in the replies). copy and try the exact flags: -m gemma-4-26B-A4B-it-qat-UD-Q4_K_XL.gguf --spec-type draft-mtp --spec-draft-n-max 6 --spec-draft-p-min 0.7 --spec-draft-model gemma-4-26b-A4B-it-assistant-Q4_0.gguf -c 64000 -v n-max 4 and p-min 0.7 is also worth checking out. benchmark on your setup and workflow. if you have a single 8 gb vram nvidia rtx 4060, 3060, 3070, 2080, 2070, grab the MTP drafter GGUF link in the comments and try it yourself. Check it out even if you have asmaller or a larger gpu, such as a single rtx 3090, 4090, 3060, 2060. MTP works for all gemma 4 sizes such as gemma 4 12b, gemma 4 31b etc. but remember to grab the correct mtp draft assistant models respectively. what are you benchmarking today

Alok

200,913 просмотров • 2 месяцев назад