Instructions to use LoneStriker/CodeLlama-70b-Instruct-hf-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use LoneStriker/CodeLlama-70b-Instruct-hf-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="LoneStriker/CodeLlama-70b-Instruct-hf-GGUF", filename="CodeLlama-70b-Instruct-hf-Q2_K.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use LoneStriker/CodeLlama-70b-Instruct-hf-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf LoneStriker/CodeLlama-70b-Instruct-hf-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf LoneStriker/CodeLlama-70b-Instruct-hf-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf LoneStriker/CodeLlama-70b-Instruct-hf-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf LoneStriker/CodeLlama-70b-Instruct-hf-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf LoneStriker/CodeLlama-70b-Instruct-hf-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf LoneStriker/CodeLlama-70b-Instruct-hf-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf LoneStriker/CodeLlama-70b-Instruct-hf-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf LoneStriker/CodeLlama-70b-Instruct-hf-GGUF:Q4_K_M
Use Docker
docker model run hf.co/LoneStriker/CodeLlama-70b-Instruct-hf-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use LoneStriker/CodeLlama-70b-Instruct-hf-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "LoneStriker/CodeLlama-70b-Instruct-hf-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "LoneStriker/CodeLlama-70b-Instruct-hf-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/LoneStriker/CodeLlama-70b-Instruct-hf-GGUF:Q4_K_M
- Ollama
How to use LoneStriker/CodeLlama-70b-Instruct-hf-GGUF with Ollama:
ollama run hf.co/LoneStriker/CodeLlama-70b-Instruct-hf-GGUF:Q4_K_M
- Unsloth Studio new
How to use LoneStriker/CodeLlama-70b-Instruct-hf-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for LoneStriker/CodeLlama-70b-Instruct-hf-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for LoneStriker/CodeLlama-70b-Instruct-hf-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for LoneStriker/CodeLlama-70b-Instruct-hf-GGUF to start chatting
- Docker Model Runner
How to use LoneStriker/CodeLlama-70b-Instruct-hf-GGUF with Docker Model Runner:
docker model run hf.co/LoneStriker/CodeLlama-70b-Instruct-hf-GGUF:Q4_K_M
- Lemonade
How to use LoneStriker/CodeLlama-70b-Instruct-hf-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull LoneStriker/CodeLlama-70b-Instruct-hf-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.CodeLlama-70b-Instruct-hf-GGUF-Q4_K_M
List all available models
lemonade list
Code Llama
Code Llama 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 instruct-tuned version in the Hugging Face Transformers format. This model is designed for general code synthesis and understanding. Links to other models can be found in the index at the bottom.
Model Use
Install transformers
pip install transformers accelerate
Warning: The 70B Instruct model has a different prompt template than the smaller versions. We'll update this repo soon.
Model capabilities:
- Code completion.
- Infilling.
- Instructions / chat.
- Python specialist.
Model Details
*Note: Use of this model is governed by the Meta license. Meta developed and publicly released the Code Llama family of large language models (LLMs).
Model Developers Meta
Variations Code Llama comes in four model sizes, and three variants:
- Code Llama: base models designed for general code synthesis and understanding
- Code Llama - Python: designed specifically for Python
- Code Llama - Instruct: for instruction following and safer deployment
All variants are available in sizes of 7B, 13B, 34B, and 70B parameters.
This repository contains the Instruct version of the 70B parameters model.
Input Models input text only.
Output Models generate text only.
Model Architecture Code Llama is an auto-regressive language model that uses an optimized transformer architecture. It was fine-tuned with up to 16k tokens. This variant does not support long context of up to 100k tokens.
Model Dates Code Llama and its variants have been trained between January 2023 and January 2024.
Status This is a static model trained on an offline dataset. Future versions of Code Llama - Instruct will be released as we improve model safety with community feedback.
License A custom commercial license is available at: https://ai.meta.com/resources/models-and-libraries/llama-downloads/
Research Paper More information can be found in the paper "Code Llama: Open Foundation Models for Code" or its arXiv page.
Intended Use
Intended Use Cases Code Llama and its variants are intended for commercial and research use in English and relevant programming languages. The base model Code Llama can be adapted for a variety of code synthesis and understanding tasks, Code Llama - Python is designed specifically to handle the Python programming language, and Code Llama - Instruct is intended to be safer to use for code assistant and generation applications.
Out-of-Scope Uses Use in any manner that violates applicable laws or regulations (including trade compliance laws). Use in languages other than English. Use in any other way that is prohibited by the Acceptable Use Policy and Licensing Agreement for Code Llama and its variants.
Hardware and Software
Training Factors We used custom training libraries. The training and fine-tuning of the released models have been performed Meta’s Research Super Cluster.\Carbon Footprint In aggregate, training all 12 Code Llama models required 1400K GPU hours of computation on hardware of type A100-80GB (TDP of 350-400W). Estimated total emissions were 228.55 tCO2eq, 100% of which were offset by Meta’s sustainability program.
Evaluation Results
See evaluations for the main models and detailed ablations in Section 3 and safety evaluations in Section 4 of the research paper.
Ethical Considerations and Limitations
Code Llama and its variants are a new technology that carries risks with use. Testing conducted to date has been in English, and has not covered, nor could it cover all scenarios. For these reasons, as with all LLMs, Code Llama’s potential outputs cannot be predicted in advance, and the model may in some instances produce inaccurate or objectionable responses to user prompts. Therefore, before deploying any applications of Code Llama, developers should perform safety testing and tuning tailored to their specific applications of the model.
Please see the Responsible Use Guide available available at https://ai.meta.com/llama/responsible-use-guide.
- Downloads last month
- 17
2-bit
3-bit
4-bit
5-bit