amazon/FalconLite
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
- Developed by: AWS Contributors
- Model type: Falcon 40B
- Language: English
- Quantized from weights: Falcon 40B SFT OASST-TOP1 model
- Modified from layers: Text-Generation-Inference 0.9.2
- License: Apache 2.0
- Contact: GitHub issues
- Blogpost: Extend the context length of Falcon40B to 10k
Deploy FalconLite ##
SSH login to an AWS g5.12x instance with the Deep Learning AMI.
Start LLM server
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.shPerform inference
# after FalconLite has been completely started
pip install -r requirements-client.txt
python falconlite_client.pyNew! 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 ###
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
Limitations ##
- Our evaluation shows that FalconLite's capability in
Line Retrievalis limited, and requires further effort. - While
g5.12xis sufficient for FalconLite to handle 10K long contexts, a larger instance with more memory capcacity such asg5.48xis 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.
