compling
Advanced tools
| Metadata-Version: 2.1 | ||
| Name: compling | ||
| Version: 0.0.35 | ||
| Version: 0.0.36 | ||
| Summary: Computational Linguistic | ||
@@ -5,0 +5,0 @@ Home-page: https://github.com/FrancescoPeriti/compling |
@@ -12,6 +12,6 @@ import gensim | ||
| """ | ||
| def __init__(self, index: Iterable[dict]=None, id_field:Union[str, List[str]]=None, output:str=None, text_field='text', skipgram_ws: int = None): | ||
| def __init__(self, index: Iterable[dict]=None, id_field:Union[str, List[str]]=None, output:str=None, text_field='text', skipgram_ws: int = None, processing:Callable=None): | ||
| super().__init__(output=output, index=index, text_field=text_field, skipgram_ws=skipgram_ws, tag=True, | ||
| module=gensim.models.doc2vec.Doc2Vec, id_field=id_field) | ||
| module=gensim.models.doc2vec.Doc2Vec, id_field=id_field, processing=processing) | ||
| import gensim | ||
| from compling.embeddings.words.wembeddings import WordEmbeddings | ||
| from typing import Iterable | ||
| from typing import * | ||
@@ -12,5 +12,5 @@ | ||
| """ | ||
| def __init__(self, index: Iterable[dict]=None, output:str=None, text_field='text', skipgram_ws: int = None): | ||
| def __init__(self, index: Iterable[dict]=None, output:str=None, text_field='text', skipgram_ws: int = None, processing:Callable=None): | ||
| super().__init__(output=output, index=index, text_field=text_field, tag=False, skipgram_ws=skipgram_ws, | ||
| module=gensim.models.fasttext.FastText) | ||
| module=gensim.models.fasttext.FastText, processing=processing) |
| import gensim | ||
| from compling.embeddings.words.wembeddings import WordEmbeddings | ||
| from typing import Iterable | ||
| from typing import * | ||
@@ -15,4 +15,4 @@ | ||
| """ | ||
| def __init__(self, index: Iterable[dict]=None, output:str=None, text_field='text', skipgram_ws: int = None): | ||
| def __init__(self, index: Iterable[dict]=None, output:str=None, text_field='text', skipgram_ws: int = None, processing:Callable=None): | ||
| super().__init__(output=output, index=index, text_field=text_field, tag=False, | ||
| skipgram_ws=skipgram_ws, module=gensim.models.Word2Vec) | ||
| skipgram_ws=skipgram_ws, module=gensim.models.Word2Vec, processing=processing) |
+1
-1
| Metadata-Version: 2.1 | ||
| Name: compling | ||
| Version: 0.0.35 | ||
| Version: 0.0.36 | ||
| Summary: Computational Linguistic | ||
@@ -5,0 +5,0 @@ Home-page: https://github.com/FrancescoPeriti/compling |
+1
-1
@@ -44,3 +44,3 @@ import subprocess | ||
| name="compling", | ||
| version="0.0.35", | ||
| version="0.0.36", | ||
| author="Francesco Periti", | ||
@@ -47,0 +47,0 @@ author_email="peritifrancesco@gmail.com", |
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
19869507
0