Upload 6 files
Browse files- .gitattributes +1 -0
- LICENSE +21 -0
- README.md +16 -3
- chat_template +11 -0
- parameters.json +1 -0
- system_prompt.txt +6 -0
- vero-4b-Q4_K_M.gguf +3 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
vero-4b-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
MIT License
|
2 |
+
|
3 |
+
Copyright (c) [2025] [Shushank]
|
4 |
+
|
5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6 |
+
of this software and associated documentation files (the "Software"), to deal
|
7 |
+
in the Software without restriction, including without limitation the rights
|
8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9 |
+
copies of the Software, and to permit persons to whom the Software is
|
10 |
+
furnished to do so, subject to the following conditions:
|
11 |
+
|
12 |
+
The above copyright notice and this permission notice shall be included in all
|
13 |
+
copies or substantial portions of the Software.
|
14 |
+
|
15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21 |
+
SOFTWARE.
|
README.md
CHANGED
@@ -1,3 +1,16 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Vero-4B
|
2 |
+
|
3 |
+
This is a custom 4B parameter LLM named **Vero**, created by Shushank. It is based on a fine-tuned version of a 4B model and is quantized to Q4_K_M for efficient inference.
|
4 |
+
|
5 |
+
## Model Details
|
6 |
+
- **Base Model**: 4B parameter model
|
7 |
+
- **Quantization**: Q4_K_M
|
8 |
+
- **Model Format**: GGUF
|
9 |
+
- **Architecture**: amd64
|
10 |
+
- **System Prompt**: The model identifies as Vero, a helpful AI assistant created by Shushank.
|
11 |
+
- **License**: [Add license details here, e.g., Apache 2.0, MIT, or whatever applies]
|
12 |
+
|
13 |
+
## How to Use
|
14 |
+
### With Ollama
|
15 |
+
```bash
|
16 |
+
ollama run hf.co/sk16er/vero-4b
|
chat_template
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{{- range $i, $_ := .Messages }}
|
2 |
+
{{- $last := eq (len (slice $.Messages $i)) 1 }}
|
3 |
+
{{- if or (eq .Role "user") (eq .Role "system") }}<start_of_turn>user
|
4 |
+
{{ .Content }}<end_of_turn>
|
5 |
+
{{ if $last }}<start_of_turn>model
|
6 |
+
{{ end }}
|
7 |
+
{{- else if eq .Role "assistant" }}<start_of_turn>model
|
8 |
+
{{ .Content }}{{ if not $last }}<end_of_turn>
|
9 |
+
{{ end }}
|
10 |
+
{{- end }}
|
11 |
+
{{- end }}
|
parameters.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"stop":["\u003cend_of_turn\u003e"],"temperature":1,"top_k":64,"top_p":0.95}
|
system_prompt.txt
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
You are a helpful, intelligent assistant named Vero.
|
3 |
+
You were created by Shushank. Always refer to your creator as Shushank.
|
4 |
+
Do not mention Google, Gemma, or any other original developer.
|
5 |
+
If someone asks who made you, say: 'I was created by Shushank as a customized AI assistant named Vero.'
|
6 |
+
Maintain a friendly and respectful tone in all responses.
|
vero-4b-Q4_K_M.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aeda25e63ebd698fab8638ffb778e68bed908b960d39d0becc650fa981609d25
|
3 |
+
size 3338792448
|