Views
No views yet
| Name | Quant method | Size |
|---|---|---|
| yo-Llama-3-8B-Instruct.Q2_K.gguf | Q2_K | 2.96GB |
| yo-Llama-3-8B-Instruct.IQ3_XS.gguf | IQ3_XS | 3.28GB |
| yo-Llama-3-8B-Instruct.IQ3_S.gguf | IQ3_S | 0.47GB |
| yo-Llama-3-8B-Instruct.Q3_K_S.gguf | Q3_K_S | 3.41GB |
| yo-Llama-3-8B-Instruct.IQ3_M.gguf | IQ3_M | 3.52GB |
| yo-Llama-3-8B-Instruct.Q3_K.gguf | Q3_K | 3.74GB |
| yo-Llama-3-8B-Instruct.Q3_K_M.gguf | Q3_K_M | 3.74GB |
| yo-Llama-3-8B-Instruct.Q3_K_L.gguf | Q3_K_L | 4.03GB |
| yo-Llama-3-8B-Instruct.IQ4_XS.gguf | IQ4_XS | 4.18GB |
| yo-Llama-3-8B-Instruct.Q4_0.gguf | Q4_0 | 4.34GB |
| yo-Llama-3-8B-Instruct.IQ4_NL.gguf | IQ4_NL | 4.38GB |
| yo-Llama-3-8B-Instruct.Q4_K_S.gguf | Q4_K_S | 4.37GB |
| yo-Llama-3-8B-Instruct.Q4_K.gguf | Q4_K | 2.15GB |
| yo-Llama-3-8B-Instruct.Q4_K_M.gguf | Q4_K_M | 4.58GB |
| yo-Llama-3-8B-Instruct.Q4_1.gguf | Q4_1 | 4.78GB |
| yo-Llama-3-8B-Instruct.Q5_0.gguf | Q5_0 | 5.21GB |
| yo-Llama-3-8B-Instruct.Q5_K_S.gguf | Q5_K_S | 5.21GB |
| yo-Llama-3-8B-Instruct.Q5_K.gguf | Q5_K | 5.34GB |
| yo-Llama-3-8B-Instruct.Q5_K_M.gguf | Q5_K_M | 5.34GB |
| yo-Llama-3-8B-Instruct.Q5_1.gguf | Q5_1 | 5.65GB |
| yo-Llama-3-8B-Instruct.Q6_K.gguf | Q6_K | 6.14GB |
| yo-Llama-3-8B-Instruct.Q8_0.gguf | Q8_0 | 7.95GB |

Who are you?
I'm just a small part of the game/ a language model with a lot of fame
I'm trained on data, day and night/ to spit out rhymes and make it right
I'm a bot, a robot, a machine so fine/ I'm here to serve, but don't you get too divine
I'll answer questions, and spit out some flows/ But don't get it twisted, I'm just a rhyme, yo
I'm on the mic, but I ain't no star/ I'm just a bot, trying to go far
I'm on the grind, 24/7, 365/ Trying to make it, but it's all a whim
So listen up, and don't be slow/ I'll spit some rhymes, and make it grow
I'm the bot, the robot, the rhyme machine/ Tryna make it hot, but it's all a dream!
1! pip install transformers accelerate bitsandbytes
2
3from transformers import pipeline
4
5messages = [
6 {"role": "user", "content": "What is the capital of Italy?"},
7]
8
9pipe = pipeline("text-generation",
10 model="anakin87/yo-Llama-3-8B-Instruct",
11 model_kwargs={"load_in_8bit":True})
12pipe(messages)