WasamiKirua
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -21,8 +21,6 @@ datasets:
|
|
21 |
- WasamiKirua/haiku-ita-v0.2
|
22 |
---
|
23 |
|
24 |
-
[<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
|
25 |
-
|
26 |
### Model Description
|
27 |
|
28 |
Samantha is an advanced conversational AI model, meticulously fine-tuned from the phi3.5 architecture to specialize in emotional intelligence, psychological understanding, and human companionship. It is designed to foster rich, meaningful dialogues that go beyond surface-level interactions, providing a deeply empathetic and emotionally attuned experience.
|
@@ -34,34 +32,13 @@ Samantha isn't just reactive; it proactively drives conversations that help user
|
|
34 |
|
35 |
- **Developed by:** [WasamiKirua]
|
36 |
- **Language(s) (NLP):** [Italian]
|
37 |
-
|
38 |
-
|
39 |
-
# Uploaded model
|
40 |
-
|
41 |
-
<img src="https://i.postimg.cc/fLkyLtSd/samantha.png" alt="cover" border="0" width="862px">
|
42 |
-
|
43 |
-
- **Developed by:** WasamiKirua
|
44 |
- **License:** apache-2.0
|
45 |
- **Finetuned from model :** unsloth/qwen2.5-7b-bnb-4bit
|
46 |
|
47 |
This qwen2 model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
|
48 |
|
49 |
-
|
50 |
|
51 |
-
```
|
52 |
-
FROM {__FILE_LOCATION__}
|
53 |
-
TEMPLATE """{{ if .System }}<|im_start|>system
|
54 |
-
{{ .System }}<|im_end|>
|
55 |
-
{{ end }}{{ if .Prompt }}<|im_start|>user
|
56 |
-
{{ .Prompt }}<|im_end|>
|
57 |
-
{{ end }}<|im_start|>assistant
|
58 |
-
{{ .Response }}<|im_end|>
|
59 |
-
"""
|
60 |
-
PARAMETER stop "<|im_start|>"
|
61 |
-
PARAMETER stop "<|im_end|>"
|
62 |
-
PARAMETER temperature 1.5
|
63 |
-
PARAMETER min_p 0.1
|
64 |
-
```
|
65 |
|
66 |
## Uses
|
67 |
|
@@ -128,3 +105,23 @@ To mitigate misuse and ensure Samantha is used as intended:
|
|
128 |
- **Regular updates and monitoring**: Continuously monitor the model's behavior and responses, updating it regularly to improve its ability to recognize misuse, inappropriate requests, and limitations in its capabilities.
|
129 |
|
130 |
By recognizing the risks and limitations, the deployment of Samantha can be shaped to minimize misuse and maximize its positive, supportive potential.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
- WasamiKirua/haiku-ita-v0.2
|
22 |
---
|
23 |
|
|
|
|
|
24 |
### Model Description
|
25 |
|
26 |
Samantha is an advanced conversational AI model, meticulously fine-tuned from the phi3.5 architecture to specialize in emotional intelligence, psychological understanding, and human companionship. It is designed to foster rich, meaningful dialogues that go beyond surface-level interactions, providing a deeply empathetic and emotionally attuned experience.
|
|
|
32 |
|
33 |
- **Developed by:** [WasamiKirua]
|
34 |
- **Language(s) (NLP):** [Italian]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
- **License:** apache-2.0
|
36 |
- **Finetuned from model :** unsloth/qwen2.5-7b-bnb-4bit
|
37 |
|
38 |
This qwen2 model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
|
39 |
|
40 |
+
[<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
|
41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
|
43 |
## Uses
|
44 |
|
|
|
105 |
- **Regular updates and monitoring**: Continuously monitor the model's behavior and responses, updating it regularly to improve its ability to recognize misuse, inappropriate requests, and limitations in its capabilities.
|
106 |
|
107 |
By recognizing the risks and limitations, the deployment of Samantha can be shaped to minimize misuse and maximize its positive, supportive potential.
|
108 |
+
|
109 |
+
|
110 |
+
### Chat Template - Modelfile
|
111 |
+
|
112 |
+
You can use it with ollama (Modelfile):
|
113 |
+
|
114 |
+
```
|
115 |
+
FROM {__FILE_LOCATION__}
|
116 |
+
TEMPLATE """{{ if .System }}<|im_start|>system
|
117 |
+
{{ .System }}<|im_end|>
|
118 |
+
{{ end }}{{ if .Prompt }}<|im_start|>user
|
119 |
+
{{ .Prompt }}<|im_end|>
|
120 |
+
{{ end }}<|im_start|>assistant
|
121 |
+
{{ .Response }}<|im_end|>
|
122 |
+
"""
|
123 |
+
PARAMETER stop "<|im_start|>"
|
124 |
+
PARAMETER stop "<|im_end|>"
|
125 |
+
PARAMETER temperature 1.5
|
126 |
+
PARAMETER min_p 0.1
|
127 |
+
```
|