tomoto 0.3.3-x86_64-linux → 0.4.0-x86_64-linux
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/tomoto/3.0/tomoto.so +0 -0
- data/lib/tomoto/3.1/tomoto.so +0 -0
- data/lib/tomoto/3.2/tomoto.so +0 -0
- data/lib/tomoto/{2.7 → 3.3}/tomoto.so +0 -0
- data/lib/tomoto/version.rb +1 -1
- data/lib/tomoto.rb +14 -14
- data/vendor/tomotopy/README.kr.rst +17 -0
- data/vendor/tomotopy/README.rst +17 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8a88c0212592b6c7d2f98c1d0656f23c5fa71f18741f90f811f3adb931bdbb25
|
4
|
+
data.tar.gz: 1be2f8b2d06af53e8d4fa453c00e88a1197b6a9beb9fb882594b820d34836967
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bcb844982b7b8398b5dbe1c6d52411c03aadfdc44b2b2f8ff17d7faf33ff314d4a61bc31b34d50deea0d4385b90700fc56188c8ed99234672eb14a0817bb93cd
|
7
|
+
data.tar.gz: cb5aa7bead319ee64727f4a1b261b7d84a3047b0c4863c38a39268abfa449068d84d2c10517efd06dad9744ad62fe0d96f177654309698aa0bb37f568cd3ba94
|
data/CHANGELOG.md
CHANGED
data/lib/tomoto/3.0/tomoto.so
CHANGED
Binary file
|
data/lib/tomoto/3.1/tomoto.so
CHANGED
Binary file
|
data/lib/tomoto/3.2/tomoto.so
CHANGED
Binary file
|
Binary file
|
data/lib/tomoto/version.rb
CHANGED
data/lib/tomoto.rb
CHANGED
@@ -6,20 +6,20 @@ rescue LoadError
|
|
6
6
|
end
|
7
7
|
|
8
8
|
# modules
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
9
|
+
require_relative "tomoto/ct"
|
10
|
+
require_relative "tomoto/dmr"
|
11
|
+
require_relative "tomoto/dt"
|
12
|
+
require_relative "tomoto/gdmr"
|
13
|
+
require_relative "tomoto/hdp"
|
14
|
+
require_relative "tomoto/hlda"
|
15
|
+
require_relative "tomoto/hpa"
|
16
|
+
require_relative "tomoto/lda"
|
17
|
+
require_relative "tomoto/llda"
|
18
|
+
require_relative "tomoto/mglda"
|
19
|
+
require_relative "tomoto/pa"
|
20
|
+
require_relative "tomoto/plda"
|
21
|
+
require_relative "tomoto/slda"
|
22
|
+
require_relative "tomoto/version"
|
23
23
|
|
24
24
|
module Tomoto
|
25
25
|
PARALLEL_SCHEME = [:default, :none, :copy_merge, :partition]
|
@@ -305,6 +305,23 @@ tomotopy의 Python3 예제 코드는 https://github.com/bab2min/tomotopy/blob/ma
|
|
305
305
|
|
306
306
|
역사
|
307
307
|
-------
|
308
|
+
* 0.12.7 (2023-12-19)
|
309
|
+
* 신규 기능
|
310
|
+
* 토픽 모델 뷰어인 `tomotopy.viewer.open_viewer()`가 추가되었습니다.
|
311
|
+
* `tomotopy.utils.Corpus.process()`의 속도를 개선했습니다.
|
312
|
+
* Bug fixes
|
313
|
+
* `Document.span`이 이제 바이트 단위가 아니라 문자 단위로 범위를 제대로 반환합니다.
|
314
|
+
|
315
|
+
* 0.12.6 (2023-12-11)
|
316
|
+
* 신규 기능
|
317
|
+
* `tomotopy.LDAModel.train`과 `tomotopy.LDAModel.set_word_prior`에 몇가지 편의 기능을 추가했습니다.
|
318
|
+
* `LDAModel.train`가 이제 학습 진행상황을 모니터링할 수 있는 `callback`, `callback_interval`, `show_progres` 인자를 지원합니다.
|
319
|
+
* `LDAModel.set_word_prior`가 이제 `prior` 인자로 `Dict[int, float]` 타입도 받을 수 있게 되었습니다.
|
320
|
+
|
321
|
+
* 0.12.5 (2023-08-03)
|
322
|
+
* 신규 기능
|
323
|
+
* Linux ARM64 아키텍처에 대한 지원을 추가했습니다.
|
324
|
+
|
308
325
|
* 0.12.4 (2023-01-22)
|
309
326
|
* New features
|
310
327
|
* macOS ARM64 아키텍처에 대한 지원을 추가했습니다.
|
data/vendor/tomotopy/README.rst
CHANGED
@@ -309,6 +309,23 @@ meaning you can use it for any reasonable purpose and remain in complete ownersh
|
|
309
309
|
|
310
310
|
History
|
311
311
|
-------
|
312
|
+
* 0.12.7 (2023-12-19)
|
313
|
+
* New features
|
314
|
+
* Added Topic Model Viewer `tomotopy.viewer.open_viewer()`
|
315
|
+
* Optimized the performance of `tomotopy.utils.Corpus.process()`
|
316
|
+
* Bug fixes
|
317
|
+
* `Document.span` now returns the ranges in character unit, not in byte unit.
|
318
|
+
|
319
|
+
* 0.12.6 (2023-12-11)
|
320
|
+
* New features
|
321
|
+
* Added some convenience features to `tomotopy.LDAModel.train` and `tomotopy.LDAModel.set_word_prior`.
|
322
|
+
* `LDAModel.train` now has new arguments `callback`, `callback_interval` and `show_progres` to monitor the training progress.
|
323
|
+
* `LDAModel.set_word_prior` now can accept `Dict[int, float]` type as its argument `prior`.
|
324
|
+
|
325
|
+
* 0.12.5 (2023-08-03)
|
326
|
+
* New features
|
327
|
+
* Added support for Linux ARM64 architecture.
|
328
|
+
|
312
329
|
* 0.12.4 (2023-01-22)
|
313
330
|
* New features
|
314
331
|
* Added support for macOS ARM64 architecture.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tomoto
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: x86_64-linux
|
6
6
|
authors:
|
7
7
|
- Andrew Kane
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-12-28 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email: andrew@ankane.org
|
@@ -36,10 +36,10 @@ files:
|
|
36
36
|
- ext/tomoto/tomoto.cpp
|
37
37
|
- ext/tomoto/utils.h
|
38
38
|
- lib/tomoto.rb
|
39
|
-
- lib/tomoto/2.7/tomoto.so
|
40
39
|
- lib/tomoto/3.0/tomoto.so
|
41
40
|
- lib/tomoto/3.1/tomoto.so
|
42
41
|
- lib/tomoto/3.2/tomoto.so
|
42
|
+
- lib/tomoto/3.3/tomoto.so
|
43
43
|
- lib/tomoto/ct.rb
|
44
44
|
- lib/tomoto/dmr.rb
|
45
45
|
- lib/tomoto/dt.rb
|
@@ -124,10 +124,10 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
124
124
|
requirements:
|
125
125
|
- - ">="
|
126
126
|
- !ruby/object:Gem::Version
|
127
|
-
version: '
|
127
|
+
version: '3.0'
|
128
128
|
- - "<"
|
129
129
|
- !ruby/object:Gem::Version
|
130
|
-
version: 3.
|
130
|
+
version: 3.4.dev
|
131
131
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
132
132
|
requirements:
|
133
133
|
- - ">="
|