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
Línea 
1# django_topic_explorer
2This is an alternative (Django based) implementation of this software: https://github.com/inpho/topic-explorer.
3By now this is no more than a kind of rudimentary proof of concept we hope to enrich in the forthcoming.
4
5## By now, we use:
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.
9- Urls for requests (Buttons in the interface does not work, see "Using it")
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
17## Using it:
18
19...# python manage.py runserver
20
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:
31http://127.0.0.1:8000/topic_explorer/doc/70/AP881107-0210/
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
38
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.