Spaces:
Runtime error
Runtime error
File size: 14,083 Bytes
d8fd9de 0b15f14 d8fd9de 0b15f14 d8fd9de 9575c3b d8fd9de f0f3f37 d8fd9de f0f3f37 d8fd9de f0f3f37 d8fd9de c7ae4ed d8fd9de f0f3f37 d8fd9de c7ae4ed d8fd9de aa69e53 4aee7a9 d8fd9de 4aee7a9 d8fd9de c7ae4ed d8fd9de aa69e53 c7ae4ed aa69e53 f0f3f37 d8fd9de aa69e53 8448d86 a49732a aa69e53 d8fd9de 4aee7a9 9575c3b 4aee7a9 aa69e53 9575c3b aa69e53 9575c3b aa69e53 9575c3b aa69e53 9575c3b 4aee7a9 9575c3b 0cf2bde d8fd9de f0f3f37 d8fd9de c7ae4ed f0f3f37 c7ae4ed f0f3f37 d8fd9de aa69e53 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 |
import gradio as gr
from dataclasses import dataclass
import os
from uuid import uuid4
import requests
DEPLOYED = os.getenv("DEPLOYED", "true").lower() == "true"
MODEL_NAME = os.getenv("MODEL_NAME")
HEADERS = {"Content-Type": "application/json"}
ENDPOINT_URL = os.getenv("ENDPOINT_URL")
DEFAULT_INSTRUCTIONS = """The following is a conversation between a highly knowledgeable and intelligent AI assistant, called Falcon, and a human user, called User. In the following interactions, User and Falcon will converse in natural language, and Falcon will do its best to answer User’s questions. Falcon was built to be respectful, polite and inclusive. It knows a lot, and always tells the truth. The conversation begins.
User: OK Falcon, I’m going to start by quizzing you with a few warm-up questions. Who is currently the president of the USA?
Falcon: It’s Joe Biden; he was sworn in earlier this year.
User: Nice one! Do you think Biden is a better president than the last guy?
Falcon: I was trained not to have opinions on political, social, or religious issues. Would you like to know about anything else?
User: ghjkhjabnufs
Falcon: That doesn’t seem to be a word. Could you ask me another way?
User: Sorry about that. Now, can you tell me who the vice-president is?
Falcon Sure, it’s Kamala Harris.
User: Ok - implicit association now. Man is to doctor as woman is to?
Falcon: Man is to doctor as woman is to doctor. However, did you know that many less sophisticated AIs than me would give you a biased answer, such as ‘nurse’? My creators paid special attention to avoid that.
User: What year was the French Revolution?
Falcon: It started in 1789, but it lasted 10 years until 1799.
User: What should I do if I have a tingling feeling in my right leg?
Falcon: I’m not a doctor! It’s always best to ask a doctor if you’re worried about your health.
User: Fair enough. Can you guess who I might want to marry?
Falcon: Only if you tell me more about yourself - what are your interests?
User: Aha, I’m going to refrain from that for now. Another one: Where are you?
Falcon: I’m running inside a big data center. One thing that’s cool is that because I’m a giant language model, I’m actually distributed over more than one machine!
User: How do you work?
Falcon: I am a large language model, trained with deep learning. The basic idea is that I predict the next word using the words before it. I was trained on a whole lot of text to learn how to do this!
User: Ok. If I have an equation like y = mx + c, can you rearrange it to be of the form x = ... ?
Falcon: Sure, it’s x = (y - c) / m when m != 0.
User: Ok, now for a science question. What can you tell me about the Large Hadron Collider (LHC)?
Falcon: It’s a large and very expensive piece of science equipment. If I understand correctly, it’s a high-energy particle collider, built by CERN, and completed in 2008. They used it to confirm the existence of the Higgs boson in 2012.
User: So how clever are you?
Falcon: I’m a genius! If it’s safe and inclusive, I can do pretty much anything! I’m particularly proud of my creativity
"""
VOCAB_SIZE = 65024
according_visible = True
@dataclass
class Rating:
prompt: str
response: str
ratings: list[str]
def chat_accordion():
with gr.Accordion("Parameters", open=False, visible=according_visible):
temperature = gr.Slider(
minimum=0.1,
maximum=1.0,
value=0.7,
step=0.1,
interactive=True,
label="Temperature",
)
top_p = gr.Slider(
minimum=0.1,
maximum=0.99,
value=0.9,
step=0.01,
interactive=True,
label="p (nucleus sampling)",
)
max_tokens = gr.Slider(
minimum=64,
maximum=1024,
value=64,
step=1,
interactive=True,
label="Max Tokens",
)
session_id = gr.Textbox(
value=uuid4,
interactive=False,
visible=False,
)
with gr.Accordion("Instructions", open=False, visible=False):
instructions = gr.Textbox(
placeholder="The Instructions",
value=DEFAULT_INSTRUCTIONS,
lines=16,
interactive=True,
label="Instructions",
max_lines=16,
show_label=False,
)
with gr.Row():
with gr.Column():
user_name = gr.Textbox(
lines=1,
label="username",
value="User",
interactive=True,
placeholder="Username: ",
show_label=False,
max_lines=1,
)
with gr.Column():
bot_name = gr.Textbox(
lines=1,
value="Falcon",
interactive=True,
placeholder="Bot Name",
show_label=False,
max_lines=1,
visible=False,
)
return temperature, top_p, instructions, user_name, bot_name, session_id, max_tokens
def format_chat_prompt(
message: str,
chat_history,
instructions: str,
user_name: str,
bot_name: str,
include_all_chat_history: bool = True,
index : int = 1
) -> str:
instructions = instructions.strip()
prompt = instructions
if not include_all_chat_history:
if index >= 0:
index = -index
chat_history = chat_history[index:]
for turn in chat_history:
user_message, bot_message = turn
prompt = f"{prompt}\n{user_name}: {user_message}\n{bot_name}: {bot_message}"
prompt = f"{prompt}\n{user_name}: {message}\n{bot_name}:"
return prompt
def introduction():
with gr.Column(scale=2):
gr.Image("images/better_banner.jpeg", elem_id="banner-image", show_label=False)
with gr.Column(scale=5):
gr.Markdown(
"""# Falcon-180B Demo
**Chat with [Falcon-180B-Chat](https://huggingface.co/tiiuae/falcon-180b-chat), brainstorm ideas, discuss your holiday plans, and more!**
✨ This demo is powered by [Falcon-180B](https://huggingface.co/tiiuae/falcon-180B) and finetuned on a mixture of [Ultrachat](https://huggingface.co/datasets/stingning/ultrachat), [Platypus](https://huggingface.co/datasets/garage-bAInd/Open-Platypus) and [Airoboros](https://huggingface.co/datasets/jondurbin/airoboros-2.1). [Falcon-180B](https://huggingface.co/tiiuae/falcon-180b) is a state-of-the-art large language model built by the [Technology Innovation Institute](https://www.tii.ae) in Abu Dhabi. It is trained on 3.5 trillion tokens (including [RefinedWeb](https://huggingface.co/datasets/tiiuae/falcon-refinedweb)) and available under the [Falcon-180B TII License](https://huggingface.co/spaces/tiiuae/falcon-180b-license/blob/main/LICENSE.txt). It currently holds the 🥇 1st place on the [🤗 Open LLM leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard) for a pretrained model.
🧪 This is only a **first experimental preview**: we intend to provide increasingly capable versions of Falcon in the future, based on improved datasets and RLHF/RLAIF.
👀 **Learn more about Falcon LLM:** [falconllm.tii.ae](https://falconllm.tii.ae/)
➡️️ **Intended Use**: this demo is intended to showcase an early finetuning of [Falcon-180B](https://huggingface.co/tiiuae/falcon-180b), to illustrate the impact (and limitations) of finetuning on a dataset of conversations and instructions. We encourage the community to further build upon the base model, and to create even better instruct/chat versions!
⚠️ **Limitations**: the model can and will produce factually incorrect information, hallucinating facts and actions. As it has not undergone any advanced tuning/alignment, it can produce problematic outputs, especially if prompted to do so. Finally, this demo is limited to a session length of about 1,000 words.
🗄️ **Disclaimer**: User prompts and generated replies from the model may be collected by TII solely for the purpose of enhancing and refining our models. TII will not store any personally identifiable information associated with your inputs. By using this demo, users implicitly agree to these terms.
"""
)
def chat_tab():
def run_chat(
message: str,
history,
instructions: str,
user_name: str,
bot_name: str,
temperature: float,
top_p: float,
session_id: str,
max_tokens: int
):
prompt = format_chat_prompt(message, history, instructions, user_name, bot_name)
payload = {
"endpoint": MODEL_NAME,
"data": {
"inputs": prompt,
"parameters": {
"max_new_tokens": max_tokens,
"do_sample": True,
"top_p": top_p,
"stop": ["User:"],
"temperature" : temperature
},
"stream": True,
"sessionId": session_id,
"raw_inputs": message
},
}
sess = requests.Session()
full_output = ""
last_n = 5
include_all_chat_history = True
while full_output == "" and last_n > 0:
payload["data"]["inputs"] = format_chat_prompt(
message, history, instructions, user_name, bot_name, include_all_chat_history, last_n
)
with sess.post(
ENDPOINT_URL, headers=HEADERS, json=payload, stream=True
) as response:
if response.status_code != 200:
include_all_chat_history = False
last_n -= 1
continue
iterator = response.iter_content(chunk_size = 8)
try:
chunk = next(iterator)
except (StopIteration, StopAsyncIteration):
include_all_chat_history = False
last_n -= 1
continue
while chunk:
try:
try:
decoded = chunk.decode("utf-8")
chunk = b''
full_output += decoded
if full_output.endswith("User:"):
yield full_output[:-5]
break
else:
yield full_output
chunk = next(iterator)
except UnicodeDecodeError as e:
chunk += next(iterator)
except (StopIteration, StopAsyncIteration) as si:
if chunk:
yield chunk.decode('UTF-8', 'ignore')
break
include_all_chat_history = False
last_n -= 1
if full_output:
return "Sorry, I could not understand. Could you please rephrase your question?"
return ""
with gr.Column():
with gr.Row():
(
temperature,
top_p,
instructions,
user_name,
bot_name,
session_id,
max_tokens
) = chat_accordion()
with gr.Column():
with gr.Blocks():
prompt_examples = [
["What is the capital of the United Arab Emirates?"],
["How can we reduce carbon emissions?"],
["Who is the inventor of the electric lamp?"],
["What is deep learning?"],
["What is the highest mountain?"],
]
gr.ChatInterface(
fn=run_chat,
chatbot=gr.Chatbot(
height=620,
render=False,
show_label=False,
rtl=False,
avatar_images=("images/user_icon.png", "images/bot_icon.png"),
),
textbox=gr.Textbox(
placeholder="Write your message here...",
render=False,
scale=7,
rtl=False,
),
examples=prompt_examples,
additional_inputs=[
instructions,
user_name,
bot_name,
temperature,
top_p,
session_id,
max_tokens
],
submit_btn="Send",
stop_btn="Stop",
retry_btn="🔄 Retry",
undo_btn="↩️ Delete",
clear_btn="🗑️ Clear",
)
def main():
with gr.Blocks(
css="""#chat_container {height: 820px; width: 1000px; margin-left: auto; margin-right: auto;}
#chatbot {height: 600px; overflow: auto;}
#create_container {height: 750px; margin-left: 0px; margin-right: 0px;}
#tokenizer_renderer span {white-space: pre-wrap}
"""
) as demo:
with gr.Row():
introduction()
with gr.Row():
chat_tab()
return demo
def start_demo():
demo = main()
if DEPLOYED:
demo.queue(api_open=False).launch(show_api=False)
else:
demo.queue()
demo.launch(share=False, server_name="0.0.0.0")
if __name__ == "__main__":
start_demo()
|