Update README.md
Browse files
README.md
CHANGED
@@ -147,11 +147,11 @@ def chat():
|
|
147 |
**inputs,
|
148 |
max_new_tokens=75,
|
149 |
pad_token_id=tokenizer.eos_token_id,
|
150 |
-
temperature=0.
|
151 |
-
top_p=0.
|
152 |
-
repetition_penalty=1.
|
153 |
do_sample=True,
|
154 |
-
no_repeat_ngram_size=
|
155 |
early_stopping=True
|
156 |
)
|
157 |
|
@@ -177,11 +177,11 @@ chat()
|
|
177 |
|
178 |
## Bias, Risks, and Limitations
|
179 |
|
180 |
-
Not a Substitute for Professional Care
|
181 |
-
Inherent Biases - May reflect biases in training data (e.g., cultural assumptions, stigmatizing language).
|
182 |
-
Crisis Limitations - Not designed for crisis intervention (e.g., suicidal ideation, self-harm). Always direct users to human professionals or emergency services.
|
183 |
-
Over-Reliance Risk - Outputs could inadvertently worsen symptoms if users interpret them as definitive advice.
|
184 |
-
*Intended Use - Assist with general emotional support, not diagnosis or treatment.
|
185 |
|
186 |
### Model Sources [optional]
|
187 |
|
|
|
147 |
**inputs,
|
148 |
max_new_tokens=75,
|
149 |
pad_token_id=tokenizer.eos_token_id,
|
150 |
+
temperature=0.4,
|
151 |
+
top_p=0.85,
|
152 |
+
repetition_penalty=1.3,
|
153 |
do_sample=True,
|
154 |
+
no_repeat_ngram_size=3,
|
155 |
early_stopping=True
|
156 |
)
|
157 |
|
|
|
177 |
|
178 |
## Bias, Risks, and Limitations
|
179 |
|
180 |
+
* Not a Substitute for Professional Care: This model is not a licensed mental health professional. Its responses may be incomplete, inaccurate, or unsuitable for serious conditions.
|
181 |
+
* Inherent Biases - May reflect biases in training data (e.g., cultural assumptions, stigmatizing language).
|
182 |
+
* Crisis Limitations - Not designed for crisis intervention (e.g., suicidal ideation, self-harm). Always direct users to human professionals or emergency services.
|
183 |
+
* Over-Reliance Risk - Outputs could inadvertently worsen symptoms if users interpret them as definitive advice.
|
184 |
+
* Intended Use - Assist with general emotional support, not diagnosis or treatment.
|
185 |
|
186 |
### Model Sources [optional]
|
187 |
|