source: modelado_topicos/vsm/vsm/__init__.py

v1.0
Last change on this file was d81e301, checked in by rudmanmrrod <rudman22@…>, 7 años ago

Agregado submodulo del vsm

  • Propiedad mode establecida a 100644
File size: 1.2 KB
Línea 
1"""
2The :mod:`vsm` module provides tools and a workflow for producing
3semantic models of textual corpora and analyzing and visualizing these
4models.
5
6The :mod:`vsm` module has been conceived within the SciPy ecosystem.
7In a typical work flow, a collection of texts is first transformed
8into a Corpus object, whose underlying data structures are NumPy
9numerical arrays. The user may then feed a Corpus object to one of the
10model classes, which contain the algorithms, implemented in NumPy,
11SciPy and IPython.parallel, for training models such as :doc:`TF<wf_tf>`,
12:doc:`TFIDF<wf_tfidf>`, :doc:`LSA<wf_lsa>`,
13:doc:`BEAGLE<wf_beagle>`, or :doc:`LDA<wf_lda>`.
14Finally, the user may examine the
15results with a Viewer class specialized to a particular model type. A
16Viewer object contains a variety of methods for analysis and
17visualization and achieves its full functionality within an IPython
18notebook session extended with matplotlib and scikit-learn.
19"""
20
21
22import corpus
23from corpus import *
24import model
25from model import *
26import viewer
27from viewer import *
28
29__version__ = '0.3.3'
30
31__all__ = ['__version__']
32__all__ += corpus.__all__[:]
33__all__ += model.__all__
34__all__ += viewer.__all__
35
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.