source: modelado_topicos/README.md @ c8f60b8

preprocesamientov1.0
Last change on this file since c8f60b8 was c8f60b8, checked in by jredondo <jorge.redondo@…>, 9 años ago

Update README.md

  • Propiedad mode establecida a 100644
File size: 1.5 KB
Ver.Línea 
[fb2ecfe]1# django_topic_explorer
[c8f60b8]2This is an alternative (Django based) implementation of this software: https://github.com/inpho/topic-explorer.
[e56fc83]3By now this is no more than a kind of rudimentary proof of concept we hope to enrich in the forthcoming.
4
[8b4a48c]5## By now, we use:
[e56fc83]6- Function based views.
7- Global variables: lda_c, lda_c, lda_m.
8- An already trained models which must be specified in the corresponding settings variables.
[8b4a48c]9- Urls for requests (Buttons in the interface does not work, see "Using it")
[e56fc83]10
11## In the forthcoming, we hope to:
12- Provide user interface to select a corpus in the fly (not sure how) from a determined set.
13- Not use global variables.
14- Develop some per-document visualization.
15- ...
16
[8b4a48c]17## Using it:
[e56fc83]18
[8b4a48c]19...# python manage.py runserver
[e56fc83]20
[8b4a48c]211) To request a visulization of documents ordered in terms of similarity to a determined topic, then use:
22http://127.0.0.1:8000/topic_explorer/topic/70/10/
23^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^|^^^^^|^^|^^
24                  W                 |  X  |Y | Z
25W: App url
26X: order by topic
27Y: Number of topics
28Z: Topic in terms of which documents will be ordered
29
302) To request a visulization of documents ordered in terms of similarity to a determined document, then use:
[c8f60b8]31http://127.0.0.1:8000/topic_explorer/doc/70/AP881107-0210/
[8b4a48c]32^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^|^^^|^^|^^^^^^^^^^^^^^
33                  W                 | X |Y |     Z
34W: App url
35X: order by document
36Y: Number of topics
37Z: Document in terms of which the remaining documents will be ordered
[e56fc83]38
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.