Skip to content

Commit 4872817

Browse files
authored
Merge pull request #28 from nanxstats/news
Release tinytopics 0.6.0
2 parents 53ebcad + 35ed6ac commit 4872817

File tree

3 files changed

+31
-1
lines changed

3 files changed

+31
-1
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## tinytopics 0.6.0
4+
5+
### New features
6+
7+
- `fit_model()` now supports using PyTorch `Dataset` as input, in addition
8+
to in-memory tensors. This allows fitting topic models on data larger than
9+
GPU VRAM or system RAM. The `NumpyDiskDataset` class is added to read
10+
`.npy` document-term matrices from disk on-demand (#26).
11+
12+
### Documentation
13+
14+
- Added a [memory-efficient training](https://nanx.me/tinytopics/articles/memory/)
15+
article demonstrating the new features for fitting topic models on
16+
large datasets (#27).
17+
318
## tinytopics 0.5.1
419

520
### Documentation

docs/changelog.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## tinytopics 0.6.0
4+
5+
### New features
6+
7+
- `fit_model()` now supports using PyTorch `Dataset` as input, in addition
8+
to in-memory tensors. This allows fitting topic models on data larger than
9+
GPU VRAM or system RAM. The `NumpyDiskDataset` class is added to read
10+
`.npy` document-term matrices from disk on-demand (#26).
11+
12+
### Documentation
13+
14+
- Added a [memory-efficient training](https://nanx.me/tinytopics/articles/memory/)
15+
article demonstrating the new features for fitting topic models on
16+
large datasets (#27).
17+
318
## tinytopics 0.5.1
419

520
### Documentation

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "tinytopics"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
description = "Topic modeling via sum-to-one constrained neural Poisson non-negative matrix factorization"
55
authors = [
66
{ name = "Nan Xiao", email = "me@nanx.me" }

0 commit comments

Comments
 (0)