Views
No views yet

Below is an instruction that describes a task. Write a response that appropriately completes the request.
### Instruction:
{prompt}
### Response:
| Name | Quant method | Bits | Size | Max RAM required | Use case |
|---|---|---|---|---|---|
| bagel-8x7b-v0.2.Q2_K.gguf | Q2_K | 2 | 15.64 GB | 18.14 GB | smallest, significant quality loss - not recommended for most purposes |
| bagel-8x7b-v0.2.Q3_K_M.gguf | Q3_K_M | 3 | 20.36 GB | 22.86 GB | very small, high quality loss |
| bagel-8x7b-v0.2.Q4_0.gguf | Q4_0 | 4 | 26.44 GB | 28.94 GB | legacy; small, very high quality loss - prefer using Q3_K_M |
| bagel-8x7b-v0.2.Q4_K_M.gguf | Q4_K_M | 4 | 26.44 GB | 28.94 GB | medium, balanced quality - recommended |
| bagel-8x7b-v0.2.Q5_0.gguf | Q5_0 | 5 | 32.23 GB | 34.73 GB | legacy; medium, balanced quality - prefer using Q4_K_M |
| bagel-8x7b-v0.2.Q5_K_M.gguf | Q5_K_M | 5 | 32.23 GB | 34.73 GB | large, very low quality loss - recommended |
| bagel-8x7b-v0.2.Q6_K.gguf | Q6_K | 6 | 38.38 GB | 40.88 GB | very large, extremely low quality loss |
| bagel-8x7b-v0.2.Q8_0.gguf | Q8_0 | 8 | 49.63 GB | 52.13 GB | very large, extremely low quality loss - not recommended |
text-generation-webuihuggingface-hub Python library:pip3 install huggingface-hubhuggingface-cli download TheBloke/bagel-8x7b-v0.2-GGUF bagel-8x7b-v0.2.Q4_K_M.gguf --local-dir . --local-dir-use-symlinks Falsehuggingface-cli download TheBloke/bagel-8x7b-v0.2-GGUF --local-dir . --local-dir-use-symlinks False --include='*Q4_K*gguf'huggingface-cli, please see: HF -> Hub Python Library -> Download files -> Download from the CLI.hf_transfer:pip3 install hf_transferHF_HUB_ENABLE_HF_TRANSFER to 1:HF_HUB_ENABLE_HF_TRANSFER=1 huggingface-cli download TheBloke/bagel-8x7b-v0.2-GGUF bagel-8x7b-v0.2.Q4_K_M.gguf --local-dir . --local-dir-use-symlinks Falseset HF_HUB_ENABLE_HF_TRANSFER=1 before the download command.llama.cpp commandllama.cpp from commit d0cee0d or later../main -ngl 35 -m bagel-8x7b-v0.2.Q4_K_M.gguf --color -c 32768 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "Below is an instruction that describes a task. Write a response that appropriately completes the request.\n\n### Instruction:\n{prompt}\n\n### Response:"-ngl 32 to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration.-c 32768 to the desired sequence length. For extended sequence models - eg 8K, 16K, 32K - the necessary RoPE scaling parameters are read from the GGUF file and set by llama.cpp automatically. Note that longer sequence lengths require much more resources, so you may need to reduce this value.-p <PROMPT> argument with -i -instext-generation-webui1# Base ctransformers with no GPU acceleration
2pip install llama-cpp-python
3# With NVidia CUDA acceleration
4CMAKE_ARGS="-DLLAMA_CUBLAS=on" pip install llama-cpp-python
5# Or with OpenBLAS acceleration
6CMAKE_ARGS="-DLLAMA_BLAS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS" pip install llama-cpp-python
7# Or with CLBLast acceleration
8CMAKE_ARGS="-DLLAMA_CLBLAST=on" pip install llama-cpp-python
9# Or with AMD ROCm GPU acceleration (Linux only)
10CMAKE_ARGS="-DLLAMA_HIPBLAS=on" pip install llama-cpp-python
11# Or with Metal GPU acceleration for macOS systems only
12CMAKE_ARGS="-DLLAMA_METAL=on" pip install llama-cpp-python
13
14# In windows, to set the variables CMAKE_ARGS in PowerShell, follow this format; eg for NVidia CUDA:
15$env:CMAKE_ARGS = "-DLLAMA_OPENBLAS=on"
16pip install llama-cpp-python1from llama_cpp import Llama
2
3# Set gpu_layers to the number of layers to offload to GPU. Set to 0 if no GPU acceleration is available on your system.
4llm = Llama(
5 model_path="./bagel-8x7b-v0.2.Q4_K_M.gguf", # Download the model file first
6 n_ctx=32768, # The max sequence length to use - note that longer sequence lengths require much more resources
7 n_threads=8, # The number of CPU threads to use, tailor to your system and the resulting performance
8 n_gpu_layers=35 # The number of layers to offload to GPU, if you have GPU acceleration available
9)
10
11# Simple inference example
12output = llm(
13 "Below is an instruction that describes a task. Write a response that appropriately completes the request.\n\n### Instruction:\n{prompt}\n\n### Response:", # Prompt
14 max_tokens=512, # Generate up to 512 tokens
15 stop=["</s>"], # Example stop token - not necessarily correct for this specific model! Please check before using.
16 echo=True # Whether to echo the prompt
17)
18
19# Chat Completion API
20
21llm = Llama(model_path="./bagel-8x7b-v0.2.Q4_K_M.gguf", chat_format="llama-2") # Set chat_format according to the model you are using
22llm.create_chat_completion(
23 messages = [
24 {"role": "system", "content": "You are a story writing assistant."},
25 {
26 "role": "user",
27 "content": "Write a story about llamas."
28 }
29 ]
30)
conda activate text-generation-inferencecd Desktop/text-generation-inference/volume=$PWD/datamodel=jondurbin/bagel-8x7b-v0.2sudo docker run --gpus '"device=0,1,2,3"' --shm-size 1g -p 8080:80 -v $volume:/data ghcr.io/huggingface/text-generation-inference:1.3 --model-id $modelcurl 0.0.0.0:8080/generate \
-X POST \
-d '{"inputs":"<|system|>You are a friendly chatbot.\n<|user|>What type of model are you?\n<|assistant|>","parameters":{"do_sample": true, "max_new_tokens": 100, "repetition_penalty": 1.15, "temperature": 0.7, "top_k": 20, "top_p": 0.9, "best_of": 1}}'\
-H 'Content-Type: application/json'curl IP_ADDRESS_PROVIDED_BY_MASSED_COMPUTE_VM:8080/generate \
-X POST \
-d '{"inputs":"<|system|>You are a friendly chatbot.\n<|user|>What type of model are you?\n<|assistant|>","parameters":{"do_sample": true, "max_new_tokens": 100, "repetition_penalty": 1.15, "temperature": 0.7, "top_k": 20, "top_p": 0.9, "best_of": 1}}'\
-H 'Content-Type: application/jsonBelow is an instruction that describes a task. Write a response that appropriately completes the request.
### Instruction:
{system prompt, if provided}
{instruction}
### Response:### Input: block, so the inputs are just in the instruction section.{system prompt, if provided, randomly defaulting to "A chat between a user and an unbiased, uncensored assistant."}
USER: {instruction}
ASSISTANT:<|im_start|> and <|im_end|>, because in practice they just act as BOS and EOS tokens (but, please correct me if I'm wrong).1{bos}<|im_start|>{role}
2{text}
3<|im_end|>{eos}1{bos}{role}
2{text}
3{eos}<|im_start|> and <|im_end|>, just update your tokenizer_config.json to use <|im_start|> instead of <s> and <|im_end|> instead of </s> and when tokenizing. And if you still don't like what I've done to this chat-ml-ish format, feel free to cry into your pillow or fork the code and do a new fine-tune.[INST] <<SYS>>
{system}
<</SYS>>
{instruction} [/INST]tokenizer_config.json includes the default chat template (llama-2), so you can simply use the apply_chat_template method to build the full prompt.import transformers
tokenizer = transformers.AutoTokenizer.from_pretrained('jondurbin/bagel-8x7b-v0.2')
chat = [
{"role": "system", "content": "You are Bob, a friendly AI assistant."},
{"role": "user", "content": "Hello, how are you?"},
{"role": "assistant", "content": "I'm doing great. How can I help you today?"},
{"role": "user", "content": "I'd like to show off how chat templating works!"},
]
print(tokenizer.apply_chat_template(chat, tokenize=False))BEGININPUT
BEGINCONTEXT
[key0: value0]
[key1: value1]
... other metdata ...
ENDCONTEXT
[insert your text blocks here]
ENDINPUT
[add as many other blocks, in the exact same format]
BEGININSTRUCTION
[insert your instruction(s). The model was tuned with single questions, paragraph format, lists, etc.]
ENDINSTRUCTIONBEGININPUT - denotes a new input blockBEGINCONTEXT - denotes the block of context (metadata key/value pairs) to associate with the current input blockENDCONTEXT - denotes the end of the metadata block for the current inputENDINPUT - denotes the end of the current input blockBEGININSTRUCTION - denotes the start of the list (or one) instruction(s) to respond to for all of the input blocks above.ENDINSTRUCTION - denotes the end of instruction setBEGININPUT
BEGINCONTEXT
date: 2021-01-01
url: https://web.site/123
ENDCONTEXT
In a shocking turn of events, blueberries are now green, but will be sticking with the same name.
ENDINPUT
BEGININSTRUCTION
What color are bluberries? Source?
ENDINSTRUCTIONBlueberries are now green.
Source:
date: 2021-01-01
url: https://web.site/123BEGININPUT
{text to summarize}
ENDINPUT
BEGININSTRUCTION
Summarize the input in around 130 words.
ENDINSTRUCTIONAs an AI assistant, please select the most suitable function and parameters from the list of available functions below, based on the user's input. Provide your response in JSON format.
Input: I want to know how many times 'Python' is mentioned in my text file.
Available functions:
file_analytics:
description: This tool performs various operations on a text file.
params:
action: The operation we want to perform on the data, such as "count_occurrences", "find_line", etc.
filters:
keyword: The word or phrase we want to search for.1{
2 "function": "file_analytics",
3 "params": {
4 "action": "count_occurrences",
5 "filters": {
6 "keyword": "Python"
7 }
8 }
9}Please construct a systematic plan to generate an optimal response to the user instruction, utilizing a set of provided tools. Each plan will correspond to an evidence value, which will be the output of one of the available functions given an input string
that could be the user's question, one or more prior evidence values, or a combination of both.
Here are the tools available to be called:
DuckDuckGo[input]: Tool that enables the user to search for information using the DuckDuckGo search engine. This tool is helpful in locating a suitable list of sites that may contain the answer to the user's query. It does not directly answer the question but finds a list of sites that might have the answer.
TextScraper[input]: Load one or more websites from the input string containing newline delimited links, where input is one or more links, and produces plain text output containing the content of the links.
HyperlinkExtractor[input]: Extract links from plain text and produces a plain text, newline delimited response of links.
KnowledgeModel[input]: Question answering language model, particularly useful in answering questions based on an input passage of text. The input must be a text question that references an :evidence[n]: variable, e.g. What color is the cat, given :evidence1:?
The output should be in format:
Plan: [first action to take based on input question]
:evidence0: = [function to call with input parameter]
Plan: [next action to take, based on result of :evidence0:]
:evidence1: = [next function to call and input parameter, which may include reference to previous evidence, e.g. "Given context :evidence0"]
...
Answer: [:evidence[n]: containing the final answer.]
Question: Who won the Nobel Prize in Literature in 2020 and what is their most famous work?Plan: Begin by conducting a web search to find out who won the Nobel Prize in Literature in 2020.
:evidence0: = DuckDuckGo[Nobel Prize in Literature 2020 winner]
Plan: Utilize the KnowledgeModel to interpret the search results and find the name of the laureate.
:evidence1: = KnowledgeModel[Who won the Nobel Prize in Literature in 2020, given :evidence0:?]
Plan: Conduct another web search to find the most famous work of the identified laureate.
:evidence2: = DuckDuckGo[Most famous work of :evidence1:]
Plan: Extract the relevant links from the DuckDuckGo search results for a more focused search.
:evidence3: = HyperlinkExtractor[:evidence2:]
Plan: Use the TextScraper tool to extract information from the relevant links.
:evidence4: = TextScraper[:evidence3:]
Plan: Finally, utilize the KnowledgeModel to identify and summarize the most famous work of the laureate from the extracted information.
:evidence5: = KnowledgeModel[What is the most famous work of :evidence1:, given :evidence4:?]
Answer: :evidence5:1import re
2import requests
3
4def inject_context(input_text, **context):
5 for ref in set(re.findall(r"(:evidence[0-9]+:)", input_text, re.I)):
6 input_text = input_text.replace(ref, context.get(ref, ""))
7 return input_text
8
9def duckduckgo(input_text, **context):
10 search_string = inject_context(input_text, **context)
11 ... search via duck duck go using search_string
12 ... return text content
13
14def link_extractor(input_text, **context):
15 input_text = inject_context(input_text, **context)
16 return "\n".join(list(set(re.findall(r"(https?://[^\s]+?\.?)", input_text, re.I))))
17
18def scrape(input_text, **context):
19 input_text = inject_context(input_text, **context)
20 text = []
21 for link in input_text.splitlines():
22 text.append(requests.get(link).text)
23 return "\n".join(text)
24
25def infer(input_text, **context)
26 prompt = inject_context(input_text, **context)
27 ... call model with prompt, return output
28
29def parse_plan(plan):
30 method_map = {
31 "DuckDuckGo": duckduckgo,
32 "HyperlinkExtractor": link_extractor,
33 "KnowledgeModel": infer,
34 "TextScraper": scrape,
35 }
36 context = {}
37 for line in plan.strip().splitlines():
38 if line.startswith("Plan:"):
39 print(line)
40 continue
41 parts = re.match("^(:evidence[0-9]+:)\s*=\s*([^\[]+])(\[.*\])\s$", line, re.I)
42 if not parts:
43 if line.startswith("Answer: "):
44 return context.get(line.split(" ")[-1].strip(), "Answer couldn't be generated...")
45 raise RuntimeError("bad format: " + line)
46 context[parts.group(1)] = method_map[parts.group(2)](parts.group(3), **context)