当前位置: 首页>>代码示例>>Python>>正文


Python BigML.create_anomalyscore方法代码示例

本文整理汇总了Python中bigml.api.BigML.create_anomalyscore方法的典型用法代码示例。如果您正苦于以下问题:Python BigML.create_anomalyscore方法的具体用法?Python BigML.create_anomalyscore怎么用?Python BigML.create_anomalyscore使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在bigml.api.BigML的用法示例。


在下文中一共展示了BigML.create_anomalyscore方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1:

# 需要导入模块: from bigml.api import BigML [as 别名]
# 或者: from bigml.api.BigML import create_anomalyscore [as 别名]
                  u'000002': {u'name': u'petal length', u'optype': u'numeric'},
                  u'000003': {u'name': u'petal width', u'optype': u'numeric'},
                  u'000004': {u'name': u'species',
                              u'optype': u'categorical',
                              u'term_analysis': {u'enabled': True}}},
      }
 source2 = api.create_source(source1_file, args)
 api.ok(source2)
 
 args = \
     {u'objective_field': {u'id': u'000004'},
      }
 dataset1 = api.create_dataset(source2, args)
 api.ok(dataset1)
 
 args = \
     {u'anomaly_seed': u'bigml',
               u'seed': u'bigml'}
 anomaly1 = api.create_anomaly(dataset1, args)
 api.ok(anomaly1)
 
 args = \
     {u'input_data': {u'petal length': 0.5,
                      u'petal width': 0.5,
                      u'sepal length': 1,
                      u'sepal width': 1,
                      u'species': u'Iris-setosa'},
      }
 anomalyscore1 = api.create_anomalyscore(anomaly1, args)
 api.ok(anomalyscore1)
 
开发者ID:bigmlcom,项目名称:bigmler,代码行数:32,代码来源:reify_anomaly_score.py


注:本文中的bigml.api.BigML.create_anomalyscore方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。