Instructions to use lgaalves/falcon-7b_guanaco with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use lgaalves/falcon-7b_guanaco with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="lgaalves/falcon-7b_guanaco", trust_remote_code=True)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("lgaalves/falcon-7b_guanaco", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use lgaalves/falcon-7b_guanaco with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "lgaalves/falcon-7b_guanaco" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "lgaalves/falcon-7b_guanaco", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/lgaalves/falcon-7b_guanaco
- SGLang
How to use lgaalves/falcon-7b_guanaco 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 "lgaalves/falcon-7b_guanaco" \ --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": "lgaalves/falcon-7b_guanaco", "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 "lgaalves/falcon-7b_guanaco" \ --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": "lgaalves/falcon-7b_guanaco", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use lgaalves/falcon-7b_guanaco with Docker Model Runner:
docker model run hf.co/lgaalves/falcon-7b_guanaco
Falcon-7b_guanaco
lgaalves/falcon-7b_guanaco is an instruction fine-tuned model based on the Falcon 7B transformer architecture.
Benchmark Metrics
| Metric | lgaalves/falcon-7b_guanaco | tiiuae/falcon-7b (base) |
|---|---|---|
| Avg. | 56.33 | 53.42 |
| ARC (25-shot) | 50.0 | 47.87 |
| HellaSwag (10-shot) | 78.54 | 78.13 |
| TruthfulQA (0-shot) | 40.45 | 34.26 |
We use state-of-the-art Language Model Evaluation Harness to run the benchmark tests above, using the same version as the HuggingFace LLM Leaderboard. Please see below for detailed instructions on reproducing benchmark results.
Model Details
- Trained by: Luiz G A Alves
- Model type: falcon-7b_guanaco is an auto-regressive language model based on the Falcon 7B transformer architecture.
- Language(s): English
How to use:
# Use a pipeline as a high-level helper
>>> from transformers import pipeline
>>> pipe = pipeline("text-generation", model="lgaalves/falcon-7b_guanaco")
>>> question = "What is a large language model?"
>>> answer = pipe(question)
>>> print(answer[0]['generated_text'])
or, you can load the model direclty using:
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("lgaalves/falcon-7b_guanaco")
model = AutoModelForCausalLM.from_pretrained("lgaalves/falcon-7b_guanaco")
Training Dataset
lgaalves/falcon-7b_guanaco was trained using the following dataset: timdettmers/openassistant-guanaco
Training Procedure
lgaalves/falcon-7b_guanaco was instruction fine-tuned using LoRA on 1 Tesla V100-SXM2-16GB. It took about 3.5 hours to train it.
Intended uses, limitations & biases
You can use the raw model for text generation or fine-tune it to a downstream task. The model was not extensively tested and may produce false information. It contains a lot of unfiltered content from the internet, which is far from neutral.
- Downloads last month
- 5