Skip to content

Commit 1037dee

Browse files
committed
chore: bump version to 0.8.0
1 parent a082562 commit 1037dee

2 files changed

Lines changed: 16 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.8.0] - 2026-02-02
9+
10+
### Added
11+
- **Text Generation Utilities**: `TextVocabulary`, `CharacterEmbedding`, sampling functions
12+
- `sample_with_temperature`, `sample_top_k`, `sample_nucleus`
13+
- `argmax`, `softmax` helpers
14+
- `text_utils_example.rs` demonstration
15+
16+
### Changed
17+
- `text_generation_advanced.rs` refactored to use new text utilities
18+
819
## [0.7.0] - 2026-01-06
920

1021
### Added

Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-lstm"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["Alex Kholodniak <alexandrkholodniak@gmail.com>"]
55
edition = "2021"
66
rust-version = "1.70"
@@ -96,3 +96,7 @@ path = "examples/early_stopping_example.rs"
9696
[[example]]
9797
name = "linear_layer_example"
9898
path = "examples/linear_layer_example.rs"
99+
100+
[[example]]
101+
name = "text_utils_example"
102+
path = "examples/text_utils_example.rs"

0 commit comments

Comments
 (0)