Helium repo update. (#2716)

This commit is contained in:
Laurent Mazare
2025-01-13 18:04:14 +01:00
committed by GitHub
parent 309cd0f7c7
commit 158817f230
2 changed files with 8 additions and 2 deletions

View File

@ -1,6 +1,12 @@
# candle-helium: 2b LLM with CC-BY licensed weights # 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 ## Running the example

View File

@ -229,7 +229,7 @@ fn main() -> Result<()> {
Some(model_id) => model_id, Some(model_id) => model_id,
None => { None => {
let name = match args.which { let name = match args.which {
Which::V1Preview => "kyutai/helium-1-preview", Which::V1Preview => "kyutai/helium-1-preview-2b",
}; };
name.to_string() name.to_string()
} }