本文整理匯總了Python中yhat.Yhat.show_models方法的典型用法代碼示例。如果您正苦於以下問題:Python Yhat.show_models方法的具體用法?Python Yhat.show_models怎麽用?Python Yhat.show_models使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類yhat.Yhat
的用法示例。
在下文中一共展示了Yhat.show_models方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: Yhat
# 需要導入模塊: from yhat import Yhat [as 別名]
# 或者: from yhat.Yhat import show_models [as 別名]
#!/usr/bin/env python
from yhat import Yhat
#yh = Yhat("[email protected]", "RoVGt5VDZfHkdBLx2rre76sg998cD4IuJiYzzNmNp48")
yh = Yhat("[email protected]", "HaDobDyJtFoQQPZ9xRkCJrI44OB6EW8hC6IfUMsGzo8")
checkoo_models = yh.show_models()
for model in checkoo_models['models']:
print model
newcase = {
'loc':'BeiJing',
'major':'Computer Science/Engineering',
'vtype':'F1',
'ventry':'New',
'byear':'2013',
'bmonth':'7',
'bday':'20'
}
checkoo_version = 14
print yh.predict('CKModel',checkoo_version,newcase)
示例2: Yhat
# 需要導入模塊: from yhat import Yhat [as 別名]
# 或者: from yhat.Yhat import show_models [as 別名]
# <markdowncell>
# <p>Deploy to Yhat</p>
# <codecell>
yh = Yhat("YOUR USERNAME", "YOUR API KEY")
# <codecell>
print yh.upload("NamedEntityFindr", clf)
# <codecell>
[model for model in yh.show_models()['models'] if model['name'] == "NamedEntityFindr"]
# <codecell>
results_from_server = yh.raw_predict("NamedEntityFindr", 1, data)
results_from_server
# <codecell>
print 'sanity check.'
print 'results all match => %s' \
% np.all(np.array(results['entities']) == np.array(results_from_server['prediction']['entities']))
# <markdowncell>
# <h2>Final Thoughts</h2>