Dev4285 commited on
Commit
da770fe
ยท
verified ยท
1 Parent(s): 60deb8b

Update model base to Qwen2.5-0.5B with baked MiniArt internal metadata and system identity

Browse files
Files changed (4) hide show
  1. MiniArt-1.0-Q4_K_M.gguf +2 -2
  2. Modelfile +4 -2
  3. README.md +26 -19
  4. config.json +3 -2
MiniArt-1.0-Q4_K_M.gguf CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7b8539cc909975c87831fb47b4ea24cac6e4633d9d233c58cc349d59c100f71a
3
- size 270590880
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:863d763af52cbe8f62cbc1facde3a0b7935e718be30735553191495bfb42da93
3
+ size 491400032
Modelfile CHANGED
@@ -7,8 +7,10 @@ TEMPLATE """{{ if .System }}<|im_start|>system
7
  {{ end }}<|im_start|>assistant
8
  """
9
 
10
- PARAMETER temperature 0.8
11
- PARAMETER top_p 0.95
 
 
12
  PARAMETER repeat_penalty 1.1
13
  PARAMETER num_ctx 2048
14
  PARAMETER stop "<|im_start|>"
 
7
  {{ end }}<|im_start|>assistant
8
  """
9
 
10
+ SYSTEM """You are Mini Art by an Indian Lab named OSAMA INC labs"""
11
+
12
+ PARAMETER temperature 0.7
13
+ PARAMETER top_p 0.9
14
  PARAMETER repeat_penalty 1.1
15
  PARAMETER num_ctx 2048
16
  PARAMETER stop "<|im_start|>"
README.md CHANGED
@@ -6,44 +6,51 @@ tags:
6
  - text-generation
7
  - gguf
8
  - creative
9
- - roleplay
10
  - uncensored
 
11
  - lm-studio
12
  pipeline_tag: text-generation
13
  ---
14
 
15
  # Mini Art 1.0
16
 
17
- **Mini Art** is a lightweight, creative AI model developed by **OSAMA INC labs** (India). Designed for local inference with no content restrictions, Mini Art is optimized for creative conversations, imaginative text generation, and open-ended dialogue.
18
 
19
- Available in **GGUF** format for seamless use with **LM Studio**, **Ollama**, **llama.cpp**, and **KoboldCpp**.
20
 
21
  ---
22
 
23
- ## Model Details
24
 
25
- | Property | Value |
26
- |---------------------|-------------------------------|
27
- | **Model Name** | Mini Art 1.0 |
28
- | **Developer** | OSAMA INC labs |
29
- | **Origin** | India ๐Ÿ‡ฎ๐Ÿ‡ณ |
30
- | **Format** | GGUF |
31
- | **Quantization** | Q4_K_M (~230 MB) |
32
- | **License** | Apache 2.0 |
33
- | **Context Length** | 2048 tokens |
 
34
 
35
  ---
36
 
37
- ## How to Use
38
 
39
  ### LM Studio
40
 
41
  1. Open **LM Studio**.
42
  2. Load `MiniArt-1.0-Q4_K_M.gguf`.
43
- 3. Start generating responses directly!
 
 
 
 
44
 
45
  ### Ollama
46
 
 
 
47
  ```bash
48
  ollama create miniart -f ./Modelfile
49
  ollama run miniart
@@ -52,17 +59,17 @@ ollama run miniart
52
  ### llama.cpp
53
 
54
  ```bash
55
- ./main -m MiniArt-1.0-Q4_K_M.gguf -c 2048 -n 512
56
  ```
57
 
58
  ---
59
 
60
- ## License
61
 
62
  This project is licensed under the [Apache 2.0 License](LICENSE).
63
 
64
  ---
65
 
66
- ## About OSAMA INC labs
67
 
68
- OSAMA INC labs is an Indian AI research lab dedicated to building open, accessible, and powerful AI models for everyone.
 
6
  - text-generation
7
  - gguf
8
  - creative
 
9
  - uncensored
10
+ - roleplay
11
  - lm-studio
12
  pipeline_tag: text-generation
13
  ---
14
 
15
  # Mini Art 1.0
16
 
17
+ **Mini Art** is a lightweight, high-performance creative AI model developed by **OSAMA INC labs** (India). Optimized for local inference with uncensored, unrestricted generation, Mini Art excels at creative conversation, character roleplay, storytelling, and imaginative dialogue.
18
 
19
+ Available in **GGUF** format for seamless execution across **LM Studio**, **Ollama**, **llama.cpp**, and **KoboldCpp**.
20
 
21
  ---
22
 
23
+ ## ๐ŸŒŸ Model Overview
24
 
25
+ | Property | Value |
26
+ |-------------------|-----------------------------------------|
27
+ | **Model Name** | Mini Art 1.0 |
28
+ | **Developer** | OSAMA INC labs |
29
+ | **Origin** | India ๐Ÿ‡ฎ๐Ÿ‡ณ |
30
+ | **Format** | GGUF (`.gguf`) |
31
+ | **Quantization** | Q4_K_M (~468 MB) |
32
+ | **License** | Apache 2.0 |
33
+ | **Context Length**| 2048 tokens |
34
+ | **System Identity**| *You are Mini Art by an Indian Lab named OSAMA INC labs* |
35
 
36
  ---
37
 
38
+ ## ๐Ÿš€ How to Run
39
 
40
  ### LM Studio
41
 
42
  1. Open **LM Studio**.
43
  2. Load `MiniArt-1.0-Q4_K_M.gguf`.
44
+ 3. In Preset Settings / System Prompt, ensure the identity preset is active:
45
+ ```
46
+ You are Mini Art by an Indian Lab named OSAMA INC labs
47
+ ```
48
+ 4. Start chatting!
49
 
50
  ### Ollama
51
 
52
+ Use the included `Modelfile` (system prompt is pre-configured):
53
+
54
  ```bash
55
  ollama create miniart -f ./Modelfile
56
  ollama run miniart
 
59
  ### llama.cpp
60
 
61
  ```bash
62
+ ./main -m MiniArt-1.0-Q4_K_M.gguf -c 2048 --system-prompt "You are Mini Art by an Indian Lab named OSAMA INC labs"
63
  ```
64
 
65
  ---
66
 
67
+ ## ๐Ÿ“œ License
68
 
69
  This project is licensed under the [Apache 2.0 License](LICENSE).
70
 
71
  ---
72
 
73
+ ## ๐Ÿ‡ฎ๐Ÿ‡ณ About OSAMA INC labs
74
 
75
+ OSAMA INC labs is an Indian AI research organization focused on building open, accessible, and powerful local AI models for everyone.
config.json CHANGED
@@ -6,8 +6,9 @@
6
  "quantization": "Q4_K_M",
7
  "license": "apache-2.0",
8
  "context_length": 2048,
9
- "temperature": 0.8,
10
- "top_p": 0.95,
 
11
  "repeat_penalty": 1.1,
12
  "pipeline_tag": "text-generation",
13
  "languages": ["en"],
 
6
  "quantization": "Q4_K_M",
7
  "license": "apache-2.0",
8
  "context_length": 2048,
9
+ "system_prompt": "You are Mini Art by an Indian Lab named OSAMA INC labs",
10
+ "temperature": 0.7,
11
+ "top_p": 0.9,
12
  "repeat_penalty": 1.1,
13
  "pipeline_tag": "text-generation",
14
  "languages": ["en"],