rajasingh012 commited on
Commit
1eb2d5a
·
verified ·
1 Parent(s): 4128b77

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +52 -0
README.md ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: unsloth/gemma-4-E2B-it-unsloth-bnb-4bit
3
+ model:
4
+ - id: rajasingh012/vidya-gemma4-e2b-gguf
5
+ tags:
6
+ - unsloth
7
+ - fine-tuned
8
+ - gemma-4
9
+ - ncert
10
+ - socratic-tutoring
11
+ - education
12
+ - llm
13
+ library: llama.cpp
14
+ quantization: Q4_K_M
15
+ inference:
16
+ parameters:
17
+ temperature: 0.7
18
+ top_k: 40
19
+ top_p: 0.95
20
+ ---
21
+
22
+ # Vidya - NCERT Socratic Learning Bot
23
+
24
+ Fine-tuned Gemma 4 E2B (2.3B params) on NCERT socratic dialogue data.
25
+
26
+ ## Model Details
27
+
28
+ - **Base model**: unsloth/gemma-4-E2B-it-unsloth-bnb-4bit
29
+ - **Fine-tuning method**: QLoRA (rank=32, alpha=32)
30
+ - **Format**: GGUF Q4_K_M (~3.1 GB)
31
+ - **Context length**: 2048 tokens
32
+ - **Trained on**: 321 socratic dialogue samples (NCERT Class 6-10 Science)
33
+
34
+ ## Usage
35
+
36
+ This model is compatible with llama.cpp and Ollama. Download the GGUF file from the Files tab, or use the HuggingFace Hub API:
37
+
38
+ ```python
39
+ from huggingface_hub import hf_hub_download
40
+ path = hf_hub_download(repo_id='rajasingh012/vidya-gemma4-e2b-gguf',
41
+ filename='gemma-4-e2b-it-pretrained.Q4_K_M.gguf')
42
+ ```
43
+
44
+ ## Mobile App
45
+
46
+ This model powers the Vidya Android app (NCERT Socratic tutoring chatbot).
47
+ See: https://github.com/rajasingh012/vidya-android
48
+
49
+ ## Training
50
+
51
+ Trained via Unsloth FastModel API on Kaggle GPU (T4 x2).
52
+ Full training logs and data pipeline available in the ncert-wiki repository.