Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions script/runExample.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ echo "=============== Index Docs ============="
dwid_pt=${output_dir}doc_wids.txt
# vocabulary file
voca_pt=${output_dir}voca.txt
python indexDocs.py $doc_pt $dwid_pt $voca_pt
python3 indexDocs.py $doc_pt $dwid_pt $voca_pt

## learning parameters p(z) and p(w|z)
echo "=============== Topic Learning ============="
Expand All @@ -37,4 +37,4 @@ echo "../src/btm inf sum_b $K $dwid_pt $model_dir"

## output top words of each topic
echo "================ Topic Display ============="
python topicDisplay.py $model_dir $K $voca_pt
python3 topicDisplay.py $model_dir $K $voca_pt