Skip to content

Commit 2c9329e

Browse files
authored
Merge branch 'stanford-crfm:main' into main
2 parents 3baaf20 + e02d5c7 commit 2c9329e

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

src/helm/config/model_deployments.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -1784,6 +1784,14 @@ model_deployments:
17841784
client_spec:
17851785
class_name: "helm.clients.together_client.TogetherClient"
17861786

1787+
- name: huggingface/olmo-1.7-7b
1788+
model_name: allenai/olmo-1.7-7b
1789+
tokenizer_name: allenai/OLMo-1.7-7B-hf
1790+
max_sequence_length: 2048
1791+
client_spec:
1792+
class_name: "helm.clients.huggingface_client.HuggingFaceClient"
1793+
args:
1794+
pretrained_model_name_or_path: allenai/OLMo-1.7-7B-hf
17871795

17881796
## MistralAI
17891797
- name: together/mistral-7b-v0.1

src/helm/config/model_metadata.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -1460,6 +1460,14 @@ models:
14601460
# TODO: Add instruct tag.
14611461
tags: [TEXT_MODEL_TAG, FULL_FUNCTIONALITY_TEXT_MODEL_TAG]
14621462

1463+
- name: allenai/olmo-1.7-7b
1464+
display_name: OLMo 1.7 (7B)
1465+
description: OLMo is a series of Open Language Models trained on the Dolma dataset. The instruct versions was trained on the Tulu SFT mixture and a cleaned version of the UltraFeedback dataset.
1466+
creator_organization_name: Allen Institute for AI
1467+
access: open
1468+
num_parameters: 7000000000
1469+
release_date: 2024-04-17
1470+
tags: [TEXT_MODEL_TAG, FULL_FUNCTIONALITY_TEXT_MODEL_TAG]
14631471

14641472
# Mistral AI
14651473
- name: mistralai/mistral-7b-v0.1

src/helm/config/tokenizer_configs.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,12 @@ tokenizer_configs:
310310
end_of_text_token: "<|endoftext|>"
311311
prefix_token: ""
312312

313+
- name: allenai/OLMo-1.7-7B-hf
314+
tokenizer_spec:
315+
class_name: "helm.tokenizers.huggingface_tokenizer.HuggingFaceTokenizer"
316+
end_of_text_token: "<|endoftext|>"
317+
prefix_token: ""
318+
313319

314320
# Microsoft
315321
- name: microsoft/phi-2

0 commit comments

Comments
 (0)