Skip to content

Commit

Permalink
Support Llama 3.2 1B
Browse files Browse the repository at this point in the history
  • Loading branch information
jncraton committed Sep 26, 2024
1 parent d8ede42 commit d2c0f53
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

### Added

- Support Llama 3.2 1B
- Support Danube3
- Support SmolLM

Expand Down
15 changes: 15 additions & 0 deletions languagemodels/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,21 @@ class ModelFilterException(Exception):
"<|start_header_id|>assistant<|end_header_id|>\n\n"
),
},
{
"name": "Llama-3.2-1B-Instruct",
"tuning": "instruct",
"datasets": ["llama3"],
"params": 1e9,
"quantization": "int8",
"backend": "ct2",
"architecture": "decoder-only-transformer",
"license": "llama3.2",
"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 d2c0f53

Please sign in to comment.