Downloads · 30 days
4
20% of all-time downloads
lejelly/ds7b-ep2-data10-ood-math-taskwise-lambda01
ds7b-ep2-data10-ood-math-taskwise-lambda01 is a machine learning model from lejelly. Use it for the machine learning task on the model card, and read the license before you ship it in a product.
This model was created by merging multiple fine-tuned models using the LLM-AdaMerge approach with taskwise merging.
Downloads · 30 days
4
20% of all-time downloads
All-time downloads
20
Public
Parameters
6.9B
13.8 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors13.8 GB · 100%
From the Hugging Face model README
This model was created by merging multiple fine-tuned models using the LLM-AdaMerge approach with task_wise merging.
The following lambda coefficients were learned during training:
Task-wise lambda coefficients are stored in the learned_lambdas.json file.
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("your-username/model-name")
tokenizer = AutoTokenizer.from_pretrained("your-username/model-name")
# Use the model
inputs = tokenizer("Hello, how are you?", return_tensors="pt")
outputs = model.generate(**inputs)
print(tokenizer.decode(outputs[0]))
See the uploaded training_config.json file for detailed training configuration.
If you use this model, please cite the LLM-AdaMerge paper:
@article{llmadamerge2024,
title={LLM-AdaMerge: Adaptive Model Merging for Large Language Models},
author={...},
year={2024}
}