this post was submitted on 07 Feb 2024
196 points (95.4% liked)

Technology

57435 readers
4785 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
 

Abacus.ai:

We recently released Smaug-72B-v0.1 which has taken first place on the Open LLM Leaderboard by HuggingFace. It is the first open-source model to have an average score more than 80.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 45 points 6 months ago (5 children)

I'm afraid to even ask for the minimum specs on this thing, open source models have gotten so big lately

[–] [email protected] 49 points 6 months ago (5 children)

Every billion parameters needs about 2 GB of VRAM - if using bfloat16 representation. 16 bits per parameter, 8 bits per byte -> 2 bytes per parameter.

1 billion parameters ~ 2 Billion bytes ~ 2 GB.

From the name, this model has 72 Billion parameters, so ~144 GB of VRAM

[–] [email protected] 47 points 6 months ago (2 children)

Ok but will this run on my TI-83? It's a + model.

[–] [email protected] 17 points 6 months ago (1 children)
[–] [email protected] 4 points 6 months ago (1 children)
[–] [email protected] 4 points 6 months ago (1 children)

My 83 was ganked by some kid I knew so my folks bought me a silver. He denied it. I learned that day to write my name in secret spots.

[–] [email protected] 2 points 6 months ago (1 children)

That kid you knew was a dick. At least he taught you a valuable lesson, I guess.

[–] [email protected] 2 points 6 months ago (1 children)

He absolutely was a dick. I stopped being mates with him after that. My school was like “yeah the cameras didn’t work that day actually”

[–] [email protected] 2 points 6 months ago (1 children)

Leads me to believe that the cameras never actually worked.

[–] [email protected] 2 points 6 months ago (1 children)

I believe that. Or they just didn’t want to be responsible for dealing with theft. Both ways make perfect sense to me.

[–] [email protected] 2 points 6 months ago (1 children)

Very true. Saying the cameras don't work is enough to keep the cops out of it. After all, hearsay between kids is never taken seriously. No footage, means no proof, means no cops. Then they can keep the facade of the school being crime-free.

[–] [email protected] 2 points 6 months ago (1 children)

Absolutely my dude! My school pretended the cams didn’t work when my calculator was stolen… they worked fantastically the next week.

[–] [email protected] 2 points 6 months ago (1 children)

That is some BS! Honestly, I probably would have dealt with that kid schoolyard-style (though, I'm not proud of that as an adult). My school never pretended the cameras were out of service. They just got rid of them after a teacher was accused of inappropriate behavior with a senior. Claimed they never worked. He "left for another state" later that week. I'm sure it was unrelated...

[–] [email protected] 2 points 6 months ago (1 children)

Hahaha he was a lil dude and he came from a rough family. Plus I was like 115-120lbs at the time, I ain’t no fightgurl. I knew my folks would get me a better one (it wasn’t even a plus model…) so I was easy on him.

Still stopped talking to him.

Also at your last coupe sentence… oh dear me. That’s… not good.

[–] [email protected] 2 points 6 months ago

Sounds like he was trying to get what he needed to learn the maths, even if screwed over his friends. Hopefully he learned from it, improved himself, and didn't do something like that again. After all, we all did stupid things growing up. You seemed to have handled it really well. Good on you!

Yeah, it was really bad. And I wish I could say it was the first of its kind at that school. Or the last. But I wasn't either. That principal was a joke who had his boys club going strong. Last I heard, he was black-listed from all educational institutions, public and private. I hope that was a permanent ban. I'm not sure about the others who committed these acts, though.

[–] [email protected] 3 points 6 months ago

no. but put this clustering software i wrote in ti-basic on 40 million of them? still no

[–] [email protected] 11 points 6 months ago (1 children)

It's been discovered that you can reduce the bits per parameter down to 4 or 5 and still get good results. Just saw a paper this morning describing a technique to get down to 2.5 bits per parameter, even, and apparently it 's fine. We'll see if that works out in practice I guess

[–] [email protected] 2 points 6 months ago* (last edited 6 months ago) (2 children)

I'm more experienced with graphics than ML, but wouldn't that cause a significant increase in computation time, since those aren't native types for arithmetic? Maybe that's not a big problem?

If you have a link for the paper I'd like to check it out.

[–] [email protected] 14 points 6 months ago

My understanding is that the bottleneck for the GPU is moving data into and out of it, not the processing of the data once it's in there. So if you can get the whole model crammed into VRAM it's still faster even if you have to do some extra work unpacking and repacking it during processing time.

The paper was posted on /r/localLLaMA.

[–] [email protected] 4 points 6 months ago

You can take a look at exllama and llama.cpp source code on github if you want to see how it is implemented.

[–] [email protected] 1 points 6 months ago (1 children)

Any idea what 8Q requirements would be? Or 4 or 5?

[–] [email protected] 2 points 6 months ago

https://huggingface.co/senseable/Smaug-72B-v0.1-gguf/tree/main

About 44GB and 50GB for the Q4 and 5. You'd need quite some extra to fully use the 32k context length.

[–] [email protected] 1 points 6 months ago* (last edited 6 months ago)

Though with quantisation you can get it down to like 30GB of vram or less.

[–] [email protected] 1 points 6 months ago

Llama 2 70B with 8b quantization takes around 80GB VRAM if I remember correctly. I’ve tested it a while ago.

[–] [email protected] 18 points 6 months ago

CUDA 11.4 and above are recommended (this is for GPU users, flash-attention users, etc.) To run Qwen-72B-Chat in bf16/fp16, at least 144GB GPU memory is required (e.g., 2xA100-80G or 5xV100-32G). To run it in int4, at least 48GB GPU memory is requred (e.g., 1xA100-80G or 2xV100-32G).

It's derived from Qwen-72B, so same specs. Q2 clocks it in at only ~30GB.

[–] [email protected] 11 points 6 months ago

Just a data center or two. Easy peasy dirt cheapy.

[–] [email protected] 5 points 6 months ago (2 children)

I think I read somewhere that you'll basically need 130 GB of RAM to load this model. You could probably get some used server hardware for less than $600 to run this.

[–] [email protected] 16 points 6 months ago (2 children)

Oh if only it were so simple lmao, you need ~130GB of VRAM, aka the graphics card RAM. So you would need about 9 consumer grade 16GB graphics cards and you'll probably need Nvidia because of fucking CUDA so we're talking about thousands of dollars. Probably approaching 10k

Ofc you can get cards with more VRAM per card, but not in the consumer segment so even more $$$$$$

[–] [email protected] 9 points 6 months ago (1 children)

Afaik you can substitute VRAM with RAM at the cost of speed. Not exactly sure how that speed loss correlates to the sheer size of these models, though. I have to imagine it would run insanely slow on a CPU.

[–] [email protected] 7 points 6 months ago* (last edited 6 months ago)

I tested it with a 16GB model and barely got 1 token per second. I don't want to imagine what it would take if I used 16GB of swap instead, let alone 130GB.

[–] [email protected] 0 points 6 months ago (1 children)

I'm pretty sure you can load the model using RAM like another poster said. Here's a used server under $600 that could theoretically run it: ebay.

[–] [email protected] 5 points 6 months ago

You would want to look for an R730, which can be had for not too much more. The 20 series was the “end of an era” and the 30 series was the beginning of the next era. Most importantly for this application, R30s use DDR4 whereas R20s use DDR3.

RAM speed matters a lot for ML applications and DDR4 is about 2x as fast as DDR3 in all relevant measurements.

If you’re going to offload any part of these models to CPU, which you 99.99% will have to do for a model of this size with this class of hardware, skip the 20s and go to the 30s.

[–] [email protected] 10 points 6 months ago (1 children)

Unless you’re getting used datacenter grade hardware for next to free, I doubt this. You need 130 gb of VRAM on your GPUs

[–] [email protected] 6 points 6 months ago (1 children)

So can I run it on my Radeon RX 5700? I overclocked it some and am running it as a 5700 XT, if that helps.

[–] [email protected] 2 points 6 months ago

To run this model locally at gpt4 writing speed you need at least 2 x 3090 or 2 x 7900xtx. VRAM is the limiting factor in 99% of cases for interference. You could try a smaller model like mistral-instruct or SOLAR with your hardware though.

[–] [email protected] 3 points 6 months ago

Around 48gb of VRAM if you want to run it in 4bits