├── modeling
├── __init__.py
├── questions.txt.gz
├── HOWTO
├── stopwords.list
├── convert_corpus.py
├── build_graph.py
└── graph.json
├── interface
├── data
│ └── graph.json
├── HOWTO
├── index.html
├── css
│ └── style.css
└── js
│ ├── color.min.js
│ ├── topicGraph.js
│ └── underscore-min.js
└── README.md
/modeling/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/interface/data/graph.json:
--------------------------------------------------------------------------------
1 | ../../modeling/graph.json
--------------------------------------------------------------------------------
/modeling/questions.txt.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sronnqvist/topicMap/HEAD/modeling/questions.txt.gz
--------------------------------------------------------------------------------
/interface/HOWTO:
--------------------------------------------------------------------------------
1 | Run local web server: python -m SimpleHTTPServer
2 | Open http://127.0.0.1:8000/ in browser. Best performance in Chrome.
3 | Folder "data" contains example data, may be replaced by output JSON-file from modeling scripts.
4 |
5 |
--------------------------------------------------------------------------------
/modeling/HOWTO:
--------------------------------------------------------------------------------
1 | Input data: corpus as plain text file containing one document per line
2 |
3 | Run:
4 | python convert_corpus.py