cphan-intersystems commited on
Commit
ef83f05
·
verified ·
1 Parent(s): c907c2e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +71 -0
README.md ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datasets:
3
+ - tiiuae/falcon-refinedweb
4
+ language:
5
+ - en
6
+ inference: true
7
+ new_version: tiiuae/falcon-11B
8
+ widget:
9
+ - text: Hey Falcon! Any recommendations for my holidays in Abu Dhabi?
10
+ example_title: Abu Dhabi Trip
11
+ - text: What's the Everett interpretation of quantum mechanics?
12
+ example_title: 'Q/A: Quantum & Answers'
13
+ - text: Give me a list of the top 10 dive sites you would recommend around the world.
14
+ example_title: Diving Top 10
15
+ - text: Can you tell me more about deep-water soloing?
16
+ example_title: Extreme sports
17
+ - text: Can you write a short tweet about the Apache 2.0 release of our latest AI
18
+ model, Falcon LLM?
19
+ example_title: Twitter Helper
20
+ - text: What are the responsabilities of a Chief Llama Officer?
21
+ example_title: Trendy Jobs
22
+ license: apache-2.0
23
+ base_model: tiiuae/falcon-7b-instruct
24
+ tags:
25
+ - llama-cpp
26
+ - gguf-my-repo
27
+ ---
28
+
29
+ # cphan-intersystems/falcon-7b-instruct-Q8_0-GGUF
30
+ This model was converted to GGUF format from [`tiiuae/falcon-7b-instruct`](https://huggingface.co/tiiuae/falcon-7b-instruct) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
31
+ Refer to the [original model card](https://huggingface.co/tiiuae/falcon-7b-instruct) for more details on the model.
32
+
33
+ ## Use with llama.cpp
34
+ Install llama.cpp through brew (works on Mac and Linux)
35
+
36
+ ```bash
37
+ brew install llama.cpp
38
+
39
+ ```
40
+ Invoke the llama.cpp server or the CLI.
41
+
42
+ ### CLI:
43
+ ```bash
44
+ llama-cli --hf-repo cphan-intersystems/falcon-7b-instruct-Q8_0-GGUF --hf-file falcon-7b-instruct-q8_0.gguf -p "The meaning to life and the universe is"
45
+ ```
46
+
47
+ ### Server:
48
+ ```bash
49
+ llama-server --hf-repo cphan-intersystems/falcon-7b-instruct-Q8_0-GGUF --hf-file falcon-7b-instruct-q8_0.gguf -c 2048
50
+ ```
51
+
52
+ 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.
53
+
54
+ Step 1: Clone llama.cpp from GitHub.
55
+ ```
56
+ git clone https://github.com/ggerganov/llama.cpp
57
+ ```
58
+
59
+ 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).
60
+ ```
61
+ cd llama.cpp && LLAMA_CURL=1 make
62
+ ```
63
+
64
+ Step 3: Run inference through the main binary.
65
+ ```
66
+ ./llama-cli --hf-repo cphan-intersystems/falcon-7b-instruct-Q8_0-GGUF --hf-file falcon-7b-instruct-q8_0.gguf -p "The meaning to life and the universe is"
67
+ ```
68
+ or
69
+ ```
70
+ ./llama-server --hf-repo cphan-intersystems/falcon-7b-instruct-Q8_0-GGUF --hf-file falcon-7b-instruct-q8_0.gguf -c 2048
71
+ ```