Skip to content

Commit

Permalink
updated version & documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
bab2min committed Dec 18, 2023
1 parent dd1c7c6 commit bbaeb5e
Show file tree
Hide file tree
Showing 7 changed files with 52 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
recursive-include src *.c *.cpp *.h *.hpp
recursive-include include *.h *.hpp
recursive-include tomotopy *.py *.rst
recursive-include tomotopy *.py *.rst *.html
include LICENSE.txt
17 changes: 17 additions & 0 deletions README.kr.rst
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,23 @@ tomotopy의 Python3 예제 코드는 https://github.com/bab2min/tomotopy/blob/ma

역사
-------
* 0.12.7 (2023-12-19)
* 신규 기능
* 토픽 모델 뷰어인 `tomotopy.viewer.open_viewer()`가 추가되었습니다.
* `tomotopy.utils.Corpus.process()`의 속도를 개선했습니다.
* Bug fixes
* `Document.span`이 이제 바이트 단위가 아니라 문자 단위로 범위를 제대로 반환합니다.

* 0.12.6 (2023-12-11)
* 신규 기능
* `tomotopy.LDAModel.train`과 `tomotopy.LDAModel.set_word_prior`에 몇가지 편의 기능을 추가했습니다.
* `LDAModel.train`가 이제 학습 진행상황을 모니터링할 수 있는 `callback`, `callback_interval`, `show_progres` 인자를 지원합니다.
* `LDAModel.set_word_prior`가 이제 `prior` 인자로 `Dict[int, float]` 타입도 받을 수 있게 되었습니다.

* 0.12.5 (2023-08-03)
* 신규 기능
* Linux ARM64 아키텍처에 대한 지원을 추가했습니다.

* 0.12.4 (2023-01-22)
* New features
* macOS ARM64 아키텍처에 대한 지원을 추가했습니다.
Expand Down
17 changes: 17 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,23 @@ meaning you can use it for any reasonable purpose and remain in complete ownersh

History
-------
* 0.12.7 (2023-12-19)
* New features
* Added Topic Model Viewer `tomotopy.viewer.open_viewer()`
* Optimized the performance of `tomotopy.utils.Corpus.process()`
* Bug fixes
* `Document.span` now returns the ranges in character unit, not in byte unit.

* 0.12.6 (2023-12-11)
* New features
* Added some convenience features to `tomotopy.LDAModel.train` and `tomotopy.LDAModel.set_word_prior`.
* `LDAModel.train` now has new arguments `callback`, `callback_interval` and `show_progres` to monitor the training progress.
* `LDAModel.set_word_prior` now can accept `Dict[int, float]` type as its argument `prior`.

* 0.12.5 (2023-08-03)
* New features
* Added support for Linux ARM64 architecture.

* 0.12.4 (2023-01-22)
* New features
* Added support for macOS ARM64 architecture.
Expand Down
3 changes: 2 additions & 1 deletion document/document_header.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
<a class="homelink" rel="home" title="tomotopy Home" href="/tomotopy" style="display:block; font-size:2em; font-weight:bold; color:#555; padding-bottom:.5em; border-bottom:1px solid silver;"> <img src="/tomotopy/tomoto.png" alt="" style="height:1.5em;"> tomotopy </a>
<a id='lang-en' href="../en/index.html">English</a> <a id='lang-kr' href="../kr/index.html">한국어</a>
<div id="version-link">
<span>v0.12.6</span>
<span>v0.12.7</span>
<ul>
<li><a href='/tomotopy/v0.12.7/en'>v0.12.7</a></li>
<li><a href='/tomotopy/v0.12.6/en'>v0.12.6</a></li>
<li><a href='/tomotopy/v0.12.5/en'>v0.12.5</a></li>
<li><a href='/tomotopy/v0.12.4/en'>v0.12.4</a></li>
Expand Down
2 changes: 1 addition & 1 deletion tomotopy/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.12.6'
__version__ = '0.12.7'
7 changes: 7 additions & 0 deletions tomotopy/documentation.kr.rst
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,13 @@ tomotopy의 Python3 예제 코드는 https://github.com/bab2min/tomotopy/blob/ma

역사
-------
* 0.12.7 (2023-12-19)
* 신규 기능
* 토픽 모델 뷰어인 `tomotopy.viewer.open_viewer()`가 추가되었습니다.
* `tomotopy.utils.Corpus.process()`의 속도를 개선했습니다.
* Bug fixes
* `Document.span`이 이제 바이트 단위가 아니라 문자 단위로 범위를 제대로 반환합니다.

* 0.12.6 (2023-12-11)
* 신규 기능
* `tomotopy.LDAModel.train`과 `tomotopy.LDAModel.set_word_prior`에 몇가지 편의 기능을 추가했습니다.
Expand Down
7 changes: 7 additions & 0 deletions tomotopy/documentation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,13 @@ meaning you can use it for any reasonable purpose and remain in complete ownersh

History
-------
* 0.12.7 (2023-12-19)
* New features
* Added Topic Model Viewer `tomotopy.viewer.open_viewer()`
* Optimized the performance of `tomotopy.utils.Corpus.process()`
* Bug fixes
* `Document.span` now returns the ranges in character unit, not in byte unit.

* 0.12.6 (2023-12-11)
* New features
* Added some convenience features to `tomotopy.LDAModel.train` and `tomotopy.LDAModel.set_word_prior`.
Expand Down

0 comments on commit bbaeb5e

Please sign in to comment.