File size: 2,308 Bytes
64ccd4b
 
 
 
 
 
 
 
 
 
 
4d37e33
64ccd4b
 
 
 
 
4d37e33
64ccd4b
 
4d37e33
 
 
64ccd4b
 
4d37e33
 
64ccd4b
4d37e33
64ccd4b
 
4d37e33
64ccd4b
4d37e33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64ccd4b
 
 
4d37e33
 
 
 
 
64ccd4b
 
 
 
 
 
4d37e33
 
 
 
 
64ccd4b
4d37e33
 
 
 
64ccd4b
4d37e33
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
language: en
tags:
- mental-health
- healthcare
- conversational
- wellness
- SmolLM-135M
- fine-tuned
license: mit
pipeline_tag: text-generation
inference: false
---

# Wellness-Mini: Mental Health Conversational AI

## Model Description
Wellness-Mini is a fine-tuned version of SmolLM-135M, specifically adapted for mental health conversations and assessments.

## Usage

### In Transformers
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
Load model and tokenizer
model = AutoModelForCausalLM.from_pretrained("ombhojane/wellness-mini", trust_remote_code=True)
tokenizer = AutoTokenizer.from_pretrained("ombhojane/wellness-mini")
Example usage
messages = [{"role": "user", "content": "How are you feeling today?"}]
prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(inputs, max_new_tokens=100)
response = tokenizer.decode(outputs[0], skip_special_tokens=True)
print(response)
```

### Via Pipeline
```python
from transformers import pipeline
Create pipeline
pipe = pipeline(
"text-generation",
model="ombhojane/wellness-mini",
tokenizer="ombhojane/wellness-mini",
trust_remote_code=True
)
Generate text
response = pipe("How are you feeling today?", max_new_tokens=100)
print(response[0]['generated_text'])
```


## Training Details
- Base model: SmolLM-135M
- Fine-tuned using supervised fine-tuning (SFT)
- Trained with both mental health assessment capabilities and proper identity responses

## Limitations
- This is an AI assistant and not a replacement for professional medical advice
- Should be used as a supplementary tool only
- May not be suitable for emergency situations
- Responses should be verified by healthcare professionals

## Intended Use
This model is intended to be used as a conversational AI assistant focused on mental health support and assessment. It can:
- Provide supportive responses to mental health concerns
- Help identify potential mental health indicators
- Engage in wellness-focused conversations

## Bias and Risks
- May reflect biases present in training data
- Should not be used as sole diagnostic tool
- Responses should be reviewed by healthcare professionals

## Creator
This model was developed by Sentinet AI Systems.