rameshbasina commited on
Commit
24e175a
·
verified ·
1 Parent(s): 55a080c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +33 -37
README.md CHANGED
@@ -7,61 +7,57 @@ tags:
7
  - meeTARA
8
  - gguf
9
  - instruction-tuned
 
 
10
  base_model: google/gemma-4-E2B-it
11
  pipeline_tag: text-generation
12
  ---
13
 
14
- # meetara-gemma4-e2b-it (meeTARA Gemma 4 distribution)
15
 
16
- This is a **meeTARA-branded export** of the official open-weights checkpoint **`google/gemma-4-E2B-it`**
17
- (Gemma 4, instruction-tuned). Gemma-native turn formatting is preserved, and meeTARA default
18
- system behavior is injected only when the caller does not provide a `system` message, so
19
- multimodal formatting, tool calling, and thinking modes stay compatible with Transformers and
20
- current `llama.cpp` converters.
21
 
22
- **me²TARA** = Mental & Emotional Empathetic Technology for Adaptive Response & Assistance.
23
 
24
- ## meeTARA welcome and response structure (optional)
 
 
 
25
 
26
- This folder includes **`meetara_default_system_en.txt`**: the same **welcome + structured-response**
27
- intent as the v3 "simple" ChatML block, in **plain text** for you to pass as a **system** (or
28
- developer) message in your app or API. The same default content is also mirrored into Gemma-native
29
- template metadata so behavior remains present when no explicit `system` message is provided.
30
 
31
- ## Why not the v3 "enhanced" ChatML template?
 
 
 
 
32
 
33
- `convert_to_gguf_meetara_v3_enhanced.py` injects a large Qwen-style **ChatML** chat template. Gemma 4
34
- expects Google's **`<|turn|>`** template and special tokens; mixing formats would produce broken
35
- prompts. For Gemma, use this script for GGUF packaging; use **`meetara_default_system_en.txt`** plus
36
- your app, or a **Gemma-native** fine-tune, if you need meeTARA behavior inside the stack.
37
 
38
- ## GGUF build
 
39
 
40
- Built with repo `llama.cpp`:
41
 
42
- ```bash
43
- python llama.cpp/convert_hf_to_gguf.py <this_folder> --outfile meetara-gemma4-e2b-it-Q4_K_M.gguf
44
- # optional vision/audio projector:
45
- python llama.cpp/convert_hf_to_gguf.py <this_folder> --mmproj --outfile meetara-vl-gemma4-e2b-it.gguf
46
- ```
47
 
48
- ## Vision-Language features (VL)
 
49
 
50
- This release is intended to be used as a pair:
51
 
52
- - Text model: `meetara-gemma4-e2b-it-Q4_K_M.gguf`
53
- - Vision projector: `meetara-vl-gemma4-e2b-it.gguf`
54
 
55
- How to use:
 
 
 
56
 
57
- - Use the text GGUF for normal chat/completion.
58
- - For image + text workflows, load both the text GGUF and the matching `meetara-vl-*.gguf` projector.
59
- - Keep the text model and projector from the same variant (E2B with E2B VL) to avoid mismatch issues.
60
 
61
- ## License
62
 
63
- Apache 2.0 (same as upstream Gemma 4).
64
 
65
- ## Credits
66
-
67
- Weights and tokenizer: Google DeepMind (`google/gemma-4-E2B-it`). Packaging: meeTARA project.
 
7
  - meeTARA
8
  - gguf
9
  - instruction-tuned
10
+ - multimodal
11
+ - vision-language
12
  base_model: google/gemma-4-E2B-it
13
  pipeline_tag: text-generation
14
  ---
15
 
16
+ # meeTARA Gemma 4 E2B IT (GGUF)
17
 
18
+ This repository provides the meeTARA GGUF distribution of **google/gemma-4-E2B-it** for local inference.
 
 
 
 
19
 
20
+ **meeTARA** is an offline-first, privacy-focused, emotionally intelligent assistant focused on:
21
 
22
+ - empathetic, practical assistance
23
+ - clear action-oriented responses
24
+ - safer guidance for sensitive topics
25
+ - privacy-friendly local usage
26
 
27
+ ## High-level capabilities
 
 
 
28
 
29
+ - Lightweight and efficient assistant model for local deployment
30
+ - Strong instruction following for everyday tasks
31
+ - Adaptive communication style (clear, concise, practical)
32
+ - Faster response profile with lower memory requirements than larger variants
33
+ - Optional image + text workflows using the matching VL projector
34
 
35
+ ## Files in this repo
 
 
 
36
 
37
+ - `meetara-gemma4-e2b-it-Q4_K_M.gguf` (text model)
38
+ - `meetara-vl-gemma4-e2b-it.gguf` (vision-language projector)
39
 
40
+ ## Vision-language (VL)
41
 
42
+ For multimodal usage, load both files together:
 
 
 
 
43
 
44
+ - text GGUF: `meetara-gemma4-e2b-it-Q4_K_M.gguf`
45
+ - projector GGUF: `meetara-vl-gemma4-e2b-it.gguf`
46
 
47
+ Keep the pair matched by variant (E2B text with E2B VL projector).
48
 
49
+ ## Intended use
 
50
 
51
+ - local assistant experiences
52
+ - emotional support style conversations (non-clinical)
53
+ - productivity and everyday guidance
54
+ - multimodal assistant workflows when paired with VL projector
55
 
56
+ ## Safety note
 
 
57
 
58
+ This model is not a substitute for professional medical, legal, financial, or emergency advice. For high-risk situations, escalate to qualified professionals.
59
 
60
+ ## Base model and license
61
 
62
+ - Base model: `google/gemma-4-E2B-it`
63
+ - License: Apache 2.0 (same as upstream)