书栈网 · BookStack 本次搜索耗时 0.016 秒,为您找到 2290 个相关结果.
  • gbdt二分类预测(stream)

    功能介绍 参数说明 脚本示例 脚本结果 功能介绍 gbdt(Gradient Boosting Decision Trees)二分类,是经典的基于boosting的有监督学习模型,可以用来解决二分类问题 支持连续特征和离散特征 支持数据采样和特征采样 目标分类必须是两个 参数说明 名称 中文名称 描述 类型 ...
  • GbdtClassifier

    Description Parameters Script Example Result Description Gradient Boosting(often abbreviated to GBDT or GBM) is a popular supervised learning model. It is the best off-the-...
  • 图表组成

    1560 2018-08-30 《F2 使用教程》
    图表组成 图表部件 术语 图表组成 为了更好得使用 F2 进行数据可视化,我们需要了解 F2 图表的组成以及相关术语。 图表部件 一般情况下,F2 的图表包含坐标轴(Axis)、几何标记(Geometry)、提示信息(Tooltip)、图例(Legend)等,另外还可以包括辅助标记(Guide)、数据标签(dataLabels)等。 F2...
  • CsvToJson(batch)

    CsvToJson 功能介绍 参数说明 脚本示例 脚本代码 脚本运行结果 CsvToJson 功能介绍 将数据格式从 Csv 转成 Json 参数说明 名称 中文名称 描述 类型 是否必须? 默认值 handleInvalid 解析异常处理策略 解析异常处理策略 String “ERROR” ...
  • NaiveBayesPredict(stream)

    Description Parameters Script Example Script Result Description Naive Bayes Predictor. We support the multinomial Naive Bayes and multinomial NB model, a probabilistic le...
  • NAMED_STRUCT

    named_struct description Syntax notice example keywords named_struct SinceVersion 2.0.0 named_struct description Syntax STRUCT<T1, T2, T3, ...> named_struct({VARCHAR, T...
  • VectorToJson(stream)

    Description Parameters Script Example Code Results Description Transform data type from Vector to Json. Parameters Name Description Type Required? Default Value ...
  • VectorToJson(batch)

    Description Parameters Script Example Code Results Description Transform data type from Vector to Json. Parameters Name Description Type Required? Default Value ...
  • NAMED_STRUCT

    named_struct description Syntax notice example keywords named_struct SinceVersion 2.0.0 named_struct description Syntax STRUCT<T1, T2, T3, ...> named_struct({VARCHAR, T...
  • union: 一个非安全的 enum

    union :一个非安全的 enum union :一个非安全的 enum Rust 现在支持 unions : union MyUnion { f1 : u32 , f2 : f32 , } Unions 是一种如同 enums 的结构,但是,它没有标签。 Enums 是带有 “标签” 的,用...