mariampinel commited on
Commit
c462c2a
1 Parent(s): 4d6d586

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +60 -0
README.md ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datasets:
3
+ - bitext/Bitext-customer-support-llm-chatbot-training-dataset
4
+ language:
5
+ - en
6
+ library_name: transformers
7
+ license: apache-2.0
8
+ pipeline_tag: text-generation
9
+ tags:
10
+ - e-commerce
11
+ - llama3.2
12
+ - llama-cpp
13
+ - gguf-my-repo
14
+ base_model: kingabzpro/llama-3.2-3b-it-Ecommerce-ChatBot
15
+ new_version: kingabzpro/llama-3.2-3b-it-Ecommerce-ChatBot
16
+ ---
17
+
18
+ # mariampinel/llama-3.2-3b-it-Ecommerce-ChatBot-Q4_K_M-GGUF
19
+ This model was converted to GGUF format from [`kingabzpro/llama-3.2-3b-it-Ecommerce-ChatBot`](https://huggingface.co/kingabzpro/llama-3.2-3b-it-Ecommerce-ChatBot) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
20
+ Refer to the [original model card](https://huggingface.co/kingabzpro/llama-3.2-3b-it-Ecommerce-ChatBot) for more details on the model.
21
+
22
+ ## Use with llama.cpp
23
+ Install llama.cpp through brew (works on Mac and Linux)
24
+
25
+ ```bash
26
+ brew install llama.cpp
27
+
28
+ ```
29
+ Invoke the llama.cpp server or the CLI.
30
+
31
+ ### CLI:
32
+ ```bash
33
+ llama-cli --hf-repo mariampinel/llama-3.2-3b-it-Ecommerce-ChatBot-Q4_K_M-GGUF --hf-file llama-3.2-3b-it-ecommerce-chatbot-q4_k_m.gguf -p "The meaning to life and the universe is"
34
+ ```
35
+
36
+ ### Server:
37
+ ```bash
38
+ llama-server --hf-repo mariampinel/llama-3.2-3b-it-Ecommerce-ChatBot-Q4_K_M-GGUF --hf-file llama-3.2-3b-it-ecommerce-chatbot-q4_k_m.gguf -c 2048
39
+ ```
40
+
41
+ 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.
42
+
43
+ Step 1: Clone llama.cpp from GitHub.
44
+ ```
45
+ git clone https://github.com/ggerganov/llama.cpp
46
+ ```
47
+
48
+ 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).
49
+ ```
50
+ cd llama.cpp && LLAMA_CURL=1 make
51
+ ```
52
+
53
+ Step 3: Run inference through the main binary.
54
+ ```
55
+ ./llama-cli --hf-repo mariampinel/llama-3.2-3b-it-Ecommerce-ChatBot-Q4_K_M-GGUF --hf-file llama-3.2-3b-it-ecommerce-chatbot-q4_k_m.gguf -p "The meaning to life and the universe is"
56
+ ```
57
+ or
58
+ ```
59
+ ./llama-server --hf-repo mariampinel/llama-3.2-3b-it-Ecommerce-ChatBot-Q4_K_M-GGUF --hf-file llama-3.2-3b-it-ecommerce-chatbot-q4_k_m.gguf -c 2048
60
+ ```