Refine model card
#1
by
nielsr
HF Staff
- opened
README.md
CHANGED
|
@@ -6,8 +6,9 @@ language:
|
|
| 6 |
- en
|
| 7 |
base_model:
|
| 8 |
- meta-llama/Llama-3.1-8B-Instruct
|
| 9 |
-
pipeline_tag:
|
| 10 |
---
|
|
|
|
| 11 |
# 🦙 Fino1-8B
|
| 12 |
|
| 13 |
**Fino1-8B** is a fine-tuned version of **Llama 3.1 8B Instruct**, designed to improve performance on **[financial reasoning tasks]**. This model has been trained using **SFT** and **RF** on **TheFinAI/Fino1_Reasoning_Path_FinQA**, enhancing its capabilities in **financial reasoning tasks**.
|
|
@@ -44,4 +45,5 @@ input_text = "What is the results of 3-5?"
|
|
| 44 |
inputs = tokenizer(input_text, return_tensors="pt")
|
| 45 |
|
| 46 |
output = model.generate(**inputs, max_new_tokens=200)
|
| 47 |
-
print(tokenizer.decode(output[0], skip_special_tokens=True))
|
|
|
|
|
|
| 6 |
- en
|
| 7 |
base_model:
|
| 8 |
- meta-llama/Llama-3.1-8B-Instruct
|
| 9 |
+
pipeline_tag: question-answering
|
| 10 |
---
|
| 11 |
+
|
| 12 |
# 🦙 Fino1-8B
|
| 13 |
|
| 14 |
**Fino1-8B** is a fine-tuned version of **Llama 3.1 8B Instruct**, designed to improve performance on **[financial reasoning tasks]**. This model has been trained using **SFT** and **RF** on **TheFinAI/Fino1_Reasoning_Path_FinQA**, enhancing its capabilities in **financial reasoning tasks**.
|
|
|
|
| 45 |
inputs = tokenizer(input_text, return_tensors="pt")
|
| 46 |
|
| 47 |
output = model.generate(**inputs, max_new_tokens=200)
|
| 48 |
+
print(tokenizer.decode(output[0], skip_special_tokens=True))
|
| 49 |
+
```
|