ar08 commited on
Commit
840d6e3
·
verified ·
1 Parent(s): 0238cd2

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +90 -0
README.md ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Telugu-LLM-Labs/Indic-gemma-7b-finetuned-sft-Navarasa-2.0
3
+ datasets:
4
+ - ravithejads/samvaad-hi-filtered
5
+ - Telugu-LLM-Labs/telugu_teknium_GPTeacher_general_instruct_filtered_romanized
6
+ - Telugu-LLM-Labs/telugu_alpaca_yahma_cleaned_filtered_romanized
7
+ - Telugu-LLM-Labs/sindhi_alpaca_yahma_cleaned_filtered
8
+ - Telugu-LLM-Labs/urdu_alpaca_yahma_cleaned_filtered
9
+ - Telugu-LLM-Labs/marathi_alpaca_yahma_cleaned_filtered
10
+ - Telugu-LLM-Labs/assamese_alpaca_yahma_cleaned_filtered
11
+ - Telugu-LLM-Labs/konkani_alpaca_yahma_cleaned_filtered
12
+ - Telugu-LLM-Labs/nepali_alpaca_yahma_cleaned_filtered
13
+ - abhinand/tamil-alpaca
14
+ - Tensoic/airoboros-3.2_kn
15
+ - Tensoic/gpt-teacher_kn
16
+ - VishnuPJ/Alpaca_Instruct_Malayalam
17
+ - Tensoic/Alpaca-Gujarati
18
+ - HydraIndicLM/punjabi_alpaca_52K
19
+ - HydraIndicLM/bengali_alpaca_dolly_67k
20
+ - OdiaGenAI/Odia_Alpaca_instructions_52k
21
+ - yahma/alpaca-cleaned
22
+ language:
23
+ - te
24
+ - en
25
+ - ta
26
+ - ml
27
+ - mr
28
+ - hi
29
+ - kn
30
+ - sd
31
+ - ne
32
+ - ur
33
+ - as
34
+ - gu
35
+ - bn
36
+ - pa
37
+ - or
38
+ library_name: transformers
39
+ license: other
40
+ license_name: gemma-terms-of-use
41
+ license_link: https://ai.google.dev/gemma/terms
42
+ pipeline_tag: text-generation
43
+ tags:
44
+ - llama-cpp
45
+ - gguf-my-repo
46
+ ---
47
+
48
+ # ar08/Indic-gemma-7b-finetuned-sft-Navarasa-2.0-IQ3_M-GGUF
49
+ This model was converted to GGUF format from [`Telugu-LLM-Labs/Indic-gemma-7b-finetuned-sft-Navarasa-2.0`](https://huggingface.co/Telugu-LLM-Labs/Indic-gemma-7b-finetuned-sft-Navarasa-2.0) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
50
+ Refer to the [original model card](https://huggingface.co/Telugu-LLM-Labs/Indic-gemma-7b-finetuned-sft-Navarasa-2.0) for more details on the model.
51
+
52
+ ## Use with llama.cpp
53
+ Install llama.cpp through brew (works on Mac and Linux)
54
+
55
+ ```bash
56
+ brew install llama.cpp
57
+
58
+ ```
59
+ Invoke the llama.cpp server or the CLI.
60
+
61
+ ### CLI:
62
+ ```bash
63
+ llama-cli --hf-repo ar08/Indic-gemma-7b-finetuned-sft-Navarasa-2.0-IQ3_M-GGUF --hf-file indic-gemma-7b-finetuned-sft-navarasa-2.0-iq3_m-imat.gguf -p "The meaning to life and the universe is"
64
+ ```
65
+
66
+ ### Server:
67
+ ```bash
68
+ llama-server --hf-repo ar08/Indic-gemma-7b-finetuned-sft-Navarasa-2.0-IQ3_M-GGUF --hf-file indic-gemma-7b-finetuned-sft-navarasa-2.0-iq3_m-imat.gguf -c 2048
69
+ ```
70
+
71
+ Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.
72
+
73
+ Step 1: Clone llama.cpp from GitHub.
74
+ ```
75
+ git clone https://github.com/ggerganov/llama.cpp
76
+ ```
77
+
78
+ Step 2: Move into the llama.cpp folder and build it with `LLAMA_CURL=1` flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).
79
+ ```
80
+ cd llama.cpp && LLAMA_CURL=1 make
81
+ ```
82
+
83
+ Step 3: Run inference through the main binary.
84
+ ```
85
+ ./llama-cli --hf-repo ar08/Indic-gemma-7b-finetuned-sft-Navarasa-2.0-IQ3_M-GGUF --hf-file indic-gemma-7b-finetuned-sft-navarasa-2.0-iq3_m-imat.gguf -p "The meaning to life and the universe is"
86
+ ```
87
+ or
88
+ ```
89
+ ./llama-server --hf-repo ar08/Indic-gemma-7b-finetuned-sft-Navarasa-2.0-IQ3_M-GGUF --hf-file indic-gemma-7b-finetuned-sft-navarasa-2.0-iq3_m-imat.gguf -c 2048
90
+ ```