# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("Fischerboot/german-2b")
model = AutoModelForCausalLM.from_pretrained("Fischerboot/german-2b")Quick Links
merge
This is a merge of pre-trained language models created using mergekit.
Merge Details
Merge Method
This model was merged using the passthrough merge method.
Models Merged
The following models were included in the merge:
Configuration
The following YAML configuration was used to produce this model:
models:
- model: Aculi/Tinyllama-2B+Fischerboot/ger-lora-3k-checkpoint
merge_method: passthrough
dtype: bfloat16
- Downloads last month
- 4
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Fischerboot/german-2b")