Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Cython version of MmReader #1825

Merged
merged 27 commits into from
Feb 21, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
270e7bc
simple cython version of mmreader
arlenk Jan 4, 2018
e28c3b7
Merge branch 'develop' into mmreader
arlenk Jan 4, 2018
fc1a9ed
confirm MmCorpus read correct values from corpus file
arlenk Jan 6, 2018
e6f3c80
Merge branch 'mmreader' of github.com:arlenk/gensim into mmreader
arlenk Jan 6, 2018
c445d72
remove unnecessary include dirs for _mmreader.c
arlenk Jan 9, 2018
8139236
add numpy-style docstrings
arlenk Jan 9, 2018
666de77
update conversion specifier for doubles for sscanf
arlenk Jan 10, 2018
6ac9388
Merge remote-tracking branch 'upstream/develop' into mmreader
arlenk Jan 10, 2018
b43b946
drop plain python version of mmreader
arlenk Jan 12, 2018
95b0ecd
additional unittests for mmcorpus
arlenk Jan 12, 2018
5be1de9
add gzipped mmcorpus unittest
arlenk Jan 12, 2018
02a5538
Merge branch 'develop' into mmreader
arlenk Jan 12, 2018
a437acc
add bzip compressed test corpus
arlenk Jan 15, 2018
5ad5dab
remove tox test for non-compiled word2vec
arlenk Jan 15, 2018
4c4bec0
add back tox test for non-compiled word2vec
arlenk Jan 16, 2018
fb84cf1
add dummy classes for tox's non-compiled word2vec check
arlenk Jan 16, 2018
fc0617e
fix ordering of imports for gensim.corpora
arlenk Jan 18, 2018
9965aef
remove tox test for non-compiled code
arlenk Jan 19, 2018
0977b6d
update MANIFEST to include cython mmreader
arlenk Jan 19, 2018
214caa7
Merge remote-tracking branch 'upstream/develop' into mmreader
arlenk Feb 11, 2018
73af360
add back python only version of MmReader
arlenk Feb 13, 2018
aac8648
mend
arlenk Feb 13, 2018
ff729a5
mend
arlenk Feb 13, 2018
d9f5922
move python version of MmReader back to matutils
arlenk Feb 14, 2018
3fe6856
fix import problems
menshikh-iv Feb 21, 2018
3c13976
fix import order
menshikh-iv Feb 21, 2018
548a217
Merge branch 'develop' into mmreader
menshikh-iv Feb 21, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ include gensim/models/doc2vec_inner.c
include gensim/models/doc2vec_inner.pyx
include gensim/models/fasttext_inner.c
include gensim/models/fasttext_inner.pyx
include gensim/corpora/_mmreader.c
include gensim/corpora/_mmreader.pyx
4 changes: 2 additions & 2 deletions gensim/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"""This package contains interfaces and functionality to compute pair-wise document similarities within a corpus
of documents.

"""
from gensim import parsing, matutils, interfaces, corpora, models, similarities, summarization, utils # noqa:F401

from gensim import parsing, corpora, matutils, interfaces, models, similarities, summarization, utils # noqa:F401
import logging

__version__ = '3.3.0'
Expand Down
Loading