# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("appvoid/arco-augment-3")
model = AutoModelForCausalLM.from_pretrained("appvoid/arco-augment-3")Quick Links
arco-augment-3
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:
slices:
- sources:
- model: appvoid/arco
layer_range: [0, 16]
- sources:
- model: appvoid/arco-2
layer_range: [10, 16]
merge_method: passthrough
dtype: float16
- Downloads last month
- 3
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="appvoid/arco-augment-3")