Skip to content

Commit

Permalink
vbump to 0.1.0 (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdai authored Jan 9, 2025
1 parent 24ffb7a commit c147970
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ jobs:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: false
prerelease: true
prerelease: false
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog

All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/),
and this project adheres to [Semantic Versioning](https://semver.org/).

## [Unreleased]

## [0.1.0] - 2025-01-09

### Added

- Listings ch02 up to ch07
- Examples ch02 up to ch07
- Exercise ch02 up to ch06 and Exercise 7.1
39 changes: 20 additions & 19 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions 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.0-a4"
version = "0.1.0"
edition = "2021"
repository = "https://github.com/nerdai/llms-from-scratch-rs"
authors = ["Val Andrei Fajardo <[email protected]>"]
Expand All @@ -19,24 +19,24 @@ bytes = "1.9.0"
candle-core = { git = "https://github.com/huggingface/candle.git", version = "0.7.2" }
candle-datasets = { git = "https://github.com/huggingface/candle.git", version = "0.7.2" }
candle-nn = { git = "https://github.com/huggingface/candle.git", version = "0.7.2" }
clap = { version = "4.5.23", features = ["derive"] }
clap = { version = "4.5.26", features = ["derive"] }
comfy-table = "7.1.3"
fancy-regex = "0.14.0"
hf-hub = "0.4.1"
itertools = "0.14.0"
lexical-core = "1.0.5"
ndarray = "0.16.1"
phf = { version = "0.11.2", features = ["macros"] }
phf = { version = "0.11.3", features = ["macros"] }
plotly = "0.12.1"
polars = { version = "0.45.1", features = ["csv", "dtype-struct", "lazy", "parquet", "rows"] }
rand = "0.8.5"
reqwest = { version = "0.12.12", features = ["blocking", "json"] }
rstest = "0.24.0"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
serde_json = "1.0.135"
serde_with = "3.12.0"
sysinfo = "0.33.1"
tempfile = "3.14.0"
tempfile = "3.15.0"
tiktoken-rs = "0.6.0"
tokenizers = "0.21.0"
tqdm = "0.7.0"
Expand Down

0 comments on commit c147970

Please sign in to comment.