當前位置: 首頁>>代碼示例>>Python>>正文


Python Yhat.show_models方法代碼示例

本文整理匯總了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)
開發者ID:checkvisa,項目名稱:regression,代碼行數:21,代碼來源:test_cloud.py

示例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>
開發者ID:guruscott,項目名稱:yhat-client,代碼行數:32,代碼來源:Entity_Finder.py


注:本文中的yhat.Yhat.show_models方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。