Skip to content

Commit

Permalink
vbump to 0.1.3 (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdai authored Jan 23, 2025
1 parent 78dd5f0 commit 8d96f92
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 3 deletions.
30 changes: 29 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/).

## Unreleased

- ...

## [0.1.3] - 2025-01-23

### Added

- ...
- docs Appendix E (#287)
- EG E.07 (#286)
- EG E.06 (#285)
- Listing E.7 re-export of train_classifier_simple (#284)
- EG E.05 (#283)
- EG E.04 (#282)
- EG E.03 (LoRA model loading) (#281)
- GPTModelWithLoRA (#279)
- TransformerBlockWithLoRA (#278)
- FeedForwardWithLoRA (#277)
- MultiHeadAttentionWithLoRA (#270)
- Listing E.6 LinearWithLoRA (#269)
- Listing E.5 (LoRALayer) (#268)
- EG E.02 and set listing E.4 as re-export (#267)
- Listing E.4 (#266)
- Example E.01 (#265)
- Listing E.3 (#264)
- Listing E.2 (#263)
- Listing E.1 (#262)

### Changed

- parametrize batch size (#285)
- GPT trait to "consolidate" GPTModel and GPTModelWithLoRA (#279)
- Rip out Sequential and SequentialT in favor of explicit sequential-like structs (#276)

## [0.1.2] - 2025-01-13

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "llms-from-scratch-rs"
description = "Rust (candle) code for Build a LLM From Scratch by Sebastian Raschka"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
repository = "https://github.com/nerdai/llms-from-scratch-rs"
authors = ["Val Andrei Fajardo <[email protected]>"]
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ wget 'https://raw.githubusercontent.com/rabst/LLMs-from-scratch/main/ch02/01_mai
Users have the option of reading the code via their chosen IDE and the cloned
repo, or by using the project's [docs](https://docs.rs/llms-from-scratch-rs/latest/llms_from_scratch_rs/).

NOTE: The import style used in all of the `examples` and `exercises` modules are
not by convention. Specifically, relevant imports are made under the `main()` method
of every `Example` and `Exercise` implementation. This is done for educational
purposes to assist the reader of the book in knowing precisely what imports are
needed for the example/exercise at hand.

### Running `Examples` and `Exercises`

After cloning the repo, you can cd to the project's root directory and execute
Expand Down

0 comments on commit 8d96f92

Please sign in to comment.