本文整理汇总了Python中crosscat.cython_code.State.p_state方法的典型用法代码示例。如果您正苦于以下问题:Python State.p_state方法的具体用法?Python State.p_state怎么用?Python State.p_state使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类crosscat.cython_code.State
的用法示例。
在下文中一共展示了State.p_state方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: gen_data_crosscat
# 需要导入模块: from crosscat.cython_code import State [as 别名]
# 或者: from crosscat.cython_code.State import p_state [as 别名]
def gen_data_crosscat(mode, T):
# edit transition list according to
all_transitions = []
M_c = du.gen_M_c_from_T(T, cctypes=['continuous']*2)
state = State.p_state(M_c, T)
if mode == 'crp_mixture':
# fix the views
X_D = state.get_X_D();
X_L = state.get_X_L();
X_D = [X_D[0]]
X_L['column_partition']['assignments'] = [1,1]
state = State.p_state(M_c, T, X_L=X_L, X_D=X_D)