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

Helium repo update. #2716

Merged
merged 1 commit into from
Jan 13, 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
8 changes: 7 additions & 1 deletion candle-examples/examples/helium/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# candle-helium: 2b LLM with CC-BY licensed weights

- [Model card](https://huggingface.co/kyutai/helium-1-preview) on the HuggingFace Hub.
Helium-1 is a lightweight model with around 2B parameters, the preview version
currently supports 6 languages, showing strong capabilities in those languages
compared to existing open weights models.

- [Blog Post](https://kyutai.org/2025/01/13/helium.html) announcing the model
release.
- [Model card](https://huggingface.co/kyutai/helium-1-preview-2b) on the HuggingFace Hub.

## Running the example

Expand Down
2 changes: 1 addition & 1 deletion candle-examples/examples/helium/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ fn main() -> Result<()> {
Some(model_id) => model_id,
None => {
let name = match args.which {
Which::V1Preview => "kyutai/helium-1-preview",
Which::V1Preview => "kyutai/helium-1-preview-2b",
};
name.to_string()
}
Expand Down
Loading