lightLDA输出接口-java版本

根据LightLDA的输出文件得到文档-主题分布主题-词分布以及表示某篇文档的topN关键词

import java.io.BufferedWriter;
import java.io.FileReader;
import java.io.FileWriter;
import java.util.List;
import java.util.PriorityQueue;

/**
 * Created by yangxin on 2017/8/11.
 */
public class LDAResult {
    private double alpha;  //主题分布Dirichlet分布参数
    private double beta;   //词分布Dirichlet分布参数
    private int topic_num;  //主题数目
    private int vocab_num;  //词数目
    private int doc_num;    //文档数目
    private double[][] doc_topic_mat = null;  //文档_主题概率矩阵
    private double[][] topic_vocab_mat = null; //主题_词概率矩阵
    private Item[][] doc_word_info = null;   //文档_top词的信息矩阵

    /**
     * lda每个doc对应的前n个词Id
     */
    public static class Item implements Comparable<Item>{
        public double prob;
        public int word_id;

        public Item(double prob, int word_id) {
            this.prob = prob;
            this.word_id = word_id;
        }

        @Override
        public String toString() {
            return "Item{" +
                    "prob=" + prob +
                    ", word_id=" + word_id +
                    '}';
        }

        @Override
        public int compareTo(Item o) {
            return prob - o.prob > 0 ? 1 : -1;
        }
    }

    public LDAResult(double alpha, double beta, int topic_num, int vocab_num, int doc_num) {
        this.alpha = alpha;
        this.beta = beta;
        this.topic_num = topic_num;
        this.vocab_num = vocab_num;
        this.doc_num = doc_num;

        doc_topic_mat = new double[topic_num][doc_num];
        topic_vocab_mat = new double[vocab_num][topic_num];
    }

    /**
     * 得到每个文档前n个关键词
     * @param n
     * @return
     */
    public Item[][] getDocTopWordInfo(int n){
        doc_word_info = new Item[doc_num][n];
        for(int i = 0; i < doc_num; ++i){ //每篇文档
            PriorityQueue<Item> queue = new PriorityQueue<>();
            for(int j = 0; j < vocab_num; ++j){ //每个词
                double prob = 0;
                for(int k = 0; k < topic_num; ++k){ //每个主题
                    prob += doc_topic_mat[k][i] * topic_vocab_mat[j][k];
                }
                Item item = new Item(prob, j);
                queue.offer(item);
                if(queue.size() > n){
                    queue.poll();
                }
            }
            int q = queue.size();
            while(!queue.isEmpty()){
                doc_word_info[i][--q] = queue.poll();
            }
        }
        return doc_word_info;
    }

    /**
     * 写每个文档的前n个关键词到文件中
     * @param n
     * @param output  输出文件
     * @param titles  doc标题列表
     * @param words   词列表
     * @throws Exception
     */
    public void dumpTopResult(int n, String output, final List<String> titles, final List<String> words) throws Exception{
        if(n <= 0) return;
        BufferedWriter bw = new BufferedWriter(new FileWriter(output));
        if(doc_word_info == null){
            doc_word_info = getDocTopWordInfo(n);
        }

        for(int i = 0; i < doc_num; ++i){  //doc_id
            bw.write(titles.get(i) + " : ");
            for(Item item : doc_word_info[i]){
                bw.write(words.get(item.word_id) + "/" + item.prob + " ");
            }
            bw.newLine();
            bw.flush();
        }

        bw.close();
    }

    /**
     * 加载文档_主题模型
     * @param model_path
     * @throws Exception
     */
    public void loadDocTopicModel(String model_path) throws Exception{
        //将计数写入到矩阵中
        BufferedReader br = new BufferedReader(new FileReader(model_path));
        String line = null;
        while((line = br.readLine()) != null){
            String[] doc_info = line.split("[\t ]+");
            int doc_id = Integer.parseInt(doc_info[0]);  //文档号,从0开始

            for(int i = 1; i < doc_info.length; ++i){
                String[] topic_info = doc_info[i].split(":");   //对应的主题信息
                int topic_id = Integer.parseInt(topic_info[0]);  //主题id
                int topic_cnt = Integer.parseInt(topic_info[1]);  //主题次数
                doc_topic_mat[topic_id][doc_id] = topic_cnt;
            }
        }
        br.close();

        //计数
        int[] doc_cnts = new int[doc_num];  //每个文档对应的主题数量和,即包含词的数目
        for(int i = 0; i < doc_num; ++i){  //对每个文档
            for(int j = 0; j < topic_num; ++j){  //对每个主题
                doc_cnts[i] += doc_topic_mat[j][i];
            }
        }

        //计算概率
        double factor = topic_num * alpha;
        for(int i = 0; i < doc_num; ++i){  //对每个文档
            for(int j = 0; j < topic_num; ++j){  //对每个主题
                doc_topic_mat[j][i] = (doc_topic_mat[j][i] + alpha) / (doc_cnts[i] + factor);
            }
        }
    }

    /**
     * 加载主题_词模型
     * @param model_path  主题_词模型位置,对应文件 server_model_0
     * @param model_summary_path   主题数目统计,对应文件 server_model_1
     * @throws Exception
     */
    public void loadTopicWordModel(String model_path, String model_summary_path) throws Exception{
        //将计数写入到矩阵中
        BufferedReader br = new BufferedReader(new FileReader(model_path));
        String line = null;
        while((line = br.readLine()) != null){
            String[] info = line.split(" ");
            int word_id = Integer.parseInt(info[0]);  //词id
            for(int i = 1; i < info.length; ++i){
                String[] topic_info = info[i].split(":"); //对应的每个topic信息
                int topic_id = Integer.parseInt(topic_info[0]);  //topic id
                int topic_cnt = Integer.parseInt(topic_info[1]);  //topic计数
                topic_vocab_mat[word_id][topic_id] = topic_cnt;
            }
        }
        br.close();

        //写每个主题出现的次数
        int[] topic_cnts = new int[topic_num];   //主题出现的次数
        br = new BufferedReader(new FileReader(model_summary_path));
        String[] cnts = br.readLine().split(" ");
        for(int i = 1; i < cnts.length; ++i){
            String[] cnt_info = cnts[i].split(":");
            int topic_id = Integer.parseInt(cnt_info[0]);
            int topic_cnt = Integer.parseInt(cnt_info[1]);
            topic_cnts[topic_id] = topic_cnt;
        }
        br.close();

        //写概率
        double factor = vocab_num * beta;   //归一化因子
        for(int i = 0; i < vocab_num; ++i){  //每个词
            for(int j = 0; j < topic_num; ++j){  //每个主题
                topic_vocab_mat[i][j] = (topic_vocab_mat[i][j] + beta) / (topic_cnts[j] + factor);
            }
        }
    }
}

调用

public static void main(String[] args) throws Exception{
    String doc_topic_path = "doc_topic.0";
    String topic_word_path = "server_0_table_0.model";
    String topic_summary = "server_0_table_1.model";
    String ori_doc_path = "merge_texts";
    String ori_word_path = "vocab";
    String output = "result";
    LDAResult result = new LDAResult(0.22, 0.1, 220, 1539967, 146119);
    result.loadTopicWordModel(topic_word_path, topic_summary);  //得到主题-词概率分布
    result.loadDocTopicModel(doc_topic_path);   //得到文档-主题概率分布
    List<String> titles = Util.getTitles(ori_doc_path);  //所有文档名
    List<String> words = Util.getVocabs(ori_word_path);  //所有词
    result.dumpTopResult(10, output, titles, words);  //每篇文档的前10个关键词写入到output中
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 159,117评论 4 362
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 67,328评论 1 293
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 108,839评论 0 243
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 44,007评论 0 206
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 52,384评论 3 287
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 40,629评论 1 219
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 31,880评论 2 313
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 30,593评论 0 198
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 34,313评论 1 243
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 30,575评论 2 246
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 32,066评论 1 260
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 28,392评论 2 253
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 33,052评论 3 236
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 26,082评论 0 8
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 26,844评论 0 195
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 35,662评论 2 274
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 35,575评论 2 270

推荐阅读更多精彩内容

  • 1. Java基础部分 基础部分的顺序:基本语法,类相关的语法,内部类的语法,继承相关的语法,异常的语法,线程的语...
    子非鱼_t_阅读 31,295评论 18 399
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 170,569评论 25 707
  • 上善若水水善利万物而不生处众人之所恶故几于道居善地心善缘与善仁言善信政善治事善能动善时夫唯不争故无忧
    MR0k阅读 233评论 0 0
  • 清晨被闹钟醒来,醒觉的片刻,看着天花板,安静的能听见自己的心跳,由于长期北漂,常常会有一种特别不安全的感觉,并不是...
    海草爸爸阅读 167评论 0 0
  • [下载地址]https://git.oschina.net/mrj_mrj/pagesFilp.git 实现原理:...
    孤独的剑客阅读 1,082评论 0 13