Rustamshry commited on
Commit
ebe415c
·
verified ·
1 Parent(s): 54dba8d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -16
README.md CHANGED
@@ -26,7 +26,6 @@ This model is fine-tuned for instruction-following in the domain of personal fin
26
  - Personalized financial reasoning
27
 
28
 
29
-
30
  ### Model Description
31
 
32
  - **License:** MIT
@@ -63,32 +62,22 @@ This model is fine-tuned for instruction-following in the domain of personal fin
63
  Use the code below to get started with the model.
64
 
65
  ```python
66
- from huggingface_hub import login
67
  from transformers import AutoTokenizer, AutoModelForCausalLM
68
  from peft import PeftModel
69
 
70
- login(token="")
71
 
72
  tokenizer = AutoTokenizer.from_pretrained("unsloth/Qwen3-1.7B",)
73
  base_model = AutoModelForCausalLM.from_pretrained(
74
  "unsloth/Qwen3-1.7B",
75
- device_map={"": 0}, token=""
76
  )
77
 
78
  model = PeftModel.from_pretrained(base_model,"khazarai/Personal-Finance-R2")
79
 
80
 
81
- question =
82
- """
83
- $19k for a coding bootcamp
84
-
85
- Hi!
86
-
87
- I was just accepted into the full-time software engineering program with Flatiron and have approx. $0 to my name.
88
- I know I can get a loan with either Climb or accent with around 6.50% interest, is this a good option?
89
- I would theoretically be paying near $600/month.
90
-
91
- I really enjoy coding and would love to start a career in tech but the potential $19k price tag is pretty scary. Any advice?
92
  """
93
 
94
  messages = [
@@ -117,7 +106,7 @@ _ = model.generate(
117
  ### Training Data
118
 
119
  - Dataset Overview:
120
- PersonalFinance_v2 is a collection of high-quality instruction-response pairs focused on personal finance topics.
121
  It covers a wide range of subjects including budgeting, saving, investing, credit management, retirement planning, insurance, and financial literacy.
122
 
123
  - Data Format:
 
26
  - Personalized financial reasoning
27
 
28
 
 
29
  ### Model Description
30
 
31
  - **License:** MIT
 
62
  Use the code below to get started with the model.
63
 
64
  ```python
 
65
  from transformers import AutoTokenizer, AutoModelForCausalLM
66
  from peft import PeftModel
67
 
 
68
 
69
  tokenizer = AutoTokenizer.from_pretrained("unsloth/Qwen3-1.7B",)
70
  base_model = AutoModelForCausalLM.from_pretrained(
71
  "unsloth/Qwen3-1.7B",
72
+ device_map={"": 0}
73
  )
74
 
75
  model = PeftModel.from_pretrained(base_model,"khazarai/Personal-Finance-R2")
76
 
77
 
78
+ question = """ I just got accepted into Flatiron's full-time software engineering bootcamp, but I have basically no savings and the $19k price tag is freaking me out.
79
+ I really love coding and want to break into tech, but I'm looking at taking out a loan through Climb or Ascent with around 6.5% interest—that'd mean paying like $600 a month after.
80
+ Is this a smart move? I'm torn between chasing this opportunity and being terrified of the debt. Any advice?
 
 
 
 
 
 
 
 
81
  """
82
 
83
  messages = [
 
106
  ### Training Data
107
 
108
  - Dataset Overview:
109
+ Kuvera-PersonalFinance-V2.1 is a collection of high-quality instruction-response pairs focused on personal finance topics.
110
  It covers a wide range of subjects including budgeting, saving, investing, credit management, retirement planning, insurance, and financial literacy.
111
 
112
  - Data Format: