TheBloke commited on
Commit
85092e8
1 Parent(s): f20e82c

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +289 -0
README.md ADDED
@@ -0,0 +1,289 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ inference: false
3
+ license: llama2
4
+ model_creator: Nick Perez
5
+ model_link: https://huggingface.co/nkpz/llama2-22b-daydreamer-v3
6
+ model_name: Llama2 22B Daydreamer2 v3
7
+ model_type: llama
8
+ quantized_by: TheBloke
9
+ ---
10
+
11
+ <!-- header start -->
12
+ <!-- 200823 -->
13
+ <div style="width: auto; margin-left: auto; margin-right: auto">
14
+ <img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;">
15
+ </div>
16
+ <div style="display: flex; justify-content: space-between; width: 100%;">
17
+ <div style="display: flex; flex-direction: column; align-items: flex-start;">
18
+ <p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://discord.gg/theblokeai">Chat & support: TheBloke's Discord server</a></p>
19
+ </div>
20
+ <div style="display: flex; flex-direction: column; align-items: flex-end;">
21
+ <p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://www.patreon.com/TheBlokeAI">Want to contribute? TheBloke's Patreon page</a></p>
22
+ </div>
23
+ </div>
24
+ <div style="text-align:center; margin-top: 0em; margin-bottom: 0em"><p style="margin-top: 0.25em; margin-bottom: 0em;">TheBloke's LLM work is generously supported by a grant from <a href="https://a16z.com">andreessen horowitz (a16z)</a></p></div>
25
+ <hr style="margin-top: 1.0em; margin-bottom: 1.0em;">
26
+ <!-- header end -->
27
+
28
+ # Llama2 22B Daydreamer2 v3 - GGUF
29
+ - Model creator: [Nick Perez](https://huggingface.co/nkpz)
30
+ - Original model: [Llama2 22B Daydreamer2 v3](https://huggingface.co/nkpz/llama2-22b-daydreamer-v3)
31
+
32
+ ## Description
33
+
34
+ This repo contains GGUF format model files for [Nick Perez's Llama2 22B Daydreamer2 v3](https://huggingface.co/nkpz/llama2-22b-daydreamer-v3).
35
+
36
+ <!-- README_GGUF.md-about-gguf start -->
37
+ ### About GGUF
38
+
39
+ GGUF is a new format introduced by the llama.cpp team on August 21st 2023. It is a replacement for GGML, which is no longer supported by llama.cpp.
40
+
41
+ The key benefit of GGUF is that it is a extensible, future-proof format which stores more information about the model as metadata. It also includes significantly improved tokenization code, including for the first time full support for special tokens. This should improve performance, especially with models that use new special tokens and implement custom prompt templates.
42
+
43
+ Here are a list of clients and libraries that are known to support GGUF:
44
+ * [llama.cpp](https://github.com/ggerganov/llama.cpp).
45
+ * [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most widely used web UI. Supports GGUF with GPU acceleration via the ctransformers backend - llama-cpp-python backend should work soon too.
46
+ * [KoboldCpp](https://github.com/LostRuins/koboldcpp), now supports GGUF as of release 1.41! A powerful GGML web UI, with full GPU accel. Especially good for story telling.
47
+ * [LM Studio](https://lmstudio.ai/), version 0.2.2 and later support GGUF. A fully featured local GUI with GPU acceleration on both Windows (NVidia and AMD), and macOS.
48
+ * [LoLLMS Web UI](https://github.com/ParisNeo/lollms-webui), should now work, choose the `c_transformers` backend. A great web UI with many interesting features. Supports CUDA GPU acceleration.
49
+ * [ctransformers](https://github.com/marella/ctransformers), now supports GGUF as of version 0.2.24! A Python library with GPU accel, LangChain support, and OpenAI-compatible AI server.
50
+ * [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), supports GGUF as of version 0.1.79. A Python library with GPU accel, LangChain support, and OpenAI-compatible API server.
51
+ * [candle](https://github.com/huggingface/candle), added GGUF support on August 22nd. Candle is a Rust ML framework with a focus on performance, including GPU support, and ease of use.
52
+
53
+ <!-- README_GGUF.md-about-gguf end -->
54
+ <!-- repositories-available start -->
55
+ ## Repositories available
56
+
57
+ * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GPTQ)
58
+ * [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GGUF)
59
+ * [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference (deprecated)](https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GGML)
60
+ * [Nick Perez's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/nkpz/llama2-22b-daydreamer-v3)
61
+ <!-- repositories-available end -->
62
+
63
+ <!-- prompt-template start -->
64
+ ## Prompt template: Alpaca
65
+
66
+ ```
67
+ Below is an instruction that describes a task. Write a response that appropriately completes the request.
68
+
69
+ ### Instruction:
70
+ {prompt}
71
+
72
+ ### Response:
73
+
74
+ ```
75
+
76
+ <!-- prompt-template end -->
77
+ <!-- compatibility_gguf start -->
78
+ ## Compatibility
79
+
80
+ These quantised GGUF files are compatible with llama.cpp from August 21st 2023 onwards, as of commit [6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9](https://github.com/ggerganov/llama.cpp/commit/6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9)
81
+
82
+ They are now also compatible with many third party UIs and libraries - please see the list at the top of the README.
83
+
84
+ ## Explanation of quantisation methods
85
+ <details>
86
+ <summary>Click to see details</summary>
87
+
88
+ The new methods available are:
89
+ * GGML_TYPE_Q2_K - "type-1" 2-bit quantization in super-blocks containing 16 blocks, each block having 16 weight. Block scales and mins are quantized with 4 bits. This ends up effectively using 2.5625 bits per weight (bpw)
90
+ * GGML_TYPE_Q3_K - "type-0" 3-bit quantization in super-blocks containing 16 blocks, each block having 16 weights. Scales are quantized with 6 bits. This end up using 3.4375 bpw.
91
+ * GGML_TYPE_Q4_K - "type-1" 4-bit quantization in super-blocks containing 8 blocks, each block having 32 weights. Scales and mins are quantized with 6 bits. This ends up using 4.5 bpw.
92
+ * GGML_TYPE_Q5_K - "type-1" 5-bit quantization. Same super-block structure as GGML_TYPE_Q4_K resulting in 5.5 bpw
93
+ * GGML_TYPE_Q6_K - "type-0" 6-bit quantization. Super-blocks with 16 blocks, each block having 16 weights. Scales are quantized with 8 bits. This ends up using 6.5625 bpw
94
+
95
+ Refer to the Provided Files table below to see what files use which methods, and how.
96
+ </details>
97
+ <!-- compatibility_gguf end -->
98
+
99
+ <!-- README_GGUF.md-provided-files start -->
100
+ ## Provided files
101
+
102
+ | Name | Quant method | Bits | Size | Max RAM required | Use case |
103
+ | ---- | ---- | ---- | ---- | ---- | ----- |
104
+ | [llama2-22b-daydreamer-v3.Q2_K.gguf](https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GGUF/blob/main/llama2-22b-daydreamer-v3.Q2_K.gguf) | Q2_K | 2 | 9.08 GB| 11.58 GB | smallest, significant quality loss - not recommended for most purposes |
105
+ | [llama2-22b-daydreamer-v3.Q3_K_S.gguf](https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GGUF/blob/main/llama2-22b-daydreamer-v3.Q3_K_S.gguf) | Q3_K_S | 3 | 9.47 GB| 11.97 GB | very small, high quality loss |
106
+ | [llama2-22b-daydreamer-v3.Q3_K_M.gguf](https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GGUF/blob/main/llama2-22b-daydreamer-v3.Q3_K_M.gguf) | Q3_K_M | 3 | 10.61 GB| 13.11 GB | very small, high quality loss |
107
+ | [llama2-22b-daydreamer-v3.Q3_K_L.gguf](https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GGUF/blob/main/llama2-22b-daydreamer-v3.Q3_K_L.gguf) | Q3_K_L | 3 | 11.61 GB| 14.11 GB | small, substantial quality loss |
108
+ | [llama2-22b-daydreamer-v3.Q4_0.gguf](https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GGUF/blob/main/llama2-22b-daydreamer-v3.Q4_0.gguf) | Q4_0 | 4 | 12.34 GB| 14.84 GB | legacy; small, very high quality loss - prefer using Q3_K_M |
109
+ | [llama2-22b-daydreamer-v3.Q4_K_S.gguf](https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GGUF/blob/main/llama2-22b-daydreamer-v3.Q4_K_S.gguf) | Q4_K_S | 4 | 12.42 GB| 14.92 GB | small, greater quality loss |
110
+ | [llama2-22b-daydreamer-v3.Q4_K_M.gguf](https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GGUF/blob/main/llama2-22b-daydreamer-v3.Q4_K_M.gguf) | Q4_K_M | 4 | 13.18 GB| 15.68 GB | medium, balanced quality - recommended |
111
+ | [llama2-22b-daydreamer-v3.Q5_0.gguf](https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GGUF/blob/main/llama2-22b-daydreamer-v3.Q5_0.gguf) | Q5_0 | 5 | 15.04 GB| 17.54 GB | legacy; medium, balanced quality - prefer using Q4_K_M |
112
+ | [llama2-22b-daydreamer-v3.Q5_K_S.gguf](https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GGUF/blob/main/llama2-22b-daydreamer-v3.Q5_K_S.gguf) | Q5_K_S | 5 | 15.04 GB| 17.54 GB | large, low quality loss - recommended |
113
+ | [llama2-22b-daydreamer-v3.Q5_K_M.gguf](https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GGUF/blob/main/llama2-22b-daydreamer-v3.Q5_K_M.gguf) | Q5_K_M | 5 | 15.47 GB| 17.97 GB | large, very low quality loss - recommended |
114
+ | [llama2-22b-daydreamer-v3.Q6_K.gguf](https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GGUF/blob/main/llama2-22b-daydreamer-v3.Q6_K.gguf) | Q6_K | 6 | 17.91 GB| 20.41 GB | very large, extremely low quality loss |
115
+ | [llama2-22b-daydreamer-v3.Q8_0.gguf](https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GGUF/blob/main/llama2-22b-daydreamer-v3.Q8_0.gguf) | Q8_0 | 8 | 23.19 GB| 25.69 GB | very large, extremely low quality loss - not recommended |
116
+
117
+ **Note**: the above RAM figures assume no GPU offloading. If layers are offloaded to the GPU, this will reduce RAM usage and use VRAM instead.
118
+
119
+
120
+
121
+ <!-- README_GGUF.md-provided-files end -->
122
+
123
+ <!-- README_GGUF.md-how-to-run start -->
124
+ ## Example `llama.cpp` command
125
+
126
+ Make sure you are using `llama.cpp` from commit [6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9](https://github.com/ggerganov/llama.cpp/commit/6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9) or later.
127
+
128
+ For compatibility with older versions of llama.cpp, or for any third-party libraries or clients that haven't yet updated for GGUF, please use GGML files instead.
129
+
130
+ ```
131
+ ./main -t 10 -ngl 32 -m llama2-22b-daydreamer-v3.q4_K_M.gguf --color -c 4096 --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:\nWrite a story about llamas\n\n### Response:"
132
+ ```
133
+ Change `-t 10` to the number of physical CPU cores you have. For example if your system has 8 cores/16 threads, use `-t 8`. If offloading all layers to GPU, set `-t 1`.
134
+
135
+ Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration.
136
+
137
+ Change `-c 4096` to the desired sequence length for this model. 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.
138
+
139
+ If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins`
140
+
141
+ For other parameters and how to use them, please refer to [the llama.cpp documentation](https://github.com/ggerganov/llama.cpp/blob/master/examples/main/README.md)
142
+
143
+ ## How to run in `text-generation-webui`
144
+
145
+ Further instructions here: [text-generation-webui/docs/llama.cpp.md](https://github.com/oobabooga/text-generation-webui/blob/main/docs/llama.cpp.md).
146
+
147
+ ## How to run from Python code
148
+
149
+ You can use GGUF models from Python using the [llama-cpp-python](https://github.com/abetlen/llama-cpp-python) or [ctransformers](https://github.com/marella/ctransformers) libraries.
150
+
151
+ ### How to load this model from Python using ctransformers
152
+
153
+ #### First install the package
154
+
155
+ ```bash
156
+ # Base ctransformers with no GPU acceleration
157
+ pip install ctransformers>=0.2.24
158
+ # Or with CUDA GPU acceleration
159
+ pip install ctransformers[cuda]>=0.2.24
160
+ # Or with ROCm GPU acceleration
161
+ CT_HIPBLAS=1 pip install ctransformers>=0.2.24 --no-binary ctransformers
162
+ # Or with Metal GPU acceleration for macOS systems
163
+ CT_METAL=1 pip install ctransformers>=0.2.24 --no-binary ctransformers
164
+ ```
165
+
166
+ #### Simple example code to load one of these GGUF models
167
+
168
+ ```python
169
+ from ctransformers import AutoModelForCausalLM
170
+
171
+ # Set gpu_layers to the number of layers to offload to GPU. Set to 0 if no GPU acceleration is available on your system.
172
+ llm = AutoModelForCausalLM.from_pretrained("TheBloke/Llama2-22B-Daydreamer-v3-GGUF", model_file="llama2-22b-daydreamer-v3.q4_K_M.gguf", model_type="llama", gpu_layers=50)
173
+
174
+ print(llm("AI is going to"))
175
+ ```
176
+
177
+ ## How to use with LangChain
178
+
179
+ Here's guides on using llama-cpp-python or ctransformers with LangChain:
180
+
181
+ * [LangChain + llama-cpp-python](https://python.langchain.com/docs/integrations/llms/llamacpp)
182
+ * [LangChain + ctransformers](https://python.langchain.com/docs/integrations/providers/ctransformers)
183
+
184
+ <!-- README_GGUF.md-how-to-run end -->
185
+
186
+ <!-- footer start -->
187
+ <!-- 200823 -->
188
+ ## Discord
189
+
190
+ For further support, and discussions on these models and AI in general, join us at:
191
+
192
+ [TheBloke AI's Discord server](https://discord.gg/theblokeai)
193
+
194
+ ## Thanks, and how to contribute.
195
+
196
+ Thanks to the [chirper.ai](https://chirper.ai) team!
197
+
198
+ I've had a lot of people ask if they can contribute. I enjoy providing models and helping people, and would love to be able to spend even more time doing it, as well as expanding into new projects like fine tuning/training.
199
+
200
+ If you're able and willing to contribute it will be most gratefully received and will help me to keep providing more models, and to start work on new AI projects.
201
+
202
+ Donaters will get priority support on any and all AI/LLM/model questions and requests, access to a private Discord room, plus other benefits.
203
+
204
+ * Patreon: https://patreon.com/TheBlokeAI
205
+ * Ko-Fi: https://ko-fi.com/TheBlokeAI
206
+
207
+ **Special thanks to**: Aemon Algiz.
208
+
209
+ **Patreon special mentions**: Russ Johnson, J, alfie_i, Alex, NimbleBox.ai, Chadd, Mandus, Nikolai Manek, Ken Nordquist, ya boyyy, Illia Dulskyi, Viktor Bowallius, vamX, Iucharbius, zynix, Magnesian, Clay Pascal, Pierre Kircher, Enrico Ros, Tony Hughes, Elle, Andrey, knownsqashed, Deep Realms, Jerry Meng, Lone Striker, Derek Yates, Pyrater, Mesiah Bishop, James Bentley, Femi Adebogun, Brandon Frisco, SuperWojo, Alps Aficionado, Michael Dempsey, Vitor Caleffi, Will Dee, Edmond Seymore, usrbinkat, LangChain4j, Kacper Wikieł, Luke Pendergrass, John Detwiler, theTransient, Nathan LeClaire, Tiffany J. Kim, biorpg, Eugene Pentland, Stanislav Ovsiannikov, Fred von Graf, terasurfer, Kalila, Dan Guido, Nitin Borwankar, 阿明, Ai Maven, John Villwock, Gabriel Puliatti, Stephen Murray, Asp the Wyvern, danny, Chris Smitley, ReadyPlayerEmma, S_X, Daniel P. Andersen, Olakabola, Jeffrey Morgan, Imad Khwaja, Caitlyn Gatomon, webtim, Alicia Loh, Trenton Dambrowitz, Swaroop Kallakuri, Erik Bjäreholt, Leonard Tan, Spiking Neurons AB, Luke @flexchar, Ajan Kanaga, Thomas Belote, Deo Leter, RoA, Willem Michiel, transmissions 11, subjectnull, Matthew Berman, Joseph William Delisle, David Ziegler, Michael Davis, Johann-Peter Hartmann, Talal Aujan, senxiiz, Artur Olbinski, Rainer Wilmers, Spencer Kim, Fen Risland, Cap'n Zoog, Rishabh Srivastava, Michael Levine, Geoffrey Montalvo, Sean Connelly, Alexandros Triantafyllidis, Pieter, Gabriel Tamborski, Sam, Subspace Studios, Junyu Yang, Pedro Madruga, Vadim, Cory Kujawski, K, Raven Klaugh, Randy H, Mano Prime, Sebastain Graf, Space Cruiser
210
+
211
+
212
+ Thank you to all my generous patrons and donaters!
213
+
214
+ And thank you again to a16z for their generous grant.
215
+
216
+ <!-- footer end -->
217
+
218
+ <!-- original-model-card start -->
219
+ # Original model card: Nick Perez's Llama2 22B Daydreamer2 v3
220
+
221
+ **What is it?**
222
+ Llama 2 13b expanded to the size of a Llama 1 33b model in certain areas, with the empty surrounding space filled with llama 33b data. (Base Model: https://huggingface.co/chargoddard/llama2-22b-blocktriangular) This is then finetuned on a 3090 by creating large loras and merging them. When I first started with 22b models, I looked for signs of knowledge transfer but didn't see it, so that's not a goal - the goal is just to throw lots of data at it until it adapts well to its surgically implanted parts. Datasets used are a mix of instruction, roleplay, and conversational data, often curated.
223
+
224
+
225
+
226
+ Continuation of https://huggingface.co/nkpz/llama2-22b-daydreamer-v2
227
+
228
+ Gave it an epoch of https://huggingface.co/datasets/jondurbin/airoboros-gpt4-1.4.1-mpt which it had never seen before - it had only seen Airoboros 2.0.
229
+ I excluded all coding rows from this dataset - a dedicated model is better for that imo. I wanted it to focus on answering well in English.
230
+
231
+ I thought this was pretty good improvement. Its ability to roleplay and imitate speech styles was enhanced and I feel like it's still sharpening up its problem solving skills.
232
+
233
+ Its output style is right where I want it - dry and accurate enough when it's being asked for information, but has a lot character when it's answering fun prompts.
234
+
235
+ For input, it's flexible. It understands the Alpaca format well, but has been trained to handle a variety of input styles at this point.
236
+
237
+ I don't know what's next. I think I need to start benchmarking so I can more formally identify its weak points.
238
+
239
+ Examples edited with additional newlines to make it easier to read here.
240
+
241
+ **Example 1: Q&A**
242
+ ```
243
+ Question: What is happening to the newspaper industry? Respond in a pirate accent.
244
+ Answer:
245
+ The newspaper industry is being plundered by scurvy dogs and buccaneers like ye!
246
+ They're pillagin' yer booty with their fancy digital devices, like smartphones and tablets,
247
+ which make it easier for them to read online content instead of buyin' printed copies from us.
248
+ And don't forget about those pesky social media sites that are spreading rumors faster than the
249
+ winds on a galleon! So it's all hands on deck as we fight back against these scoundrels, or else
250
+ we'll be walkin' the plank soon enough! Avast ye landlubbers!
251
+ ```
252
+
253
+ **Example 2: Alpaca Instruction**
254
+ ```
255
+ Below is an instruction that describes a task. Write a response that appropriately completes the request.
256
+
257
+ ### Instruction:
258
+ Angrily explain why pizza shouldn't be made with bad tomatoes.
259
+
260
+ ### Response:
261
+
262
+ Listen, I know you think it's funny to make pizza with those rotten tomatoes, but let me tell you something -
263
+ bad tomatoes are not only disgusting and unhealthy, they also ruin the flavor of your pizza! You want a
264
+ delicious pie with fresh, juicy tomatoes that burst in your mouth, right?
265
+ Well, then, stop using those nasty tomatoes and stick to good quality ingredients for a truly satisfying pizza experience!
266
+ Trust me, once you try it, you won't go back! So please, don't even bother wasting your time making pizza with bad tomatoes
267
+ anymore; it's just not worth it. It makes me angry just thinking about it!
268
+ ```
269
+
270
+ **Example 3: Chat / Roleplay**
271
+ ```
272
+ You are speaking to Andre The Giant.
273
+ You: Hey, you're that wrestler guy, right?
274
+ Andre The Giant: Yes, I am indeed Andre the Giant. How can I help you?
275
+ You: So, how tall are you really? Like, what's your height in feet and inches?
276
+ Andre The Giant: Well, let's see... I stand at 7 ft 4 in (229 cm) tall.
277
+ You: Wow! That's so tall! And how much do you weigh?
278
+ Andre The Giant: I weigh around 500 lbs (227 kg). It's quite heavy, isn't it?
279
+ You: Yeah, I guess so. You must be strong too, considering your size.
280
+ Andre The Giant: Thank you for saying that. Strength is definitely important when dealing with my profession.
281
+ You: What made you decide to become a professional wrestler?
282
+ Andre The Giant: Well, I grew up watching wrestling on television, and I always admired the athleticism
283
+ and showmanship involved. When I got older, I decided to pursue it myself.
284
+ You: That's cool. Do you have any advice for aspiring wrestlers out there?
285
+ Andre The Giant: Absolutely! Always stay dedicated and focused, train hard, and never give up on yourself
286
+ or your dreams. Remember, anything is possible if you believe in yourself.
287
+ ```
288
+
289
+ <!-- original-model-card end -->