DavidAU commited on
Commit
266e550
1 Parent(s): c457fae

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +84 -0
README.md ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
+ tags:
6
+ - bees
7
+ - beekeeping
8
+ - honey
9
+ - llama-cpp
10
+ - gguf-my-repo
11
+ base_model: PY007/TinyLlama-1.1B-intermediate-step-240k-503b
12
+ datasets:
13
+ - BEE-spoke-data/bees-internal
14
+ metrics:
15
+ - accuracy
16
+ inference:
17
+ parameters:
18
+ max_new_tokens: 64
19
+ do_sample: true
20
+ renormalize_logits: true
21
+ repetition_penalty: 1.05
22
+ no_repeat_ngram_size: 6
23
+ temperature: 0.9
24
+ top_p: 0.95
25
+ epsilon_cutoff: 0.0008
26
+ widget:
27
+ - text: In beekeeping, the term "queen excluder" refers to
28
+ example_title: Queen Excluder
29
+ - text: One way to encourage a honey bee colony to produce more honey is by
30
+ example_title: Increasing Honey Production
31
+ - text: The lifecycle of a worker bee consists of several stages, starting with
32
+ example_title: Lifecycle of a Worker Bee
33
+ - text: Varroa destructor is a type of mite that
34
+ example_title: Varroa Destructor
35
+ - text: In the world of beekeeping, the acronym PPE stands for
36
+ example_title: Beekeeping PPE
37
+ - text: The term "robbing" in beekeeping refers to the act of
38
+ example_title: Robbing in Beekeeping
39
+ - text: 'Question: What''s the primary function of drone bees in a hive?
40
+
41
+ Answer:'
42
+ example_title: Role of Drone Bees
43
+ - text: To harvest honey from a hive, beekeepers often use a device known as a
44
+ example_title: Honey Harvesting Device
45
+ - text: 'Problem: You have a hive that produces 60 pounds of honey per year. You decide
46
+ to split the hive into two. Assuming each hive now produces at a 70% rate compared
47
+ to before, how much honey will you get from both hives next year?
48
+
49
+ To calculate'
50
+ example_title: Beekeeping Math Problem
51
+ - text: In beekeeping, "swarming" is the process where
52
+ example_title: Swarming
53
+ pipeline_tag: text-generation
54
+ ---
55
+
56
+ # DavidAU/TinyLlama-1.1bee-Q8_0-GGUF
57
+ This model was converted to GGUF format from [`BEE-spoke-data/TinyLlama-1.1bee`](https://huggingface.co/BEE-spoke-data/TinyLlama-1.1bee) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
58
+ Refer to the [original model card](https://huggingface.co/BEE-spoke-data/TinyLlama-1.1bee) for more details on the model.
59
+ ## Use with llama.cpp
60
+
61
+ Install llama.cpp through brew.
62
+
63
+ ```bash
64
+ brew install ggerganov/ggerganov/llama.cpp
65
+ ```
66
+ Invoke the llama.cpp server or the CLI.
67
+
68
+ CLI:
69
+
70
+ ```bash
71
+ llama-cli --hf-repo DavidAU/TinyLlama-1.1bee-Q8_0-GGUF --model tinyllama-1.1bee.Q8_0.gguf -p "The meaning to life and the universe is"
72
+ ```
73
+
74
+ Server:
75
+
76
+ ```bash
77
+ llama-server --hf-repo DavidAU/TinyLlama-1.1bee-Q8_0-GGUF --model tinyllama-1.1bee.Q8_0.gguf -c 2048
78
+ ```
79
+
80
+ 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.
81
+
82
+ ```
83
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m tinyllama-1.1bee.Q8_0.gguf -n 128
84
+ ```