Skip to content

Commit

Permalink
Add Falcon 3
Browse files Browse the repository at this point in the history
  • Loading branch information
jncraton committed Dec 17, 2024
1 parent bf22443 commit ebe256e
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
### Added

- Support multilingual-e5-small embedding model
- Support Falcon 3 Instruct 1B and 3B

## 0.22 - 2024-11-02

Expand Down
34 changes: 34 additions & 0 deletions languagemodels/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,23 @@ class ModelFilterException(Exception):
"license": "other",
"prompt_fmt": "<|prompt|>{instruction}</s><|answer|>",
},
{
"name": "Falcon3-3B-Instruct",
"tuning": "instruct",
"revision": "b183d4d",
"datasets": [],
"params": 3.23e9,
"quantization": "int8",
"backend": "ct2",
"context_length": 8192,
"repetition_penalty": 1.1,
"architecture": "decoder-only-transformer",
"license": "falcon",
"prompt_fmt": (
"<|system|>\nAnswer concisely.\n"
"<|user|>\n{instruction}\n<|assistant|>\n"
),
},
{
"name": "phi-1_5",
"tuning": "instruct",
Expand Down Expand Up @@ -416,6 +433,23 @@ class ModelFilterException(Exception):
"<|im_start|>user\n{instruction}<|im_end|>\n<|im_start|>assistant\n"
),
},
{
"name": "Falcon3-1B-Instruct",
"tuning": "instruct",
"revision": "74391aa",
"datasets": [],
"params": 1.7e9,
"quantization": "int8",
"backend": "ct2",
"context_length": 8192,
"repetition_penalty": 1.1,
"architecture": "decoder-only-transformer",
"license": "falcon",
"prompt_fmt": (
"<|system|>\nAnswer concisely.\n"
"<|user|>\n{instruction}\n<|assistant|>\n"
),
},
{
"name": "SmolLM2-360M-Instruct",
"tuning": "instruct",
Expand Down

0 comments on commit ebe256e

Please sign in to comment.