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

1from unsloth import FastLanguageModel
2
3
4max_seq_length = 2048
5dtype = None
6load_in_4bit = False
7
8
9alpaca_prompt = """Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.
10
11### Instruction:
12{}
13
14### Input:
15{}
16
17### Response:
18{}"""
19
20
21model, tokenizer = FastLanguageModel.from_pretrained(
22 model_name = "sujet-ai/Sujet-Finance-8B-v0.1",
23 max_seq_length = max_seq_length,
24 dtype = dtype,
25 load_in_4bit = load_in_4bit,
26 token = "your hf token here",
27)
28
29
30example = {
31'system_prompt': 'You are a financial sentiment analysis expert. Your task is to analyze the sentiment expressed in the given financial text.Only reply with bearish, neutral, or bullish.',
32'user_prompt': "Expedia's Problems Run Deeper Than SEO Headwinds",
33'answer': 'bearish',
34}
35
36
37inputs = tokenizer(
38 [alpaca_prompt.format(
39 example['system_prompt'], # instruction
40 example['user_prompt'], # input
41 "", # output - leave this blank for generation!
42 )],
43 return_tensors="pt"
44 ).to("cuda")
45
46outputs = model.generate(**inputs, max_new_tokens=2048, use_cache=True, pad_token_id=tokenizer.eos_token_id)
47output = tokenizer.batch_decode(outputs)[0]
48response = output.split("### Response:")[1].strip()
49print(response)