Instructions to use amazon/FalconLite2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use amazon/FalconLite2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="amazon/FalconLite2", trust_remote_code=True)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("amazon/FalconLite2", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use amazon/FalconLite2 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "amazon/FalconLite2" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "amazon/FalconLite2", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/amazon/FalconLite2
- SGLang
How to use amazon/FalconLite2 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "amazon/FalconLite2" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "amazon/FalconLite2", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "amazon/FalconLite2" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "amazon/FalconLite2", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use amazon/FalconLite2 with Docker Model Runner:
docker model run hf.co/amazon/FalconLite2
| # coding=utf-8 | |
| # Copyright 2022 the Big Science Workshop and HuggingFace Inc. team. All rights reserved. | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| # See the License for the specific language governing permissions and | |
| # limitations under the License. | |
| """ Bloom configuration""" | |
| from transformers.configuration_utils import PretrainedConfig | |
| from transformers.utils import logging | |
| logger = logging.get_logger(__name__) | |
| class RWConfig(PretrainedConfig): | |
| model_type = "RefinedWeb" | |
| keys_to_ignore_at_inference = ["past_key_values"] | |
| attribute_map = { | |
| "num_hidden_layers": "n_layer", | |
| "num_attention_heads": "n_head", | |
| } | |
| def __init__( | |
| self, | |
| vocab_size=250880, | |
| hidden_size=64, | |
| n_layer=2, | |
| n_head=8, | |
| layer_norm_epsilon=1e-5, | |
| initializer_range=0.02, | |
| use_cache=True, | |
| bos_token_id=1, | |
| eos_token_id=2, | |
| apply_residual_connection_post_layernorm=False, | |
| hidden_dropout=0.0, | |
| attention_dropout=0.0, | |
| n_head_kv=None, | |
| alibi=False, | |
| **kwargs, | |
| ): | |
| self.vocab_size = vocab_size | |
| # Backward compatibility with n_embed kwarg | |
| n_embed = kwargs.pop("n_embed", None) | |
| self.hidden_size = hidden_size if n_embed is None else n_embed | |
| self.n_layer = n_layer | |
| self.n_head = n_head | |
| self.layer_norm_epsilon = layer_norm_epsilon | |
| self.initializer_range = initializer_range | |
| self.use_cache = use_cache | |
| self.apply_residual_connection_post_layernorm = apply_residual_connection_post_layernorm | |
| self.hidden_dropout = hidden_dropout | |
| self.attention_dropout = attention_dropout | |
| self.bos_token_id = bos_token_id | |
| self.eos_token_id = eos_token_id | |
| self.n_head_kv = n_head if n_head_kv is None else n_head_kv | |
| self.alibi = alibi | |
| super().__init__(bos_token_id=bos_token_id, eos_token_id=eos_token_id, **kwargs) | |
| def head_dim(self): | |
| return self.hidden_size // self.n_head | |
| def rotary(self): | |
| return not self.alibi | |