Skip to content

Commit

Permalink
Support Llama 3 instruct
Browse files Browse the repository at this point in the history
  • Loading branch information
jncraton committed Apr 18, 2024
1 parent bb203c2 commit 0757cc0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

### Added

- Support Meta-Llama-3-8B-Instruct
- Support gemma-2b-it
- Support h2o-danube2-1.8b-chat
- Support WizardLM-2-7B
Expand Down
14 changes: 14 additions & 0 deletions languagemodels/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,20 @@ class ModelFilterException(Exception):
"GPT4 Correct Assistant:"
),
},
{
"name": "Meta-Llama-3-8B-Instruct",
"tuning": "instruct",
"datasets": ["llama3"],
"params": 8e9,
"quantization": "int8",
"backend": "ct2",
"architecture": "decoder-only-transformer",
"license": "llama3",
"prompt_fmt": ("<|start_header_id|>user<|end_header_id|>\n\n"
"{instruction}<|eot_id|>"
"<|start_header_id|>assistant<|end_header_id|>\n\n"
),
},
{
"name": "openchat-3.5-1210",
"tuning": "instruct",
Expand Down

0 comments on commit 0757cc0

Please sign in to comment.