本文整理汇总了Python中bigml.api.BigML.update_source方法的典型用法代码示例。如果您正苦于以下问题:Python BigML.update_source方法的具体用法?Python BigML.update_source怎么用?Python BigML.update_source使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类bigml.api.BigML
的用法示例。
在下文中一共展示了BigML.update_source方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: BigML
# 需要导入模块: from bigml.api import BigML [as 别名]
# 或者: from bigml.api.BigML import update_source [as 别名]
from bigml.api import BigML
api = BigML()
source1 = api.create_source("iris_sp_chars.csv", \
{'name': 'my_sóurcè_sp_name'})
api.ok(source1)
source1 = api.update_source(source1, \
{'fields': {'000000': {'name': 'sépal.length', 'optype': 'numeric'},
'000001': {'name': 'sépal&width', 'optype': 'numeric'},
'000002': {'name': 'pétal.length', 'optype': 'numeric'},
'000003': {'name': 'pétal&width\x00', 'optype': 'numeric'},
'000004': {'name': 'spécies', 'optype': 'categorical'}}})
api.ok(source1)
示例2: BigML
# 需要导入模块: from bigml.api import BigML [as 别名]
# 或者: from bigml.api.BigML import update_source [as 别名]
from bigml.api import BigML
api = BigML()
source1 = api.create_source("iris_sp_chars.csv", \
{'name': u'my_s\xf3urc\xe8_sp_name'})
api.ok(source1)
source1 = api.update_source(source1, \
{'fields': {u'000000': {'name': u's\xe9pal.length', 'optype': u'numeric'},
u'000001': {'name': u's\xe9pal&width', 'optype': u'numeric'},
u'000002': {'name': u'p\xe9tal.length', 'optype': u'numeric'},
u'000003': {'name': u'p\xe9tal&width\x00', 'optype': u'numeric'},
u'000004': {'name': u'sp\xe9cies', 'optype': u'categorical'}}})
api.ok(source1)