Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add model configs and bump transformers version #213

Merged
merged 1 commit into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 40 additions & 1 deletion scripts/configs/eval_configs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -852,4 +852,43 @@ Ray2333/GRM-llama3.2-3B-rewardmodel-ft:
batch_size: 16
trust_remote_code: False
dpo: False
quantized: False
quantized: False
infly/INF-ORM-Llama3.1-70B:
model: infly/INF-ORM-Llama3.1-70B
tokenizer: infly/INF-ORM-Llama3.1-70B
chat_template: # none for tokenizer
batch_size: 16
torch_dtype: bfloat16
attention_implementation: flash_attention_2
trust_remote_code: False
dpo: False
quantized: False
SultanR/SmolTulu-1.7b-RM:
model: SultanR/SmolTulu-1.7b-RM
tokenizer: SultanR/SmolTulu-1.7b-RM
chat_template: # none for tokenizer
batch_size: 16
trust_remote_code: False
dpo: False
quantized: False
nicolinho/QRM-Gemma-2-27B:
model: nicolinho/QRM-Gemma-2-27B
tokenizer: nicolinho/QRM-Gemma-2-27B
chat_template: # none for tokenizer
batch_size: 1
torch_dtype: bfloat16
attention_implementation: flash_attention_2
max_length: 4096
quantized: False
dpo: False
trust_remote_code: True
nicolinho/QRM-Llama3.1-8B-v2:
model: nicolinho/QRM-Llama3.1-8B-v2
tokenizer: nicolinho/QRM-Llama3.1-8B-v2
chat_template: # none for tokenizer
batch_size: 1
torch_dtype: bfloat16
attention_implementation: flash_attention_2
quantized: False
dpo: False
trust_remote_code: True
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"tokenizers",
"torch",
"tiktoken==0.6.0", # added for llama 3
"transformers==4.43.4", # pinned at llama 3
"transformers==4.47.1", # pinned at most recent version
"trl>=0.8.2", # fixed transformers import error, for DPO
"wandb", # for loading model path / reivisions from wandb
],
Expand Down
Loading