hsbm_tm.py 文件源码

python
阅读 22 收藏 0 点赞 0 评论 0

项目:hSBM_Topicmodel 作者: martingerlach 项目源码 文件源码
def inference(self,g):
        """We load a graph-tool graph-object and fit an hsbm:
           - hierarchical
           - nonoverlapping
           - degree-corrected
           We get a state-object which is a 'NestedBlockState'.
           We save as 'state.pkl'
        """
        if self.args.state == None:
            state=gt.minimize_nested_blockmodel_dl(g,deg_corr=True,overlap=False)
            ## save state
            with open(os.path.join(self.out_path,'state.pkl'),'wb') as f:
                pickle.dump(state,f)
        ## if the state already exists, we just load
        else:
            with open(self.args.state,'rb') as f:
                state = pickle.load(f)
        return state
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号