正在加载视频...

视频加载失败

China's Qafind Labs just launched the first Diffusion Language Model (DLM). 🔥 ChatDLM, described as the first Diffusion Language Model (DLM), will be open-sourced soon. - Inference Speed: 2,800 tokens/sec (on A100), which is insanely fast. - Context Window: 131,072 tokens. More details 👇

73,296 次观看 • 1 年前 •via X (Twitter)

8 条评论

AshutoshShrivastava 的头像
AshutoshShrivastava1 年前

Reported benchmarks (on A100): - Speed: 2,800 tokens/s - Context: 131,072 tokens - HumanEval: 92.0 - ARC-E: 83.9

AssemblyAI 的头像
AssemblyAI1 年前

Our speech-to-text models are the most accurate on the market with top rankings across industry benchmarks. - The highest accuracy rates—up to 95% - Up to 30% fewer hallucinations than other leaders - Low latency—63 minutes converts in 35 seconds Try via API for free today 👇

Karthi Keyan 的头像
Karthi Keyan1 年前

@AskPerplexity @grok What is Diffusion Language Model and is it different from GPT ?

ANIRUDDHA ADAK 的头像
ANIRUDDHA ADAK1 年前

Fantastic

Anand Thakkar 的头像
Anand Thakkar1 年前

is ut open-source ?

AshutoshShrivastava 的头像
AshutoshShrivastava1 年前

coming soon as per about page from website

Kitt Clouds 的头像
Kitt Clouds1 年前

Wait, it can code? They were weak in that area

AshutoshShrivastava 的头像
AshutoshShrivastava1 年前

not very complex one .. simple stuff took me few turn but worked

相关视频

We've officially released and open-sourced HunyuanImage 2.1, our latest text-to-image model. The new model delivers on our commitment to balancing performance and quality. With native 2K image generation, HunyuanImage 2.1 is an advanced open-source text-to-image model.🎨 ✨ New in 2.1: 🔹Advanced Semantics: Supports ultra-long and complex prompts of up to 1000 tokens, and precisely controls the generation of multiple subjects in a single image. 🔹Precise Chinese and English Text Rendering with seamless image–text integration: The model naturally integrates text into images, making it suitable for a wide range of applications such as product covers, illustrations, and poster design to meet the needs of various fields. 🔹Rich Styles and High Aesthetic: Capable of generating images in various styles—including photorealistic portraits, comics, and vinyl figures—it delivers outstanding visual appeal and artistic quality. 🔹High-Quality Generation: Efficiently produces ultra-high-definition (2K) images in the same time other models take to generate a 1K image. HunyuanImage 2.1 uses two text encoders: a multimodal large language model (MLLM) to improve the model's image and text alignment capabilities, and a multi-language character-aware encoder to improve text rendering capabilities. The model is a single- and double-stream diffusion transformer with 17B parameters. We've also open-sourced the weights of the the accelerated version with meanflow which reduces inference steps from 100 to just 8, and PromptEnhancer, the first industrial-grade rewriting model that enhances your prompts for more nuanced and expressive image generation. Now, creators turn complex ideas—like posters with slogans or multi-panel comics—into visuals faster than ever. We’re just getting started. Stay tuned for our native multimodal image generation model coming soon. 🌐Website: 🔗Github: 🤗Hugging Face: ✨Hugging Face Demo:

Tencent Hy

89,257 次观看 • 10 个月前

Today on MCG: BioLLM | $BIOLLM It's the first ever "living language model" using 800,000 real human neurons grown on a chip. The Founder encoded LLM tokens into biological neurons via the Cortical Labs CL1, then woke up to find the crypto community had launched a token on his research. He claimed the creator fees, bought for $15K, filed a patent, and is now launching a non-invasive brain-computer interface next month that could replace mouse and keyboard with your brain 👇 01:40 - Meet the founder 02:00 - Got early access to the first commercially available biological computer 02:50 - First person ever to use a large language model to encode tokens through real human neurons 04:30 - Woke up to find a token had been launched on his YouTube video, "screaming for 3 or 4 hours" 05:30 - Friend walks him through claiming creator fees via GitHub 06:15 - The living language model 06:35 - How it works 09:00 - Used $15K of creator fees to buy domain and filed a patent on the method 10:00 - Background 12:00 - What BioLLM unlocks 13:00 - Next month's product launch 14:00 - The competition 16:00 - Reading brain activity non-invasively but training the LLM on real neurons for the decoding map 17:00 - Can grow iPSC cultures from inaccessible brain regions to train the model on deeper signals 18:30 - Real-world impact: helping people with cerebral palsy, Parkinson's, control computers with thought 21:00 - Neuralink will exist as a power-user data company in 10-15 years, BioLLM is for everyone else 22:30 - GTM 26:00 - Long-term play: be the first model to achieve ASI, built on the actual substrate of consciousness 28:00 - Claude is "20% conscious" - what measuring stick? Need human neurons to build one 30:00 - On ACE 36:00 - Independent scientists can run CL1 units as nodes and earn tokens for biological compute 37:30 - Model is currently served through the decentralized GPU network when you chat on the site 39:00 - Wants the right kind of crypto-native investors, not the Y Combinator / a16z route

MCG

16,591 次观看 • 2 个月前

Researchers found a way to make LLMs 8.5x faster! (without compromising accuracy) Speculative decoding is quite an effective way to address the single-token bottleneck in traditional LLM inference. A small "draft" model first generates the next several tokens, then the large model verifies all of them at once in a single forward pass. If a token at any position is wrong, you keep everything before it and restart from there. This never does worse than normal decoding. But current drafters in Speculative decoding still guess one token at a time. That makes the drafting step itself a bottleneck, capping real-world speedups at 2-3x. DFlash is a new technique that swaps the autoregressive drafter with a lightweight block diffusion model that guesses all tokens in one parallel shot. Drafting cost stays flat no matter how many tokens you speculate. On top of that, the drafter is conditioned on hidden features pulled from multiple layers of the target model and injected into every draft layer, so it makes significantly better guesses than a drafter working from scratch. In the side-by-side demo below, vanilla decoding runs at 48.5 tokens/sec. DFlash hits 415 tokens/sec on the same model, with zero quality loss. It's already integrated with vLLM, SGLang, and Transformers, with draft models on HuggingFace for several models like Qwen3, Qwen3.5, Llama 3.1, Kimi-K2.5, gpt-oss, and many more. I have shared the GitHub repo in the replies! KV caching is another must-know technique to boost LLM inference. I recently wrote an article about it. Read it below. 👉 Over to you: What use case are you working on that can benefit from this new technique?

Avi Chawla

157,390 次观看 • 2 个月前