Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/python-2.7/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python 2.7 Graphlab/Turi中的多类预测概率_Python 2.7_Python 3.x_Anaconda_Graphlab - Fatal编程技术网

Python 2.7 Graphlab/Turi中的多类预测概率

Python 2.7 Graphlab/Turi中的多类预测概率,python-2.7,python-3.x,anaconda,graphlab,Python 2.7,Python 3.x,Anaconda,Graphlab,我正在研究多类问题(num_class=100)。我在graphlab/Turi中创建了一个分类模型 import graphlab as gl model= gl.boosted_trees_classifier.create(tr_data, target='species',max_depth=4, max_iterations=500) 然后预测测试集的概率 model.classify(te_data) 它产生了多数类概率。如何修改模型以获得所有100类目标的概率。 谢

我正在研究多类问题(num_class=100)。我在graphlab/Turi中创建了一个分类模型

  import graphlab as gl
  model= gl.boosted_trees_classifier.create(tr_data, target='species',max_depth=4, max_iterations=500)
然后预测测试集的概率

  model.classify(te_data)
它产生了多数类概率。如何修改模型以获得所有100类目标的概率。 谢谢你的期待