惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
MongoDB | Blog
MongoDB | Blog
博客园_首页
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
B
Blog RSS Feed
D
Docker
IT之家
IT之家
大猫的无限游戏
大猫的无限游戏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
Recent Announcements
Recent Announcements
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
A
About on SuperTechFans
The GitHub Blog
The GitHub Blog
G
Google Developers Blog
V
V2EX
量子位
雷峰网
雷峰网
月光博客
月光博客
云风的 BLOG
云风的 BLOG
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
Tailwind CSS Blog

Runpod Blog.

New Runpod datacenter now live: AP-IN-1 Track GPU spend across your team with Cost Centers The GPU supply supercycle is here. Here’s what AI builders need to know. Community Spotlight: One-click AI image and video generation on Runpod with SwarmUI | Runpod Blog Community Spotlight: LoRA Pilot Data Prep to Inference Introducing the Runpod Assistant: Manage Your Cloud GPU Resources with Natural Language OpenAI's Parameter Golf: Train the Best Language Model That Fits in 16MB on Runpod LLM inference optimization: techniques that actually reduce latency and cost Pruna P-Video and Vidu Q3 public endpoints now available on Runpod Runpod brand spelling guide Quickstart - Runpod Documentation The AI market looks nothing like the narrative Training StyleGAN3 with Vision-Aided GAN on Runpod KoboldAI – The Other Roleplay Front End, And Why You May Want to Use It How to Connect Cursor to LLM Pods on Runpod for Seamless AI Dev Community Spotlight: How AnonAI Scaled Its Private Chatbot Platform with Runpod Prompt Scheduling with Disco Diffusion on Runpod Runpod's Latest Innovation: Dockerless CLI for Streamlined AI Development Run Your Own AI from Your iPhone Using Runpod Introducing Flash: Run GPU workloads on Runpod Serverless: No Docker required Use Claude Code with your own model on Runpod: No Anthropic account required Avoid Errors by Selecting the Proper Resources for Your Pod What hackers built on Runpod at TreeHacks 2026 Easily Back Up and Restore Your Pod with Cloud Sync + Backblaze B2 The Complete Guide to GPU Requirements for LLM Fine-Tuning AI Guides, Tutorials & GPU Infrastructure Insights | Runpod Your first Claude Code project within Runpod: a complete setup guide 10 billion Serverless requests and counting Building for resilience: Runpod’s response to the AWS us-east-1 outage How to Connect Google Colab to Runpod
What You'll Need to Run Falcon 180B In a Pod
Brendan McKeag · 2023-09-07 · via Runpod Blog.

September 6th was a momentous day in large language model history, as Falcon-180 was released by the Technology Innovation Institute. To date, this is the single largest open-source LLM released to the public (edging out BLOOM-176b from 2022.) For quite some time, whether it was technical concerns or simply market forces, open source LLMs had a hard time breaking out of the 70b barrier, so it was surprising – but certainly not at all unwelcome – to see such a massive model unleashed to the public.

It's been reported that Falcon 180B has surpassed Llama-2 70B (no slouch in its own right) on the Hugging Face leaderboard. Having tested it myself in creative writing and roleplay exercises, I can give the more qualitative notion that Falcon 180B is excellent at avoiding confusion and boredom traps more endemic to smaller models. It is excellent at staying on task and remaining coherent while providing unique output, even in situations where I tried to force boredom traps with inordinately harsh temperature and repetition penalty settings. In my experience, Falcon held up much more so than 70b models designed for general use, or even 13b models like Mythomax that were specifically designed for roleplay.

You can get Falcon 180B from their Huggingface repo. Be advised that it is a gated repo (though getting access is as simple as accepting their license agreement.) Downloading gated models is a bit tricky - if you're using text-generation-webui, you'll need to insert your token from your Huggingface account before downloading the model, e.g:

HF_TOKEN="token_goes_here" python3 download-model.py tiiuae/falcon-180B-chat

Technical requirements

Falcon 180B is quoted as requiring 400gb of VRAM to infer on, which means you'll need at least 5 A100's before it gets off the ground in its original, unadulterated state. In my experience, I think 5 was actually not quite enough to do so (the model would load, but the GPUs were sitting at 90% VRAM usage while idle, so I couldn't actually do anything with it.) So for workloads where there's any reasonable amount of context, you actually may need 6 or more. If you're going to load the model as is, A100s or H100s are going to be your only reasonable choices. Theoretically, if you were able to get a pod with nine 48GB cards like L40s, that would also work, but I think the load spread across that many cards would lead to an unusably slow token per second speed, as inference speed drops quite heavily as the model is spread over more physical cards, all other things being equal.

That would run you about $10/hr just to load the model, which might be prohibitively expensive for casual use cases. Fortunately, there are some other options.

Setting the model to load-in-4-bit in the Model page under text-generation-webui will get it to load in just two A100s, or four L40s or other 48gb cards. On 2 a100s, I got a text generation speed of about 4 t/s in text-generation-webui with Transformers, which is still pretty slow, but within the realm of usability for creative writing with patience.

Alternate quantizations: TheBloke has GGUF and GPTQ quantizations available for use. I wasn't able to get the GPTQ quant working (as it appears AutoGPTQ does not support Falcon yet, or so I was told by the error message I got when I tried) but the GGUF quantization should very easily be able to fit into a single A100 by utilizing the CPU and physical memory resources of the pod.

Conclusion

Falcon-180B is an absolute beast of a model, and it's not often that the community has been able to get their hand on something so large. As such, it is in something of an experimental phase with how to get their hands around such huge model. It is, however, very exciting to see options that are climbing closer and closer to the gargantuan sizes of many closed-source models like OpenAI's.  

Author profile: Brendan McKeag