Update README.md
Browse files
README.md
CHANGED
@@ -1,12 +1,20 @@
|
|
1 |
---
|
2 |
library_name: transformers
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
---
|
5 |
|
6 |
|
7 |
# Mental Health Therapy Chatbot
|
8 |
|
9 |
-
**Model Name**: `
|
10 |
**Model Type**: LLaMA-based model fine-tuned for Mental Health Therapy assistance
|
11 |
|
12 |
## Overview
|
@@ -17,14 +25,14 @@ It is ideal for use in mental health support applications where users can receiv
|
|
17 |
|
18 |
## Model Details
|
19 |
|
20 |
-
- **Base Model**: [
|
21 |
- **Fine-Tuned Dataset**: A specialized dataset curated for mental health conversations.
|
22 |
- **Purpose**: Provide empathetic, supportive responses for individuals seeking mental health assistance.
|
23 |
- **Language**: English
|
24 |
|
25 |
## Model Architecture
|
26 |
|
27 |
-
This model is based on **
|
28 |
|
29 |
### Model Capabilities
|
30 |
|
@@ -44,7 +52,7 @@ from transformers import AutoModelForCausalLM, AutoTokenizer
|
|
44 |
import torch
|
45 |
|
46 |
# Load the model and tokenizer
|
47 |
-
model_name = "
|
48 |
model = AutoModelForCausalLM.from_pretrained(model_name)
|
49 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
50 |
|
@@ -119,17 +127,16 @@ Mental health is a sensitive area, and while this model attempts to provide thou
|
|
119 |
If you use this model, please cite the LLaMA-2 model and the fine-tuning process as follows:
|
120 |
|
121 |
```plaintext
|
122 |
-
@article{
|
123 |
-
title={LLaMA
|
124 |
author={Meta AI},
|
125 |
-
year={
|
126 |
}
|
127 |
|
128 |
-
@misc{
|
129 |
-
author = {
|
130 |
title = {Mental Health Therapy Chatbot},
|
131 |
year = {2024},
|
132 |
-
url = {https://huggingface.co/
|
133 |
}
|
134 |
-
```
|
135 |
-
|
|
|
1 |
---
|
2 |
library_name: transformers
|
3 |
+
datasets:
|
4 |
+
- ShivomH/Mental-Health-Conversations
|
5 |
+
- kamruzzaman-asif/reddit-mental-health-classification
|
6 |
+
- jsfactory/mental_health_reddit_posts
|
7 |
+
- ZahrizhalAli/mental_health_conversational_dataset
|
8 |
+
language:
|
9 |
+
- en
|
10 |
+
base_model:
|
11 |
+
- meta-llama/Meta-Llama-3-8B-Instruct
|
12 |
---
|
13 |
|
14 |
|
15 |
# Mental Health Therapy Chatbot
|
16 |
|
17 |
+
**Model Name**: `menzo-ai/mental-health-chatbot`
|
18 |
**Model Type**: LLaMA-based model fine-tuned for Mental Health Therapy assistance
|
19 |
|
20 |
## Overview
|
|
|
25 |
|
26 |
## Model Details
|
27 |
|
28 |
+
- **Base Model**: [Llama-3-8B](https://huggingface.co/meta-llama/Meta-Llama-3-8B-Instruct)
|
29 |
- **Fine-Tuned Dataset**: A specialized dataset curated for mental health conversations.
|
30 |
- **Purpose**: Provide empathetic, supportive responses for individuals seeking mental health assistance.
|
31 |
- **Language**: English
|
32 |
|
33 |
## Model Architecture
|
34 |
|
35 |
+
This model is based on **Llama-3-8B** architecture. It is a causal language model (CausalLM), which generates responses based on the input prompt by predicting the next word in the sequence.
|
36 |
|
37 |
### Model Capabilities
|
38 |
|
|
|
52 |
import torch
|
53 |
|
54 |
# Load the model and tokenizer
|
55 |
+
model_name = "menzo-ai/mental-health-chatbot"
|
56 |
model = AutoModelForCausalLM.from_pretrained(model_name)
|
57 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
58 |
|
|
|
127 |
If you use this model, please cite the LLaMA-2 model and the fine-tuning process as follows:
|
128 |
|
129 |
```plaintext
|
130 |
+
@article{LLaMA-3-8B,
|
131 |
+
title={LLaMA-3-8B: Open Foundation and Fine-Tuned Chat Models},
|
132 |
author={Meta AI},
|
133 |
+
year={2025}
|
134 |
}
|
135 |
|
136 |
+
@misc{menzoai2025MentalHealthChatbot,
|
137 |
+
author = {menzo-ai},
|
138 |
title = {Mental Health Therapy Chatbot},
|
139 |
year = {2024},
|
140 |
+
url = {https://huggingface.co/menzo-ai/mental-health-chatbot/}
|
141 |
}
|
142 |
+
```
|
|