ShivomH commited on
Commit
f8e6fec
·
verified ·
1 Parent(s): 4a6c8fb

Upload folder using huggingface_hub

Browse files
README.md CHANGED
@@ -1,3 +1,221 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: tiiuae/falcon-rw-1b
3
+ library_name: peft
4
+ ---
5
+
6
+ # Model Card for Model ID
7
+
8
+ <!-- Provide a quick summary of what the model is/does. -->
9
+
10
+ Falcon-1B-Mental-Health-Advisor is a fine-tuned version of the tiiuae/falcon-rw-1b model, adapted for providing empathetic and contextually relevant responses to mental health-related queries. The model has been trained on a curated dataset to assist in mental health conversations, offering advice, guidance, and support for individuals dealing with issues like stress, anxiety, and depression. It provides a compassionate approach to mental health queries while focusing on promoting emotional well-being and mental health awareness.
11
+
12
+ ## Model Details
13
+
14
+ # Falcon-1B Fine-Tuned for Mental Health (LoRA)
15
+
16
+ This is a LoRA adapter for the Falcon-RW-1B model. It was fine-tuned on the 'marmikpandya/mental-health' dataset.
17
+
18
+ ## Usage
19
+
20
+ Since this model is an adapter, it **must** be loaded with the original Falcon-RW-1B model using PEFT:
21
+
22
+ ```python
23
+ from transformers import AutoModelForCausalLM, AutoTokenizer
24
+ from peft import PeftModel
25
+
26
+ base_model = "tiiuae/falcon-rw-1b"
27
+ model = AutoModelForCausalLM.from_pretrained(base_model, device_map="auto")
28
+ model = PeftModel.from_pretrained(model, "ShivomH/Falcon-1B-Finetuned-Mental-Health")
29
+
30
+ tokenizer = AutoTokenizer.from_pretrained("ShivomH/Falcon-1B-Finetuned-Mental-Health")
31
+
32
+ ### Model Description
33
+
34
+ <!-- Provide a longer summary of what this model is. -->
35
+
36
+
37
+
38
+ - **Developed by:** [More Information Needed]
39
+ - **Funded by [optional]:** [More Information Needed]
40
+ - **Shared by [optional]:** [More Information Needed]
41
+ - **Model type:** [More Information Needed]
42
+ - **Language(s) (NLP):** [More Information Needed]
43
+ - **License:** [More Information Needed]
44
+ - **Finetuned from model [optional]:** [More Information Needed]
45
+
46
+ ### Model Sources [optional]
47
+
48
+ <!-- Provide the basic links for the model. -->
49
+
50
+ - **Repository:** [More Information Needed]
51
+ - **Paper [optional]:** [More Information Needed]
52
+ - **Demo [optional]:** [More Information Needed]
53
+
54
+ ## Uses
55
+
56
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
57
+
58
+ ### Direct Use
59
+
60
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
61
+
62
+ [More Information Needed]
63
+
64
+ ### Downstream Use [optional]
65
+
66
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
67
+
68
+ [More Information Needed]
69
+
70
+ ### Out-of-Scope Use
71
+
72
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
73
+
74
+ [More Information Needed]
75
+
76
+ ## Bias, Risks, and Limitations
77
+
78
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
79
+
80
+ [More Information Needed]
81
+
82
+ ### Recommendations
83
+
84
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
85
+
86
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
87
+
88
+ ## How to Get Started with the Model
89
+
90
+ Use the code below to get started with the model.
91
+
92
+ [More Information Needed]
93
+
94
+ ## Training Details
95
+
96
+ ### Training Data
97
+
98
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
99
+
100
+ [More Information Needed]
101
+
102
+ ### Training Procedure
103
+
104
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
105
+
106
+ #### Preprocessing [optional]
107
+
108
+ [More Information Needed]
109
+
110
+
111
+ #### Training Hyperparameters
112
+
113
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
114
+
115
+ #### Speeds, Sizes, Times [optional]
116
+
117
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
118
+
119
+ [More Information Needed]
120
+
121
+ ## Evaluation
122
+
123
+ <!-- This section describes the evaluation protocols and provides the results. -->
124
+
125
+ ### Testing Data, Factors & Metrics
126
+
127
+ #### Testing Data
128
+
129
+ <!-- This should link to a Dataset Card if possible. -->
130
+
131
+ [More Information Needed]
132
+
133
+ #### Factors
134
+
135
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
136
+
137
+ [More Information Needed]
138
+
139
+ #### Metrics
140
+
141
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
142
+
143
+ [More Information Needed]
144
+
145
+ ### Results
146
+
147
+ [More Information Needed]
148
+
149
+ #### Summary
150
+
151
+
152
+
153
+ ## Model Examination [optional]
154
+
155
+ <!-- Relevant interpretability work for the model goes here -->
156
+
157
+ [More Information Needed]
158
+
159
+ ## Environmental Impact
160
+
161
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
162
+
163
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
164
+
165
+ - **Hardware Type:** [More Information Needed]
166
+ - **Hours used:** [More Information Needed]
167
+ - **Cloud Provider:** [More Information Needed]
168
+ - **Compute Region:** [More Information Needed]
169
+ - **Carbon Emitted:** [More Information Needed]
170
+
171
+ ## Technical Specifications [optional]
172
+
173
+ ### Model Architecture and Objective
174
+
175
+ [More Information Needed]
176
+
177
+ ### Compute Infrastructure
178
+
179
+ [More Information Needed]
180
+
181
+ #### Hardware
182
+
183
+ [More Information Needed]
184
+
185
+ #### Software
186
+
187
+ [More Information Needed]
188
+
189
+ ## Citation [optional]
190
+
191
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
192
+
193
+ **BibTeX:**
194
+
195
+ [More Information Needed]
196
+
197
+ **APA:**
198
+
199
+ [More Information Needed]
200
+
201
+ ## Glossary [optional]
202
+
203
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
204
+
205
+ [More Information Needed]
206
+
207
+ ## More Information [optional]
208
+
209
+ [More Information Needed]
210
+
211
+ ## Model Card Authors [optional]
212
+
213
+ [More Information Needed]
214
+
215
+ ## Model Card Contact
216
+
217
+ [More Information Needed]
218
+ ### Framework versions
219
+
220
+ - PEFT 0.14.0
221
+ ```
adapter_config.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "tiiuae/falcon-rw-1b",
5
+ "bias": "none",
6
+ "eva_config": null,
7
+ "exclude_modules": null,
8
+ "fan_in_fan_out": false,
9
+ "inference_mode": true,
10
+ "init_lora_weights": true,
11
+ "layer_replication": null,
12
+ "layers_pattern": null,
13
+ "layers_to_transform": null,
14
+ "loftq_config": {},
15
+ "lora_alpha": 32,
16
+ "lora_bias": false,
17
+ "lora_dropout": 0.1,
18
+ "megatron_config": null,
19
+ "megatron_core": "megatron.core",
20
+ "modules_to_save": null,
21
+ "peft_type": "LORA",
22
+ "r": 16,
23
+ "rank_pattern": {},
24
+ "revision": null,
25
+ "target_modules": [
26
+ "query_key_value"
27
+ ],
28
+ "task_type": "CAUSAL_LM",
29
+ "use_dora": false,
30
+ "use_rslora": false
31
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6548deb3263ec876413159978dad7535f0047dce742d8c983323496413eb2b4b
3
+ size 12590048
config.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alibi": true,
3
+ "apply_residual_connection_post_layernorm": false,
4
+ "architectures": [
5
+ "FalconForCausalLM"
6
+ ],
7
+ "attention_dropout": 0.0,
8
+ "auto_map": {
9
+ "AutoConfig": "configuration_falcon.FalconConfig",
10
+ "AutoModel": "modeling_falcon.FalconModel",
11
+ "AutoModelForSequenceClassification": "modeling_falcon.FalconForSequenceClassification",
12
+ "AutoModelForTokenClassification": "modeling_falcon.FalconForTokenClassification",
13
+ "AutoModelForQuestionAnswering": "modeling_falcon.FalconForQuestionAnswering",
14
+ "AutoModelForCausalLM": "modeling_falcon.FalconForCausalLM"
15
+ },
16
+ "bias": true,
17
+ "bos_token_id": 1,
18
+ "eos_token_id": 2,
19
+ "hidden_dropout": 0.0,
20
+ "hidden_size": 2048,
21
+ "initializer_range": 0.02,
22
+ "layer_norm_epsilon": 1e-05,
23
+ "model_type": "falcon",
24
+ "multi_query": false,
25
+ "new_decoder_architecture": false,
26
+ "num_attention_heads": 32,
27
+ "num_hidden_layers": 24,
28
+ "parallel_attn": false,
29
+ "torch_dtype": "bfloat16",
30
+ "transformers_version": "4.27.4",
31
+ "use_cache": true,
32
+ "vocab_size": 50304
33
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
special_tokens_map.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|endoftext|>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|endoftext|>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": "<|endoftext|>",
17
+ "unk_token": {
18
+ "content": "<|endoftext|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ }
24
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "added_tokens_decoder": {
4
+ "50256": {
5
+ "content": "<|endoftext|>",
6
+ "lstrip": false,
7
+ "normalized": false,
8
+ "rstrip": false,
9
+ "single_word": false,
10
+ "special": true
11
+ }
12
+ },
13
+ "bos_token": "<|endoftext|>",
14
+ "clean_up_tokenization_spaces": true,
15
+ "eos_token": "<|endoftext|>",
16
+ "extra_special_tokens": {},
17
+ "model_max_length": 1024,
18
+ "pad_token": "<|endoftext|>",
19
+ "tokenizer_class": "GPT2Tokenizer",
20
+ "unk_token": "<|endoftext|>"
21
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff