CoolFace
Modelpublic

amazon/FalconLite

sourceHugging Faceapache-2.0updated 3y agoView on Hugging Face
171likes148downloads
Model Card

FalconLite Model

FalconLite is a quantized version of the Falcon 40B SFT OASST-TOP1 model, capable of processing long (i.e. 11K tokens) input sequences while consuming 4x less GPU memory. By utilizing 4-bit GPTQ quantization and adapted dynamic NTK RotaryEmbedding, FalconLite achieves a balance between latency, accuracy, and memory efficiency. With the ability to process 5x longer contexts than the original model, FalconLite is useful for applications such as topic retrieval, summarization, and question-answering. FalconLite can be deployed on a single AWS g5.12x instance with TGI 0.9.2, making it suitable for applications that require high performance in resource-constrained environments.

New! FalconLite2 Model ##

To keep up with the updated model FalconLite2, please refer to FalconLite2.

Model Details

Deploy FalconLite ##

SSH login to an AWS g5.12x instance with the Deep Learning AMI.

Start LLM server

bash
git clone https://github.com/awslabs/extending-the-context-length-of-open-source-llms.git falconlite-dev
cd falconlite-dev/script
./docker_build.sh
./start_falconlite.sh

Perform inference

bash
# after FalconLite has been completely started
pip install -r requirements-client.txt
python falconlite_client.py

New! Amazon SageMaker Deployment ###

To deploy FalconLite on SageMaker endpoint, please follow this notebook.

Important - When using FalconLite for inference for the first time, it may require a brief 'warm-up' period that can take 10s of seconds. However, subsequent inferences should be faster and return results in a more timely manner. This warm-up period is normal and should not affect the overall performance of the system once the initialisation period has been completed.

Evalution Result ##

We evaluated FalconLite against benchmarks that are specifically designed to assess the capabilities of LLMs in handling longer contexts. All evaluations were conducted without fine-tuning the model.

Accuracy ###

Eval taskInput lengthInput lengthInput lengthInput length
2800 ~ 38005500 ~ 56007500 ~ 83009300 ~ 11000
Topic Retrieval100%100%92%92%
Line Retrieval38%12%8%4%
Pass key Retrieval100%100%100%100%
Eval taskTest set AccuracyHard subset Accuracy
Question Answering with Long Input Texts46.9%40.8%

Performance ###

metrics = the average number of generated tokens per second (TPS) =

nb-generated-tokens / end-to-end-response-time

The end-to-end-response-time = when the last token is generated - when the inference request is received

InstanceInput lengthInput lengthInput lengthInput length
203300550010000
g5.48x22 tps12 tps12 tps12 tps
g5.12x18 tps11 tps11 tps10 tps

Limitations ##

  • Our evaluation shows that FalconLite's capability in Line Retrieval is limited, and requires further effort.
  • While g5.12x is sufficient for FalconLite to handle 10K long contexts, a larger instance with more memory capcacity such as g5.48x is recommended for sustained, heavy workloads.
  • Before using the FalconLite model, it is important to perform your own independent assessment, and take measures to ensure that your use would comply with your own specific quality control practices and standards, and that your use would comply with the local rules, laws, regulations, licenses and terms that apply to you, and your content.