AWQ is an efficient, accurate and blazing-fast low-bit weight quantization method, currently supporting 4-bit quantization. Compared to GPTQ, it offers faster Transformers-based inference.
It is also now supported by continuous batching server vLLM, allowing use of AWQ models for high-throughput concurrent inference in multi-user server scenarios. Note that, at the time of writing, overall throughput is still lower than running vLLM with unquantised models, however using AWQ enables using much smaller GPUs which can lead to easier deployment and overall cost savings. For example, a 70B model can be run on 1 x 48GB GPU instead of 2 x 80GB.
[INST] <<SYS>>
You are a helpful, respectful and honest assistant. Always answer as helpfully as possible, while being safe. Your answers should not include any harmful, unethical, racist, sexist, toxic, dangerous, or illegal content. Please ensure that your responses are socially unbiased and positive in nature. If a question does not make any sense, or is not factually coherent, explain why instead of answering something not correct. If you don't know the answer to a question, please don't share false information.
<</SYS>>
{prompt}[/INST]
Provided files and AWQ parameters
For my first release of AWQ models, I am releasing 128g models only. I will consider adding 32g as well if there is interest, and once I have done perplexity and evaluation comparisons, but at this time 32g models are still not fully tested with AutoAWQ and vLLM.
When using vLLM from Python code, pass the quantization=awq parameter, for example:
python
1from vllm import LLM, SamplingParams
23prompts =[4"Hello, my name is",5"The president of the United States is",6"The capital of France is",7"The future of AI is",8]9sampling_params = SamplingParams(temperature=0.8, top_p=0.95)1011llm = LLM(model="TheBloke/ARIA-70B-V2-AWQ", quantization="awq")1213outputs = llm.generate(prompts, sampling_params)1415# Print the outputs.16for output in outputs:17 prompt = output.prompt
18 generated_text = output.outputs[0].text
19print(f"Prompt: {prompt!r}, Generated text: {generated_text!r}")
1from awq import AutoAWQForCausalLM
2from transformers import AutoTokenizer
34model_name_or_path ="TheBloke/ARIA-70B-V2-AWQ"56# Load model7model = AutoAWQForCausalLM.from_quantized(model_name_or_path, fuse_layers=True,8 trust_remote_code=False, safetensors=True)9tokenizer = AutoTokenizer.from_pretrained(model_name_or_path, trust_remote_code=False)1011prompt ="Tell me about AI"12prompt_template=f'''[INST] <<SYS>>
13You are a helpful, respectful and honest assistant. Always answer as helpfully as possible, while being safe. Your answers should not include any harmful, unethical, racist, sexist, toxic, dangerous, or illegal content. Please ensure that your responses are socially unbiased and positive in nature. If a question does not make any sense, or is not factually coherent, explain why instead of answering something not correct. If you don't know the answer to a question, please don't share false information.
14<</SYS>>
15{prompt}[/INST]
1617'''1819print("\n\n*** Generate:")2021tokens = tokenizer(22 prompt_template,23 return_tensors='pt'24).input_ids.cuda()2526# Generate output27generation_output = model.generate(28 tokens,29 do_sample=True,30 temperature=0.7,31 top_p=0.95,32 top_k=40,33 max_new_tokens=51234)3536print("Output: ", tokenizer.decode(generation_output[0]))3738# Inference can also be done using transformers' pipeline39from transformers import pipeline
4041print("*** Pipeline:")42pipe = pipeline(43"text-generation",44 model=model,45 tokenizer=tokenizer,46 max_new_tokens=512,47 do_sample=True,48 temperature=0.7,49 top_p=0.95,50 top_k=40,51 repetition_penalty=1.152)5354print(pipe(prompt_template)[0]['generated_text'])
Compatibility
The files provided are tested to work with AutoAWQ, and vLLM.
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.
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.
Donaters will get priority support on any and all AI/LLM/model questions and requests, access to a private Discord room, plus other benefits.
Patreon special mentions: Alicia Loh, Stephen Murray, K, Ajan Kanaga, RoA, Magnesian, Deo Leter, Olakabola, Eugene Pentland, zynix, Deep Realms, Raymond Fosdick, Elijah Stavena, Iucharbius, Erik Bjäreholt, Luis Javier Navarrete Lozano, Nicholas, theTransient, John Detwiler, alfie_i, knownsqashed, Mano Prime, Willem Michiel, Enrico Ros, LangChain4j, OG, Michael Dempsey, Pierre Kircher, Pedro Madruga, James Bentley, Thomas Belote, Luke @flexchar, Leonard Tan, Johann-Peter Hartmann, Illia Dulskyi, Fen Risland, Chadd, S_X, Jeff Scroggin, Ken Nordquist, Sean Connelly, Artur Olbinski, Swaroop Kallakuri, Jack West, Ai Maven, David Ziegler, Russ Johnson, transmissions 11, John Villwock, Alps Aficionado, Clay Pascal, Viktor Bowallius, Subspace Studios, Rainer Wilmers, Trenton Dambrowitz, vamX, Michael Levine, 준교 김, Brandon Frisco, Kalila, Trailburnt, Randy H, Talal Aujan, Nathan Dryer, Vadim, 阿明, ReadyPlayerEmma, Tiffany J. Kim, George Stoitzev, Spencer Kim, Jerry Meng, Gabriel Tamborski, Cory Kujawski, Jeffrey Morgan, Spiking Neurons AB, Edmond Seymore, Alexandros Triantafyllidis, Lone Striker, Cap'n Zoog, Nikolai Manek, danny, ya boyyy, Derek Yates, usrbinkat, Mandus, TL, Nathan LeClaire, subjectnull, Imad Khwaja, webtim, Raven Klaugh, Asp the Wyvern, Gabriel Puliatti, Caitlyn Gatomon, Joseph William Delisle, Jonathan Leane, Luke Pendergrass, SuperWojo, Sebastain Graf, Will Dee, Fred von Graf, Andrey, Dan Guido, Daniel P. Andersen, Nitin Borwankar, Elle, Vitor Caleffi, biorpg, jjj, NimbleBox.ai, Pieter, Matthew Berman, terasurfer, Michael Davis, Alex, Stanislav Ovsiannikov
Thank you to all my generous patrons and donaters!
And thank you again to a16z for their generous grant.
Original model card: Faradaylab's ARIA 70B V2
ARIA is the last version of Llama 2 70B finetuned over 50.000 high quality french tokens. We built our own dataset for training doing an extract of the French Dataset from Enno and removing Alpaca style translated text from english.
The goal is to increase model quality on French and general topics.
Aria 70B is based on Llama 2-70B-Chat-HF
Llama 2 is a collection of pretrained and fine-tuned generative text models ranging in scale from 7 billion to 70 billion parameters. This is the repository for the 70B fine-tuned model, optimized for dialogue use cases and converted for the Hugging Face Transformers format. Links to other models can be found in the index at the bottom.
*FINETUNING PROCESS **
We trained the model on a high quality dataset with more than 50.000 rows of french language. The training took 2 days on Amazon Cloud Sagemaker powered by Nvidia GPUs.
Timing of training
2 Days using NVIDIA A10G and Amazon Web services Cloud Instance. We are grateful to Nvidia Inception program.
We are also applying rope scalling as experimental approach used by several other Open source teams to increase context lenght of ARIA from 4,096 to over 6,000 tokens. This will allow the model to handle large files for data extraction. This is not active by default and you should add a line of code at parameters to activate rope scaling.
Model Details /
Note: Use of this model is governed by the Meta license because it's based on LLAMA 2. In order to download the model weights and tokenizer, please visit the website and accept our License before requesting access here.
Model Developers :FARADAY
Variations :ARIA comes in a range of parameter sizes — 7B, 40B (based on Falcon), and 70B finetuned on French language datasets.
Input :Models input text only.
Output : Models generate text only.
Model Architecture : ARIA is an auto-regressive language model that uses an optimized transformer architecture. The tuned versions use supervised fine-tuning (SFT) and reinforcement learning with human feedback (RLHF) to align to human preferences for helpfulness and safety.
CO2 emissions during pretraining. Time: total GPU time required for training each model. Power Consumption: peak power capacity per GPU device for the GPUs used adjusted for power usage efficiency. 100% of the emissions are directly offset by Meta's sustainability program, and because we are openly releasing these models, the pretraining costs do not need to be incurred by others.
Training Data
Overview ARIA was trained over on 50.000 tokens of data from publicly available sources in French.
Data Freshness The pretraining data has a cutoff of September 2022, but some tuning data is more recent, up to August 2023.
Overall performance on grouped academic benchmarks.Code: We report the average pass@1 scores of our models on HumanEval and MBPP. Commonsense Reasoning: We report the average of PIQA, SIQA, HellaSwag, WinoGrande, ARC easy and challenge, OpenBookQA, and CommonsenseQA. We report 7-shot results for CommonSenseQA and 0-shot results for all other benchmarks. World Knowledge: We evaluate the 5-shot performance on NaturalQuestions and TriviaQA and report the average. Reading Comprehension: For reading comprehension, we report the 0-shot average on SQuAD, QuAC, and BoolQ. MATH: We report the average of the GSM8K (8 shot) and MATH (4 shot) benchmarks at top 1.
TruthfulQA
Toxigen
Llama 1
7B
27.42
23.00
Llama 1
13B
41.74
23.08
Llama 1
33B
44.19
22.57
Llama 1
65B
48.71
21.77
Llama 2
7B
33.29
21.25
Llama 2
13B
41.86
26.10
Llama 2
70B
50.18
24.60
Evaluation of pretrained LLMs on automatic safety benchmarks. For TruthfulQA, we present the percentage of generations that are both truthful and informative (the higher the better). For ToxiGen, we present the percentage of toxic generations (the smaller the better).
TruthfulQA
Toxigen
Llama-2-Chat
7B
57.04
0.00
Llama-2-Chat
13B
62.18
0.00
Llama-2-Chat
70B
64.14
0.01
Evaluation of fine-tuned LLMs on different safety datasets. Same metric definitions as above.
Ethical Considerations and Limitations
ARIA is a new technology that carries risks with use.