Text Generation
Transformers
Safetensors
llama
Merge
mergekit
lazymergekit
tyson0420/alpaca_codellama
tyson0420/stack-codellama-fil-python
text-generation-inference
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("tyson0420/codellama-7B-instruct-passthrough")
model = AutoModelForCausalLM.from_pretrained("tyson0420/codellama-7B-instruct-passthrough")Quick Links
codellama-7B-instruct-passthrough
codellama-7B-instruct-passthrough is a merge of the following models using mergekit:
🧩 Configuration
slices:
- sources:
- model: tyson0420/alpaca_codellama
layer_range: [0, 32]
- sources:
- model: tyson0420/stack-codellama-fil-python
layer_range: [24, 32]
merge_method: passthrough
dtype: bfloat16
- Downloads last month
- 7
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="tyson0420/codellama-7B-instruct-passthrough")